-- MySQL dump 10.13  Distrib 5.6.38, for Linux (x86_64)
--
-- Host: localhost    Database: watchhil_production2017
-- ------------------------------------------------------
-- Server version	5.6.38

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

--
-- Table structure for table `wh_commentmeta`
--

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

--
-- Dumping data for table `wh_commentmeta`
--

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

--
-- Table structure for table `wh_comments`
--

DROP TABLE IF EXISTS `wh_comments`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wh_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_520_ci NOT NULL,
  `comment_author_email` varchar(100) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `comment_author_url` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `comment_author_IP` varchar(100) COLLATE utf8mb4_unicode_520_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_520_ci NOT NULL,
  `comment_karma` int(11) NOT NULL DEFAULT '0',
  `comment_approved` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '1',
  `comment_agent` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `comment_type` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `comment_parent` bigint(20) unsigned NOT NULL DEFAULT '0',
  `user_id` bigint(20) unsigned NOT NULL DEFAULT '0',
  PRIMARY KEY (`comment_ID`),
  KEY `comment_post_ID` (`comment_post_ID`),
  KEY `comment_approved_date_gmt` (`comment_approved`,`comment_date_gmt`),
  KEY `comment_date_gmt` (`comment_date_gmt`),
  KEY `comment_parent` (`comment_parent`),
  KEY `comment_author_email` (`comment_author_email`(10))
) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wh_comments`
--

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

--
-- Table structure for table `wh_links`
--

DROP TABLE IF EXISTS `wh_links`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wh_links` (
  `link_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `link_url` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `link_name` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `link_image` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `link_target` varchar(25) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `link_description` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `link_visible` varchar(20) COLLATE utf8mb4_unicode_520_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_520_ci NOT NULL DEFAULT '',
  `link_notes` mediumtext COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `link_rss` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  PRIMARY KEY (`link_id`),
  KEY `link_visible` (`link_visible`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wh_links`
--

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

--
-- Table structure for table `wh_options`
--

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

--
-- Dumping data for table `wh_options`
--

LOCK TABLES `wh_options` WRITE;
/*!40000 ALTER TABLE `wh_options` DISABLE KEYS */;
INSERT INTO `wh_options` VALUES (1,'siteurl','https://www.watchhill.ca','yes'),(2,'home','https://www.watchhill.ca','yes'),(3,'blogname','Watch Hill Bed &amp; Breakfast','yes'),(4,'blogdescription','A luxury beachhouse in Southhampton, Ontario','yes'),(5,'users_can_register','0','yes'),(6,'admin_email','kevin@technicalities.ca','yes'),(7,'start_of_week','0','yes'),(8,'use_balanceTags','0','yes'),(9,'use_smilies','1','yes'),(10,'require_name_email','1','yes'),(11,'comments_notify','1','yes'),(12,'posts_per_rss','10','yes'),(13,'rss_use_excerpt','0','yes'),(14,'mailserver_url','mail.example.com','yes'),(15,'mailserver_login','login@example.com','yes'),(16,'mailserver_pass','password','yes'),(17,'mailserver_port','110','yes'),(18,'default_category','1','yes'),(19,'default_comment_status','closed','yes'),(20,'default_ping_status','closed','yes'),(21,'default_pingback_flag','','yes'),(22,'posts_per_page','6','yes'),(23,'date_format','F j, Y','yes'),(24,'time_format','g:i a','yes'),(25,'links_updated_date_format','F j, Y g:i a','yes'),(26,'comment_moderation','','yes'),(27,'moderation_notify','1','yes'),(28,'permalink_structure','/%year%/%monthnum%/%postname%/','yes'),(29,'rewrite_rules','a:90:{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: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:48:\".*wp-(atom|rdf|rss|rss2|feed|commentsrss2)\\.php$\";s:18:\"index.php?feed=old\";s:20:\".*wp-app\\.php(/.*)?$\";s:19:\"index.php?error=403\";s:18:\".*wp-register.php$\";s:23:\"index.php?register=true\";s:32:\"feed/(feed|rdf|rss|rss2|atom)/?$\";s:27:\"index.php?&feed=$matches[1]\";s:27:\"(feed|rdf|rss|rss2|atom)/?$\";s:27:\"index.php?&feed=$matches[1]\";s:8:\"embed/?$\";s:21:\"index.php?&embed=true\";s:20:\"page/?([0-9]{1,})/?$\";s:28:\"index.php?&paged=$matches[1]\";s:27:\"comment-page-([0-9]{1,})/?$\";s:38:\"index.php?&page_id=5&cpage=$matches[1]\";s:41:\"comments/feed/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?&feed=$matches[1]&withcomments=1\";s:36:\"comments/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?&feed=$matches[1]&withcomments=1\";s:17:\"comments/embed/?$\";s:21:\"index.php?&embed=true\";s:44:\"search/(.+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:40:\"index.php?s=$matches[1]&feed=$matches[2]\";s:39:\"search/(.+)/(feed|rdf|rss|rss2|atom)/?$\";s:40:\"index.php?s=$matches[1]&feed=$matches[2]\";s:20:\"search/(.+)/embed/?$\";s:34:\"index.php?s=$matches[1]&embed=true\";s:32:\"search/(.+)/page/?([0-9]{1,})/?$\";s:41:\"index.php?s=$matches[1]&paged=$matches[2]\";s:14:\"search/(.+)/?$\";s:23:\"index.php?s=$matches[1]\";s:47:\"author/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?author_name=$matches[1]&feed=$matches[2]\";s:42:\"author/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?author_name=$matches[1]&feed=$matches[2]\";s:23:\"author/([^/]+)/embed/?$\";s:44:\"index.php?author_name=$matches[1]&embed=true\";s:35:\"author/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?author_name=$matches[1]&paged=$matches[2]\";s:17:\"author/([^/]+)/?$\";s:33:\"index.php?author_name=$matches[1]\";s:69:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:64:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:45:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/embed/?$\";s:74:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&embed=true\";s:57:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:81:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&paged=$matches[4]\";s:39:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/?$\";s:63:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]\";s:56:\"([0-9]{4})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:51:\"([0-9]{4})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:32:\"([0-9]{4})/([0-9]{1,2})/embed/?$\";s:58:\"index.php?year=$matches[1]&monthnum=$matches[2]&embed=true\";s:44:\"([0-9]{4})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:65:\"index.php?year=$matches[1]&monthnum=$matches[2]&paged=$matches[3]\";s:26:\"([0-9]{4})/([0-9]{1,2})/?$\";s:47:\"index.php?year=$matches[1]&monthnum=$matches[2]\";s:43:\"([0-9]{4})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:38:\"([0-9]{4})/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:19:\"([0-9]{4})/embed/?$\";s:37:\"index.php?year=$matches[1]&embed=true\";s:31:\"([0-9]{4})/page/?([0-9]{1,})/?$\";s:44:\"index.php?year=$matches[1]&paged=$matches[2]\";s:13:\"([0-9]{4})/?$\";s:26:\"index.php?year=$matches[1]\";s:47:\"[0-9]{4}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:57:\"[0-9]{4}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:77:\"[0-9]{4}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:72:\"[0-9]{4}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:72:\"[0-9]{4}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:53:\"[0-9]{4}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:40:\"([0-9]{4})/([0-9]{1,2})/([^/]+)/embed/?$\";s:75:\"index.php?year=$matches[1]&monthnum=$matches[2]&name=$matches[3]&embed=true\";s:44:\"([0-9]{4})/([0-9]{1,2})/([^/]+)/trackback/?$\";s:69:\"index.php?year=$matches[1]&monthnum=$matches[2]&name=$matches[3]&tb=1\";s:64:\"([0-9]{4})/([0-9]{1,2})/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:81:\"index.php?year=$matches[1]&monthnum=$matches[2]&name=$matches[3]&feed=$matches[4]\";s:59:\"([0-9]{4})/([0-9]{1,2})/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:81:\"index.php?year=$matches[1]&monthnum=$matches[2]&name=$matches[3]&feed=$matches[4]\";s:52:\"([0-9]{4})/([0-9]{1,2})/([^/]+)/page/?([0-9]{1,})/?$\";s:82:\"index.php?year=$matches[1]&monthnum=$matches[2]&name=$matches[3]&paged=$matches[4]\";s:59:\"([0-9]{4})/([0-9]{1,2})/([^/]+)/comment-page-([0-9]{1,})/?$\";s:82:\"index.php?year=$matches[1]&monthnum=$matches[2]&name=$matches[3]&cpage=$matches[4]\";s:48:\"([0-9]{4})/([0-9]{1,2})/([^/]+)(?:/([0-9]+))?/?$\";s:81:\"index.php?year=$matches[1]&monthnum=$matches[2]&name=$matches[3]&page=$matches[4]\";s:36:\"[0-9]{4}/[0-9]{1,2}/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:46:\"[0-9]{4}/[0-9]{1,2}/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:66:\"[0-9]{4}/[0-9]{1,2}/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:61:\"[0-9]{4}/[0-9]{1,2}/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:61:\"[0-9]{4}/[0-9]{1,2}/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:42:\"[0-9]{4}/[0-9]{1,2}/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:51:\"([0-9]{4})/([0-9]{1,2})/comment-page-([0-9]{1,})/?$\";s:65:\"index.php?year=$matches[1]&monthnum=$matches[2]&cpage=$matches[3]\";s:38:\"([0-9]{4})/comment-page-([0-9]{1,})/?$\";s:44:\"index.php?year=$matches[1]&cpage=$matches[2]\";s:27:\".?.+?/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:37:\".?.+?/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:57:\".?.+?/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\".?.+?/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\".?.+?/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:33:\".?.+?/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:16:\"(.?.+?)/embed/?$\";s:41:\"index.php?pagename=$matches[1]&embed=true\";s:20:\"(.?.+?)/trackback/?$\";s:35:\"index.php?pagename=$matches[1]&tb=1\";s:40:\"(.?.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:35:\"(.?.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:28:\"(.?.+?)/page/?([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&paged=$matches[2]\";s:35:\"(.?.+?)/comment-page-([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&cpage=$matches[2]\";s:24:\"(.?.+?)(?:/([0-9]+))?/?$\";s:47:\"index.php?pagename=$matches[1]&page=$matches[2]\";}','yes'),(30,'hack_file','0','yes'),(31,'blog_charset','UTF-8','yes'),(32,'moderation_keys','','no'),(33,'active_plugins','a:16:{i:0;s:25:\"adminimize/adminimize.php\";i:1;s:37:\"foobox-image-lightbox/foobox-free.php\";i:2;s:25:\"foogallery/foogallery.php\";i:3;s:31:\"genesis-simple-hooks/plugin.php\";i:4;s:19:\"jetpack/jetpack.php\";i:5;s:19:\"members/members.php\";i:6;s:23:\"ml-slider/ml-slider.php\";i:7;s:47:\"really-simple-ssl/rlrsssl-really-simple-ssl.php\";i:8;s:45:\"simple-page-ordering/simple-page-ordering.php\";i:9;s:21:\"ubermenu/ubermenu.php\";i:10;s:23:\"wordfence/wordfence.php\";i:11;s:29:\"wp-db-backup/wp-db-backup.php\";i:12;s:22:\"wp-editor/wpeditor.php\";i:13;s:35:\"wp-media-folder/wp-media-folder.php\";i:14;s:37:\"wp-mobile-detect/wp-mobile-detect.php\";i:15;s:65:\"wp-simple-booking-calendar-premium/wp-simple-booking-calendar.php\";}','yes'),(34,'category_base','','yes'),(35,'ping_sites','http://rpc.pingomatic.com/','yes'),(36,'comment_max_links','2','yes'),(37,'gmt_offset','','yes'),(38,'default_email_category','1','yes'),(39,'recently_edited','','no'),(40,'template','genesis','yes'),(41,'stylesheet','watch-hill-2017','yes'),(42,'comment_whitelist','1','yes'),(43,'blacklist_keys','','no'),(44,'comment_registration','','yes'),(45,'html_type','text/html','yes'),(46,'use_trackback','0','yes'),(47,'default_role','subscriber','yes'),(48,'db_version','38590','yes'),(49,'uploads_use_yearmonth_folders','1','yes'),(50,'upload_path','','yes'),(51,'blog_public','1','yes'),(52,'default_link_category','2','yes'),(53,'show_on_front','page','yes'),(54,'tag_base','','yes'),(55,'show_avatars','','yes'),(56,'avatar_rating','G','yes'),(57,'upload_url_path','','yes'),(58,'thumbnail_size_w','150','yes'),(59,'thumbnail_size_h','150','yes'),(60,'thumbnail_crop','1','yes'),(61,'medium_size_w','300','yes'),(62,'medium_size_h','300','yes'),(63,'avatar_default','mystery','yes'),(64,'large_size_w','1024','yes'),(65,'large_size_h','1024','yes'),(66,'image_default_link_type','none','yes'),(67,'image_default_size','','yes'),(68,'image_default_align','','yes'),(69,'close_comments_for_old_posts','','yes'),(70,'close_comments_days_old','14','yes'),(71,'thread_comments','1','yes'),(72,'thread_comments_depth','5','yes'),(73,'page_comments','','yes'),(74,'comments_per_page','50','yes'),(75,'default_comments_page','newest','yes'),(76,'comment_order','asc','yes'),(77,'sticky_posts','a:0:{}','yes'),(78,'widget_categories','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(79,'widget_text','a:5:{i:1;a:0:{}i:2;a:3:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:246:\"[notdevice]\r\n<div class=\"logo\">\r\n<a href=\"//www.watchhill.ca\"><img src=\"http://www.watchhill.ca/wp-content/uploads/2017/03/logo.jpg\" /></a>\r\n<div class=\"bigTitle\">Watch Hill</div>\r\n<div class=\"smlTitle\">Bed & Breakfast</div>\r\n</div>\r\n[/notdevice]\";s:6:\"filter\";b:0;}i:3;a:3:{s:5:\"title\";s:16:\"book these rooms\";s:4:\"text\";s:360:\"<div class=\"BB\"><a href=\"#\"><img src=\"https://www.watchhill.ca/wp-content/uploads/2017/03/BB-Button.jpg\"></a></div\r\n<div class=\"rooms\"><a href=\"#\"><img src=\"https://www.watchhill.ca/wp-content/uploads/2017/03/rooms-button.jpg\"></a></div>\r\n<div class=\"hosts\"><a href=\"#\"><img src=\"https://www.watchhill.ca/wp-content/uploads/2017/03/hosts-button.jpg\"></a></div>\";s:6:\"filter\";b:0;}i:4;a:3:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:367:\"<div class= \"rooms\">\r\n<a href=\"https://www.watchhill.ca/wp-content/uploads/2017/03/rooms-button.jpg\"> </a>\r\n</div>\r\n\r\n<div class= \"BB\">\r\n<a href=\"https://www.watchhill.ca/wp-content/uploads/2017/03/BB-Button.jpg\"> </a>\r\n</div>\r\n\r\n<div class= \"hosts\">\r\n<a href=\"https://www.watchhill.ca/wp-content/uploads/2017/03/hosts-button.jpg\"> </a>\r\n</div>\r\n\r\n<div class=\"clear\">\";s:6:\"filter\";b:0;}s:12:\"_multiwidget\";i:1;}','yes'),(80,'widget_rss','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(81,'uninstall_plugins','a:1:{s:25:\"adminimize/adminimize.php\";s:24:\"_mw_adminimize_uninstall\";}','no'),(82,'timezone_string','America/Toronto','yes'),(83,'page_for_posts','0','yes'),(84,'page_on_front','5','yes'),(85,'default_post_format','0','yes'),(86,'link_manager_enabled','0','yes'),(87,'finished_splitting_shared_terms','1','yes'),(88,'site_icon','34','yes'),(89,'medium_large_size_w','768','yes'),(90,'medium_large_size_h','0','yes'),(91,'initial_db_version','38590','yes'),(92,'wh_user_roles','a:5:{s:13:\"administrator\";a:2:{s:4:\"name\";s:13:\"Administrator\";s:12:\"capabilities\";a:66:{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:10:\"list_roles\";b:1;s:12:\"create_roles\";b:1;s:12:\"delete_roles\";b:1;s:10:\"edit_roles\";b:1;s:16:\"restrict_content\";b:1;}}s:6:\"editor\";a:2:{s:4:\"name\";s:6:\"Editor\";s:12:\"capabilities\";a:35:{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:18:\"edit_theme_options\";b:1;}}s:6:\"author\";a:2:{s:4:\"name\";s:6:\"Author\";s:12:\"capabilities\";a:10:{s:12:\"upload_files\";b:1;s:10:\"edit_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:4:\"read\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:12:\"delete_posts\";b:1;s:22:\"delete_published_posts\";b:1;}}s:11:\"contributor\";a:2:{s:4:\"name\";s:11:\"Contributor\";s:12:\"capabilities\";a:5:{s:10:\"edit_posts\";b:1;s:4:\"read\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:12:\"delete_posts\";b:1;}}s:10:\"subscriber\";a:2:{s:4:\"name\";s:10:\"Subscriber\";s:12:\"capabilities\";a:2:{s:4:\"read\";b:1;s:7:\"level_0\";b:1;}}}','yes'),(93,'fresh_site','0','yes'),(94,'WPLANG','en_CA','yes'),(95,'widget_search','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(96,'widget_recent-posts','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(97,'widget_recent-comments','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(98,'widget_archives','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(326,'wordfence_syncingAttackData','0','no'),(99,'widget_meta','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(100,'sidebars_widgets','a:9:{s:19:\"wp_inactive_widgets\";a:2:{i:0;s:6:\"text-3\";i:1;s:6:\"text-4\";}s:12:\"header-right\";a:0:{}s:11:\"sidebar-alt\";a:2:{i:0;s:6:\"text-2\";i:1;s:28:\"ubermenu_navigation_widget-2\";}s:13:\"slider-widget\";a:1:{i:0;s:19:\"metaslider_widget-2\";}s:8:\"footer-1\";a:0:{}s:8:\"footer-2\";a:0:{}s:8:\"footer-3\";a:0:{}s:11:\"after-entry\";a:0:{}s:13:\"array_version\";i:3;}','yes'),(101,'widget_pages','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(102,'widget_calendar','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(103,'widget_tag_cloud','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(104,'widget_nav_menu','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(105,'cron','a:18:{i:1525840075;a:2:{s:17:\"jetpack_sync_cron\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:21:\"jetpack_sync_interval\";s:4:\"args\";a:0:{}s:8:\"interval\";i:300;}}s:22:\"jetpack_sync_full_cron\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:21:\"jetpack_sync_interval\";s:4:\"args\";a:0:{}s:8:\"interval\";i:300;}}}i:1525840671;a:1:{s:20:\"jetpack_clean_nonces\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"hourly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:3600;}}}i:1525842491;a:1:{s:21:\"wordfence_hourly_cron\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"hourly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:3600;}}}i:1525843372;a:1:{s:20:\"jp_sitemap_cron_hook\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:16:\"sitemap-interval\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1525851000;a:1:{s:30:\"wordfence_start_scheduled_scan\";a:1:{s:32:\"b82b649fa4763a2fb7f3adfd424502dd\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:1:{i:0;i:1525851000;}}}}i:1525857535;a:1:{s:36:\"check_plugin_updates-wp-media-folder\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1525866153;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:1525866228;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:1525867996;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:1525885681;a:1:{s:26:\"wordfence_daily_autoUpdate\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1525885691;a:1:{s:20:\"wordfence_daily_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:1525891039;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:1525892623;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:1525912675;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:1525989737;a:1:{s:17:\"wp_db_backup_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:1526110200;a:1:{s:30:\"wordfence_start_scheduled_scan\";a:1:{s:32:\"1c3fd785e40acef59a234c347aba51f4\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:1:{i:0;i:1526110200;}}}}i:1526369400;a:1:{s:30:\"wordfence_start_scheduled_scan\";a:1:{s:32:\"8dbad9018787cb72ed07b84d326a9820\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:1:{i:0;i:1526369400;}}}}s:7:\"version\";i:2;}','yes'),(9142,'jetpack_sync_settings_disable','0','yes'),(106,'theme_mods_twentyseventeen','a:2:{s:18:\"custom_css_post_id\";i:-1;s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1488801694;s:4:\"data\";a:4:{s:19:\"wp_inactive_widgets\";a:0:{}s:9:\"sidebar-1\";a:6:{i:0;s:8:\"search-2\";i:1;s:14:\"recent-posts-2\";i:2;s:17:\"recent-comments-2\";i:3;s:10:\"archives-2\";i:4;s:12:\"categories-2\";i:5;s:6:\"meta-2\";}s:9:\"sidebar-2\";a:0:{}s:9:\"sidebar-3\";a:0:{}}}}','yes'),(301,'ubermenu_help','','yes'),(302,'ubermenu_updates','','yes'),(303,'ubermenu_migration_status','n/a','yes'),(121,'can_compress_scripts','1','no'),(97901,'wpmf_field_bgfolder','a:0:{}','yes'),(100836,'jetpack_plugin_api_action_links','a:5:{s:25:\"foogallery/foogallery.php\";a:3:{s:8:\"Settings\";s:88:\"https://www.watchhill.ca/wp-admin/edit.php?post_type=foogallery&page=foogallery-settings\";s:10:\"Extensions\";s:90:\"https://www.watchhill.ca/wp-admin/edit.php?post_type=foogallery&page=foogallery-extensions\";s:4:\"Help\";s:84:\"https://www.watchhill.ca/wp-admin/edit.php?post_type=foogallery&page=foogallery-help\";}s:19:\"jetpack/jetpack.php\";a:1:{s:7:\"Jetpack\";s:56:\"https://www.watchhill.ca/wp-admin/admin.php?page=jetpack\";}s:21:\"ubermenu/ubermenu.php\";a:3:{s:13:\"Control Panel\";s:67:\"https://www.watchhill.ca/wp-admin/themes.php?page=ubermenu-settings\";s:7:\"Updates\";s:84:\"https://www.watchhill.ca/wp-admin/themes.php?page=ubermenu-settings#ubermenu_updates\";s:13:\"Knowledgebase\";s:37:\"http://sevenspark.com/docs/ubermenu-3\";}s:23:\"wordfence/wordfence.php\";a:1:{s:18:\"Upgrade To Premium\";s:48:\"https://www.wordfence.com/zz12/wordfence-signup/\";}s:22:\"wp-editor/wpeditor.php\";a:1:{s:8:\"Settings\";s:63:\"https://www.watchhill.ca/wp-admin/admin.php?page=wpeditor_admin\";}}','yes'),(199,'genesis-settings','a:40:{s:13:\"theme_version\";s:5:\"2.5.2\";s:10:\"db_version\";i:2503;s:13:\"first_version\";s:5:\"2.0.2\";s:6:\"update\";i:1;s:20:\"update_email_address\";s:0:\"\";s:8:\"feed_uri\";s:0:\"\";s:17:\"comments_feed_uri\";s:0:\"\";s:11:\"site_layout\";s:15:\"sidebar-content\";s:15:\"content_archive\";s:4:\"full\";s:10:\"image_size\";s:9:\"thumbnail\";s:15:\"image_alignment\";s:9:\"alignleft\";s:9:\"posts_nav\";s:7:\"numeric\";s:16:\"blog_cat_exclude\";s:0:\"\";s:12:\"blog_cat_num\";i:6;s:14:\"header_scripts\";s:0:\"\";s:14:\"footer_scripts\";s:0:\"\";s:10:\"blog_title\";s:0:\"\";s:10:\"nav_extras\";s:0:\"\";s:21:\"nav_extras_twitter_id\";s:0:\"\";s:15:\"style_selection\";s:0:\"\";s:23:\"nav_extras_twitter_text\";s:0:\"\";s:21:\"breadcrumb_front_page\";i:0;s:15:\"breadcrumb_home\";i:0;s:17:\"breadcrumb_single\";i:0;s:15:\"breadcrumb_page\";i:0;s:21:\"breadcrumb_posts_page\";i:0;s:18:\"breadcrumb_archive\";i:0;s:14:\"breadcrumb_404\";i:0;s:21:\"breadcrumb_attachment\";i:0;s:14:\"comments_posts\";i:0;s:14:\"comments_pages\";i:0;s:25:\"content_archive_thumbnail\";i:0;s:9:\"superfish\";i:0;s:13:\"redirect_feed\";i:0;s:22:\"redirect_comments_feed\";i:0;s:16:\"trackbacks_posts\";i:0;s:16:\"trackbacks_pages\";i:0;s:12:\"update_email\";i:0;s:8:\"blog_cat\";i:0;s:21:\"content_archive_limit\";i:0;}','yes'),(124275,'_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:65:\"https://downloads.wordpress.org/release/en_CA/wordpress-4.9.5.zip\";s:6:\"locale\";s:5:\"en_CA\";s:8:\"packages\";O:8:\"stdClass\":5:{s:4:\"full\";s:65:\"https://downloads.wordpress.org/release/en_CA/wordpress-4.9.5.zip\";s:10:\"no_content\";b:0;s:11:\"new_bundled\";b:0;s:7:\"partial\";b:0;s:8:\"rollback\";b:0;}s:7:\"current\";s:5:\"4.9.5\";s:7:\"version\";s:5:\"4.9.5\";s:11:\"php_version\";s:5:\"5.2.4\";s:13:\"mysql_version\";s:3:\"5.0\";s:11:\"new_bundled\";s:3:\"4.7\";s:15:\"partial_version\";s:0:\"\";}}s:12:\"last_checked\";i:1525823022;s:15:\"version_checked\";s:5:\"4.9.5\";s:12:\"translations\";a:0:{}}','no'),(5938,'wpmf_list_imported','a:0:{}','yes'),(5942,'wpmf_option_sync_media_external','0','yes'),(5943,'wpmf_options_format_title','a:9:{s:6:\"hyphen\";i:1;s:10:\"underscore\";i:1;s:6:\"period\";i:0;s:5:\"tilde\";i:0;s:4:\"plus\";i:0;s:6:\"capita\";s:7:\"cap_all\";s:3:\"alt\";i:0;s:7:\"caption\";i:0;s:11:\"description\";i:0;}','yes'),(5985,'mw_adminimize','a:92:{s:29:\"mw_adminimize_admin_bar_nodes\";a:36:{s:12:\"user-actions\";O:8:\"stdClass\":6:{s:2:\"id\";s:12:\"user-actions\";s:5:\"title\";b:0;s:6:\"parent\";s:10:\"my-account\";s:4:\"href\";b:0;s:5:\"group\";b:1;s:4:\"meta\";a:0:{}}s:9:\"user-info\";O:8:\"stdClass\":6:{s:2:\"id\";s:9:\"user-info\";s:5:\"title\";s:85:\"<span class=\'display-name\'>James Carruthers</span><span class=\'username\'>James</span>\";s:6:\"parent\";s:12:\"user-actions\";s:4:\"href\";s:45:\"https://www.watchhill.ca/wp-admin/profile.php\";s:5:\"group\";b:0;s:4:\"meta\";a:1:{s:8:\"tabindex\";i:-1;}}s:12:\"edit-profile\";O:8:\"stdClass\":6:{s:2:\"id\";s:12:\"edit-profile\";s:5:\"title\";s:15:\"Edit My Profile\";s:6:\"parent\";s:12:\"user-actions\";s:4:\"href\";s:45:\"https://www.watchhill.ca/wp-admin/profile.php\";s:5:\"group\";b:0;s:4:\"meta\";a:0:{}}s:6:\"logout\";O:8:\"stdClass\":6:{s:2:\"id\";s:6:\"logout\";s:5:\"title\";s:7:\"Log Out\";s:6:\"parent\";s:12:\"user-actions\";s:4:\"href\";s:75:\"https://www.watchhill.ca/wp-login.php?action=logout&amp;_wpnonce=269637a745\";s:5:\"group\";b:0;s:4:\"meta\";a:0:{}}s:11:\"menu-toggle\";O:8:\"stdClass\":6:{s:2:\"id\";s:11:\"menu-toggle\";s:5:\"title\";s:73:\"<span class=\"ab-icon\"></span><span class=\"screen-reader-text\">Menu</span>\";s:6:\"parent\";b:0;s:4:\"href\";s:1:\"#\";s:5:\"group\";b:0;s:4:\"meta\";a:0:{}}s:10:\"my-account\";O:8:\"stdClass\":6:{s:2:\"id\";s:10:\"my-account\";s:5:\"title\";s:57:\"Howdy, <span class=\"display-name\">James Carruthers</span>\";s:6:\"parent\";s:13:\"top-secondary\";s:4:\"href\";s:45:\"https://www.watchhill.ca/wp-admin/profile.php\";s:5:\"group\";b:0;s:4:\"meta\";a:1:{s:5:\"class\";s:0:\"\";}}s:7:\"wp-logo\";O:8:\"stdClass\":6:{s:2:\"id\";s:7:\"wp-logo\";s:5:\"title\";s:84:\"<span class=\"ab-icon\"></span><span class=\"screen-reader-text\">About WordPress</span>\";s:6:\"parent\";b:0;s:4:\"href\";s:43:\"https://www.watchhill.ca/wp-admin/about.php\";s:5:\"group\";b:0;s:4:\"meta\";a:0:{}}s:5:\"about\";O:8:\"stdClass\":6:{s:2:\"id\";s:5:\"about\";s:5:\"title\";s:15:\"About WordPress\";s:6:\"parent\";s:7:\"wp-logo\";s:4:\"href\";s:43:\"https://www.watchhill.ca/wp-admin/about.php\";s:5:\"group\";b:0;s:4:\"meta\";a:0:{}}s:5:\"wporg\";O:8:\"stdClass\":6:{s:2:\"id\";s:5:\"wporg\";s:5:\"title\";s:13:\"WordPress.org\";s:6:\"parent\";s:16:\"wp-logo-external\";s:4:\"href\";s:28:\"https://en-ca.wordpress.org/\";s:5:\"group\";b:0;s:4:\"meta\";a:0:{}}s:13:\"documentation\";O:8:\"stdClass\":6:{s:2:\"id\";s:13:\"documentation\";s:5:\"title\";s:13:\"Documentation\";s:6:\"parent\";s:16:\"wp-logo-external\";s:4:\"href\";s:28:\"https://codex.wordpress.org/\";s:5:\"group\";b:0;s:4:\"meta\";a:0:{}}s:14:\"support-forums\";O:8:\"stdClass\":6:{s:2:\"id\";s:14:\"support-forums\";s:5:\"title\";s:14:\"Support Forums\";s:6:\"parent\";s:16:\"wp-logo-external\";s:4:\"href\";s:30:\"https://wordpress.org/support/\";s:5:\"group\";b:0;s:4:\"meta\";a:0:{}}s:8:\"feedback\";O:8:\"stdClass\":6:{s:2:\"id\";s:8:\"feedback\";s:5:\"title\";s:8:\"Feedback\";s:6:\"parent\";s:16:\"wp-logo-external\";s:4:\"href\";s:57:\"https://wordpress.org/support/forum/requests-and-feedback\";s:5:\"group\";b:0;s:4:\"meta\";a:0:{}}s:9:\"site-name\";O:8:\"stdClass\":6:{s:2:\"id\";s:9:\"site-name\";s:5:\"title\";s:30:\"Watch Hill Bed &amp; Breakfast\";s:6:\"parent\";b:0;s:4:\"href\";s:25:\"https://www.watchhill.ca/\";s:5:\"group\";b:0;s:4:\"meta\";a:0:{}}s:9:\"view-site\";O:8:\"stdClass\":6:{s:2:\"id\";s:9:\"view-site\";s:5:\"title\";s:10:\"Visit Site\";s:6:\"parent\";s:9:\"site-name\";s:4:\"href\";s:25:\"https://www.watchhill.ca/\";s:5:\"group\";b:0;s:4:\"meta\";a:0:{}}s:7:\"updates\";O:8:\"stdClass\":6:{s:2:\"id\";s:7:\"updates\";s:5:\"title\";s:133:\"<span class=\"ab-icon\"></span><span class=\"ab-label\">6</span><span class=\"screen-reader-text\">4 Plugin Updates, 2 Theme Updates</span>\";s:6:\"parent\";b:0;s:4:\"href\";s:49:\"https://www.watchhill.ca/wp-admin/update-core.php\";s:5:\"group\";b:0;s:4:\"meta\";a:1:{s:5:\"title\";s:33:\"4 Plugin Updates, 2 Theme Updates\";}}s:8:\"comments\";O:8:\"stdClass\":6:{s:2:\"id\";s:8:\"comments\";s:5:\"title\";s:184:\"<span class=\"ab-icon\"></span><span class=\"ab-label awaiting-mod pending-count count-0\" aria-hidden=\"true\">0</span><span class=\"screen-reader-text\">0 comments awaiting moderation</span>\";s:6:\"parent\";b:0;s:4:\"href\";s:51:\"https://www.watchhill.ca/wp-admin/edit-comments.php\";s:5:\"group\";b:0;s:4:\"meta\";a:0:{}}s:11:\"new-content\";O:8:\"stdClass\":6:{s:2:\"id\";s:11:\"new-content\";s:5:\"title\";s:62:\"<span class=\"ab-icon\"></span><span class=\"ab-label\">New</span>\";s:6:\"parent\";b:0;s:4:\"href\";s:46:\"https://www.watchhill.ca/wp-admin/post-new.php\";s:5:\"group\";b:0;s:4:\"meta\";a:0:{}}s:8:\"new-post\";O:8:\"stdClass\":6:{s:2:\"id\";s:8:\"new-post\";s:5:\"title\";s:4:\"Post\";s:6:\"parent\";s:11:\"new-content\";s:4:\"href\";s:46:\"https://www.watchhill.ca/wp-admin/post-new.php\";s:5:\"group\";b:0;s:4:\"meta\";a:0:{}}s:9:\"new-media\";O:8:\"stdClass\":6:{s:2:\"id\";s:9:\"new-media\";s:5:\"title\";s:5:\"Media\";s:6:\"parent\";s:11:\"new-content\";s:4:\"href\";s:47:\"https://www.watchhill.ca/wp-admin/media-new.php\";s:5:\"group\";b:0;s:4:\"meta\";a:0:{}}s:8:\"new-page\";O:8:\"stdClass\":6:{s:2:\"id\";s:8:\"new-page\";s:5:\"title\";s:4:\"Page\";s:6:\"parent\";s:11:\"new-content\";s:4:\"href\";s:61:\"https://www.watchhill.ca/wp-admin/post-new.php?post_type=page\";s:5:\"group\";b:0;s:4:\"meta\";a:0:{}}s:14:\"new-foogallery\";O:8:\"stdClass\":6:{s:2:\"id\";s:14:\"new-foogallery\";s:5:\"title\";s:7:\"Gallery\";s:6:\"parent\";s:11:\"new-content\";s:4:\"href\";s:67:\"https://www.watchhill.ca/wp-admin/post-new.php?post_type=foogallery\";s:5:\"group\";b:0;s:4:\"meta\";a:0:{}}s:8:\"new-user\";O:8:\"stdClass\":6:{s:2:\"id\";s:8:\"new-user\";s:5:\"title\";s:4:\"User\";s:6:\"parent\";s:11:\"new-content\";s:4:\"href\";s:46:\"https://www.watchhill.ca/wp-admin/user-new.php\";s:5:\"group\";b:0;s:4:\"meta\";a:0:{}}s:8:\"ubermenu\";O:8:\"stdClass\":6:{s:2:\"id\";s:8:\"ubermenu\";s:5:\"title\";s:8:\"UberMenu\";s:6:\"parent\";b:0;s:4:\"href\";s:67:\"https://www.watchhill.ca/wp-admin/themes.php?page=ubermenu-settings\";s:5:\"group\";b:0;s:4:\"meta\";a:1:{s:5:\"title\";s:8:\"UberMenu\";}}s:18:\"ubermenu_customize\";O:8:\"stdClass\":6:{s:2:\"id\";s:18:\"ubermenu_customize\";s:5:\"title\";s:9:\"Customize\";s:6:\"parent\";s:8:\"ubermenu\";s:4:\"href\";s:47:\"https://www.watchhill.ca/wp-admin/customize.php\";s:5:\"group\";b:0;s:4:\"meta\";a:3:{s:5:\"title\";s:31:\"Configure the UberMenu Settings\";s:6:\"target\";s:6:\"_blank\";s:5:\"class\";s:0:\"\";}}s:22:\"ubermenu_control_panel\";O:8:\"stdClass\":6:{s:2:\"id\";s:22:\"ubermenu_control_panel\";s:5:\"title\";s:22:\"UberMenu Control Panel\";s:6:\"parent\";s:8:\"ubermenu\";s:4:\"href\";s:67:\"https://www.watchhill.ca/wp-admin/themes.php?page=ubermenu-settings\";s:5:\"group\";b:0;s:4:\"meta\";a:3:{s:5:\"title\";s:61:\"<i class=\"fa fa-sliders\"></i> Configure the UberMenu Settings\";s:6:\"target\";s:6:\"_blank\";s:5:\"class\";s:0:\"\";}}s:19:\"ubermenu_edit_menus\";O:8:\"stdClass\":6:{s:2:\"id\";s:19:\"ubermenu_edit_menus\";s:5:\"title\";s:10:\"Edit Menus\";s:6:\"parent\";s:8:\"ubermenu\";s:4:\"href\";s:47:\"https://www.watchhill.ca/wp-admin/nav-menus.php\";s:5:\"group\";b:0;s:4:\"meta\";a:3:{s:5:\"title\";s:37:\"Add, remove, and configure menu items\";s:6:\"target\";s:6:\"_blank\";s:5:\"class\";s:0:\"\";}}s:29:\"ubermenu_edit_menus_main-menu\";O:8:\"stdClass\":6:{s:2:\"id\";s:29:\"ubermenu_edit_menus_main-menu\";s:5:\"title\";s:9:\"Main Menu\";s:6:\"parent\";s:19:\"ubermenu_edit_menus\";s:4:\"href\";s:66:\"https://www.watchhill.ca/wp-admin/nav-menus.php?action=edit&menu=2\";s:5:\"group\";b:0;s:4:\"meta\";a:3:{s:5:\"title\";s:19:\"Configure Main Menu\";s:6:\"target\";s:6:\"_blank\";s:5:\"class\";s:0:\"\";}}s:21:\"ubermenu_assign_menus\";O:8:\"stdClass\":6:{s:2:\"id\";s:21:\"ubermenu_assign_menus\";s:5:\"title\";s:12:\"Assign Menus\";s:6:\"parent\";s:8:\"ubermenu\";s:4:\"href\";s:64:\"https://www.watchhill.ca/wp-admin/nav-menus.php?action=locations\";s:5:\"group\";b:0;s:4:\"meta\";a:3:{s:5:\"title\";s:22:\"Theme Location Manager\";s:6:\"target\";s:6:\"_blank\";s:5:\"class\";s:0:\"\";}}s:22:\"ubermenu_knowledgebase\";O:8:\"stdClass\":6:{s:2:\"id\";s:22:\"ubermenu_knowledgebase\";s:5:\"title\";s:13:\"Knowledgebase\";s:6:\"parent\";s:8:\"ubermenu\";s:4:\"href\";s:37:\"http://sevenspark.com/docs/ubermenu-3\";s:5:\"group\";b:0;s:4:\"meta\";a:3:{s:5:\"title\";s:38:\"UberMenu Knowledgebase / Support Guide\";s:6:\"target\";s:6:\"_blank\";s:5:\"class\";s:0:\"\";}}s:13:\"ubermenu_docs\";O:8:\"stdClass\":6:{s:2:\"id\";s:13:\"ubermenu_docs\";s:5:\"title\";s:13:\"Documentation\";s:6:\"parent\";s:22:\"ubermenu_knowledgebase\";s:4:\"href\";s:37:\"http://sevenspark.com/docs/ubermenu-3\";s:5:\"group\";b:0;s:4:\"meta\";a:3:{s:5:\"title\";s:38:\"UberMenu Knowledgebase / Support Guide\";s:6:\"target\";s:6:\"_blank\";s:5:\"class\";s:0:\"\";}}s:24:\"ubermenu_video_tutorials\";O:8:\"stdClass\":6:{s:2:\"id\";s:24:\"ubermenu_video_tutorials\";s:5:\"title\";s:15:\"Video Tutorials\";s:6:\"parent\";s:22:\"ubermenu_knowledgebase\";s:4:\"href\";s:53:\"http://sevenspark.com/docs/ubermenu-3/video-tutorials\";s:5:\"group\";b:0;s:4:\"meta\";a:3:{s:5:\"title\";s:24:\"UberMenu Video Tutorials\";s:6:\"target\";s:6:\"_blank\";s:5:\"class\";s:0:\"\";}}s:23:\"ubermenu_troubleshooter\";O:8:\"stdClass\":6:{s:2:\"id\";s:23:\"ubermenu_troubleshooter\";s:5:\"title\";s:14:\"Troubleshooter\";s:6:\"parent\";s:8:\"ubermenu\";s:4:\"href\";s:20:\"http://goo.gl/Cyodwh\";s:5:\"group\";b:0;s:4:\"meta\";a:3:{s:5:\"title\";s:23:\"UberMenu Troubleshooter\";s:6:\"target\";s:6:\"_blank\";s:5:\"class\";s:0:\"\";}}s:16:\"ubermenu_support\";O:8:\"stdClass\":6:{s:2:\"id\";s:16:\"ubermenu_support\";s:5:\"title\";s:14:\"Support / Help\";s:6:\"parent\";s:8:\"ubermenu\";s:4:\"href\";s:451:\"http://sevenspark.com/help?src=ubermenu_plugin&product_id=1&site_url=https%3A%2F%2Fwww.watchhill.ca&version=3.2.3&timezone=America%2FToronto&theme=Watch+Hill+B%26amp%3BB+2017&theme_link=%3Ca+target%3D%22_blank%22+href%3D%22http%3A%2F%2Fwww.watchhill.ca%2F%22%3EWatch+Hill+B%26amp%3BB+2017+v2.3.0+by+TechnicalitiesPlus+Inc.%3C%2Fa%3E&theme_slug=watch-hill-2017&theme_parent=genesis&first_name=James&last_name=Carruthers&email=m.j.carruthers%40gmail.com\";s:5:\"group\";b:0;s:4:\"meta\";a:3:{s:5:\"title\";s:23:\"UberMenu Support Center\";s:6:\"target\";s:6:\"_blank\";s:5:\"class\";s:0:\"\";}}s:13:\"top-secondary\";O:8:\"stdClass\":6:{s:2:\"id\";s:13:\"top-secondary\";s:5:\"title\";b:0;s:6:\"parent\";b:0;s:4:\"href\";b:0;s:5:\"group\";b:1;s:4:\"meta\";a:1:{s:5:\"class\";s:16:\"ab-top-secondary\";}}s:16:\"wp-logo-external\";O:8:\"stdClass\":6:{s:2:\"id\";s:16:\"wp-logo-external\";s:5:\"title\";b:0;s:6:\"parent\";s:7:\"wp-logo\";s:4:\"href\";b:0;s:5:\"group\";b:1;s:4:\"meta\";a:1:{s:5:\"class\";s:16:\"ab-sub-secondary\";}}s:16:\"members-new-role\";O:8:\"stdClass\":6:{s:2:\"id\";s:16:\"members-new-role\";s:5:\"title\";s:4:\"Role\";s:6:\"parent\";s:11:\"new-content\";s:4:\"href\";s:57:\"https://www.watchhill.ca/wp-admin/users.php?page=role-new\";s:5:\"group\";b:0;s:4:\"meta\";a:0:{}}}s:52:\"mw_adminimize_disabled_admin_bar_administrator_items\";a:0:{}s:45:\"mw_adminimize_disabled_admin_bar_editor_items\";a:0:{}s:45:\"mw_adminimize_disabled_admin_bar_author_items\";a:0:{}s:50:\"mw_adminimize_disabled_admin_bar_contributor_items\";a:0:{}s:49:\"mw_adminimize_disabled_admin_bar_subscriber_items\";a:0:{}s:19:\"mw_adminimize_debug\";i:0;s:28:\"mw_adminimize_multiple_roles\";i:0;s:29:\"mw_adminimize_support_bbpress\";i:0;s:33:\"mw_adminimize_prevent_page_access\";i:0;s:38:\"mw_adminimize_admin_bar_frontend_nodes\";a:47:{s:12:\"user-actions\";O:8:\"stdClass\":6:{s:2:\"id\";s:12:\"user-actions\";s:5:\"title\";b:0;s:6:\"parent\";s:10:\"my-account\";s:4:\"href\";b:0;s:5:\"group\";b:1;s:4:\"meta\";a:0:{}}s:9:\"user-info\";O:8:\"stdClass\":6:{s:2:\"id\";s:9:\"user-info\";s:5:\"title\";s:76:\"<span class=\'display-name\'>Saskia</span><span class=\'username\'>saskia</span>\";s:6:\"parent\";s:12:\"user-actions\";s:4:\"href\";s:45:\"https://www.watchhill.ca/wp-admin/profile.php\";s:5:\"group\";b:0;s:4:\"meta\";a:1:{s:8:\"tabindex\";i:-1;}}s:12:\"edit-profile\";O:8:\"stdClass\":6:{s:2:\"id\";s:12:\"edit-profile\";s:5:\"title\";s:15:\"Edit My Profile\";s:6:\"parent\";s:12:\"user-actions\";s:4:\"href\";s:45:\"https://www.watchhill.ca/wp-admin/profile.php\";s:5:\"group\";b:0;s:4:\"meta\";a:0:{}}s:6:\"logout\";O:8:\"stdClass\":6:{s:2:\"id\";s:6:\"logout\";s:5:\"title\";s:7:\"Log Out\";s:6:\"parent\";s:12:\"user-actions\";s:4:\"href\";s:75:\"https://www.watchhill.ca/wp-login.php?action=logout&amp;_wpnonce=bbb383ad6b\";s:5:\"group\";b:0;s:4:\"meta\";a:0:{}}s:6:\"search\";O:8:\"stdClass\":6:{s:2:\"id\";s:6:\"search\";s:5:\"title\";s:311:\"<form action=\"https://www.watchhill.ca/\" method=\"get\" id=\"adminbarsearch\"><input class=\"adminbar-input\" name=\"s\" id=\"adminbar-search\" type=\"text\" value=\"\" maxlength=\"150\" /><label for=\"adminbar-search\" class=\"screen-reader-text\">Search</label><input type=\"submit\" class=\"adminbar-button\" value=\"Search\"/></form>\";s:6:\"parent\";s:13:\"top-secondary\";s:4:\"href\";b:0;s:5:\"group\";b:0;s:4:\"meta\";a:2:{s:5:\"class\";s:16:\"admin-bar-search\";s:8:\"tabindex\";i:-1;}}s:10:\"my-account\";O:8:\"stdClass\":6:{s:2:\"id\";s:10:\"my-account\";s:5:\"title\";s:13:\"Howdy, Saskia\";s:6:\"parent\";s:13:\"top-secondary\";s:4:\"href\";s:45:\"https://www.watchhill.ca/wp-admin/profile.php\";s:5:\"group\";b:0;s:4:\"meta\";a:1:{s:5:\"class\";s:0:\"\";}}s:7:\"wp-logo\";O:8:\"stdClass\":6:{s:2:\"id\";s:7:\"wp-logo\";s:5:\"title\";s:84:\"<span class=\"ab-icon\"></span><span class=\"screen-reader-text\">About WordPress</span>\";s:6:\"parent\";b:0;s:4:\"href\";s:43:\"https://www.watchhill.ca/wp-admin/about.php\";s:5:\"group\";b:0;s:4:\"meta\";a:0:{}}s:5:\"about\";O:8:\"stdClass\":6:{s:2:\"id\";s:5:\"about\";s:5:\"title\";s:15:\"About WordPress\";s:6:\"parent\";s:7:\"wp-logo\";s:4:\"href\";s:43:\"https://www.watchhill.ca/wp-admin/about.php\";s:5:\"group\";b:0;s:4:\"meta\";a:0:{}}s:5:\"wporg\";O:8:\"stdClass\":6:{s:2:\"id\";s:5:\"wporg\";s:5:\"title\";s:13:\"WordPress.org\";s:6:\"parent\";s:16:\"wp-logo-external\";s:4:\"href\";s:28:\"https://en-ca.wordpress.org/\";s:5:\"group\";b:0;s:4:\"meta\";a:0:{}}s:13:\"documentation\";O:8:\"stdClass\":6:{s:2:\"id\";s:13:\"documentation\";s:5:\"title\";s:13:\"Documentation\";s:6:\"parent\";s:16:\"wp-logo-external\";s:4:\"href\";s:28:\"https://codex.wordpress.org/\";s:5:\"group\";b:0;s:4:\"meta\";a:0:{}}s:14:\"support-forums\";O:8:\"stdClass\":6:{s:2:\"id\";s:14:\"support-forums\";s:5:\"title\";s:14:\"Support Forums\";s:6:\"parent\";s:16:\"wp-logo-external\";s:4:\"href\";s:30:\"https://wordpress.org/support/\";s:5:\"group\";b:0;s:4:\"meta\";a:0:{}}s:8:\"feedback\";O:8:\"stdClass\":6:{s:2:\"id\";s:8:\"feedback\";s:5:\"title\";s:8:\"Feedback\";s:6:\"parent\";s:16:\"wp-logo-external\";s:4:\"href\";s:57:\"https://wordpress.org/support/forum/requests-and-feedback\";s:5:\"group\";b:0;s:4:\"meta\";a:0:{}}s:9:\"site-name\";O:8:\"stdClass\":6:{s:2:\"id\";s:9:\"site-name\";s:5:\"title\";s:30:\"Watch Hill Bed &amp; Breakfast\";s:6:\"parent\";b:0;s:4:\"href\";s:34:\"https://www.watchhill.ca/wp-admin/\";s:5:\"group\";b:0;s:4:\"meta\";a:0:{}}s:9:\"dashboard\";O:8:\"stdClass\":6:{s:2:\"id\";s:9:\"dashboard\";s:5:\"title\";s:9:\"Dashboard\";s:6:\"parent\";s:9:\"site-name\";s:4:\"href\";s:34:\"https://www.watchhill.ca/wp-admin/\";s:5:\"group\";b:0;s:4:\"meta\";a:0:{}}s:10:\"appearance\";O:8:\"stdClass\":6:{s:2:\"id\";s:10:\"appearance\";s:5:\"title\";b:0;s:6:\"parent\";s:9:\"site-name\";s:4:\"href\";b:0;s:5:\"group\";b:1;s:4:\"meta\";a:0:{}}s:6:\"themes\";O:8:\"stdClass\":6:{s:2:\"id\";s:6:\"themes\";s:5:\"title\";s:6:\"Themes\";s:6:\"parent\";s:10:\"appearance\";s:4:\"href\";s:44:\"https://www.watchhill.ca/wp-admin/themes.php\";s:5:\"group\";b:0;s:4:\"meta\";a:0:{}}s:7:\"widgets\";O:8:\"stdClass\":6:{s:2:\"id\";s:7:\"widgets\";s:5:\"title\";s:7:\"Widgets\";s:6:\"parent\";s:10:\"appearance\";s:4:\"href\";s:45:\"https://www.watchhill.ca/wp-admin/widgets.php\";s:5:\"group\";b:0;s:4:\"meta\";a:0:{}}s:5:\"menus\";O:8:\"stdClass\":6:{s:2:\"id\";s:5:\"menus\";s:5:\"title\";s:5:\"Menus\";s:6:\"parent\";s:10:\"appearance\";s:4:\"href\";s:47:\"https://www.watchhill.ca/wp-admin/nav-menus.php\";s:5:\"group\";b:0;s:4:\"meta\";a:0:{}}s:10:\"background\";O:8:\"stdClass\":6:{s:2:\"id\";s:10:\"background\";s:5:\"title\";s:10:\"Background\";s:6:\"parent\";s:10:\"appearance\";s:4:\"href\";s:67:\"https://www.watchhill.ca/wp-admin/themes.php?page=custom-background\";s:5:\"group\";b:0;s:4:\"meta\";a:1:{s:5:\"class\";s:17:\"hide-if-customize\";}}s:9:\"customize\";O:8:\"stdClass\":6:{s:2:\"id\";s:9:\"customize\";s:5:\"title\";s:9:\"Customize\";s:6:\"parent\";b:0;s:4:\"href\";s:102:\"https://www.watchhill.ca/wp-admin/customize.php?url=https%3A%2F%2Fwww.watchhill.ca%2Faccommodations%2F\";s:5:\"group\";b:0;s:4:\"meta\";a:1:{s:5:\"class\";s:20:\"hide-if-no-customize\";}}s:7:\"updates\";O:8:\"stdClass\":6:{s:2:\"id\";s:7:\"updates\";s:5:\"title\";s:132:\"<span class=\"ab-icon\"></span><span class=\"ab-label\">7</span><span class=\"screen-reader-text\">6 Plugin Updates, 1 Theme Update</span>\";s:6:\"parent\";b:0;s:4:\"href\";s:49:\"https://www.watchhill.ca/wp-admin/update-core.php\";s:5:\"group\";b:0;s:4:\"meta\";a:1:{s:5:\"title\";s:32:\"6 Plugin Updates, 1 Theme Update\";}}s:8:\"comments\";O:8:\"stdClass\":6:{s:2:\"id\";s:8:\"comments\";s:5:\"title\";s:184:\"<span class=\"ab-icon\"></span><span class=\"ab-label awaiting-mod pending-count count-0\" aria-hidden=\"true\">0</span><span class=\"screen-reader-text\">0 comments awaiting moderation</span>\";s:6:\"parent\";b:0;s:4:\"href\";s:51:\"https://www.watchhill.ca/wp-admin/edit-comments.php\";s:5:\"group\";b:0;s:4:\"meta\";a:0:{}}s:11:\"new-content\";O:8:\"stdClass\":6:{s:2:\"id\";s:11:\"new-content\";s:5:\"title\";s:62:\"<span class=\"ab-icon\"></span><span class=\"ab-label\">New</span>\";s:6:\"parent\";b:0;s:4:\"href\";s:46:\"https://www.watchhill.ca/wp-admin/post-new.php\";s:5:\"group\";b:0;s:4:\"meta\";a:0:{}}s:8:\"new-post\";O:8:\"stdClass\":6:{s:2:\"id\";s:8:\"new-post\";s:5:\"title\";s:4:\"Post\";s:6:\"parent\";s:11:\"new-content\";s:4:\"href\";s:46:\"https://www.watchhill.ca/wp-admin/post-new.php\";s:5:\"group\";b:0;s:4:\"meta\";a:0:{}}s:9:\"new-media\";O:8:\"stdClass\":6:{s:2:\"id\";s:9:\"new-media\";s:5:\"title\";s:5:\"Media\";s:6:\"parent\";s:11:\"new-content\";s:4:\"href\";s:47:\"https://www.watchhill.ca/wp-admin/media-new.php\";s:5:\"group\";b:0;s:4:\"meta\";a:0:{}}s:8:\"new-page\";O:8:\"stdClass\":6:{s:2:\"id\";s:8:\"new-page\";s:5:\"title\";s:4:\"Page\";s:6:\"parent\";s:11:\"new-content\";s:4:\"href\";s:61:\"https://www.watchhill.ca/wp-admin/post-new.php?post_type=page\";s:5:\"group\";b:0;s:4:\"meta\";a:0:{}}s:14:\"new-foogallery\";O:8:\"stdClass\":6:{s:2:\"id\";s:14:\"new-foogallery\";s:5:\"title\";s:7:\"Gallery\";s:6:\"parent\";s:11:\"new-content\";s:4:\"href\";s:67:\"https://www.watchhill.ca/wp-admin/post-new.php?post_type=foogallery\";s:5:\"group\";b:0;s:4:\"meta\";a:0:{}}s:8:\"new-user\";O:8:\"stdClass\":6:{s:2:\"id\";s:8:\"new-user\";s:5:\"title\";s:4:\"User\";s:6:\"parent\";s:11:\"new-content\";s:4:\"href\";s:46:\"https://www.watchhill.ca/wp-admin/user-new.php\";s:5:\"group\";b:0;s:4:\"meta\";a:0:{}}s:4:\"edit\";O:8:\"stdClass\":6:{s:2:\"id\";s:4:\"edit\";s:5:\"title\";s:9:\"Edit Page\";s:6:\"parent\";b:0;s:4:\"href\";s:66:\"https://www.watchhill.ca/wp-admin/post.php?post=15&amp;action=edit\";s:5:\"group\";b:0;s:4:\"meta\";a:0:{}}s:8:\"ubermenu\";O:8:\"stdClass\":6:{s:2:\"id\";s:8:\"ubermenu\";s:5:\"title\";s:36:\"<i class=\"fa fa-gears\"></i> UberMenu\";s:6:\"parent\";b:0;s:4:\"href\";s:67:\"https://www.watchhill.ca/wp-admin/themes.php?page=ubermenu-settings\";s:5:\"group\";b:0;s:4:\"meta\";a:1:{s:5:\"title\";s:8:\"UberMenu\";}}s:18:\"ubermenu_customize\";O:8:\"stdClass\":6:{s:2:\"id\";s:18:\"ubermenu_customize\";s:5:\"title\";s:35:\"<i class=\"fa fa-eye\"></i> Customize\";s:6:\"parent\";s:8:\"ubermenu\";s:4:\"href\";s:47:\"https://www.watchhill.ca/wp-admin/customize.php\";s:5:\"group\";b:0;s:4:\"meta\";a:3:{s:5:\"title\";s:31:\"Configure the UberMenu Settings\";s:6:\"target\";s:6:\"_blank\";s:5:\"class\";s:0:\"\";}}s:22:\"ubermenu_control_panel\";O:8:\"stdClass\":6:{s:2:\"id\";s:22:\"ubermenu_control_panel\";s:5:\"title\";s:52:\"<i class=\"fa fa-sliders\"></i> UberMenu Control Panel\";s:6:\"parent\";s:8:\"ubermenu\";s:4:\"href\";s:67:\"https://www.watchhill.ca/wp-admin/themes.php?page=ubermenu-settings\";s:5:\"group\";b:0;s:4:\"meta\";a:3:{s:5:\"title\";s:61:\"<i class=\"fa fa-sliders\"></i> Configure the UberMenu Settings\";s:6:\"target\";s:6:\"_blank\";s:5:\"class\";s:0:\"\";}}s:19:\"ubermenu_edit_menus\";O:8:\"stdClass\":6:{s:2:\"id\";s:19:\"ubermenu_edit_menus\";s:5:\"title\";s:39:\"<i class=\"fa fa-pencil\"></i> Edit Menus\";s:6:\"parent\";s:8:\"ubermenu\";s:4:\"href\";s:47:\"https://www.watchhill.ca/wp-admin/nav-menus.php\";s:5:\"group\";b:0;s:4:\"meta\";a:3:{s:5:\"title\";s:37:\"Add, remove, and configure menu items\";s:6:\"target\";s:6:\"_blank\";s:5:\"class\";s:0:\"\";}}s:29:\"ubermenu_edit_menus_main-menu\";O:8:\"stdClass\":6:{s:2:\"id\";s:29:\"ubermenu_edit_menus_main-menu\";s:5:\"title\";s:9:\"Main Menu\";s:6:\"parent\";s:19:\"ubermenu_edit_menus\";s:4:\"href\";s:66:\"https://www.watchhill.ca/wp-admin/nav-menus.php?action=edit&menu=2\";s:5:\"group\";b:0;s:4:\"meta\";a:3:{s:5:\"title\";s:19:\"Configure Main Menu\";s:6:\"target\";s:6:\"_blank\";s:5:\"class\";s:0:\"\";}}s:21:\"ubermenu_assign_menus\";O:8:\"stdClass\":6:{s:2:\"id\";s:21:\"ubermenu_assign_menus\";s:5:\"title\";s:39:\"<i class=\"fa fa-bars\"></i> Assign Menus\";s:6:\"parent\";s:8:\"ubermenu\";s:4:\"href\";s:64:\"https://www.watchhill.ca/wp-admin/nav-menus.php?action=locations\";s:5:\"group\";b:0;s:4:\"meta\";a:3:{s:5:\"title\";s:22:\"Theme Location Manager\";s:6:\"target\";s:6:\"_blank\";s:5:\"class\";s:0:\"\";}}s:22:\"ubermenu_knowledgebase\";O:8:\"stdClass\":6:{s:2:\"id\";s:22:\"ubermenu_knowledgebase\";s:5:\"title\";s:40:\"<i class=\"fa fa-book\"></i> Knowledgebase\";s:6:\"parent\";s:8:\"ubermenu\";s:4:\"href\";s:37:\"http://sevenspark.com/docs/ubermenu-3\";s:5:\"group\";b:0;s:4:\"meta\";a:3:{s:5:\"title\";s:38:\"UberMenu Knowledgebase / Support Guide\";s:6:\"target\";s:6:\"_blank\";s:5:\"class\";s:0:\"\";}}s:13:\"ubermenu_docs\";O:8:\"stdClass\":6:{s:2:\"id\";s:13:\"ubermenu_docs\";s:5:\"title\";s:40:\"<i class=\"fa fa-book\"></i> Documentation\";s:6:\"parent\";s:22:\"ubermenu_knowledgebase\";s:4:\"href\";s:37:\"http://sevenspark.com/docs/ubermenu-3\";s:5:\"group\";b:0;s:4:\"meta\";a:3:{s:5:\"title\";s:38:\"UberMenu Knowledgebase / Support Guide\";s:6:\"target\";s:6:\"_blank\";s:5:\"class\";s:0:\"\";}}s:24:\"ubermenu_video_tutorials\";O:8:\"stdClass\":6:{s:2:\"id\";s:24:\"ubermenu_video_tutorials\";s:5:\"title\";s:50:\"<i class=\"fa fa-video-camera\"></i> Video Tutorials\";s:6:\"parent\";s:22:\"ubermenu_knowledgebase\";s:4:\"href\";s:53:\"http://sevenspark.com/docs/ubermenu-3/video-tutorials\";s:5:\"group\";b:0;s:4:\"meta\";a:3:{s:5:\"title\";s:24:\"UberMenu Video Tutorials\";s:6:\"target\";s:6:\"_blank\";s:5:\"class\";s:0:\"\";}}s:23:\"ubermenu_troubleshooter\";O:8:\"stdClass\":6:{s:2:\"id\";s:23:\"ubermenu_troubleshooter\";s:5:\"title\";s:43:\"<i class=\"fa fa-wrench\"></i> Troubleshooter\";s:6:\"parent\";s:8:\"ubermenu\";s:4:\"href\";s:20:\"http://goo.gl/Cyodwh\";s:5:\"group\";b:0;s:4:\"meta\";a:3:{s:5:\"title\";s:23:\"UberMenu Troubleshooter\";s:6:\"target\";s:6:\"_blank\";s:5:\"class\";s:0:\"\";}}s:16:\"ubermenu_support\";O:8:\"stdClass\":6:{s:2:\"id\";s:16:\"ubermenu_support\";s:5:\"title\";s:46:\"<i class=\"fa fa-life-ring\"></i> Support / Help\";s:6:\"parent\";s:8:\"ubermenu\";s:4:\"href\";s:442:\"http://sevenspark.com/help?src=ubermenu_plugin&product_id=1&site_url=https%3A%2F%2Fwww.watchhill.ca&version=3.2.3&timezone=America%2FToronto&theme=Watch+Hill+B%26amp%3BB+2017&theme_link=%3Ca+target%3D%22_blank%22+href%3D%22http%3A%2F%2Fwww.watchhill.ca%2F%22%3EWatch+Hill+B%26amp%3BB+2017+v2.3.0+by+TechnicalitiesPlus+Inc.%3C%2Fa%3E&theme_slug=watch-hill-2017&theme_parent=genesis&first_name=Saskia&last_name=&email=saskia%40technicalities.ca\";s:5:\"group\";b:0;s:4:\"meta\";a:3:{s:5:\"title\";s:23:\"UberMenu Support Center\";s:6:\"target\";s:6:\"_blank\";s:5:\"class\";s:0:\"\";}}s:20:\"ubermenu_diagnostics\";O:8:\"stdClass\":6:{s:2:\"id\";s:20:\"ubermenu_diagnostics\";s:5:\"title\";s:53:\"<i class=\"fa fa-stethoscope\"></i> Diagnostics (Alpha)\";s:6:\"parent\";s:8:\"ubermenu\";s:4:\"href\";s:1:\"#\";s:5:\"group\";b:0;s:4:\"meta\";a:2:{s:5:\"title\";s:67:\"Load diagnostics script (experimental feature in Alpha development)\";s:5:\"class\";s:34:\"ubermenu-diagnostics-loader-button\";}}s:16:\"ubermenu_loading\";O:8:\"stdClass\":6:{s:2:\"id\";s:16:\"ubermenu_loading\";s:5:\"title\";s:71:\"<i class=\"fa fa-exclamation-triangle\"></i>  UberMenu waiting to load...\";s:6:\"parent\";b:0;s:4:\"href\";s:1:\"#\";s:5:\"group\";b:0;s:4:\"meta\";a:0:{}}s:20:\"ubermenu_loading_msg\";O:8:\"stdClass\":6:{s:2:\"id\";s:20:\"ubermenu_loading_msg\";s:5:\"title\";s:361:\"If this message does not disappear, it means that UberMenu\'s javascript has not been able to load.  This most commonly indicates that you have a javascript error on this page, which will need to be resolved in order to allow UberMenu to run - or that your UberMenu javascript is not being loaded, for example if your theme does not include the wp_footer() hook.\";s:6:\"parent\";s:16:\"ubermenu_loading\";s:4:\"href\";s:20:\"http://goo.gl/uV5wCA\";s:5:\"group\";b:0;s:4:\"meta\";a:1:{s:6:\"target\";s:6:\"_blank\";}}s:5:\"stats\";O:8:\"stdClass\":6:{s:2:\"id\";s:5:\"stats\";s:5:\"title\";s:485:\"<div><script type=\'text/javascript\'>var src;if(typeof(window.devicePixelRatio)==\'undefined\'||window.devicePixelRatio<2){src=\'https://www.watchhill.ca/wp-admin/admin.php?page=stats&amp;noheader&amp;proxy&amp;chart=admin-bar-hours-scale\';}else{src=\'https://www.watchhill.ca/wp-admin/admin.php?page=stats&amp;noheader&amp;proxy&amp;chart=admin-bar-hours-scale-2x\';}document.write(\'<img src=\'\'+src+\'\' alt=\'Stats\' title=\'Views over 48 hours. Click for more Site Stats.\' />\');</script></div>\";s:6:\"parent\";b:0;s:4:\"href\";s:54:\"https://www.watchhill.ca/wp-admin/admin.php?page=stats\";s:5:\"group\";b:0;s:4:\"meta\";a:0:{}}s:13:\"top-secondary\";O:8:\"stdClass\":6:{s:2:\"id\";s:13:\"top-secondary\";s:5:\"title\";b:0;s:6:\"parent\";b:0;s:4:\"href\";b:0;s:5:\"group\";b:1;s:4:\"meta\";a:1:{s:5:\"class\";s:16:\"ab-top-secondary\";}}s:16:\"wp-logo-external\";O:8:\"stdClass\":6:{s:2:\"id\";s:16:\"wp-logo-external\";s:5:\"title\";b:0;s:6:\"parent\";s:7:\"wp-logo\";s:4:\"href\";b:0;s:5:\"group\";b:1;s:4:\"meta\";a:1:{s:5:\"class\";s:16:\"ab-sub-secondary\";}}s:16:\"members-new-role\";O:8:\"stdClass\":6:{s:2:\"id\";s:16:\"members-new-role\";s:5:\"title\";s:4:\"Role\";s:6:\"parent\";s:11:\"new-content\";s:4:\"href\";s:57:\"https://www.watchhill.ca/wp-admin/users.php?page=role-new\";s:5:\"group\";b:0;s:4:\"meta\";a:0:{}}}s:61:\"mw_adminimize_disabled_admin_bar_frontend_administrator_items\";a:0:{}s:54:\"mw_adminimize_disabled_admin_bar_frontend_editor_items\";a:0:{}s:54:\"mw_adminimize_disabled_admin_bar_frontend_author_items\";a:0:{}s:59:\"mw_adminimize_disabled_admin_bar_frontend_contributor_items\";a:0:{}s:58:\"mw_adminimize_disabled_admin_bar_frontend_subscriber_items\";a:0:{}s:24:\"_mw_adminimize_user_info\";i:0;s:21:\"_mw_adminimize_footer\";i:0;s:21:\"_mw_adminimize_header\";i:0;s:34:\"_mw_adminimize_exclude_super_admin\";i:0;s:24:\"_mw_adminimize_tb_window\";i:0;s:23:\"_mw_adminimize_cat_full\";i:0;s:26:\"_mw_adminimize_db_redirect\";i:0;s:26:\"_mw_adminimize_ui_redirect\";i:0;s:21:\"_mw_adminimize_advice\";i:0;s:25:\"_mw_adminimize_advice_txt\";s:0:\"\";s:24:\"_mw_adminimize_timestamp\";i:0;s:30:\"_mw_adminimize_db_redirect_txt\";s:0:\"\";s:47:\"mw_adminimize_disabled_menu_administrator_items\";a:0:{}s:50:\"mw_adminimize_disabled_submenu_administrator_items\";a:0:{}s:40:\"mw_adminimize_disabled_menu_editor_items\";a:0:{}s:43:\"mw_adminimize_disabled_submenu_editor_items\";a:5:{i:0;s:13:\"themes.php__5\";i:1;s:13:\"themes.php__6\";i:2;s:13:\"themes.php__7\";i:3;s:14:\"themes.php__20\";i:4;s:14:\"themes.php__23\";}s:40:\"mw_adminimize_disabled_menu_author_items\";a:0:{}s:43:\"mw_adminimize_disabled_submenu_author_items\";a:0:{}s:45:\"mw_adminimize_disabled_menu_contributor_items\";a:0:{}s:48:\"mw_adminimize_disabled_submenu_contributor_items\";a:0:{}s:44:\"mw_adminimize_disabled_menu_subscriber_items\";a:0:{}s:47:\"mw_adminimize_disabled_submenu_subscriber_items\";a:0:{}s:28:\"_mw_adminimize_own_menu_slug\";s:0:\"\";s:35:\"_mw_adminimize_own_menu_custom_slug\";s:0:\"\";s:56:\"mw_adminimize_disabled_global_option_administrator_items\";a:0:{}s:57:\"mw_adminimize_disabled_metaboxes_post_administrator_items\";a:0:{}s:57:\"mw_adminimize_disabled_metaboxes_page_administrator_items\";a:0:{}s:54:\"mw_adminimize_disabled_link_option_administrator_items\";a:0:{}s:58:\"mw_adminimize_disabled_nav_menu_option_administrator_items\";a:0:{}s:56:\"mw_adminimize_disabled_widget_option_administrator_items\";a:0:{}s:59:\"mw_adminimize_disabled_dashboard_option_administrator_items\";a:0:{}s:49:\"mw_adminimize_disabled_global_option_editor_items\";a:0:{}s:50:\"mw_adminimize_disabled_metaboxes_post_editor_items\";a:0:{}s:50:\"mw_adminimize_disabled_metaboxes_page_editor_items\";a:0:{}s:47:\"mw_adminimize_disabled_link_option_editor_items\";a:0:{}s:51:\"mw_adminimize_disabled_nav_menu_option_editor_items\";a:0:{}s:49:\"mw_adminimize_disabled_widget_option_editor_items\";a:0:{}s:52:\"mw_adminimize_disabled_dashboard_option_editor_items\";a:0:{}s:49:\"mw_adminimize_disabled_global_option_author_items\";a:0:{}s:50:\"mw_adminimize_disabled_metaboxes_post_author_items\";a:0:{}s:50:\"mw_adminimize_disabled_metaboxes_page_author_items\";a:0:{}s:47:\"mw_adminimize_disabled_link_option_author_items\";a:0:{}s:51:\"mw_adminimize_disabled_nav_menu_option_author_items\";a:0:{}s:49:\"mw_adminimize_disabled_widget_option_author_items\";a:0:{}s:52:\"mw_adminimize_disabled_dashboard_option_author_items\";a:0:{}s:54:\"mw_adminimize_disabled_global_option_contributor_items\";a:0:{}s:55:\"mw_adminimize_disabled_metaboxes_post_contributor_items\";a:0:{}s:55:\"mw_adminimize_disabled_metaboxes_page_contributor_items\";a:0:{}s:52:\"mw_adminimize_disabled_link_option_contributor_items\";a:0:{}s:56:\"mw_adminimize_disabled_nav_menu_option_contributor_items\";a:0:{}s:54:\"mw_adminimize_disabled_widget_option_contributor_items\";a:0:{}s:57:\"mw_adminimize_disabled_dashboard_option_contributor_items\";a:0:{}s:53:\"mw_adminimize_disabled_global_option_subscriber_items\";a:0:{}s:54:\"mw_adminimize_disabled_metaboxes_post_subscriber_items\";a:0:{}s:54:\"mw_adminimize_disabled_metaboxes_page_subscriber_items\";a:0:{}s:51:\"mw_adminimize_disabled_link_option_subscriber_items\";a:0:{}s:55:\"mw_adminimize_disabled_nav_menu_option_subscriber_items\";a:0:{}s:53:\"mw_adminimize_disabled_widget_option_subscriber_items\";a:0:{}s:56:\"mw_adminimize_disabled_dashboard_option_subscriber_items\";a:0:{}s:25:\"_mw_adminimize_own_values\";s:0:\"\";s:26:\"_mw_adminimize_own_options\";s:0:\"\";s:30:\"_mw_adminimize_own_post_values\";s:0:\"\";s:31:\"_mw_adminimize_own_post_options\";s:0:\"\";s:30:\"_mw_adminimize_own_page_values\";s:0:\"\";s:31:\"_mw_adminimize_own_page_options\";s:0:\"\";s:30:\"_mw_adminimize_own_link_values\";s:0:\"\";s:31:\"_mw_adminimize_own_link_options\";s:0:\"\";s:34:\"_mw_adminimize_own_nav_menu_values\";s:0:\"\";s:35:\"_mw_adminimize_own_nav_menu_options\";s:0:\"\";s:32:\"_mw_adminimize_own_widget_values\";s:0:\"\";s:33:\"_mw_adminimize_own_widget_options\";s:0:\"\";s:35:\"_mw_adminimize_own_dashboard_values\";s:0:\"\";s:36:\"_mw_adminimize_own_dashboard_options\";s:0:\"\";s:31:\"mw_adminimize_dashboard_widgets\";a:5:{s:19:\"dashboard_right_now\";a:4:{s:2:\"id\";s:19:\"dashboard_right_now\";s:5:\"title\";s:11:\"At a Glance\";s:7:\"context\";s:6:\"normal\";s:8:\"priority\";s:4:\"core\";}s:18:\"dashboard_activity\";a:4:{s:2:\"id\";s:18:\"dashboard_activity\";s:5:\"title\";s:8:\"Activity\";s:7:\"context\";s:6:\"normal\";s:8:\"priority\";s:4:\"core\";}s:22:\"jetpack_summary_widget\";a:4:{s:2:\"id\";s:22:\"jetpack_summary_widget\";s:5:\"title\";s:10:\"Site Stats\";s:7:\"context\";s:6:\"normal\";s:8:\"priority\";s:4:\"core\";}s:21:\"dashboard_quick_press\";a:4:{s:2:\"id\";s:21:\"dashboard_quick_press\";s:5:\"title\";s:0:\"\";s:7:\"context\";s:4:\"side\";s:8:\"priority\";s:4:\"core\";}s:17:\"dashboard_primary\";a:4:{s:2:\"id\";s:17:\"dashboard_primary\";s:5:\"title\";s:25:\"WordPress Events and News\";s:7:\"context\";s:4:\"side\";s:8:\"priority\";s:4:\"core\";}}s:26:\"mw_adminimize_default_menu\";a:21:{i:0;a:7:{i:0;s:9:\"Dashboard\";i:1;s:4:\"read\";i:2;s:9:\"index.php\";i:3;s:0:\"\";i:4;s:58:\"menu-top menu-top-first menu-icon-dashboard menu-top-first\";i:5;s:14:\"menu-dashboard\";i:6;s:19:\"dashicons-dashboard\";}i:1;a:7:{i:0;s:7:\"Jetpack\";i:1;s:18:\"jetpack_admin_page\";i:2;s:7:\"jetpack\";i:3;s:7:\"Jetpack\";i:4;s:44:\"menu-top toplevel_page_jetpack menu-top-last\";i:5;s:21:\"toplevel_page_jetpack\";i:6;s:3:\"div\";}i:2;a:5:{i:0;s:0:\"\";i:1;s:4:\"read\";i:2;s:10:\"separator1\";i:3;s:0:\"\";i:4;s:17:\"wp-menu-separator\";}i:3;a:7:{i:0;s:5:\"Posts\";i:1;s:10:\"edit_posts\";i:2;s:8:\"edit.php\";i:3;s:0:\"\";i:4;s:52:\"menu-top menu-icon-post open-if-no-js menu-top-first\";i:5;s:10:\"menu-posts\";i:6;s:20:\"dashicons-admin-post\";}i:4;a:7:{i:0;s:5:\"Media\";i:1;s:12:\"upload_files\";i:2;s:10:\"upload.php\";i:3;s:0:\"\";i:4;s:24:\"menu-top menu-icon-media\";i:5;s:10:\"menu-media\";i:6;s:21:\"dashicons-admin-media\";}i:5;a:7:{i:0;s:5:\"Pages\";i:1;s:10:\"edit_pages\";i:2;s:23:\"edit.php?post_type=page\";i:3;s:0:\"\";i:4;s:23:\"menu-top menu-icon-page\";i:5;s:10:\"menu-pages\";i:6;s:20:\"dashicons-admin-page\";}i:6;a:7:{i:0;s:87:\"Comments <span class=\"awaiting-mod count-0\"><span class=\"pending-count\">0</span></span>\";i:1;s:10:\"edit_posts\";i:2;s:17:\"edit-comments.php\";i:3;s:0:\"\";i:4;s:27:\"menu-top menu-icon-comments\";i:5;s:13:\"menu-comments\";i:6;s:24:\"dashicons-admin-comments\";}i:7;a:7:{i:0;s:10:\"FooGallery\";i:1;s:10:\"edit_posts\";i:2;s:29:\"edit.php?post_type=foogallery\";i:3;s:0:\"\";i:4;s:29:\"menu-top menu-icon-foogallery\";i:5;s:21:\"menu-posts-foogallery\";i:6;s:24:\"dashicons-format-gallery\";}i:8;a:7:{i:0;s:8:\"Feedback\";i:1;s:10:\"edit_pages\";i:2;s:27:\"edit.php?post_type=feedback\";i:3;s:0:\"\";i:4;s:41:\"menu-top menu-icon-feedback menu-top-last\";i:5;s:19:\"menu-posts-feedback\";i:6;s:18:\"dashicons-feedback\";}i:9;a:5:{i:0;s:0:\"\";i:1;s:18:\"edit_theme_options\";i:2;s:9:\"separator\";i:3;s:0:\"\";i:4;s:35:\"genesis-separator wp-menu-separator\";}i:10;a:7:{i:0;s:7:\"Genesis\";i:1;s:18:\"edit_theme_options\";i:2;s:7:\"genesis\";i:3;s:14:\"Theme Settings\";i:4;s:59:\"menu-top toplevel_page_genesis menu-top-first menu-top-last\";i:5;s:21:\"toplevel_page_genesis\";i:6;s:84:\"https://www.watchhill.ca/wp-content/themes/genesis/lib/admin/images/genesis-menu.png\";}i:11;a:5:{i:0;s:0:\"\";i:1;s:4:\"read\";i:2;s:10:\"separator2\";i:3;s:0:\"\";i:4;s:17:\"wp-menu-separator\";}i:12;a:7:{i:0;s:10:\"Appearance\";i:1;s:13:\"switch_themes\";i:2;s:10:\"themes.php\";i:3;s:0:\"\";i:4;s:44:\"menu-top menu-icon-appearance menu-top-first\";i:5;s:15:\"menu-appearance\";i:6;s:26:\"dashicons-admin-appearance\";}i:13;a:7:{i:0;s:87:\"Plugins <span class=\'update-plugins count-0\'><span class=\'plugin-count\'>0</span></span>\";i:1;s:16:\"activate_plugins\";i:2;s:11:\"plugins.php\";i:3;s:0:\"\";i:4;s:26:\"menu-top menu-icon-plugins\";i:5;s:12:\"menu-plugins\";i:6;s:23:\"dashicons-admin-plugins\";}i:14;a:7:{i:0;s:5:\"Users\";i:1;s:10:\"list_users\";i:2;s:9:\"users.php\";i:3;s:0:\"\";i:4;s:24:\"menu-top menu-icon-users\";i:5;s:10:\"menu-users\";i:6;s:21:\"dashicons-admin-users\";}i:15;a:7:{i:0;s:5:\"Tools\";i:1;s:10:\"edit_posts\";i:2;s:9:\"tools.php\";i:3;s:0:\"\";i:4;s:24:\"menu-top menu-icon-tools\";i:5;s:10:\"menu-tools\";i:6;s:21:\"dashicons-admin-tools\";}i:16;a:7:{i:0;s:8:\"Settings\";i:1;s:14:\"manage_options\";i:2;s:19:\"options-general.php\";i:3;s:0:\"\";i:4;s:41:\"menu-top menu-icon-settings menu-top-last\";i:5;s:13:\"menu-settings\";i:6;s:24:\"dashicons-admin-settings\";}i:17;a:5:{i:0;s:0:\"\";i:1;s:4:\"read\";i:2;s:14:\"separator-last\";i:3;s:0:\"\";i:4;s:17:\"wp-menu-separator\";}i:18;a:7:{i:0;s:6:\"FooBox\";i:1;s:14:\"manage_options\";i:2;s:21:\"foobox-image-lightbox\";i:3;s:27:\"Getting Started With FooBox\";i:4;s:59:\"menu-top toplevel_page_foobox-image-lightbox menu-top-first\";i:5;s:35:\"toplevel_page_foobox-image-lightbox\";i:6;s:19:\"dashicons-grid-view\";}i:19;a:7:{i:0;s:165:\"Wordfence <span class=\'update-plugins wf-menu-badge wf-notification-count-container\' title=\'1\'><span class=\'update-count wf-notification-count-value\'>1</span></span>\";i:1;s:16:\"activate_plugins\";i:2;s:9:\"Wordfence\";i:3;s:9:\"Wordfence\";i:4;s:32:\"menu-top toplevel_page_Wordfence\";i:5;s:23:\"toplevel_page_Wordfence\";i:6;s:85:\"https://www.watchhill.ca/wp-content/plugins/wordfence/images/wordfence-logo-16x16.png\";}i:20;a:7:{i:0;s:11:\"Meta Slider\";i:1;s:17:\"edit_others_posts\";i:2;s:10:\"metaslider\";i:3;s:11:\"Meta Slider\";i:4;s:65:\"menu-top menu-icon-generic toplevel_page_metaslider menu-top-last\";i:5;s:24:\"toplevel_page_metaslider\";i:6;s:23:\"dashicons-admin-generic\";}}s:29:\"mw_adminimize_default_submenu\";a:18:{s:9:\"index.php\";a:2:{i:0;a:3:{i:0;s:4:\"Home\";i:1;s:4:\"read\";i:2;s:9:\"index.php\";}i:10;a:3:{i:0;s:87:\"Updates <span class=\'update-plugins count-0\'><span class=\'update-count\'>0</span></span>\";i:1;s:11:\"update_core\";i:2;s:15:\"update-core.php\";}}s:10:\"upload.php\";a:2:{i:5;a:3:{i:0;s:7:\"Library\";i:1;s:12:\"upload_files\";i:2;s:10:\"upload.php\";}i:10;a:3:{i:0;s:7:\"Add New\";i:1;s:12:\"upload_files\";i:2;s:13:\"media-new.php\";}}s:8:\"edit.php\";a:4:{i:5;a:3:{i:0;s:9:\"All Posts\";i:1;s:10:\"edit_posts\";i:2;s:8:\"edit.php\";}i:10;a:3:{i:0;s:7:\"Add New\";i:1;s:10:\"edit_posts\";i:2;s:12:\"post-new.php\";}i:15;a:3:{i:0;s:10:\"Categories\";i:1;s:17:\"manage_categories\";i:2;s:31:\"edit-tags.php?taxonomy=category\";}i:16;a:3:{i:0;s:4:\"Tags\";i:1;s:16:\"manage_post_tags\";i:2;s:31:\"edit-tags.php?taxonomy=post_tag\";}}s:23:\"edit.php?post_type=page\";a:2:{i:5;a:3:{i:0;s:9:\"All Pages\";i:1;s:10:\"edit_pages\";i:2;s:23:\"edit.php?post_type=page\";}i:10;a:3:{i:0;s:7:\"Add New\";i:1;s:10:\"edit_pages\";i:2;s:27:\"post-new.php?post_type=page\";}}s:29:\"edit.php?post_type=foogallery\";a:6:{i:5;a:3:{i:0;s:9:\"Galleries\";i:1;s:10:\"edit_posts\";i:2;s:29:\"edit.php?post_type=foogallery\";}i:10;a:3:{i:0;s:11:\"Add Gallery\";i:1;s:10:\"edit_posts\";i:2;s:33:\"post-new.php?post_type=foogallery\";}i:11;a:4:{i:0;s:8:\"Settings\";i:1;s:14:\"manage_options\";i:2;s:19:\"foogallery-settings\";i:3;s:19:\"FooGallery Settings\";}i:12;a:4:{i:0;s:10:\"Extensions\";i:1;s:14:\"manage_options\";i:2;s:21:\"foogallery-extensions\";i:3;s:21:\"FooGallery Extensions\";}i:13;a:4:{i:0;s:4:\"Help\";i:1;s:14:\"manage_options\";i:2;s:15:\"foogallery-help\";i:3;s:15:\"FooGallery Help\";}i:14;a:4:{i:0;s:11:\"System Info\";i:1;s:14:\"manage_options\";i:2;s:21:\"foogallery-systeminfo\";i:3;s:29:\"FooGallery System Information\";}}s:10:\"themes.php\";a:8:{i:5;a:3:{i:0;s:6:\"Themes\";i:1;s:13:\"switch_themes\";i:2;s:10:\"themes.php\";}i:6;a:5:{i:0;s:9:\"Customize\";i:1;s:9:\"customize\";i:2;s:91:\"customize.php?return=%2Fwp-admin%2Foptions-general.php%3Fpage%3Dadminimize%2Fadminimize.php\";i:3;s:0:\"\";i:4;s:20:\"hide-if-no-customize\";}i:7;a:3:{i:0;s:7:\"Widgets\";i:1;s:18:\"edit_theme_options\";i:2;s:11:\"widgets.php\";}i:10;a:3:{i:0;s:5:\"Menus\";i:1;s:18:\"edit_theme_options\";i:2;s:13:\"nav-menus.php\";}i:20;a:5:{i:0;s:10:\"Background\";i:1;s:13:\"switch_themes\";i:2;s:136:\"customize.php?return=%2Fwp-admin%2Foptions-general.php%3Fpage%3Dadminimize%2Fadminimize.php&#038;autofocus%5Bcontrol%5D=background_image\";i:3;s:0:\"\";i:4;s:20:\"hide-if-no-customize\";}i:21;a:4:{i:0;s:8:\"UberMenu\";i:1;s:14:\"manage_options\";i:2;s:17:\"ubermenu-settings\";i:3;s:17:\"UberMenu Settings\";}i:22;a:4:{i:0;s:12:\"Theme Editor\";i:1;s:11:\"edit_themes\";i:2;s:15:\"wpeditor_themes\";i:3;s:12:\"Theme Editor\";}i:23;a:4:{i:0;s:10:\"Background\";i:1;s:18:\"edit_theme_options\";i:2;s:17:\"custom-background\";i:3;s:10:\"Background\";}}s:11:\"plugins.php\";a:4:{i:5;a:3:{i:0;s:17:\"Installed Plugins\";i:1;s:16:\"activate_plugins\";i:2;s:11:\"plugins.php\";}i:10;a:3:{i:0;s:7:\"Add New\";i:1;s:15:\"install_plugins\";i:2;s:18:\"plugin-install.php\";}i:15;a:3:{i:0;s:6:\"Editor\";i:1;s:12:\"edit_plugins\";i:2;s:17:\"plugin-editor.php\";}i:16;a:4:{i:0;s:13:\"Plugin Editor\";i:1;s:12:\"edit_plugins\";i:2;s:15:\"wpeditor_plugin\";i:3;s:13:\"Plugin Editor\";}}s:9:\"users.php\";a:5:{i:5;a:3:{i:0;s:9:\"All Users\";i:1;s:10:\"list_users\";i:2;s:9:\"users.php\";}i:10;a:3:{i:0;s:7:\"Add New\";i:1;s:12:\"create_users\";i:2;s:12:\"user-new.php\";}i:15;a:3:{i:0;s:12:\"Your Profile\";i:1;s:4:\"read\";i:2;s:11:\"profile.php\";}i:16;a:4:{i:0;s:5:\"Roles\";i:1;s:10:\"edit_roles\";i:2;s:5:\"roles\";i:3;s:5:\"Roles\";}i:17;a:4:{i:0;s:12:\"Add New Role\";i:1;s:12:\"create_roles\";i:2;s:8:\"role-new\";i:3;s:12:\"Add New Role\";}}s:9:\"tools.php\";a:4:{i:5;a:3:{i:0;s:15:\"Available Tools\";i:1;s:10:\"edit_posts\";i:2;s:9:\"tools.php\";}i:10;a:3:{i:0;s:6:\"Import\";i:1;s:6:\"import\";i:2;s:10:\"import.php\";}i:15;a:3:{i:0;s:6:\"Export\";i:1;s:6:\"export\";i:2;s:10:\"export.php\";}i:16;a:4:{i:0;s:6:\"Backup\";i:1;s:6:\"import\";i:2;s:12:\"wp-db-backup\";i:3;s:6:\"Backup\";}}s:19:\"options-general.php\";a:11:{i:10;a:3:{i:0;s:7:\"General\";i:1;s:14:\"manage_options\";i:2;s:19:\"options-general.php\";}i:15;a:3:{i:0;s:7:\"Writing\";i:1;s:14:\"manage_options\";i:2;s:19:\"options-writing.php\";}i:20;a:3:{i:0;s:7:\"Reading\";i:1;s:14:\"manage_options\";i:2;s:19:\"options-reading.php\";}i:25;a:3:{i:0;s:10:\"Discussion\";i:1;s:14:\"manage_options\";i:2;s:22:\"options-discussion.php\";}i:30;a:3:{i:0;s:5:\"Media\";i:1;s:14:\"manage_options\";i:2;s:17:\"options-media.php\";}i:40;a:3:{i:0;s:10:\"Permalinks\";i:1;s:14:\"manage_options\";i:2;s:21:\"options-permalink.php\";}i:41;a:4:{i:0;s:10:\"Adminimize\";i:1;s:14:\"manage_options\";i:2;s:25:\"adminimize/adminimize.php\";i:3;s:18:\"Adminimize Options\";}i:42;a:4:{i:0;s:7:\"Members\";i:1;s:14:\"manage_options\";i:2;s:16:\"members-settings\";i:3;s:16:\"Members Settings\";}i:43;a:4:{i:0;s:15:\"WP Media Folder\";i:1;s:14:\"manage_options\";i:2;s:13:\"option-folder\";i:3;s:22:\"Setting Folder Options\";}i:44;a:4:{i:0;s:9:\"WP Editor\";i:1;s:14:\"manage_options\";i:2;s:14:\"wpeditor_admin\";i:3;s:18:\"WP Editor Settings\";}i:45;a:4:{i:0;s:3:\"SSL\";i:1;s:14:\"manage_options\";i:2;s:25:\"rlrsssl_really_simple_ssl\";i:3;s:12:\"SSL settings\";}}s:7:\"genesis\";a:4:{i:0;a:4:{i:0;s:14:\"Theme Settings\";i:1;s:18:\"edit_theme_options\";i:2;s:7:\"genesis\";i:3;s:14:\"Theme Settings\";}i:1;a:4:{i:0;s:12:\"SEO Settings\";i:1;s:18:\"edit_theme_options\";i:2;s:12:\"seo-settings\";i:3;s:22:\"Genesis - SEO Settings\";}i:2;a:4:{i:0;s:13:\"Import/Export\";i:1;s:18:\"edit_theme_options\";i:2;s:21:\"genesis-import-export\";i:3;s:23:\"Genesis - Import/Export\";}i:3;a:4:{i:0;s:12:\"Simple Hooks\";i:1;s:18:\"edit_theme_options\";i:2;s:11:\"simplehooks\";i:3;s:22:\"Genesis - Simple Hooks\";}}s:0:\"\";a:5:{i:0;a:4:{i:0;s:26:\"Freemius Debug [v.1.2.1.5]\";i:1;s:14:\"manage_options\";i:2;s:8:\"freemius\";i:3;s:26:\"Freemius Debug [v.1.2.1.5]\";}i:1;a:4:{i:0;s:0:\"\";i:1;s:14:\"manage_options\";i:2;s:16:\"jetpack-debugger\";i:3;s:24:\"Jetpack Debugging Center\";}i:2;a:4:{i:0;s:8:\"Settings\";i:1;s:22:\"jetpack_manage_modules\";i:2;s:15:\"jetpack_modules\";i:3;s:16:\"Jetpack Settings\";}i:3;a:4:{i:0;s:10:\"Omnisearch\";i:1;s:10:\"edit_posts\";i:2;s:10:\"omnisearch\";i:3;s:10:\"Omnisearch\";}i:4;a:4:{i:0;s:78:\"<span class=\"fs-submenu-item foobox-image-lightbox contact \">Contact Us</span>\";i:1;s:14:\"manage_options\";i:2;s:29:\"foobox-image-lightbox-contact\";i:3;s:40:\"FooBox Image Lightbox &ndash; Contact Us\";}}s:21:\"foobox-image-lightbox\";a:4:{i:0;a:4:{i:0;s:15:\"Getting Started\";i:1;s:14:\"manage_options\";i:2;s:21:\"foobox-image-lightbox\";i:3;s:27:\"Getting Started With FooBox\";}i:1;a:4:{i:0;s:8:\"Settings\";i:1;s:14:\"manage_options\";i:2;s:15:\"foobox-settings\";i:3;s:15:\"FooBox Settings\";}i:2;a:4:{i:0;s:84:\"<span class=\"fs-submenu-item foobox-image-lightbox wp-support-forum \">Support</span>\";i:1;s:14:\"manage_options\";i:2;s:38:\"foobox-image-lightbox-wp-support-forum\";i:3;s:7:\"Support\";}i:3;a:4:{i:0;s:107:\"<span class=\"fs-submenu-item foobox-image-lightbox pricing upgrade-mode\">Upgrade&nbsp;&nbsp;&#x27a4;</span>\";i:1;s:14:\"manage_options\";i:2;s:29:\"foobox-image-lightbox-pricing\";i:3;s:37:\"FooBox Image Lightbox &ndash; Pricing\";}}s:9:\"Wordfence\";a:8:{i:0;a:4:{i:0;s:9:\"Dashboard\";i:1;s:16:\"activate_plugins\";i:2;s:9:\"Wordfence\";i:3;s:9:\"Dashboard\";}i:1;a:4:{i:0;s:4:\"Scan\";i:1;s:16:\"activate_plugins\";i:2;s:13:\"WordfenceScan\";i:3;s:4:\"Scan\";}i:2;a:4:{i:0;s:8:\"Firewall\";i:1;s:16:\"activate_plugins\";i:2;s:12:\"WordfenceWAF\";i:3;s:8:\"Firewall\";}i:3;a:4:{i:0;s:8:\"Blocking\";i:1;s:16:\"activate_plugins\";i:2;s:17:\"WordfenceBlocking\";i:3;s:8:\"Blocking\";}i:4;a:4:{i:0;s:12:\"Live Traffic\";i:1;s:16:\"activate_plugins\";i:2;s:17:\"WordfenceActivity\";i:3;s:12:\"Live Traffic\";}i:5;a:4:{i:0;s:5:\"Tools\";i:1;s:16:\"activate_plugins\";i:2;s:14:\"WordfenceTools\";i:3;s:5:\"Tools\";}i:6;a:4:{i:0;s:7:\"Options\";i:1;s:16:\"activate_plugins\";i:2;s:15:\"WordfenceSecOpt\";i:3;s:7:\"Options\";}i:7;a:4:{i:0;s:78:\"<strong id=\"wfMenuCallout\" style=\"color: #FCB214;\">Upgrade To Premium</strong>\";i:1;s:16:\"activate_plugins\";i:2;s:25:\"WordfenceUpgradeToPremium\";i:3;s:18:\"Upgrade To Premium\";}}s:9:\"admin.php\";a:1:{i:0;a:4:{i:0;s:0:\"\";i:1;s:18:\"edit_theme_options\";i:2;s:16:\"genesis-upgraded\";i:3;s:22:\"Welcome to Genesis 2.4\";}}s:27:\"edit.php?post_type=feedback\";a:2:{i:0;a:4:{i:0;s:8:\"Feedback\";i:1;s:10:\"edit_pages\";i:2;s:27:\"edit.php?post_type=feedback\";i:3;s:0:\"\";}i:1;a:4:{i:0;s:10:\"Export CSV\";i:1;s:6:\"export\";i:2;s:15:\"feedback-export\";i:3;s:22:\"Export feedback as CSV\";}}s:7:\"jetpack\";a:2:{i:0;a:3:{i:0;s:9:\"Dashboard\";i:1;s:18:\"jetpack_admin_page\";i:2;s:67:\"https://www.watchhill.ca/wp-admin/admin.php?page=jetpack#/dashboard\";}i:1;a:3:{i:0;s:8:\"Settings\";i:1;s:18:\"jetpack_admin_page\";i:2;s:66:\"https://www.watchhill.ca/wp-admin/admin.php?page=jetpack#/settings\";}}s:10:\"metaslider\";a:2:{i:0;a:4:{i:0;s:11:\"Meta Slider\";i:1;s:17:\"edit_others_posts\";i:2;s:10:\"metaslider\";i:3;s:11:\"Meta Slider\";}i:1;a:4:{i:0;s:7:\"Go Pro!\";i:1;s:17:\"edit_others_posts\";i:2;s:17:\"metaslider-go-pro\";i:3;s:7:\"Go Pro!\";}}}}','yes'),(9147,'jetpack_sync_settings_sync_via_cron','1','yes'),(1739,'ubermenu-post-var-count','164','yes'),(124490,'_transient_timeout_jetpack_idc_allowed','1525842403','no'),(124491,'_transient_jetpack_idc_allowed','1','no'),(449,'jetpack_activated','4','yes'),(451,'jetpack_file_data','a:2:{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:\"\";}}s:3:\"5.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:34:\"Optimize your site for smartphones\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"21\";s:20:\"recommendation_order\";s:2:\"11\";s:10:\"introduced\";s:3:\"1.8\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:31:\"Appearance, Mobile, Recommended\";s:7:\"feature\";s: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'),(139,'recently_activated','a:0:{}','yes'),(157,'wordfence_version','7.1.4','yes'),(173,'wpchefgadget_alert','a:1:{s:20:\"limit-login-attempts\";i:1;}','no'),(177,'wpe_settings','','yes'),(306,'_ubermenu_welcome','0','yes'),(197,'widget_featured-post','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(198,'widget_user-profile','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(193,'current_theme','Watch Hill B&amp;B 2017','yes'),(194,'theme_mods_watch-hill-2017','a:8:{i:0;b:0;s:18:\"custom_css_post_id\";i:-1;s:16:\"background_image\";s:57:\"http://www.watchhill.ca/wp-content/uploads/2017/03/bg.png\";s:18:\"nav_menu_locations\";a:2:{s:7:\"primary\";i:2;s:9:\"secondary\";i:0;}s:17:\"background_preset\";s:6:\"repeat\";s:15:\"background_size\";s:4:\"auto\";s:17:\"background_repeat\";s:6:\"repeat\";s:21:\"background_attachment\";s:6:\"scroll\";}','yes'),(195,'theme_switched','','yes'),(196,'widget_featured-page','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(159,'wordfenceActivated','1','yes'),(160,'wf_plugin_act_error','','yes'),(172,'widget_logic_version','5.7.0','no'),(185,'wp_cron_backup_schedule','weekly','no'),(186,'wp_cron_backup_tables','a:2:{i:0;s:16:\"wh_sbc_calendars\";i:1;s:11:\"wh_termmeta\";}','yes'),(187,'wp_cron_backup_recipient','kevin@technicalities.ca','no'),(220,'widget_metaslider_widget','a:2:{i:2;a:3:{s:9:\"slider_id\";s:2:\"50\";s:5:\"title\";s:0:\"\";s:10:\"conditions\";a:3:{s:6:\"action\";s:4:\"show\";s:9:\"match_all\";s:1:\"0\";s:5:\"rules\";a:1:{i:0;a:3:{s:5:\"major\";s:4:\"page\";s:5:\"minor\";s:5:\"front\";s:12:\"has_children\";b:0;}}}}s:12:\"_multiwidget\";i:1;}','yes'),(200,'genesis-seo-settings','a:29:{s:12:\"doctitle_sep\";s:3:\"â€“\";s:20:\"doctitle_seplocation\";s:5:\"right\";s:23:\"append_description_home\";i:1;s:10:\"home_h1_on\";s:5:\"title\";s:13:\"home_doctitle\";s:0:\"\";s:16:\"home_description\";s:0:\"\";s:13:\"home_keywords\";s:0:\"\";s:19:\"noindex_cat_archive\";i:1;s:19:\"noindex_tag_archive\";i:1;s:22:\"noindex_author_archive\";i:1;s:20:\"noindex_date_archive\";i:1;s:22:\"noindex_search_archive\";i:1;s:5:\"noodp\";i:1;s:6:\"noydir\";i:1;s:17:\"append_site_title\";i:0;s:17:\"semantic_headings\";i:0;s:12:\"home_noindex\";i:0;s:13:\"home_nofollow\";i:0;s:14:\"home_noarchive\";i:0;s:28:\"head_adjacent_posts_rel_link\";i:0;s:21:\"head_wlwmanifest_link\";i:0;s:14:\"head_shortlink\";i:0;s:9:\"noarchive\";i:0;s:21:\"noarchive_cat_archive\";i:0;s:21:\"noarchive_tag_archive\";i:0;s:24:\"noarchive_author_archive\";i:0;s:22:\"noarchive_date_archive\";i:0;s:24:\"noarchive_search_archive\";i:0;s:11:\"home_author\";i:0;}','yes'),(201,'genesis-vestige','a:4:{s:13:\"nav_superfish\";i:1;s:8:\"nav_home\";i:1;s:16:\"subnav_superfish\";i:1;s:11:\"subnav_home\";i:1;}','yes'),(211,'simplehooks-settings','a:57:{s:7:\"wp_head\";a:1:{s:7:\"content\";s:427:\"<script>\r\n  (function(i,s,o,g,r,a,m){i[\'GoogleAnalyticsObject\']=r;i[r]=i[r]||function(){\r\n  (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),\r\n  m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)\r\n  })(window,document,\'script\',\'https://www.google-analytics.com/analytics.js\',\'ga\');\r\n\r\n  ga(\'create\', \'UA-96650695-1\', \'auto\');\r\n  ga(\'send\', \'pageview\');\r\n\r\n</script>\r\n\r\n\";}s:9:\"wp_footer\";a:1:{s:7:\"content\";s:133:\"<script>\r\n    jQuery(document).ready(function(){\r\n        jQuery(\"#genesis-sidebar-secondary\").stick_in_parent();\r\n    });\r\n</script>\";}s:15:\"genesis_doctype\";a:1:{s:7:\"content\";s:0:\"\";}s:13:\"genesis_title\";a:1:{s:7:\"content\";s:0:\"\";}s:12:\"genesis_meta\";a:1:{s:7:\"content\";s:0:\"\";}s:14:\"genesis_before\";a:1:{s:7:\"content\";s:0:\"\";}s:13:\"genesis_after\";a:1:{s:7:\"content\";s:0:\"\";}s:21:\"genesis_before_header\";a:1:{s:7:\"content\";s:0:\"\";}s:14:\"genesis_header\";a:1:{s:7:\"content\";s:0:\"\";}s:20:\"genesis_header_right\";a:1:{s:7:\"content\";s:0:\"\";}s:20:\"genesis_after_header\";a:1:{s:7:\"content\";s:0:\"\";}s:18:\"genesis_site_title\";a:1:{s:7:\"content\";s:0:\"\";}s:24:\"genesis_site_description\";a:1:{s:7:\"content\";s:0:\"\";}s:35:\"genesis_before_content_sidebar_wrap\";a:2:{s:7:\"content\";s:280:\"[device]\r\n<div class=\"logo\">\r\n<a href=\"//www.watchhill.ca\"><img src=\"http://www.watchhill.ca/wp-content/uploads/2017/03/logo.jpg\" /></a>\r\n<div class=\"bigTitle\" style=\"color:#fff;\">Watch Hill</div>\r\n<div class=\"smlTitle\" style=\"color:#fff;\">Bed & Breakfast</div>\r\n</div>\r\n[/device]\";s:10:\"shortcodes\";s:1:\"1\";}s:34:\"genesis_after_content_sidebar_wrap\";a:1:{s:7:\"content\";s:0:\"\";}s:22:\"genesis_before_content\";a:2:{s:7:\"content\";s:0:\"\";s:3:\"php\";s:1:\"1\";}s:21:\"genesis_after_content\";a:1:{s:7:\"content\";s:0:\"\";}s:19:\"genesis_before_loop\";a:1:{s:7:\"content\";s:0:\"\";}s:12:\"genesis_loop\";a:1:{s:7:\"content\";s:0:\"\";}s:18:\"genesis_after_loop\";a:1:{s:7:\"content\";s:0:\"\";}s:22:\"genesis_after_endwhile\";a:1:{s:7:\"content\";s:0:\"\";}s:17:\"genesis_loop_else\";a:1:{s:7:\"content\";s:0:\"\";}s:19:\"genesis_reset_loops\";a:1:{s:7:\"content\";s:0:\"\";}s:20:\"genesis_before_entry\";a:1:{s:7:\"content\";s:0:\"\";}s:20:\"genesis_entry_header\";a:1:{s:7:\"content\";s:0:\"\";}s:28:\"genesis_before_entry_content\";a:1:{s:7:\"content\";s:0:\"\";}s:21:\"genesis_entry_content\";a:1:{s:7:\"content\";s:0:\"\";}s:27:\"genesis_after_entry_content\";a:2:{s:7:\"content\";s:473:\"<?php \r\n$classes = get_body_class();\r\nif ( in_array( \'home\', $classes ) ) { ?>\r\n<div class= \"rooms\">\r\n 	<div class=\"rooms\"></div>\r\n<a href=\"https://www.watchhill.ca/accommodations/\"> </a>	 	 \r\n</div>	 	 \r\n<div class= \"BB\">\r\n 	<div class=\"BB\"></div>\r\n<a href=\"https://www.watchhill.ca/about/\"> </a>	 	 \r\n</div>	 	 \r\n<div class= \"hosts\">\r\n 	<div class=\"hosts\"></div>\r\n<a href=\"https://www.watchhill.ca/about/your-hosts/\"> </a>	 	 \r\n</div>	 	 \r\n<div class=\"clear\">\r\n<?php } ?>\";s:3:\"php\";s:1:\"1\";}s:20:\"genesis_entry_footer\";a:1:{s:7:\"content\";s:0:\"\";}s:19:\"genesis_after_entry\";a:1:{s:7:\"content\";s:0:\"\";}s:23:\"genesis_before_comments\";a:1:{s:7:\"content\";s:0:\"\";}s:16:\"genesis_comments\";a:1:{s:7:\"content\";s:0:\"\";}s:21:\"genesis_list_comments\";a:1:{s:7:\"content\";s:0:\"\";}s:22:\"genesis_after_comments\";a:1:{s:7:\"content\";s:0:\"\";}s:20:\"genesis_before_pings\";a:1:{s:7:\"content\";s:0:\"\";}s:13:\"genesis_pings\";a:1:{s:7:\"content\";s:0:\"\";}s:18:\"genesis_list_pings\";a:1:{s:7:\"content\";s:0:\"\";}s:19:\"genesis_after_pings\";a:1:{s:7:\"content\";s:0:\"\";}s:22:\"genesis_before_comment\";a:1:{s:7:\"content\";s:0:\"\";}s:15:\"genesis_comment\";a:1:{s:7:\"content\";s:0:\"\";}s:21:\"genesis_after_comment\";a:1:{s:7:\"content\";s:0:\"\";}s:27:\"genesis_before_comment_form\";a:1:{s:7:\"content\";s:0:\"\";}s:20:\"genesis_comment_form\";a:1:{s:7:\"content\";s:0:\"\";}s:26:\"genesis_after_comment_form\";a:1:{s:7:\"content\";s:0:\"\";}s:22:\"genesis_before_sidebar\";a:1:{s:7:\"content\";s:0:\"\";}s:15:\"genesis_sidebar\";a:1:{s:7:\"content\";s:0:\"\";}s:21:\"genesis_after_sidebar\";a:1:{s:7:\"content\";s:0:\"\";}s:34:\"genesis_before_sidebar_widget_area\";a:1:{s:7:\"content\";s:0:\"\";}s:33:\"genesis_after_sidebar_widget_area\";a:1:{s:7:\"content\";s:0:\"\";}s:26:\"genesis_before_sidebar_alt\";a:1:{s:7:\"content\";s:0:\"\";}s:19:\"genesis_sidebar_alt\";a:1:{s:7:\"content\";s:0:\"\";}s:25:\"genesis_after_sidebar_alt\";a:1:{s:7:\"content\";s:0:\"\";}s:38:\"genesis_before_sidebar_alt_widget_area\";a:1:{s:7:\"content\";s:0:\"\";}s:37:\"genesis_after_sidebar_alt_widget_area\";a:1:{s:7:\"content\";s:0:\"\";}s:21:\"genesis_before_footer\";a:1:{s:7:\"content\";s:0:\"\";}s:14:\"genesis_footer\";a:1:{s:7:\"content\";s:0:\"\";}s:20:\"genesis_after_footer\";a:1:{s:7:\"content\";s:0:\"\";}}','yes'),(282,'nav_menu_options','a:2:{i:0;b:0;s:8:\"auto_add\";a:0:{}}','yes'),(317,'_ubermenu_menu_item_styles','a:4:{i:46;a:1:{s:179:\".ubermenu .ubermenu-item.ubermenu-item-46.ubermenu-current-menu-item > .ubermenu-target,.ubermenu .ubermenu-item.ubermenu-item-46.ubermenu-current-menu-ancestor > .ubermenu-target\";a:2:{s:10:\"background\";s:7:\"#ffffff\";s:5:\"color\";s:7:\"#000000\";}}i:47;a:1:{s:179:\".ubermenu .ubermenu-item.ubermenu-item-47.ubermenu-current-menu-item > .ubermenu-target,.ubermenu .ubermenu-item.ubermenu-item-47.ubermenu-current-menu-ancestor > .ubermenu-target\";a:2:{s:10:\"background\";s:7:\"#ffffff\";s:5:\"color\";s:7:\"#000000\";}}i:38;a:3:{s:50:\".ubermenu .ubermenu-submenu.ubermenu-submenu-id-38\";a:3:{s:5:\"width\";s:5:\"150px\";s:9:\"min-width\";s:5:\"150px\";s:16:\"background-color\";s:7:\"#ffffff\";}s:179:\".ubermenu .ubermenu-item.ubermenu-item-38.ubermenu-current-menu-item > .ubermenu-target,.ubermenu .ubermenu-item.ubermenu-item-38.ubermenu-current-menu-ancestor > .ubermenu-target\";a:2:{s:10:\"background\";s:7:\"#ffffff\";s:5:\"color\";s:7:\"#000000\";}s:167:\".ubermenu .ubermenu-submenu.ubermenu-submenu-id-38 .ubermenu-target, .ubermenu .ubermenu-submenu.ubermenu-submenu-id-38 .ubermenu-target > .ubermenu-target-description\";a:1:{s:5:\"color\";s:7:\"#000000\";}}i:42;a:3:{s:50:\".ubermenu .ubermenu-submenu.ubermenu-submenu-id-42\";a:3:{s:5:\"width\";s:5:\"150px\";s:9:\"min-width\";s:5:\"150px\";s:16:\"background-color\";s:7:\"#ffffff\";}s:179:\".ubermenu .ubermenu-item.ubermenu-item-42.ubermenu-current-menu-item > .ubermenu-target,.ubermenu .ubermenu-item.ubermenu-item-42.ubermenu-current-menu-ancestor > .ubermenu-target\";a:2:{s:10:\"background\";s:7:\"#ffffff\";s:5:\"color\";s:7:\"#000000\";}s:167:\".ubermenu .ubermenu-submenu.ubermenu-submenu-id-42 .ubermenu-target, .ubermenu .ubermenu-submenu.ubermenu-submenu-id-42 .ubermenu-target > .ubermenu-target-description\";a:1:{s:5:\"color\";s:7:\"#000000\";}}}','yes'),(2426,'_wpmf_import_notice_flag','no','yes'),(297,'ubermenu_db_version','3.2.3','no'),(298,'widget_ubermenu_navigation_widget','a:2:{i:2;a:3:{s:9:\"config_id\";s:4:\"main\";s:14:\"theme_location\";s:1:\"0\";s:7:\"menu_id\";s:1:\"2\";}s:12:\"_multiwidget\";i:1;}','yes'),(299,'ubermenu_main','a:134:{s:14:\"disable_mobile\";s:2:\"on\";s:13:\"direct_inject\";s:3:\"off\";s:11:\"nav_menu_id\";s:5:\"_none\";s:4:\"skin\";s:4:\"none\";s:11:\"orientation\";s:8:\"vertical\";s:22:\"vertical_submenu_width\";s:3:\"300\";s:7:\"trigger\";s:12:\"hover_intent\";s:10:\"transition\";s:5:\"shift\";s:19:\"transition_duration\";s:0:\"\";s:9:\"bar_align\";s:4:\"left\";s:9:\"bar_width\";s:5:\"300px\";s:14:\"bar_margin_top\";s:5:\"-40px\";s:17:\"bar_margin_bottom\";s:0:\"\";s:11:\"items_align\";s:4:\"left\";s:16:\"bar_inner_center\";s:3:\"off\";s:15:\"bar_inner_width\";s:0:\"\";s:22:\"descriptions_top_level\";s:3:\"off\";s:20:\"descriptions_headers\";s:3:\"off\";s:19:\"descriptions_normal\";s:3:\"off\";s:16:\"descriptions_tab\";s:3:\"off\";s:14:\"target_divider\";s:5:\" â€“ \";s:14:\"bound_submenus\";s:5:\"inner\";s:19:\"submenu_inner_width\";s:5:\"150px\";s:17:\"submenu_scrolling\";s:3:\"off\";s:18:\"submenu_max_height\";s:0:\"\";s:20:\"dropdown_within_mega\";s:3:\"off\";s:22:\"force_current_submenus\";s:3:\"off\";s:15:\"invert_submenus\";s:3:\"off\";s:10:\"image_size\";s:4:\"full\";s:11:\"image_width\";s:0:\"\";s:12:\"image_height\";s:0:\"\";s:20:\"image_set_dimensions\";s:2:\"on\";s:21:\"image_title_attribute\";s:3:\"off\";s:21:\"disable_images_mobile\";s:3:\"off\";s:16:\"lazy_load_images\";s:3:\"off\";s:22:\"image_text_top_padding\";s:0:\"\";s:39:\"submenu_background_image_reponsive_hide\";s:3:\"off\";s:10:\"responsive\";s:2:\"on\";s:17:\"responsive_toggle\";s:2:\"on\";s:21:\"responsive_toggle_tag\";s:1:\"a\";s:25:\"responsive_toggle_content\";s:4:\"Menu\";s:35:\"responsive_toggle_content_alignment\";s:4:\"left\";s:27:\"responsive_toggle_alignment\";s:4:\"full\";s:19:\"responsive_collapse\";s:2:\"on\";s:21:\"responsive_max_height\";s:0:\"\";s:21:\"display_retractor_top\";s:3:\"off\";s:24:\"display_retractor_bottom\";s:2:\"on\";s:15:\"retractor_label\";s:0:\"\";s:12:\"force_styles\";s:2:\"on\";s:25:\"style_menu_bar_background\";s:7:\"#000000\";s:26:\"style_menu_bar_transparent\";s:3:\"off\";s:21:\"style_menu_bar_border\";s:0:\"\";s:21:\"style_menu_bar_radius\";s:0:\"\";s:25:\"style_top_level_font_size\";s:4:\"15px\";s:30:\"style_top_level_text_transform\";s:0:\"\";s:27:\"style_top_level_font_weight\";s:6:\"normal\";s:26:\"style_top_level_font_color\";s:7:\"#ffffff\";s:32:\"style_top_level_font_color_hover\";s:7:\"#000000\";s:34:\"style_top_level_font_color_current\";s:0:\"\";s:36:\"style_top_level_font_color_highlight\";s:0:\"\";s:22:\"style_top_level_margin\";s:0:\"\";s:26:\"style_top_level_background\";s:7:\"#000000\";s:32:\"style_top_level_background_hover\";s:7:\"#ffffff\";s:34:\"style_top_level_background_current\";s:0:\"\";s:36:\"style_top_level_background_highlight\";s:7:\"#ffffff\";s:34:\"style_top_level_item_divider_color\";s:0:\"\";s:36:\"style_top_level_item_divider_disable\";s:3:\"off\";s:33:\"style_top_level_item_glow_opacity\";s:0:\"\";s:39:\"style_top_level_item_glow_opacity_hover\";s:0:\"\";s:23:\"style_top_level_padding\";s:3:\"8px\";s:29:\"style_top_level_horiz_padding\";s:4:\"15px\";s:37:\"style_extra_submenu_indicator_padding\";s:2:\"on\";s:29:\"style_align_submenu_indicator\";s:4:\"edge\";s:27:\"style_top_level_item_height\";s:0:\"\";s:30:\"style_submenu_background_color\";s:7:\"#ffffff\";s:26:\"style_submenu_border_color\";s:0:\"\";s:32:\"style_submenu_dropshadow_opacity\";s:0:\"\";s:33:\"style_submenu_fallback_font_color\";s:7:\"#000000\";s:34:\"style_submenu_minimum_column_width\";s:0:\"\";s:34:\"style_submenu_highlight_font_color\";s:7:\"#ffffff\";s:26:\"style_submenu_item_padding\";s:9:\"10px 20px\";s:22:\"style_header_font_size\";s:0:\"\";s:23:\"style_header_font_color\";s:0:\"\";s:29:\"style_header_font_color_hover\";s:0:\"\";s:31:\"style_header_font_color_current\";s:0:\"\";s:24:\"style_header_font_weight\";s:0:\"\";s:25:\"style_header_border_color\";s:0:\"\";s:27:\"display_header_border_color\";s:2:\"on\";s:23:\"style_normal_font_color\";s:0:\"\";s:29:\"style_normal_font_color_hover\";s:0:\"\";s:31:\"style_normal_font_color_current\";s:0:\"\";s:22:\"style_normal_font_size\";s:0:\"\";s:29:\"style_normal_background_hover\";s:0:\"\";s:29:\"style_flyout_vertical_padding\";s:0:\"\";s:19:\"style_flyout_divier\";s:7:\"#000000\";s:21:\"style_tabs_background\";s:0:\"\";s:16:\"style_tabs_color\";s:0:\"\";s:22:\"style_tabs_color_hover\";s:0:\"\";s:27:\"style_tabs_background_hover\";s:0:\"\";s:28:\"style_tab_content_background\";s:0:\"\";s:36:\"style_tab_content_force_header_color\";s:0:\"\";s:36:\"style_tab_content_force_normal_color\";s:0:\"\";s:41:\"style_tab_content_force_description_color\";s:0:\"\";s:23:\"style_tab_divider_color\";s:0:\"\";s:27:\"style_description_font_size\";s:0:\"\";s:28:\"style_description_font_color\";s:0:\"\";s:32:\"style_description_text_transform\";s:0:\"\";s:27:\"style_top_level_arrow_color\";s:0:\"\";s:25:\"style_submenu_arrow_color\";s:0:\"\";s:8:\"style_hr\";s:0:\"\";s:22:\"style_toggle_font_size\";s:0:\"\";s:23:\"style_toggle_background\";s:0:\"\";s:18:\"style_toggle_color\";s:0:\"\";s:29:\"style_toggle_background_hover\";s:0:\"\";s:24:\"style_toggle_color_hover\";s:0:\"\";s:23:\"style_search_background\";s:0:\"\";s:18:\"style_search_color\";s:0:\"\";s:22:\"style_search_font_size\";s:0:\"\";s:30:\"style_search_placeholder_color\";s:0:\"\";s:23:\"style_search_icon_color\";s:0:\"\";s:11:\"row_spacing\";s:0:\"\";s:10:\"icon_width\";s:0:\"\";s:8:\"icon_tag\";s:1:\"i\";s:12:\"icon_display\";s:5:\"block\";s:11:\"google_font\";s:0:\"\";s:17:\"google_font_style\";s:0:\"\";s:18:\"custom_font_family\";s:0:\"\";s:20:\"custom_font_property\";s:0:\"\";s:13:\"container_tag\";s:3:\"nav\";s:26:\"allow_shortcodes_in_labels\";s:3:\"off\";s:18:\"content_before_nav\";s:0:\"\";s:26:\"display_submenu_indicators\";s:3:\"off\";s:28:\"display_submenu_close_button\";s:3:\"off\";s:23:\"theme_location_instance\";s:1:\"0\";}','yes'),(300,'ubermenu_general','','yes'),(327,'wordfence_lastSyncAttackData','1521881337','no'),(242,'fs_active_plugins','O:8:\"stdClass\":3:{s:7:\"plugins\";a:1:{s:30:\"foobox-image-lightbox/freemius\";O:8:\"stdClass\":4:{s:7:\"version\";s:5:\"1.2.4\";s:4:\"type\";s:6:\"plugin\";s:9:\"timestamp\";i:1523749114;s:11:\"plugin_path\";s:37:\"foobox-image-lightbox/foobox-free.php\";}}s:7:\"abspath\";s:29:\"/home/tumthakar0/public_html/\";s:6:\"newest\";O:8:\"stdClass\":5:{s:11:\"plugin_path\";s:37:\"foobox-image-lightbox/foobox-free.php\";s:8:\"sdk_path\";s:30:\"foobox-image-lightbox/freemius\";s:7:\"version\";s:5:\"1.2.4\";s:13:\"in_activation\";b:0;s:9:\"timestamp\";i:1523749114;}}','yes'),(228,'foogallery_extensions_slugs','a:14:{i:0;s:17:\"default_templates\";i:1;s:6:\"albums\";i:2;s:8:\"foovideo\";i:3;s:7:\"foogrid\";i:4;s:6:\"foobox\";i:5;s:15:\"custom_branding\";i:6;s:12:\"cube-gallery\";i:7;s:17:\"polaroid_template\";i:8;s:7:\"nextgen\";i:9;s:32:\"foogallery-owl-carousel-template\";i:10;s:24:\"foogallery-zoom-template\";i:11;s:21:\"foobox-image-lightbox\";i:12;s:42:\"thirstyaffiliates-for-foogallery-extension\";i:13;s:10:\"media_menu\";}','yes'),(235,'foogallery-version','1.4.15','no'),(27890,'wpmf_image_watermark_apply','a:5:{s:8:\"all_size\";i:1;s:9:\"thumbnail\";i:0;s:6:\"medium\";i:0;s:5:\"large\";i:0;s:4:\"full\";i:0;}','yes'),(27891,'wpmf_option_image_watermark','0','yes'),(27892,'wpmf_watermark_position','top_left','yes'),(27893,'wpmf_watermark_image','','yes'),(27894,'wpmf_watermark_image_id','0','yes'),(243,'fs_debug_mode','','yes'),(244,'fs_accounts','a:6:{s:11:\"plugin_data\";a:2:{s:21:\"foobox-image-lightbox\";a:16:{s:16:\"plugin_main_file\";O:8:\"stdClass\":1:{s:4:\"path\";s:37:\"foobox-image-lightbox/foobox-free.php\";}s:17:\"install_timestamp\";i:1488802848;s:16:\"sdk_last_version\";s:8:\"1.2.2.10\";s:11:\"sdk_version\";s:5:\"1.2.4\";s:16:\"sdk_upgrade_mode\";b:1;s:18:\"sdk_downgrade_mode\";b:0;s:19:\"plugin_last_version\";s:5:\"2.5.1\";s:14:\"plugin_version\";s:5:\"2.5.2\";s:19:\"plugin_upgrade_mode\";b:1;s:21:\"plugin_downgrade_mode\";b:0;s:21:\"is_plugin_new_install\";b:0;s:17:\"connectivity_test\";a:6:{s:12:\"is_connected\";b:1;s:4:\"host\";s:16:\"www.watchhill.ca\";s:9:\"server_ip\";s:14:\"165.154.100.71\";s:9:\"is_active\";b:1;s:9:\"timestamp\";i:1488802848;s:7:\"version\";s:6:\"1.1.11\";}s:17:\"was_plugin_loaded\";b:1;s:15:\"prev_is_premium\";b:0;s:12:\"is_anonymous\";a:3:{s:2:\"is\";b:1;s:9:\"timestamp\";i:1488802856;s:7:\"version\";s:6:\"1.1.11\";}s:21:\"trial_promotion_shown\";i:1521136253;}s:10:\"foogallery\";a:17:{s:16:\"plugin_main_file\";O:8:\"stdClass\":1:{s:4:\"path\";s:25:\"foogallery/foogallery.php\";}s:17:\"install_timestamp\";i:1500308640;s:16:\"sdk_last_version\";s:8:\"1.2.2.10\";s:11:\"sdk_version\";s:5:\"1.2.4\";s:16:\"sdk_upgrade_mode\";b:1;s:18:\"sdk_downgrade_mode\";b:0;s:19:\"plugin_last_version\";s:5:\"1.3.6\";s:14:\"plugin_version\";s:6:\"1.4.15\";s:19:\"plugin_upgrade_mode\";b:1;s:21:\"plugin_downgrade_mode\";b:0;s:17:\"was_plugin_loaded\";b:1;s:21:\"is_plugin_new_install\";b:0;s:17:\"connectivity_test\";a:6:{s:12:\"is_connected\";b:1;s:4:\"host\";s:16:\"www.watchhill.ca\";s:9:\"server_ip\";s:14:\"184.151.37.142\";s:9:\"is_active\";b:1;s:9:\"timestamp\";i:1500308640;s:7:\"version\";s:5:\"1.3.6\";}s:15:\"prev_is_premium\";b:0;s:18:\"sticky_optin_added\";b:1;s:12:\"is_anonymous\";a:3:{s:2:\"is\";b:1;s:9:\"timestamp\";i:1519249908;s:7:\"version\";s:6:\"1.4.15\";}s:21:\"trial_promotion_shown\";i:1523473475;}}s:13:\"file_slug_map\";a:2:{s:37:\"foobox-image-lightbox/foobox-free.php\";s:21:\"foobox-image-lightbox\";s:25:\"foogallery/foogallery.php\";s:10:\"foogallery\";}s:7:\"plugins\";a:2:{s:21:\"foobox-image-lightbox\";O:9:\"FS_Plugin\":17:{s:16:\"parent_plugin_id\";N;s:5:\"title\";s:21:\"FooBox Image Lightbox\";s:4:\"slug\";s:21:\"foobox-image-lightbox\";s:4:\"type\";s:6:\"plugin\";s:4:\"file\";s:37:\"foobox-image-lightbox/foobox-free.php\";s:7:\"version\";s:5:\"2.5.2\";s:11:\"auto_update\";N;s:4:\"info\";N;s:10:\"is_premium\";b:0;s:7:\"is_live\";b:1;s:20:\"affiliate_moderation\";b:0;s:10:\"public_key\";s:32:\"pk_7a17ec700c89fe71a25605589e0b9\";s:10:\"secret_key\";N;s:2:\"id\";s:3:\"374\";s:7:\"updated\";N;s:7:\"created\";N;s:22:\"\0FS_Entity\0_is_updated\";b:0;}s:10:\"foogallery\";O:9:\"FS_Plugin\":17:{s:16:\"parent_plugin_id\";N;s:5:\"title\";s:10:\"FooGallery\";s:4:\"slug\";s:10:\"foogallery\";s:4:\"type\";s:6:\"plugin\";s:4:\"file\";s:25:\"foogallery/foogallery.php\";s:7:\"version\";s:6:\"1.4.15\";s:11:\"auto_update\";N;s:4:\"info\";N;s:10:\"is_premium\";b:0;s:7:\"is_live\";b:1;s:20:\"affiliate_moderation\";b:0;s:10:\"public_key\";s:32:\"pk_d87616455a835af1d0658699d0192\";s:10:\"secret_key\";N;s:2:\"id\";s:3:\"843\";s:7:\"updated\";N;s:7:\"created\";N;s:22:\"\0FS_Entity\0_is_updated\";b:0;}}s:9:\"unique_id\";s:32:\"775558a83abd5ab5d4db1ee293891fb2\";s:13:\"admin_notices\";a:2:{s:21:\"foobox-image-lightbox\";a:0:{}s:10:\"foogallery\";a:1:{s:15:\"trial_promotion\";a:8:{s:7:\"message\";s:398:\"Hey! How do you like <b>FooGallery</b> so far? Test all our awesome premium features with a 7-day free trial. No credit card required!  <a style=\"margin-left: 10px; vertical-align: super;\" href=\"https://www.watchhill.ca/wp-admin/edit.php?post_type=foogallery&billing_cycle=annual&trial=true&page=foogallery-pricing\"><button class=\"button button-primary\">Start free trial &nbsp;&#10140;</button></a>\";s:5:\"title\";s:0:\"\";s:4:\"type\";s:9:\"promotion\";s:6:\"sticky\";b:1;s:2:\"id\";s:15:\"trial_promotion\";s:3:\"all\";b:0;s:10:\"manager_id\";s:10:\"foogallery\";s:6:\"plugin\";s:10:\"FooGallery\";}}}s:21:\"id_slug_type_path_map\";a:2:{i:374;a:3:{s:4:\"slug\";s:21:\"foobox-image-lightbox\";s:4:\"type\";s:6:\"plugin\";s:4:\"path\";s:37:\"foobox-image-lightbox/foobox-free.php\";}i:843;a:3:{s:4:\"slug\";s:10:\"foogallery\";s:4:\"type\";s:6:\"plugin\";s:4:\"path\";s:25:\"foogallery/foogallery.php\";}}}','yes'),(245,'fs_api_cache','a:0:{}','yes'),(231,'foogallery_extensions_activated','a:2:{s:17:\"default_templates\";s:38:\"FooGallery_Default_Templates_Extension\";s:21:\"foobox-image-lightbox\";s:32:\"FooGallery_FooBox_Free_Extension\";}','yes'),(232,'foogallery_extensions_auto_activated','1','yes'),(238,'foogallery-thumb-test','a:2:{s:3:\"key\";s:37:\"php$(5.4.45}-https://www.watchhill.ca\";s:7:\"results\";a:4:{s:7:\"success\";b:1;s:5:\"thumb\";s:103:\"https://www.watchhill.ca/wp-content/uploads/cache/plugins/foogallery/assets/test_thumb_1/1115483254.jpg\";s:5:\"error\";s:0:\"\";s:9:\"file_info\";a:2:{s:3:\"ext\";s:3:\"jpg\";s:4:\"type\";s:10:\"image/jpeg\";}}}','yes'),(271,'auto_core_update_notified','a:4:{s:4:\"type\";s:7:\"success\";s:5:\"email\";s:23:\"kevin@technicalities.ca\";s:7:\"version\";s:5:\"4.9.5\";s:9:\"timestamp\";i:1522799052;}','no'),(2365,'wpcom_publish_posts_with_markdown','1','yes'),(249,'foobox-free','a:9:{s:16:\"enable_galleries\";s:2:\"on\";s:15:\"enable_captions\";s:2:\"on\";s:18:\"enable_attachments\";s:2:\"on\";s:14:\"powered_by_url\";s:0:\"\";s:15:\"hide_scrollbars\";s:2:\"on\";s:10:\"show_count\";s:2:\"on\";s:13:\"error_message\";s:23:\"Could not load the item\";s:19:\"close_overlay_click\";s:2:\"on\";s:14:\"dropie7support\";s:2:\"on\";}','yes'),(254,'widget_logic','a:3:{s:28:\"ubermenu_navigation_widget-2\";s:0:\"\";s:6:\"text-2\";s:0:\"\";s:19:\"metaslider_widget-2\";s:0:\"\";}','yes'),(316,'_ubermenu_menu_item_widget_areas','a:0:{}','yes'),(325,'wordfence_syncAttackDataAttempts','0','no'),(309,'_ubermenu_menu_styles','a:1:{s:4:\"main\";a:17:{s:60:\".ubermenu-main.ubermenu-vertical .ubermenu-submenu-type-mega\";a:1:{s:5:\"width\";s:5:\"300px\";}s:14:\".ubermenu-main\";a:3:{s:9:\"max-width\";s:5:\"300px\";s:10:\"margin-top\";s:5:\"-40px\";s:10:\"background\";s:7:\"#000000\";}s:28:\".ubermenu-main .ubermenu-row\";a:3:{s:9:\"max-width\";s:5:\"150px\";s:11:\"margin-left\";s:4:\"auto\";s:12:\"margin-right\";s:4:\"auto\";}s:77:\".ubermenu-main.ubermenu-transition-fade .ubermenu-item .ubermenu-submenu-drop\";a:1:{s:10:\"margin-top\";i:0;}s:56:\".ubermenu-main .ubermenu-item-level-0 > .ubermenu-target\";a:6:{s:9:\"font-size\";s:4:\"15px\";s:5:\"color\";s:7:\"#ffffff\";s:11:\"padding-top\";s:3:\"8px\";s:14:\"padding-bottom\";s:3:\"8px\";s:12:\"padding-left\";s:4:\"15px\";s:13:\"padding-right\";s:4:\"15px\";}s:84:\".ubermenu-main .ubermenu-nav .ubermenu-item.ubermenu-item-level-0 > .ubermenu-target\";a:1:{s:11:\"font-weight\";s:6:\"normal\";}s:145:\".ubermenu.ubermenu-main .ubermenu-item-level-0:hover > .ubermenu-target, .ubermenu-main .ubermenu-item-level-0.ubermenu-active > .ubermenu-target\";a:2:{s:5:\"color\";s:7:\"#000000\";s:10:\"background\";s:7:\"#ffffff\";}s:65:\".ubermenu.ubermenu-main .ubermenu-item-level-0 > .ubermenu-target\";a:1:{s:10:\"background\";s:7:\"#000000\";}s:73:\".ubermenu-main .ubermenu-item.ubermenu-item-level-0 > .ubermenu-highlight\";a:1:{s:10:\"background\";s:7:\"#ffffff\";}s:133:\".ubermenu-main.ubermenu-sub-indicators .ubermenu-item-level-0.ubermenu-has-submenu-drop > .ubermenu-target:not(.ubermenu-noindicator)\";a:1:{s:13:\"padding-right\";s:4:\"30px\";}s:127:\".ubermenu-main.ubermenu-sub-indicators .ubermenu-item-level-0.ubermenu-has-submenu-drop > .ubermenu-target.ubermenu-noindicator\";a:1:{s:13:\"padding-right\";s:4:\"15px\";}s:54:\".ubermenu-main .ubermenu-submenu.ubermenu-submenu-drop\";a:2:{s:16:\"background-color\";s:7:\"#ffffff\";s:5:\"color\";s:7:\"#000000\";}s:52:\".ubermenu-main .ubermenu-submenu .ubermenu-highlight\";a:1:{s:5:\"color\";s:7:\"#ffffff\";}s:554:\".ubermenu-main .ubermenu-item-normal > .ubermenu-target,.ubermenu-main .ubermenu-submenu .ubermenu-target,.ubermenu-main .ubermenu-submenu .ubermenu-nonlink,.ubermenu-main .ubermenu-submenu .ubermenu-widget,.ubermenu-main .ubermenu-submenu .ubermenu-custom-content-padded,.ubermenu-main .ubermenu-submenu .ubermenu-retractor,.ubermenu-main .ubermenu-submenu .ubermenu-colgroup .ubermenu-column,.ubermenu-main .ubermenu-submenu.ubermenu-submenu-type-stack > .ubermenu-item-normal > .ubermenu-target,.ubermenu-main .ubermenu-submenu.ubermenu-submenu-padded\";a:1:{s:7:\"padding\";s:9:\"10px 20px\";}s:28:\".ubermenu .ubermenu-grid-row\";a:1:{s:13:\"padding-right\";s:9:\"10px 20px\";}s:45:\".ubermenu .ubermenu-grid-row .ubermenu-target\";a:1:{s:13:\"padding-right\";i:0;}s:87:\".ubermenu-main .ubermenu-submenu-type-flyout > .ubermenu-item-normal > .ubermenu-target\";a:1:{s:13:\"border-bottom\";s:17:\"1px solid #000000\";}}}','yes'),(418,'metaslider_systemcheck','a:2:{s:16:\"wordPressVersion\";b:0;s:12:\"imageLibrary\";b:0;}','no'),(12996,'ml-slider_children','a:0:{}','yes'),(888,'jetpack_updates_sync_checksum','a:3:{s:14:\"update_plugins\";i:2263833918;s:11:\"update_core\";i:3023322287;s:13:\"update_themes\";i:4260309320;}','yes'),(452,'jetpack_available_modules','a:1:{s:3:\"5.9\";a:43:{s:18:\"after-the-deadline\";s:3:\"1.1\";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:20:\"custom-content-types\";s:3:\"3.1\";s:10:\"custom-css\";s:3:\"1.7\";s:21:\"enhanced-distribution\";s:3:\"1.2\";s:16:\"google-analytics\";s:3:\"4.5\";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:11:\"lazy-images\";s:5:\"5.6.0\";s:5:\"likes\";s:3:\"2.2\";s:6:\"manage\";s:3:\"3.4\";s:8:\"markdown\";s:3:\"2.8\";s:9:\"masterbar\";s:3:\"4.8\";s:9:\"minileven\";s:3:\"1.8\";s:7:\"monitor\";s:3:\"2.6\";s:5:\"notes\";s:3:\"1.9\";s:6:\"photon\";s:3:\"2.0\";s:13:\"post-by-email\";s:3:\"2.0\";s:7:\"protect\";s:3:\"3.4\";s:9:\"publicize\";s:3:\"2.0\";s:3:\"pwa\";s:5:\"5.6.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:17:\"widget-visibility\";s:3:\"2.4\";s:7:\"widgets\";s:3:\"1.2\";s:7:\"wordads\";s:5:\"4.5.0\";}}','yes'),(453,'jetpack_options','a:11:{s:7:\"version\";s:14:\"5.9:1521046333\";s:11:\"old_version\";s:14:\"5.8:1518460611\";s:2:\"id\";i:126796442;s:6:\"public\";i:1;s:9:\"jumpstart\";s:19:\"jumpstart_dismissed\";s:14:\"last_heartbeat\";i:1525826438;s:24:\"custom_css_4.7_migration\";b:1;s:9:\"hide_jitm\";a:1:{s:10:\"vaultpress\";a:2:{s:14:\"last_dismissal\";i:1518460627;s:6:\"number\";i:1;}}s:28:\"fallback_no_verify_ssl_certs\";i:0;s:9:\"time_diff\";i:1;s:11:\"master_user\";i:1;}','yes'),(455,'do_activate','0','yes'),(482,'sharing-options','a:1:{s:6:\"global\";a:5:{s:12:\"button_style\";s:9:\"icon-text\";s:13:\"sharing_label\";s:11:\"Share this:\";s:10:\"open_links\";s:4:\"same\";s:4:\"show\";a:0:{}s:6:\"custom\";a:0:{}}}','yes'),(484,'stats_options','a:7:{s:9:\"admin_bar\";b:1;s:5:\"roles\";a:2:{i:0;s:13:\"administrator\";i:1;s:6:\"editor\";}s:11:\"count_roles\";a:0:{}s:7:\"blog_id\";b:0;s:12:\"do_not_track\";b:1;s:10:\"hide_smile\";b:1;s:7:\"version\";s:1:\"9\";}','yes'),(2442,'wpmf_option_hoverimg','1','yes'),(5647,'wpmf_last_action','a:4:{s:4:\"type\";s:9:\"move_file\";s:10:\"old_parent\";s:1:\"0\";s:10:\"new_parent\";s:2:\"14\";s:10:\"list_files\";a:5:{i:0;i:117;i:1;i:122;i:2;i:121;i:3;i:120;i:4;i:119;}}','yes'),(2396,'wpmf_gallery_image_size_value','[\"thumbnail\",\"medium\",\"large\",\"full\"]','yes'),(2397,'wpmf_padding_masonry','5','yes'),(2398,'wpmf_padding_portfolio','10','yes'),(2399,'wpmf_usegellery','1','yes'),(2400,'wpmf_useorder','1','yes'),(2401,'wpmf_create_folder','role','yes'),(2402,'wpmf_option_override','0','yes'),(2403,'wpmf_option_duplicate','0','yes'),(2404,'wpmf_active_media','0','yes'),(2405,'wpmf_folder_option2','1','yes'),(2406,'wpmf_option_searchall','0','yes'),(2407,'wpmf_usegellery_lightbox','1','yes'),(2408,'wpmf_media_rename','0','yes'),(2409,'wpmf_patern_rename','{sitename} - {foldername} - #','yes'),(2410,'wpmf_rename_number','0','yes'),(2411,'wpmf_option_media_remove','0','yes'),(2412,'wpmf_default_dimension','[\"400x300\",\"640x480\",\"800x600\",\"1024x768\",\"1600x1200\"]','yes'),(2413,'wpmf_selected_dimension','[\"400x300\",\"640x480\",\"800x600\",\"1024x768\",\"1600x1200\"]','yes'),(2414,'wpmf_weight_default','[[\"0-61440\",\"kB\"],[\"61440-122880\",\"kB\"],[\"122880-184320\",\"kB\"],[\"184320-245760\",\"kB\"],[\"245760-307200\",\"kB\"]]','yes'),(2415,'wpmf_weight_selected','[[\"0-61440\",\"kB\"],[\"61440-122880\",\"kB\"],[\"122880-184320\",\"kB\"],[\"184320-245760\",\"kB\"],[\"245760-307200\",\"kB\"]]','yes'),(2416,'wpmf_color_singlefile','{\"bgdownloadlink\":\"#444444\",\"hvdownloadlink\":\"#888888\",\"fontdownloadlink\":\"#ffffff\",\"hoverfontcolor\":\"#ffffff\"}','yes'),(2417,'wpmf_option_singlefile','0','yes'),(2418,'wpmf_option_sync_media','0','yes'),(2419,'wpmf_list_sync_media','a:0:{}','yes'),(2420,'wpmf_time_sync','60','yes'),(2421,'wpmf_lastRun_sync','1489612737','yes'),(2422,'wpmf_slider_animation','slide','yes'),(2423,'wpmf_option_mediafolder','0','yes'),(2424,'wpmf_option_countfiles','0','yes'),(2425,'wpmf_option_lightboximage','0','yes'),(2387,'wpmf_use_taxonomy','1','yes'),(2395,'external_updates-wp-media-folder','O:8:\"stdClass\":3:{s:9:\"lastCheck\";i:1525784974;s:14:\"checkedVersion\";s:5:\"4.5.0\";s:6:\"update\";O:8:\"stdClass\":7:{s:2:\"id\";i:0;s:4:\"slug\";s:15:\"wp-media-folder\";s:7:\"version\";s:5:\"4.5.3\";s:8:\"homepage\";s:61:\"https://www.joomunited.com/wordpress-products/wp-media-folder\";s:12:\"download_url\";s:120:\"https://www.joomunited.com/index.php?option=com_juupdater&task=download.download&extension=wp-media-folder&version=4.5.3\";s:14:\"upgrade_notice\";s:29:\"Upgrade to the latest version\";s:8:\"filename\";s:35:\"wp-media-folder/wp-media-folder.php\";}}','no'),(655,'jpsq_full_sync_checkout','0:0','no'),(9162,'jetpack_sync_settings_max_enqueue_full_sync','100','yes'),(9161,'jetpack_sync_settings_comment_meta_whitelist','a:0:{}','yes'),(9160,'jetpack_sync_settings_post_meta_whitelist','a:0:{}','yes'),(677,'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'),(625,'jetpack_protect_key','e29012b8a1e159328a87a2712c7594b39ba8737b','no'),(901,'rlrsssl_options','a:13:{s:12:\"site_has_ssl\";b:1;s:4:\"hsts\";b:0;s:22:\"htaccess_warning_shown\";b:0;s:25:\"ssl_success_message_shown\";b:1;s:26:\"autoreplace_insecure_links\";b:1;s:17:\"plugin_db_version\";s:6:\"2.5.26\";s:5:\"debug\";b:0;s:20:\"do_not_edit_htaccess\";b:0;s:17:\"htaccess_redirect\";b:0;s:11:\"ssl_enabled\";b:1;s:19:\"javascript_redirect\";b:1;s:11:\"wp_redirect\";b:1;s:31:\"switch_mixed_content_fixer_hook\";b:0;}','yes'),(902,'rsssl_migrated_htaccess_setting','1','yes'),(2427,'ju_user_token','80da3e59-70fb-4ccc-9698-ec0a245a104e','yes'),(598,'jetpack_restapi_stats_cache','a:1:{s:32:\"75d1ddd3fa60083d6594cc1eaadc64e8\";a:1:{i:1518213619;O:8:\"stdClass\":3:{s:4:\"date\";s:10:\"2018-02-09\";s:5:\"stats\";O:8:\"stdClass\":19:{s:14:\"visitors_today\";i:0;s:18:\"visitors_yesterday\";i:7;s:8:\"visitors\";i:2899;s:11:\"views_today\";i:0;s:15:\"views_yesterday\";i:14;s:14:\"views_best_day\";s:10:\"2017-04-03\";s:20:\"views_best_day_total\";i:306;s:5:\"views\";i:18402;s:8:\"comments\";i:1;s:5:\"posts\";i:1;s:14:\"followers_blog\";i:0;s:18:\"followers_comments\";i:0;s:18:\"comments_per_month\";i:0;s:31:\"comments_most_active_recent_day\";s:19:\"2017-03-06 11:42:32\";s:25:\"comments_most_active_time\";s:5:\"06:00\";s:13:\"comments_spam\";i:0;s:10:\"categories\";i:1;s:4:\"tags\";i:0;s:6:\"shares\";i:0;}s:6:\"visits\";O:8:\"stdClass\":3:{s:4:\"unit\";s:3:\"day\";s:6:\"fields\";a:3:{i:0;s:6:\"period\";i:1;s:5:\"views\";i:2;s:8:\"visitors\";}s:4:\"data\";a:30:{i:0;a:3:{i:0;s:10:\"2018-01-11\";i:1;i:6;i:2;i:3;}i:1;a:3:{i:0;s:10:\"2018-01-12\";i:1;i:38;i:2;i:5;}i:2;a:3:{i:0;s:10:\"2018-01-13\";i:1;i:27;i:2;i:5;}i:3;a:3:{i:0;s:10:\"2018-01-14\";i:1;i:29;i:2;i:3;}i:4;a:3:{i:0;s:10:\"2018-01-15\";i:1;i:41;i:2;i:7;}i:5;a:3:{i:0;s:10:\"2018-01-16\";i:1;i:5;i:2;i:3;}i:6;a:3:{i:0;s:10:\"2018-01-17\";i:1;i:11;i:2;i:3;}i:7;a:3:{i:0;s:10:\"2018-01-18\";i:1;i:23;i:2;i:4;}i:8;a:3:{i:0;s:10:\"2018-01-19\";i:1;i:19;i:2;i:4;}i:9;a:3:{i:0;s:10:\"2018-01-20\";i:1;i:0;i:2;i:0;}i:10;a:3:{i:0;s:10:\"2018-01-21\";i:1;i:37;i:2;i:4;}i:11;a:3:{i:0;s:10:\"2018-01-22\";i:1;i:31;i:2;i:5;}i:12;a:3:{i:0;s:10:\"2018-01-23\";i:1;i:57;i:2;i:8;}i:13;a:3:{i:0;s:10:\"2018-01-24\";i:1;i:20;i:2;i:5;}i:14;a:3:{i:0;s:10:\"2018-01-25\";i:1;i:42;i:2;i:7;}i:15;a:3:{i:0;s:10:\"2018-01-26\";i:1;i:20;i:2;i:4;}i:16;a:3:{i:0;s:10:\"2018-01-27\";i:1;i:38;i:2;i:5;}i:17;a:3:{i:0;s:10:\"2018-01-28\";i:1;i:74;i:2;i:8;}i:18;a:3:{i:0;s:10:\"2018-01-29\";i:1;i:19;i:2;i:6;}i:19;a:3:{i:0;s:10:\"2018-01-30\";i:1;i:17;i:2;i:5;}i:20;a:3:{i:0;s:10:\"2018-01-31\";i:1;i:5;i:2;i:2;}i:21;a:3:{i:0;s:10:\"2018-02-01\";i:1;i:25;i:2;i:4;}i:22;a:3:{i:0;s:10:\"2018-02-02\";i:1;i:35;i:2;i:5;}i:23;a:3:{i:0;s:10:\"2018-02-03\";i:1;i:16;i:2;i:7;}i:24;a:3:{i:0;s:10:\"2018-02-04\";i:1;i:41;i:2;i:4;}i:25;a:3:{i:0;s:10:\"2018-02-05\";i:1;i:5;i:2;i:3;}i:26;a:3:{i:0;s:10:\"2018-02-06\";i:1;i:2;i:2;i:2;}i:27;a:3:{i:0;s:10:\"2018-02-07\";i:1;i:7;i:2;i:4;}i:28;a:3:{i:0;s:10:\"2018-02-08\";i:1;i:14;i:2;i:7;}i:29;a:3:{i:0;s:10:\"2018-02-09\";i:1;i:0;i:2;i:0;}}}}}}','no'),(610,'gravatar_disable_hovercards','disabled','yes'),(9182,'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:4:\"http\";i:4;s:4:\"http\";}','yes'),(9174,'jetpack_constants_sync_checksum','a:19:{s:16:\"EMPTY_TRASH_DAYS\";i:2473281379;s:17:\"WP_POST_REVISIONS\";i:3510096238;s:26:\"AUTOMATIC_UPDATER_DISABLED\";i:634125391;s:7:\"ABSPATH\";i:1974676779;s:14:\"WP_CONTENT_DIR\";i:2148197659;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:1407263838;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:3994858278;s:11:\"PHP_VERSION\";i:645667137;s:15:\"WP_MEMORY_LIMIT\";i:3065409971;s:19:\"WP_MAX_MEMORY_LIMIT\";i:1474498405;}','yes'),(531,'jpsq_sync_checkout','0:0','no'),(9159,'jetpack_sync_settings_render_filtered_content','0','yes'),(533,'jetpack_next_sync_time_full-sync-enqueue','1525840006','yes'),(536,'jetpack_log','a:3:{i:0;a:4:{s:4:\"time\";i:1488998881;s:7:\"user_id\";i:1;s:7:\"blog_id\";b:0;s:4:\"code\";s:8:\"register\";}i:1;a:5:{s:4:\"time\";i:1488999706;s:7:\"user_id\";i:1;s:7:\"blog_id\";i:125361940;s:4:\"code\";s:24:\"custom_css_4.7_migration\";s:4:\"data\";s:5:\"start\";}i:2;a:4:{s:4:\"time\";i:1491179849;s:7:\"user_id\";i:1;s:7:\"blog_id\";i:125361940;s:4:\"code\";s:8:\"register\";}}','no'),(537,'jetpack_private_options','a:4:{s:8:\"register\";s:78:\"jzgpQd9txdqo1EuWc0bhvFQkYpsZpQLA:xzhviYPMjugHkGAvetyiJ0cfjJc11SDD:1491180449:1\";s:10:\"blog_token\";s:65:\"NlS6JQJS*Af7%oBJpTsSYTbVy0g8fniY.6a260qpsXU)LsX@eyAhcDOmLQ6IM)T(4\";s:11:\"user_tokens\";a:2:{i:1;s:67:\"qCiLj6bZIDoYvuv!l0Lc$lM7&cJ$kk58.(JOR&5Av)nrt*U)HBymvgFyT%2taAy)*.1\";i:4;s:67:\"Y6sjcMLL#40cm)6JZOZVGRtqFUw^31r7.gPbI!vv6s)7O6S1qH@hktiTTDYa)%13*.4\";}s:9:\"authorize\";s:78:\"dAPbz8rLObF1xztryOHgO619Il62eS6m:EC0WCHtVpwEPM3CHGc051MdgKtpuojyb:1491229268:4\";}','yes'),(9144,'jetpack_protect_activating','activating','no'),(538,'jetpack_unique_connection','a:3:{s:9:\"connected\";i:3;s:12:\"disconnected\";i:1;s:7:\"version\";s:5:\"3.6.1\";}','yes'),(539,'jetpack_active_modules','a:8:{i:0;s:18:\"after-the-deadline\";i:1;s:12:\"contact-form\";i:2;s:6:\"manage\";i:4;s:10:\"shortcodes\";i:5;s:17:\"widget-visibility\";i:6;s:7:\"protect\";i:7;s:5:\"stats\";i:8;s:8:\"sitemaps\";}','yes'),(582,'jetpack_active_plan','a:8:{s:10:\"product_id\";i:2002;s:12:\"product_slug\";s:12:\"jetpack_free\";s:18:\"product_name_short\";s:4:\"Free\";s:10:\"free_trial\";b:0;s:7:\"expired\";b:0;s:13:\"user_is_owner\";b:0;s:7:\"is_free\";b:1;s:8:\"features\";a:2:{s:6:\"active\";a:2:{i:0;s:7:\"akismet\";i:1;s:7:\"support\";}s:9:\"available\";a:9:{s:7:\"akismet\";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: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: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: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:7:\"support\";a:6:{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\";}s:14:\"premium-themes\";a:2:{i:0;s:16:\"jetpack_business\";i:1;s:24:\"jetpack_business_monthly\";}s:28:\"vaultpress-security-scanning\";a:2:{i:0;s:16:\"jetpack_business\";i:1;s:24:\"jetpack_business_monthly\";}s:9:\"polldaddy\";a:2:{i:0;s:16:\"jetpack_business\";i:1;s:24:\"jetpack_business_monthly\";}}}}','yes'),(543,'widget_blog_subscription','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(544,'widget_authors','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(545,'widget_facebook-likebox','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(546,'widget_wpcom-goodreads','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(547,'widget_google_translate_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(548,'widget_googleplus-badge','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(549,'widget_grofile','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(550,'widget_image','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(551,'widget_milestone_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(552,'widget_jetpack_my_community','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(553,'widget_rss_links','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(554,'widget_wpcom_social_media_icons_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(555,'widget_twitter_timeline','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(556,'widget_upcoming_events_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(557,'widget_jetpack_display_posts_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(559,'jetpack_portfolio','0','yes'),(9156,'jetpack_sync_settings_enqueue_wait_time','10','yes'),(9155,'jetpack_sync_settings_sync_wait_threshold','5','yes'),(9154,'jetpack_sync_settings_sync_wait_time','10','yes'),(9153,'jetpack_sync_settings_upload_max_rows','500','yes'),(9152,'jetpack_sync_settings_upload_max_bytes','600000','yes'),(9151,'jetpack_sync_settings_dequeue_max_bytes','500000','yes'),(9149,'jetpack_sync_settings_max_queue_lag','900','yes'),(9148,'jetpack_sync_settings_max_queue_size','1000','yes'),(577,'sharedaddy_disable_resources','0','yes'),(578,'jetpack_testimonial','0','yes'),(586,'post_by_email_address1','NULL','yes'),(587,'monitor_receive_notifications','1','yes'),(9163,'jetpack_sync_settings_max_queue_size_full_sync','1000','yes'),(9164,'jetpack_sync_settings_cron_sync_time_limit','30','yes'),(9157,'jetpack_sync_settings_queue_max_writes_sec','100','yes'),(9158,'jetpack_sync_settings_post_types_blacklist','a:0:{}','yes'),(110865,'jetpack_sync_full_config','a:4:{s:9:\"constants\";b:1;s:9:\"functions\";b:1;s:7:\"options\";b:1;s:5:\"users\";a:1:{i:0;i:6;}}','no'),(110866,'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\";a:3:{i:0;i:1;i:1;i:1;i:2;b:1;}}','no'),(110874,'jetpack_sync_full__queue_finished','1521046333','yes'),(100811,'widget_foogallery_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(110906,'jetpack_sync_full__send_started','1521046342','no'),(110907,'jetpack_sync_full__constants_sent','1','no'),(110908,'jetpack_sync_full__functions_sent','1','no'),(110909,'jetpack_sync_full__options_sent','1','no'),(110910,'jetpack_sync_full__users_sent','1','no'),(110911,'jetpack_sync_full__finished','1521046342','no'),(118763,'_transient_timeout_jetpack_file_data_5.9','1526059568','no'),(118764,'_transient_jetpack_file_data_5.9','a:57:{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:\"f868c97c313f21b23fa6d6c64505fab6\";a:14:{s:4:\"name\";s:11:\"Lazy Images\";s:11:\"description\";s:16:\"Lazy load images\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"24\";s:20:\"recommendation_order\";s:2:\"14\";s:10:\"introduced\";s:5:\"5.6.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:23:\"Appearance, Recommended\";s:7:\"feature\";s:10:\"Appearance\";s:25:\"additional_search_queries\";s:33:\"mobile, theme, performance, image\";}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:29:\"Serve images from our servers\";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:\"83622cd43b5e31bb82e59a9d52e9bb10\";a:14:{s:4:\"name\";s:20:\"Progressive Web Apps\";s:11:\"description\";s:85:\"Speed up and improve the reliability of your site using the latest in web technology.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"38\";s:20:\"recommendation_order\";s:2:\"18\";s:10:\"introduced\";s:5:\"5.6.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:10:\"Developers\";s:7:\"feature\";s:7:\"Traffic\";s:25:\"additional_search_queries\";s:26:\"manifest, pwa, progressive\";}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:2:\"34\";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:0:\"\";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:7:\"Traffic\";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:\"\";}}','no'),(103089,'_wpmf_import_order_notice_flag','yes','yes'),(105286,'wpmf-category_children','a:1:{i:18;a:1:{i:0;i:20;}}','yes'),(16333,'jetpack_protect_blocked_attempts','5267','no'),(120571,'_transient_timeout__ubermenu_generated_styles','1526885190','no'),(120572,'_transient__ubermenu_generated_styles','\n/** UberMenu Custom Menu Styles (Customizer) **/\n/* main */\n.ubermenu-main.ubermenu-vertical .ubermenu-submenu-type-mega { width:300px; }\n.ubermenu-main { max-width:300px; margin-top:-40px; background:#000000; }\n.ubermenu-main .ubermenu-row { max-width:150px; margin-left:auto; margin-right:auto; }\n.ubermenu-main.ubermenu-transition-fade .ubermenu-item .ubermenu-submenu-drop { margin-top:0; }\n.ubermenu-main .ubermenu-item-level-0 > .ubermenu-target { font-size:15px; color:#ffffff; padding-top:8px; padding-bottom:8px; padding-left:15px; padding-right:15px; }\n.ubermenu-main .ubermenu-nav .ubermenu-item.ubermenu-item-level-0 > .ubermenu-target { font-weight:normal; }\n.ubermenu.ubermenu-main .ubermenu-item-level-0:hover > .ubermenu-target, .ubermenu-main .ubermenu-item-level-0.ubermenu-active > .ubermenu-target { color:#000000; background:#ffffff; }\n.ubermenu.ubermenu-main .ubermenu-item-level-0 > .ubermenu-target { background:#000000; }\n.ubermenu-main .ubermenu-item.ubermenu-item-level-0 > .ubermenu-highlight { background:#ffffff; }\n.ubermenu-main.ubermenu-sub-indicators .ubermenu-item-level-0.ubermenu-has-submenu-drop > .ubermenu-target:not(.ubermenu-noindicator) { padding-right:30px; }\n.ubermenu-main.ubermenu-sub-indicators .ubermenu-item-level-0.ubermenu-has-submenu-drop > .ubermenu-target.ubermenu-noindicator { padding-right:15px; }\n.ubermenu-main .ubermenu-submenu.ubermenu-submenu-drop { background-color:#ffffff; color:#000000; }\n.ubermenu-main .ubermenu-submenu .ubermenu-highlight { color:#ffffff; }\n.ubermenu-main .ubermenu-item-normal > .ubermenu-target,.ubermenu-main .ubermenu-submenu .ubermenu-target,.ubermenu-main .ubermenu-submenu .ubermenu-nonlink,.ubermenu-main .ubermenu-submenu .ubermenu-widget,.ubermenu-main .ubermenu-submenu .ubermenu-custom-content-padded,.ubermenu-main .ubermenu-submenu .ubermenu-retractor,.ubermenu-main .ubermenu-submenu .ubermenu-colgroup .ubermenu-column,.ubermenu-main .ubermenu-submenu.ubermenu-submenu-type-stack > .ubermenu-item-normal > .ubermenu-target,.ubermenu-main .ubermenu-submenu.ubermenu-submenu-padded { padding:10px 20px; }\n.ubermenu .ubermenu-grid-row { padding-right:10px 20px; }\n.ubermenu .ubermenu-grid-row .ubermenu-target { padding-right:0; }\n.ubermenu-main .ubermenu-submenu-type-flyout > .ubermenu-item-normal > .ubermenu-target { border-bottom:1px solid #000000; }\n\n\n/** UberMenu Custom Menu Item Styles (Menu Item Settings) **/\n/* 46 */    .ubermenu .ubermenu-item.ubermenu-item-46.ubermenu-current-menu-item > .ubermenu-target,.ubermenu .ubermenu-item.ubermenu-item-46.ubermenu-current-menu-ancestor > .ubermenu-target { background:#ffffff; color:#000000; }\n/* 47 */    .ubermenu .ubermenu-item.ubermenu-item-47.ubermenu-current-menu-item > .ubermenu-target,.ubermenu .ubermenu-item.ubermenu-item-47.ubermenu-current-menu-ancestor > .ubermenu-target { background:#ffffff; color:#000000; }\n/* 38 */    .ubermenu .ubermenu-submenu.ubermenu-submenu-id-38 { width:150px; min-width:150px; background-color:#ffffff; }\n            .ubermenu .ubermenu-item.ubermenu-item-38.ubermenu-current-menu-item > .ubermenu-target,.ubermenu .ubermenu-item.ubermenu-item-38.ubermenu-current-menu-ancestor > .ubermenu-target { background:#ffffff; color:#000000; }\n            .ubermenu .ubermenu-submenu.ubermenu-submenu-id-38 .ubermenu-target, .ubermenu .ubermenu-submenu.ubermenu-submenu-id-38 .ubermenu-target > .ubermenu-target-description { color:#000000; }\n/* 42 */    .ubermenu .ubermenu-submenu.ubermenu-submenu-id-42 { width:150px; min-width:150px; background-color:#ffffff; }\n            .ubermenu .ubermenu-item.ubermenu-item-42.ubermenu-current-menu-item > .ubermenu-target,.ubermenu .ubermenu-item.ubermenu-item-42.ubermenu-current-menu-ancestor > .ubermenu-target { background:#ffffff; color:#000000; }\n            .ubermenu .ubermenu-submenu.ubermenu-submenu-id-42 .ubermenu-target, .ubermenu .ubermenu-submenu.ubermenu-submenu-id-42 .ubermenu-target > .ubermenu-target-description { color:#000000; }\n','no'),(7709,'widget_wpsbc_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(9483,'post_by_email_address4','NULL','yes'),(7701,'wpsbc_db_version','1.0','no'),(7702,'wpsbc-languages','{\"en\":\"English\"}','no'),(7703,'wpsbc-options','{\"selectedColor\":\"#3399cc\",\"selectedBorder\":\"#336699\",\"dateFormat\":\"j F Y\",\"historyColor\":\"#E4E4E4\"}','no'),(7704,'wpsbc-default-legend','{\"default\":{\"name\":{\"default\":\"Booked\",\"hr\":\"Zauzeto\",\"cs\":\"Obsazeno\",\"da\":\"Booket\",\"nl\":\"Bezet\",\"en\":\"Booked\",\"fr\":\"Occup\\u00e9\",\"de\":\"Belegt\",\"hu\":\"Foglalt\",\"it\":\"Prenotato\",\"ro\":\"Rezervat\",\"ru\":\"\\u0417\\u0430\\u0431\\u0440\\u043e\\u043d\\u044c\\u043e\\u0432\\u0430\\u043d\\u043e\",\"sk\":\"Obsaden\\u00fd\",\"es\":\"Reservado\",\"sv\":\"Bokat\",\"uk\":\"\\u0417\\u0430\\u0439\\u043d\\u044f\\u0442\\u043e\"},\"color\":\"#339933\",\"splitColor\":false,\"bookable\":false,\"hide\":false},\"1\":{\"name\":{\"default\":\"Available\",\"hr\":\"Slobodno\",\"cs\":\"Volno\",\"da\":\"Ledigt\",\"nl\":\"Vrij\",\"en\":\"Available\",\"fr\":\"Libre\",\"de\":\"Frei\",\"hu\":\"Szabad\",\"it\":\"Libero\",\"ro\":\"Disponobil\",\"ru\":\"\\u0412\\u0456\\u043b\\u044c\\u043d\\u043e\",\"sk\":\"Vo\\u013en\\u00fd\",\"es\":\"Libre\",\"sv\":\"Ledigt\",\"uk\":\"B\\u0456\\u043b\\u044c\\u043d\\u043e\"},\"color\":\"#ffff99\",\"splitColor\":false,\"bookable\":\"yes\"},\"2\":{\"name\":{\"en\":\"Changeover 1\",\"nl\":\"\",\"et\":\"\",\"fi\":\"\",\"fr\":\"\",\"de\":\"\",\"pt\":\"\",\"ro\":\"\",\"default\":\"Changeover 1\"},\"color\":\"#DDFFCC\",\"splitColor\":\"#FFC0BD\",\"bookable\":\"yes\",\"hide\":\"hide\"},\"3\":{\"name\":{\"en\":\"Changeover 2\",\"nl\":\"\",\"et\":\"\",\"fi\":\"\",\"fr\":\"\",\"de\":\"\",\"pt\":\"\",\"ro\":\"\",\"default\":\"Changeover 2\"},\"color\":\"#FFC0BD\",\"splitColor\":\"#DDFFCC\",\"bookable\":\"yes\",\"hide\":\"hide\"}}','no'),(9180,'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'),(9181,'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:4:\"http\";i:4;s:4:\"http\";}','yes'),(9275,'stats_cache','a:2:{s:32:\"bfdd18ba300d7301b37e49fd1f24e6e7\";a:1:{i:1523473479;a:7:{i:0;a:4:{s:7:\"post_id\";s:1:\"5\";s:10:\"post_title\";s:4:\"Home\";s:14:\"post_permalink\";s:25:\"https://www.watchhill.ca/\";s:5:\"views\";s:2:\"11\";}i:1;a:4:{s:7:\"post_id\";s:2:\"15\";s:10:\"post_title\";s:14:\"Accommodations\";s:14:\"post_permalink\";s:40:\"https://www.watchhill.ca/accommodations/\";s:5:\"views\";s:2:\"10\";}i:2;a:4:{s:7:\"post_id\";s:2:\"17\";s:10:\"post_title\";s:9:\"The Huron\";s:14:\"post_permalink\";s:50:\"https://www.watchhill.ca/accommodations/the-huron/\";s:5:\"views\";s:1:\"3\";}i:3;a:4:{s:7:\"post_id\";s:2:\"19\";s:10:\"post_title\";s:11:\"The Chantry\";s:14:\"post_permalink\";s:52:\"https://www.watchhill.ca/accommodations/the-chantry/\";s:5:\"views\";s:1:\"3\";}i:4;a:4:{s:7:\"post_id\";s:3:\"226\";s:10:\"post_title\";s:17:\"The Harbour Suite\";s:14:\"post_permalink\";s:54:\"https://www.watchhill.ca/accommodations/harbour-suite/\";s:5:\"views\";s:1:\"3\";}i:5;a:4:{s:7:\"post_id\";s:2:\"21\";s:10:\"post_title\";s:11:\"The Saugeen\";s:14:\"post_permalink\";s:52:\"https://www.watchhill.ca/accommodations/the-saugeen/\";s:5:\"views\";s:1:\"2\";}i:6;a:4:{s:7:\"post_id\";s:2:\"23\";s:10:\"post_title\";s:16:\"Rates & Policies\";s:14:\"post_permalink\";s:40:\"https://www.watchhill.ca/rates-policies/\";s:5:\"views\";s:1:\"1\";}}}s:32:\"c9813c78cdea690a8a9829377b2d6efc\";a:1:{i:1523473479;a:0:{}}}','yes'),(11092,'jetpack_next_sync_time_sync','1524696589','yes'),(110863,'jetpack_sync_full__started','1521046333','no'),(110864,'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:6;}}','no'),(16757,'feedback_unread_count','0','yes'),(10888,'category_children','a:0:{}','yes'),(9210,'jetpack_callables_sync_checksum','a:29:{s:18:\"wp_max_upload_size\";i:677931734;s:15:\"is_main_network\";i:734881840;s:13:\"is_multi_site\";i:734881840;s:17:\"main_network_site\";i:397172624;s:8:\"site_url\";i:397172624;s:8:\"home_url\";i:397172624;s:16:\"single_user_site\";i:734881840;s:7:\"updates\";i:2400161736;s:28:\"has_file_system_write_access\";i:4261170317;s:21:\"is_version_controlled\";i:734881840;s:10:\"taxonomies\";i:114939091;s:10:\"post_types\";i:3916957312;s:18:\"post_type_features\";i:365779583;s:10:\"shortcodes\";i:1841801301;s:27:\"rest_api_allowed_post_types\";i:3727410581;s:32:\"rest_api_allowed_public_metadata\";i:223132457;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:3975511174;s:11:\"get_plugins\";i:713484615;s:24:\"get_plugins_action_links\";i:2523536437;s:14:\"active_modules\";i:2133940430;s:16:\"hosting_provider\";i:769900095;s:6:\"locale\";i:1724232643;s:13:\"site_icon_url\";i:3552835863;s:5:\"roles\";i:3812180935;}','yes'),(13456,'jetpack_sitemap_location','','yes'),(13459,'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'),(13450,'jetpack_sitemap_post_types','a:2:{i:0;s:4:\"post\";i:1;s:4:\"page\";}','yes'),(13451,'wpmf_folder_root_id','15','yes'),(31511,'jetpack_secrets','a:2:{s:19:\"jetpack_authorize_4\";a:3:{s:8:\"secret_1\";s:32:\"peKmHOLxpdDr4ahxvg6iE7hYG1ZYp1aZ\";s:8:\"secret_2\";s:32:\"BfjuW1fKnOV23k2e5m4iHsRffWJtVtL9\";s:3:\"exp\";i:1518214218;}s:19:\"jetpack_authorize_1\";a:3:{s:8:\"secret_1\";s:32:\"1F5CLufVRsFS4SN61sfFN9ljhOUXmgdg\";s:8:\"secret_2\";s:32:\"me03PAdV4a8QgPAQ2w7Ommqb8jSGykf3\";s:3:\"exp\";i:1518546507;}}','no'),(31517,'wpmf_current_folder_id4','19','yes'),(40839,'wp_db_backup_excs','a:2:{s:9:\"revisions\";a:0:{}s:4:\"spam\";a:0:{}}','yes'),(100876,'widget_media_audio','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(100877,'widget_media_image','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(100878,'widget_media_gallery','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(100879,'widget_media_video','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(100880,'widget_custom_html','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(101171,'jetpack_last_connect_url_check','1518539307','no'),(100832,'wpmf_version','4.5.0','yes'),(100833,'wpmf_gallery_settings','a:1:{s:5:\"theme\";a:7:{s:13:\"default_theme\";a:6:{s:7:\"columns\";i:3;s:4:\"size\";s:6:\"medium\";s:10:\"targetsize\";s:5:\"large\";s:4:\"link\";s:4:\"file\";s:7:\"orderby\";s:8:\"post__in\";s:5:\"order\";s:3:\"ASC\";}s:15:\"portfolio_theme\";a:6:{s:7:\"columns\";i:3;s:4:\"size\";s:6:\"medium\";s:10:\"targetsize\";s:5:\"large\";s:4:\"link\";s:4:\"file\";s:7:\"orderby\";s:8:\"post__in\";s:5:\"order\";s:3:\"ASC\";}s:13:\"masonry_theme\";a:6:{s:7:\"columns\";i:3;s:4:\"size\";s:6:\"medium\";s:10:\"targetsize\";s:5:\"large\";s:4:\"link\";s:4:\"file\";s:7:\"orderby\";s:8:\"post__in\";s:5:\"order\";s:3:\"ASC\";}s:12:\"slider_theme\";a:9:{s:7:\"columns\";i:3;s:4:\"size\";s:6:\"medium\";s:10:\"targetsize\";s:5:\"large\";s:4:\"link\";s:4:\"file\";s:7:\"orderby\";s:8:\"post__in\";s:5:\"order\";s:3:\"ASC\";s:9:\"animation\";s:5:\"slide\";s:8:\"duration\";i:4000;s:14:\"auto_animation\";i:1;}s:15:\"flowslide_theme\";a:7:{s:7:\"columns\";i:3;s:4:\"size\";s:6:\"medium\";s:10:\"targetsize\";s:5:\"large\";s:4:\"link\";s:4:\"file\";s:7:\"orderby\";s:8:\"post__in\";s:5:\"order\";s:3:\"ASC\";s:12:\"show_buttons\";i:0;}s:17:\"square_grid_theme\";a:6:{s:7:\"columns\";i:3;s:4:\"size\";s:6:\"medium\";s:10:\"targetsize\";s:5:\"large\";s:4:\"link\";s:4:\"file\";s:7:\"orderby\";s:8:\"post__in\";s:5:\"order\";s:3:\"ASC\";}s:14:\"material_theme\";a:6:{s:7:\"columns\";i:3;s:4:\"size\";s:6:\"medium\";s:10:\"targetsize\";s:5:\"large\";s:4:\"link\";s:4:\"file\";s:7:\"orderby\";s:8:\"post__in\";s:5:\"order\";s:3:\"ASC\";}}}','yes'),(61956,'wpmf_current_folder_id3','8','yes'),(120070,'wordfence_installed','1','yes'),(124445,'_site_transient_update_themes','O:8:\"stdClass\":4:{s:12:\"last_checked\";i:1525823023;s:7:\"checked\";a:5:{s:7:\"genesis\";s:5:\"2.5.3\";s:13:\"twentyfifteen\";s:3:\"1.9\";s:15:\"twentyseventeen\";s:3:\"1.4\";s:13:\"twentysixteen\";s:3:\"1.4\";s:15:\"watch-hill-2017\";s:5:\"2.3.0\";}s:8:\"response\";a:1:{s:15:\"twentyseventeen\";a:4:{s:5:\"theme\";s:15:\"twentyseventeen\";s:11:\"new_version\";s:3:\"1.5\";s:3:\"url\";s:45:\"https://wordpress.org/themes/twentyseventeen/\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/theme/twentyseventeen.1.5.zip\";}}s:12:\"translations\";a:0:{}}','no'),(124432,'_transient_timeout_jetpack_sync_callables_await','1525820755','no'),(124433,'_transient_jetpack_sync_callables_await','1525820695.8652','no'),(124409,'_transient_timeout_jetpack_jitm_f9c7158b313631eec0e52a0872dde16','1525813162','no'),(124410,'_transient_jetpack_jitm_f9c7158b313631eec0e52a0872dde16','a:1:{s:18:\"last_response_time\";i:1525812862;}','no'),(124411,'_transient_timeout_jetpack_jitm_88651e3bb92dc834599404b670d826d','1525813167','no'),(124412,'_transient_jetpack_jitm_88651e3bb92dc834599404b670d826d','a:1:{s:18:\"last_response_time\";i:1525812867;}','no'),(124413,'_transient_timeout_jetpack_jitm_ee68514441c3110f2fb1a1b5a4c441a','1525813263','no'),(124414,'_transient_jetpack_jitm_ee68514441c3110f2fb1a1b5a4c441a','a:1:{s:18:\"last_response_time\";i:1525812963;}','no'),(124407,'_transient_timeout_jetpack_is_single_user','1525856058','no'),(124408,'_transient_jetpack_is_single_user','2','no'),(124324,'_transient_timeout_genesis-update','1525885173','no'),(124325,'_transient_genesis-update','a:5:{s:5:\"theme\";s:7:\"genesis\";s:11:\"new_version\";s:5:\"2.6.1\";s:3:\"url\";s:41:\"https://my.studiopress.com/themes/genesis\";s:7:\"package\";s:61:\"https://www.genesistheme.com/download/?file=genesis.2.6.1.zip\";s:13:\"changelog_url\";s:54:\"https://www.genesistheme.com/changelog/?TB_iframe=true\";}','no'),(124333,'jetpack_protect_error','Invalid Action Specified','no'),(124461,'_transient_timeout_jetpack_https_test','1525912838','no'),(124462,'_transient_jetpack_https_test','1','no'),(124463,'_transient_timeout_jetpack_https_test_message','1525912838','no'),(124464,'_transient_jetpack_https_test_message','','no'),(124493,'_transient_timeout_jetpack_sync_constants_await','1525842405','no'),(124494,'_transient_jetpack_sync_constants_await','1525838805.381','no'),(124300,'_transient_timeout_jetpack_plugin_api_action_links_refresh','1525879703','no'),(124301,'_transient_jetpack_plugin_api_action_links_refresh','1525793303','no'),(124448,'_site_transient_update_plugins','O:8:\"stdClass\":5:{s:12:\"last_checked\";i:1525823023;s:7:\"checked\";a:19:{s:25:\"adminimize/adminimize.php\";s:6:\"1.11.4\";s:19:\"akismet/akismet.php\";s:5:\"4.0.3\";s:37:\"foobox-image-lightbox/foobox-free.php\";s:5:\"2.5.2\";s:25:\"foogallery/foogallery.php\";s:6:\"1.4.15\";s:31:\"genesis-simple-hooks/plugin.php\";s:5:\"2.2.1\";s:9:\"hello.php\";s:3:\"1.6\";s:19:\"jetpack/jetpack.php\";s:3:\"5.9\";s:19:\"members/members.php\";s:5:\"2.0.2\";s:23:\"ml-slider/ml-slider.php\";s:5:\"3.7.1\";s:47:\"really-simple-ssl/rlrsssl-really-simple-ssl.php\";s:6:\"2.5.26\";s:45:\"simple-page-ordering/simple-page-ordering.php\";s:3:\"2.3\";s:35:\"technicalities-maintenance-mode.php\";s:3:\"0.1\";s:21:\"ubermenu/ubermenu.php\";s:5:\"3.2.3\";s:23:\"wordfence/wordfence.php\";s:5:\"7.1.4\";s:29:\"wp-db-backup/wp-db-backup.php\";s:5:\"2.3.3\";s:22:\"wp-editor/wpeditor.php\";s:7:\"1.2.6.3\";s:35:\"wp-media-folder/wp-media-folder.php\";s:5:\"4.5.0\";s:37:\"wp-mobile-detect/wp-mobile-detect.php\";s:3:\"2.0\";s:65:\"wp-simple-booking-calendar-premium/wp-simple-booking-calendar.php\";s:3:\"5.1\";}s:8:\"response\";a:5:{s:25:\"foogallery/foogallery.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:24:\"w.org/plugins/foogallery\";s:4:\"slug\";s:10:\"foogallery\";s:6:\"plugin\";s:25:\"foogallery/foogallery.php\";s:11:\"new_version\";s:6:\"1.4.29\";s:3:\"url\";s:41:\"https://wordpress.org/plugins/foogallery/\";s:7:\"package\";s:53:\"https://downloads.wordpress.org/plugin/foogallery.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:63:\"https://ps.w.org/foogallery/assets/icon-256x256.png?rev=1757883\";s:2:\"1x\";s:63:\"https://ps.w.org/foogallery/assets/icon-128x128.png?rev=1757883\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:64:\"https://ps.w.org/foogallery/assets/banner-772x250.jpg?rev=946615\";}s:11:\"banners_rtl\";a:0:{}s:6:\"tested\";s:5:\"4.9.5\";s:12:\"requires_php\";N;s:13:\"compatibility\";O:8:\"stdClass\":0:{}}s:19:\"jetpack/jetpack.php\";O:8:\"stdClass\":12:{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:3:\"6.1\";s:3:\"url\";s:38:\"https://wordpress.org/plugins/jetpack/\";s:7:\"package\";s:54:\"https://downloads.wordpress.org/plugin/jetpack.6.1.zip\";s:5:\"icons\";a:3:{s:2:\"2x\";s:60:\"https://ps.w.org/jetpack/assets/icon-256x256.png?rev=1791404\";s:2:\"1x\";s:52:\"https://ps.w.org/jetpack/assets/icon.svg?rev=1791404\";s:3:\"svg\";s:52:\"https://ps.w.org/jetpack/assets/icon.svg?rev=1791404\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:63:\"https://ps.w.org/jetpack/assets/banner-1544x500.png?rev=1791404\";s:2:\"1x\";s:62:\"https://ps.w.org/jetpack/assets/banner-772x250.png?rev=1791404\";}s:11:\"banners_rtl\";a:0:{}s:6:\"tested\";s:5:\"4.9.5\";s:12:\"requires_php\";N;s:13:\"compatibility\";O:8:\"stdClass\":0:{}}s:19:\"members/members.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:21:\"w.org/plugins/members\";s:4:\"slug\";s:7:\"members\";s:6:\"plugin\";s:19:\"members/members.php\";s:11:\"new_version\";s:5:\"2.1.0\";s:3:\"url\";s:38:\"https://wordpress.org/plugins/members/\";s:7:\"package\";s:56:\"https://downloads.wordpress.org/plugin/members.2.1.0.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:60:\"https://ps.w.org/members/assets/icon-256x256.png?rev=1242689\";s:2:\"1x\";s:60:\"https://ps.w.org/members/assets/icon-128x128.png?rev=1242689\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:63:\"https://ps.w.org/members/assets/banner-1544x500.png?rev=1242689\";s:2:\"1x\";s:62:\"https://ps.w.org/members/assets/banner-772x250.png?rev=1242689\";}s:11:\"banners_rtl\";a:0:{}s:6:\"tested\";s:5:\"4.9.5\";s:12:\"requires_php\";N;s:13:\"compatibility\";O:8:\"stdClass\":0:{}}s:23:\"ml-slider/ml-slider.php\";O:8:\"stdClass\":12:{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:5:\"3.7.2\";s:3:\"url\";s:40:\"https://wordpress.org/plugins/ml-slider/\";s:7:\"package\";s:58:\"https://downloads.wordpress.org/plugin/ml-slider.3.7.2.zip\";s:5:\"icons\";a:3:{s:2:\"2x\";s:62:\"https://ps.w.org/ml-slider/assets/icon-256x256.png?rev=1837669\";s:2:\"1x\";s:54:\"https://ps.w.org/ml-slider/assets/icon.svg?rev=1837669\";s:3:\"svg\";s:54:\"https://ps.w.org/ml-slider/assets/icon.svg?rev=1837669\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:65:\"https://ps.w.org/ml-slider/assets/banner-1544x500.png?rev=1837669\";s:2:\"1x\";s:64:\"https://ps.w.org/ml-slider/assets/banner-772x250.png?rev=1837669\";}s:11:\"banners_rtl\";a:0:{}s:6:\"tested\";s:5:\"4.9.5\";s:12:\"requires_php\";N;s:13:\"compatibility\";O:8:\"stdClass\":0:{}}s:45:\"simple-page-ordering/simple-page-ordering.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:34:\"w.org/plugins/simple-page-ordering\";s:4:\"slug\";s:20:\"simple-page-ordering\";s:6:\"plugin\";s:45:\"simple-page-ordering/simple-page-ordering.php\";s:11:\"new_version\";s:5:\"2.3.2\";s:3:\"url\";s:51:\"https://wordpress.org/plugins/simple-page-ordering/\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/plugin/simple-page-ordering.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:72:\"https://ps.w.org/simple-page-ordering/assets/icon-256x256.png?rev=971776\";s:2:\"1x\";s:72:\"https://ps.w.org/simple-page-ordering/assets/icon-128x128.png?rev=971776\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:76:\"https://ps.w.org/simple-page-ordering/assets/banner-1544x500.png?rev=1404285\";s:2:\"1x\";s:74:\"https://ps.w.org/simple-page-ordering/assets/banner-772x250.png?rev=971780\";}s:11:\"banners_rtl\";a:0:{}s:6:\"tested\";s:5:\"4.9.5\";s:12:\"requires_php\";N;s:13:\"compatibility\";O:8:\"stdClass\":0:{}}}s:12:\"translations\";a:0:{}s:9:\"no_update\";a:11:{s:25:\"adminimize/adminimize.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:24:\"w.org/plugins/adminimize\";s:4:\"slug\";s:10:\"adminimize\";s:6:\"plugin\";s:25:\"adminimize/adminimize.php\";s:11:\"new_version\";s:6:\"1.11.4\";s:3:\"url\";s:41:\"https://wordpress.org/plugins/adminimize/\";s:7:\"package\";s:60:\"https://downloads.wordpress.org/plugin/adminimize.1.11.4.zip\";s:5:\"icons\";a:1:{s:7:\"default\";s:61:\"https://s.w.org/plugins/geopattern-icon/adminimize_000000.svg\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:65:\"https://ps.w.org/adminimize/assets/banner-772x250.png?rev=1118207\";}s:11:\"banners_rtl\";a:0:{}}s:19:\"akismet/akismet.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:21:\"w.org/plugins/akismet\";s:4:\"slug\";s:7:\"akismet\";s:6:\"plugin\";s:19:\"akismet/akismet.php\";s:11:\"new_version\";s:5:\"4.0.3\";s:3:\"url\";s:38:\"https://wordpress.org/plugins/akismet/\";s:7:\"package\";s:56:\"https://downloads.wordpress.org/plugin/akismet.4.0.3.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:59:\"https://ps.w.org/akismet/assets/icon-256x256.png?rev=969272\";s:2:\"1x\";s:59:\"https://ps.w.org/akismet/assets/icon-128x128.png?rev=969272\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:61:\"https://ps.w.org/akismet/assets/banner-772x250.jpg?rev=479904\";}s:11:\"banners_rtl\";a:0:{}}s:37:\"foobox-image-lightbox/foobox-free.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:35:\"w.org/plugins/foobox-image-lightbox\";s:4:\"slug\";s:21:\"foobox-image-lightbox\";s:6:\"plugin\";s:37:\"foobox-image-lightbox/foobox-free.php\";s:11:\"new_version\";s:5:\"2.5.2\";s:3:\"url\";s:52:\"https://wordpress.org/plugins/foobox-image-lightbox/\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/plugin/foobox-image-lightbox.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:74:\"https://ps.w.org/foobox-image-lightbox/assets/icon-256x256.png?rev=1497659\";s:2:\"1x\";s:74:\"https://ps.w.org/foobox-image-lightbox/assets/icon-128x128.png?rev=1497659\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:75:\"https://ps.w.org/foobox-image-lightbox/assets/banner-772x250.png?rev=889563\";}s:11:\"banners_rtl\";a:0:{}}s:31:\"genesis-simple-hooks/plugin.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:34:\"w.org/plugins/genesis-simple-hooks\";s:4:\"slug\";s:20:\"genesis-simple-hooks\";s:6:\"plugin\";s:31:\"genesis-simple-hooks/plugin.php\";s:11:\"new_version\";s:5:\"2.2.1\";s:3:\"url\";s:51:\"https://wordpress.org/plugins/genesis-simple-hooks/\";s:7:\"package\";s:69:\"https://downloads.wordpress.org/plugin/genesis-simple-hooks.2.2.1.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:73:\"https://ps.w.org/genesis-simple-hooks/assets/icon-256x256.png?rev=1335659\";s:2:\"1x\";s:73:\"https://ps.w.org/genesis-simple-hooks/assets/icon-128x128.png?rev=1335659\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:76:\"https://ps.w.org/genesis-simple-hooks/assets/banner-1544x500.png?rev=1611304\";s:2:\"1x\";s:75:\"https://ps.w.org/genesis-simple-hooks/assets/banner-772x250.png?rev=1611304\";}s:11:\"banners_rtl\";a:0:{}}s:9:\"hello.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:25:\"w.org/plugins/hello-dolly\";s:4:\"slug\";s:11:\"hello-dolly\";s:6:\"plugin\";s:9:\"hello.php\";s:11:\"new_version\";s:3:\"1.6\";s:3:\"url\";s:42:\"https://wordpress.org/plugins/hello-dolly/\";s:7:\"package\";s:58:\"https://downloads.wordpress.org/plugin/hello-dolly.1.6.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:63:\"https://ps.w.org/hello-dolly/assets/icon-256x256.jpg?rev=969907\";s:2:\"1x\";s:63:\"https://ps.w.org/hello-dolly/assets/icon-128x128.jpg?rev=969907\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:65:\"https://ps.w.org/hello-dolly/assets/banner-772x250.png?rev=478342\";}s:11:\"banners_rtl\";a:0:{}}s:47:\"really-simple-ssl/rlrsssl-really-simple-ssl.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:31:\"w.org/plugins/really-simple-ssl\";s:4:\"slug\";s:17:\"really-simple-ssl\";s:6:\"plugin\";s:47:\"really-simple-ssl/rlrsssl-really-simple-ssl.php\";s:11:\"new_version\";s:6:\"2.5.26\";s:3:\"url\";s:48:\"https://wordpress.org/plugins/really-simple-ssl/\";s:7:\"package\";s:67:\"https://downloads.wordpress.org/plugin/really-simple-ssl.2.5.26.zip\";s:5:\"icons\";a:1:{s:2:\"1x\";s:70:\"https://ps.w.org/really-simple-ssl/assets/icon-128x128.png?rev=1782452\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:72:\"https://ps.w.org/really-simple-ssl/assets/banner-772x250.jpg?rev=1653668\";}s:11:\"banners_rtl\";a:0:{}}s:23:\"wordfence/wordfence.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:23:\"w.org/plugins/wordfence\";s:4:\"slug\";s:9:\"wordfence\";s:6:\"plugin\";s:23:\"wordfence/wordfence.php\";s:11:\"new_version\";s:5:\"7.1.4\";s:3:\"url\";s:40:\"https://wordpress.org/plugins/wordfence/\";s:7:\"package\";s:58:\"https://downloads.wordpress.org/plugin/wordfence.7.1.4.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:62:\"https://ps.w.org/wordfence/assets/icon-256x256.png?rev=1457724\";s:2:\"1x\";s:62:\"https://ps.w.org/wordfence/assets/icon-128x128.png?rev=1457724\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:65:\"https://ps.w.org/wordfence/assets/banner-1544x500.png?rev=1808795\";s:2:\"1x\";s:64:\"https://ps.w.org/wordfence/assets/banner-772x250.png?rev=1808795\";}s:11:\"banners_rtl\";a:0:{}}s:29:\"wp-db-backup/wp-db-backup.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:26:\"w.org/plugins/wp-db-backup\";s:4:\"slug\";s:12:\"wp-db-backup\";s:6:\"plugin\";s:29:\"wp-db-backup/wp-db-backup.php\";s:11:\"new_version\";s:5:\"2.3.3\";s:3:\"url\";s:43:\"https://wordpress.org/plugins/wp-db-backup/\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/plugin/wp-db-backup.2.3.3.zip\";s:5:\"icons\";a:1:{s:7:\"default\";s:56:\"https://s.w.org/plugins/geopattern-icon/wp-db-backup.svg\";}s:7:\"banners\";a:0:{}s:11:\"banners_rtl\";a:0:{}}s:22:\"wp-editor/wpeditor.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:23:\"w.org/plugins/wp-editor\";s:4:\"slug\";s:9:\"wp-editor\";s:6:\"plugin\";s:22:\"wp-editor/wpeditor.php\";s:11:\"new_version\";s:7:\"1.2.6.3\";s:3:\"url\";s:40:\"https://wordpress.org/plugins/wp-editor/\";s:7:\"package\";s:52:\"https://downloads.wordpress.org/plugin/wp-editor.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:62:\"https://ps.w.org/wp-editor/assets/icon-256x256.png?rev=1184262\";s:2:\"1x\";s:62:\"https://ps.w.org/wp-editor/assets/icon-128x128.png?rev=1184262\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:63:\"https://ps.w.org/wp-editor/assets/banner-772x250.png?rev=497457\";}s:11:\"banners_rtl\";a:0:{}}s:37:\"wp-mobile-detect/wp-mobile-detect.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:30:\"w.org/plugins/wp-mobile-detect\";s:4:\"slug\";s:16:\"wp-mobile-detect\";s:6:\"plugin\";s:37:\"wp-mobile-detect/wp-mobile-detect.php\";s:11:\"new_version\";s:3:\"2.0\";s:3:\"url\";s:47:\"https://wordpress.org/plugins/wp-mobile-detect/\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/plugin/wp-mobile-detect.2.0.zip\";s:5:\"icons\";a:1:{s:7:\"default\";s:60:\"https://s.w.org/plugins/geopattern-icon/wp-mobile-detect.svg\";}s:7:\"banners\";a:0:{}s:11:\"banners_rtl\";a:0:{}}s:65:\"wp-simple-booking-calendar-premium/wp-simple-booking-calendar.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:40:\"w.org/plugins/wp-simple-booking-calendar\";s:4:\"slug\";s:26:\"wp-simple-booking-calendar\";s:6:\"plugin\";s:65:\"wp-simple-booking-calendar-premium/wp-simple-booking-calendar.php\";s:11:\"new_version\";s:5:\"1.5.1\";s:3:\"url\";s:57:\"https://wordpress.org/plugins/wp-simple-booking-calendar/\";s:7:\"package\";s:75:\"https://downloads.wordpress.org/plugin/wp-simple-booking-calendar.1.5.1.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:78:\"https://ps.w.org/wp-simple-booking-calendar/assets/icon-256x256.png?rev=974501\";s:2:\"1x\";s:78:\"https://ps.w.org/wp-simple-booking-calendar/assets/icon-128x128.png?rev=974501\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:81:\"https://ps.w.org/wp-simple-booking-calendar/assets/banner-1544x500.png?rev=973365\";s:2:\"1x\";s:81:\"https://ps.w.org/wp-simple-booking-calendar/assets/banner-772x250.png?rev=1637672\";}s:11:\"banners_rtl\";a:0:{}}}}','no'),(124465,'_transient_timeout_jetpack_sync_last_checked_queue_state_sync','1525826738','no'),(124466,'_transient_jetpack_sync_last_checked_queue_state_sync','a:2:{i:0;i:0;i:1;i:0;}','no'),(124441,'_site_transient_timeout_theme_roots','1525824822','no'),(124442,'_site_transient_theme_roots','a:5:{s:7:\"genesis\";s:7:\"/themes\";s:13:\"twentyfifteen\";s:7:\"/themes\";s:15:\"twentyseventeen\";s:7:\"/themes\";s:13:\"twentysixteen\";s:7:\"/themes\";s:15:\"watch-hill-2017\";s:7:\"/themes\";}','no');
/*!40000 ALTER TABLE `wh_options` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wh_postmeta`
--

DROP TABLE IF EXISTS `wh_postmeta`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wh_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_520_ci DEFAULT NULL,
  `meta_value` longtext COLLATE utf8mb4_unicode_520_ci,
  PRIMARY KEY (`meta_id`),
  KEY `post_id` (`post_id`),
  KEY `meta_key` (`meta_key`(191))
) ENGINE=MyISAM AUTO_INCREMENT=1839 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wh_postmeta`
--

LOCK TABLES `wh_postmeta` WRITE;
/*!40000 ALTER TABLE `wh_postmeta` DISABLE KEYS */;
INSERT INTO `wh_postmeta` VALUES (5,5,'_edit_last','6'),(4,5,'_edit_lock','1519338041:6'),(6,5,'_wp_page_template','default'),(7,7,'_edit_lock','1519344955:6'),(8,7,'_edit_last','6'),(9,7,'_wp_page_template','default'),(10,9,'_edit_lock','1517867744:4'),(11,9,'_edit_last','4'),(12,9,'_wp_page_template','default'),(13,11,'_edit_lock','1519338180:6'),(14,11,'_edit_last','6'),(15,11,'_wp_page_template','default'),(16,13,'_edit_lock','1519338452:6'),(17,13,'_edit_last','6'),(18,13,'_wp_page_template','default'),(19,15,'_edit_lock','1516992254:4'),(20,15,'_edit_last','4'),(21,15,'_wp_page_template','default'),(22,17,'_edit_lock','1521136927:6'),(23,17,'_edit_last','4'),(24,17,'_wp_page_template','default'),(25,19,'_edit_lock','1521136924:6'),(26,19,'_edit_last','6'),(27,19,'_wp_page_template','default'),(28,21,'_edit_lock','1508336720:4'),(29,21,'_edit_last','4'),(30,21,'_wp_page_template','default'),(31,23,'_edit_lock','1516029918:4'),(32,23,'_edit_last','4'),(33,23,'_wp_page_template','default'),(47,30,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:350;s:6:\"height\";i:259;s:4:\"file\";s:14:\"2017/03/bg.png\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:14:\"bg-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:14:\"bg-300x222.png\";s:5:\"width\";i:300;s:6:\"height\";i:222;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:{}}}'),(46,30,'_wp_attached_file','2017/03/bg.png'),(43,28,'_edit_lock','1498504085:4'),(44,28,'_edit_last','4'),(45,28,'_wp_page_template','default'),(48,30,'_wp_attachment_is_custom_background','watch-hill-2017'),(51,32,'_wp_attached_file','2017/03/watch-hill-favicon.png'),(52,32,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:512;s:6:\"height\";i:512;s:4:\"file\";s:30:\"2017/03/watch-hill-favicon.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:30:\"watch-hill-favicon-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:30:\"watch-hill-favicon-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"featured-image\";a:4:{s:4:\"file\";s:30:\"watch-hill-favicon-512x400.png\";s:5:\"width\";i:512;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(53,33,'_wp_attached_file','2017/03/cropped-watch-hill-favicon.png'),(54,33,'_wp_attachment_context','site-icon'),(55,33,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:512;s:6:\"height\";i:512;s:4:\"file\";s:38:\"2017/03/cropped-watch-hill-favicon.png\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:38:\"cropped-watch-hill-favicon-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:38:\"cropped-watch-hill-favicon-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"featured-image\";a:4:{s:4:\"file\";s:38:\"cropped-watch-hill-favicon-512x400.png\";s:5:\"width\";i:512;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"site_icon-270\";a:4:{s:4:\"file\";s:38:\"cropped-watch-hill-favicon-270x270.png\";s:5:\"width\";i:270;s:6:\"height\";i:270;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"site_icon-192\";a:4:{s:4:\"file\";s:38:\"cropped-watch-hill-favicon-192x192.png\";s:5:\"width\";i:192;s:6:\"height\";i:192;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"site_icon-180\";a:4:{s:4:\"file\";s:38:\"cropped-watch-hill-favicon-180x180.png\";s:5:\"width\";i:180;s:6:\"height\";i:180;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"site_icon-32\";a:4:{s:4:\"file\";s:36:\"cropped-watch-hill-favicon-32x32.png\";s:5:\"width\";i:32;s:6:\"height\";i:32;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(56,34,'_wp_attached_file','2017/03/cropped-watch-hill-favicon-1.png'),(57,34,'_wp_attachment_context','site-icon'),(58,34,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:512;s:6:\"height\";i:512;s:4:\"file\";s:40:\"2017/03/cropped-watch-hill-favicon-1.png\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:40:\"cropped-watch-hill-favicon-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:40:\"cropped-watch-hill-favicon-1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"featured-image\";a:4:{s:4:\"file\";s:40:\"cropped-watch-hill-favicon-1-512x400.png\";s:5:\"width\";i:512;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"site_icon-270\";a:4:{s:4:\"file\";s:40:\"cropped-watch-hill-favicon-1-270x270.png\";s:5:\"width\";i:270;s:6:\"height\";i:270;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"site_icon-192\";a:4:{s:4:\"file\";s:40:\"cropped-watch-hill-favicon-1-192x192.png\";s:5:\"width\";i:192;s:6:\"height\";i:192;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"site_icon-180\";a:4:{s:4:\"file\";s:40:\"cropped-watch-hill-favicon-1-180x180.png\";s:5:\"width\";i:180;s:6:\"height\";i:180;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"site_icon-32\";a:4:{s:4:\"file\";s:38:\"cropped-watch-hill-favicon-1-32x32.png\";s:5:\"width\";i:32;s:6:\"height\";i:32;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(800,348,'ml-slider_settings','a:35:{s:4:\"type\";s:4:\"flex\";s:6:\"random\";s:5:\"false\";s:8:\"cssClass\";s:0:\"\";s:8:\"printCss\";s:4:\"true\";s:7:\"printJs\";s:4:\"true\";s:5:\"width\";s:3:\"640\";s:6:\"height\";s:3:\"480\";s:3:\"spw\";i:7;s:3:\"sph\";i:5;s:5:\"delay\";s:4:\"3000\";s:6:\"sDelay\";i:30;s:7:\"opacity\";d:0.6999999999999999555910790149937383830547332763671875;s:10:\"titleSpeed\";i:500;s:6:\"effect\";s:4:\"fade\";s:10:\"navigation\";s:4:\"true\";s:5:\"links\";s:5:\"false\";s:10:\"hoverPause\";s:4:\"true\";s:5:\"theme\";s:7:\"default\";s:9:\"direction\";s:10:\"horizontal\";s:7:\"reverse\";s:5:\"false\";s:14:\"animationSpeed\";s:4:\"1000\";s:8:\"prevText\";s:1:\"<\";s:8:\"nextText\";s:1:\">\";s:6:\"slices\";i: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:5:\"false\";s:10:\"noConflict\";s:4:\"true\";s:12:\"smoothHeight\";s:5:\"false\";}'),(814,5,'_gallery_link_target','_blank'),(797,343,'_edit_last','3'),(796,343,'_edit_lock','1493144989:3'),(70,37,'_menu_item_type','post_type'),(71,37,'_menu_item_menu_item_parent','0'),(72,37,'_menu_item_object_id','5'),(73,37,'_menu_item_object','page'),(74,37,'_menu_item_target',''),(75,37,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(76,37,'_menu_item_xfn',''),(77,37,'_menu_item_url',''),(79,38,'_menu_item_type','post_type'),(80,38,'_menu_item_menu_item_parent','0'),(81,38,'_menu_item_object_id','7'),(82,38,'_menu_item_object','page'),(83,38,'_menu_item_target',''),(84,38,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(85,38,'_menu_item_xfn',''),(86,38,'_menu_item_url',''),(88,39,'_menu_item_type','post_type'),(89,39,'_menu_item_menu_item_parent','42'),(90,39,'_menu_item_object_id','9'),(91,39,'_menu_item_object','page'),(92,39,'_menu_item_target',''),(93,39,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(94,39,'_menu_item_xfn',''),(95,39,'_menu_item_url',''),(732,119,'_wp_attachment_image_alt','Golfing'),(731,120,'_wp_attachment_image_alt','Kayaking'),(730,121,'_wp_attachment_image_alt','Sailboats on Lake Huron'),(729,122,'_wp_attachment_image_alt','Southampton Arts Centre Art School'),(106,41,'_menu_item_type','post_type'),(107,41,'_menu_item_menu_item_parent','38'),(108,41,'_menu_item_object_id','13'),(109,41,'_menu_item_object','page'),(110,41,'_menu_item_target',''),(111,41,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(112,41,'_menu_item_xfn',''),(113,41,'_menu_item_url',''),(115,42,'_menu_item_type','post_type'),(116,42,'_menu_item_menu_item_parent','0'),(117,42,'_menu_item_object_id','15'),(118,42,'_menu_item_object','page'),(119,42,'_menu_item_target',''),(120,42,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(121,42,'_menu_item_xfn',''),(122,42,'_menu_item_url',''),(124,43,'_menu_item_type','post_type'),(125,43,'_menu_item_menu_item_parent','42'),(126,43,'_menu_item_object_id','17'),(127,43,'_menu_item_object','page'),(128,43,'_menu_item_target',''),(129,43,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(130,43,'_menu_item_xfn',''),(131,43,'_menu_item_url',''),(133,44,'_menu_item_type','post_type'),(134,44,'_menu_item_menu_item_parent','42'),(135,44,'_menu_item_object_id','19'),(136,44,'_menu_item_object','page'),(137,44,'_menu_item_target',''),(138,44,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(139,44,'_menu_item_xfn',''),(140,44,'_menu_item_url',''),(142,45,'_menu_item_type','post_type'),(143,45,'_menu_item_menu_item_parent','42'),(144,45,'_menu_item_object_id','21'),(145,45,'_menu_item_object','page'),(146,45,'_menu_item_target',''),(147,45,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(148,45,'_menu_item_xfn',''),(149,45,'_menu_item_url',''),(171,38,'_ubermenu_settings','a:110:{s:22:\"submenu_column_default\";s:4:\"auto\";s:24:\"submenu_column_autoclear\";s:2:\"on\";s:11:\"row_padding\";s:0:\"\";s:8:\"grid_row\";s:3:\"off\";s:12:\"item_display\";s:4:\"auto\";s:12:\"disable_link\";s:3:\"off\";s:12:\"disable_text\";s:3:\"off\";s:9:\"highlight\";s:3:\"off\";s:10:\"item_align\";s:4:\"auto\";s:9:\"mini_item\";s:3:\"off\";s:10:\"custom_url\";s:0:\"\";s:8:\"scrollto\";s:0:\"\";s:7:\"no_wrap\";s:3:\"off\";s:12:\"item_trigger\";s:4:\"auto\";s:25:\"disable_submenu_indicator\";s:3:\"off\";s:15:\"disable_current\";s:3:\"off\";s:12:\"target_class\";s:0:\"\";s:9:\"target_id\";s:0:\"\";s:15:\"shiftnav_target\";s:0:\"\";s:7:\"columns\";s:4:\"auto\";s:11:\"item_layout\";s:7:\"default\";s:17:\"content_alignment\";s:7:\"default\";s:9:\"clear_row\";s:3:\"off\";s:12:\"submenu_type\";s:4:\"auto\";s:16:\"submenu_position\";s:20:\"vertical_parent_item\";s:23:\"flyout_submenu_position\";s:20:\"vertical_parent_item\";s:13:\"submenu_width\";s:5:\"150px\";s:17:\"submenu_min_width\";s:0:\"\";s:18:\"submenu_min_height\";s:0:\"\";s:14:\"submenu_padded\";s:3:\"off\";s:14:\"submenu_indent\";s:3:\"off\";s:16:\"submenu_advanced\";s:4:\"auto\";s:19:\"submenu_autocolumns\";s:8:\"disabled\";s:23:\"submenu_column_dividers\";s:0:\"\";s:25:\"submenu_column_min_height\";s:0:\"\";s:12:\"submenu_grid\";s:3:\"off\";s:12:\"show_current\";s:3:\"off\";s:12:\"show_default\";s:3:\"off\";s:24:\"submenu_background_image\";s:0:\"\";s:31:\"submenu_background_image_repeat\";s:9:\"no-repeat\";s:27:\"submenu_background_position\";s:12:\"bottom right\";s:23:\"submenu_background_size\";s:4:\"auto\";s:15:\"submenu_padding\";s:0:\"\";s:22:\"submenu_footer_content\";s:0:\"\";s:10:\"new_column\";s:3:\"off\";s:11:\"dt_taxonomy\";s:0:\"\";s:9:\"dt_number\";s:0:\"\";s:9:\"dt_parent\";s:0:\"\";s:11:\"dt_child_of\";s:0:\"\";s:10:\"dt_exclude\";s:0:\"\";s:10:\"dt_orderby\";s:4:\"name\";s:8:\"dt_order\";s:3:\"ASC\";s:13:\"dt_hide_empty\";s:3:\"off\";s:15:\"dt_hierarchical\";s:3:\"off\";s:14:\"dt_autocolumns\";s:8:\"disabled\";s:22:\"dt_display_term_counts\";s:3:\"off\";s:11:\"dt_view_all\";s:4:\"none\";s:16:\"dt_view_all_text\";s:0:\"\";s:17:\"dp_posts_per_page\";i:-1;s:12:\"dp_post_type\";a:2:{i:0;s:4:\"post\";i:1;s:4:\"page\";}s:11:\"dp_category\";s:0:\"\";s:6:\"dp_tag\";s:0:\"\";s:14:\"dp_post_parent\";s:0:\"\";s:9:\"dp_author\";s:0:\"\";s:10:\"dp_exclude\";s:0:\"\";s:10:\"dp_orderby\";s:5:\"title\";s:8:\"dp_order\";s:3:\"ASC\";s:14:\"dp_autocolumns\";s:8:\"disabled\";s:13:\"dp_subcontent\";s:4:\"none\";s:11:\"dp_view_all\";s:4:\"none\";s:16:\"dp_view_all_text\";s:0:\"\";s:10:\"tab_layout\";s:4:\"left\";s:17:\"tab_block_columns\";s:4:\"full\";s:17:\"tabs_group_layout\";s:4:\"auto\";s:19:\"panels_group_layout\";s:4:\"auto\";s:11:\"panels_grid\";s:3:\"off\";s:14:\"panels_padding\";s:0:\"\";s:18:\"show_default_panel\";s:3:\"off\";s:12:\"tabs_trigger\";s:9:\"mouseover\";s:12:\"menu_segment\";s:0:\"\";s:23:\"segment_transient_cache\";s:3:\"off\";s:30:\"segment_transient_cache_expiry\";s:0:\"\";s:4:\"icon\";s:0:\"\";s:10:\"item_image\";s:0:\"\";s:22:\"inherit_featured_image\";s:3:\"off\";s:10:\"image_size\";s:7:\"inherit\";s:16:\"image_dimensions\";s:7:\"inherit\";s:18:\"image_width_custom\";s:0:\"\";s:19:\"image_height_custom\";s:0:\"\";s:22:\"image_text_top_padding\";s:0:\"\";s:15:\"disable_padding\";s:3:\"off\";s:14:\"custom_content\";s:0:\"\";s:18:\"pad_custom_content\";s:2:\"on\";s:16:\"auto_widget_area\";s:0:\"\";s:11:\"widget_area\";s:0:\"\";s:19:\"widget_area_columns\";s:4:\"auto\";s:16:\"background_color\";s:0:\"\";s:10:\"font_color\";s:0:\"\";s:23:\"background_color_active\";s:0:\"\";s:17:\"font_color_active\";s:0:\"\";s:24:\"background_color_current\";s:7:\"#ffffff\";s:18:\"font_color_current\";s:7:\"#000000\";s:7:\"padding\";s:0:\"\";s:24:\"submenu_background_color\";s:7:\"#ffffff\";s:13:\"submenu_color\";s:7:\"#000000\";s:14:\"hide_on_mobile\";s:3:\"off\";s:15:\"hide_on_desktop\";s:3:\"off\";s:17:\"disable_on_mobile\";s:3:\"off\";s:18:\"disable_on_desktop\";s:3:\"off\";s:25:\"disable_submenu_on_mobile\";s:3:\"off\";}'),(151,46,'_menu_item_type','post_type'),(152,46,'_menu_item_menu_item_parent','0'),(153,46,'_menu_item_object_id','23'),(154,46,'_menu_item_object','page'),(155,46,'_menu_item_target',''),(156,46,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(157,46,'_menu_item_xfn',''),(158,46,'_menu_item_url',''),(160,47,'_menu_item_type','post_type'),(161,47,'_menu_item_menu_item_parent','0'),(162,47,'_menu_item_object_id','28'),(163,47,'_menu_item_object','page'),(164,47,'_menu_item_target',''),(165,47,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(166,47,'_menu_item_xfn',''),(167,47,'_menu_item_url',''),(172,42,'_ubermenu_settings','a:110:{s:22:\"submenu_column_default\";s:4:\"auto\";s:24:\"submenu_column_autoclear\";s:2:\"on\";s:11:\"row_padding\";s:0:\"\";s:8:\"grid_row\";s:3:\"off\";s:12:\"item_display\";s:4:\"auto\";s:12:\"disable_link\";s:3:\"off\";s:12:\"disable_text\";s:3:\"off\";s:9:\"highlight\";s:3:\"off\";s:10:\"item_align\";s:4:\"auto\";s:9:\"mini_item\";s:3:\"off\";s:10:\"custom_url\";s:0:\"\";s:8:\"scrollto\";s:0:\"\";s:7:\"no_wrap\";s:3:\"off\";s:12:\"item_trigger\";s:4:\"auto\";s:25:\"disable_submenu_indicator\";s:3:\"off\";s:15:\"disable_current\";s:3:\"off\";s:12:\"target_class\";s:0:\"\";s:9:\"target_id\";s:0:\"\";s:15:\"shiftnav_target\";s:0:\"\";s:7:\"columns\";s:4:\"auto\";s:11:\"item_layout\";s:7:\"default\";s:17:\"content_alignment\";s:7:\"default\";s:9:\"clear_row\";s:3:\"off\";s:12:\"submenu_type\";s:4:\"auto\";s:16:\"submenu_position\";s:20:\"vertical_parent_item\";s:23:\"flyout_submenu_position\";s:20:\"vertical_parent_item\";s:13:\"submenu_width\";s:5:\"150px\";s:17:\"submenu_min_width\";s:0:\"\";s:18:\"submenu_min_height\";s:0:\"\";s:14:\"submenu_padded\";s:3:\"off\";s:14:\"submenu_indent\";s:3:\"off\";s:16:\"submenu_advanced\";s:4:\"auto\";s:19:\"submenu_autocolumns\";s:8:\"disabled\";s:23:\"submenu_column_dividers\";s:0:\"\";s:25:\"submenu_column_min_height\";s:0:\"\";s:12:\"submenu_grid\";s:3:\"off\";s:12:\"show_current\";s:3:\"off\";s:12:\"show_default\";s:3:\"off\";s:24:\"submenu_background_image\";s:0:\"\";s:31:\"submenu_background_image_repeat\";s:9:\"no-repeat\";s:27:\"submenu_background_position\";s:12:\"bottom right\";s:23:\"submenu_background_size\";s:4:\"auto\";s:15:\"submenu_padding\";s:0:\"\";s:22:\"submenu_footer_content\";s:0:\"\";s:10:\"new_column\";s:3:\"off\";s:11:\"dt_taxonomy\";s:0:\"\";s:9:\"dt_number\";s:0:\"\";s:9:\"dt_parent\";s:0:\"\";s:11:\"dt_child_of\";s:0:\"\";s:10:\"dt_exclude\";s:0:\"\";s:10:\"dt_orderby\";s:4:\"name\";s:8:\"dt_order\";s:3:\"ASC\";s:13:\"dt_hide_empty\";s:3:\"off\";s:15:\"dt_hierarchical\";s:3:\"off\";s:14:\"dt_autocolumns\";s:8:\"disabled\";s:22:\"dt_display_term_counts\";s:3:\"off\";s:11:\"dt_view_all\";s:4:\"none\";s:16:\"dt_view_all_text\";s:0:\"\";s:17:\"dp_posts_per_page\";i:-1;s:12:\"dp_post_type\";a:2:{i:0;s:4:\"post\";i:1;s:4:\"page\";}s:11:\"dp_category\";s:0:\"\";s:6:\"dp_tag\";s:0:\"\";s:14:\"dp_post_parent\";s:0:\"\";s:9:\"dp_author\";s:0:\"\";s:10:\"dp_exclude\";s:0:\"\";s:10:\"dp_orderby\";s:5:\"title\";s:8:\"dp_order\";s:3:\"ASC\";s:14:\"dp_autocolumns\";s:8:\"disabled\";s:13:\"dp_subcontent\";s:4:\"none\";s:11:\"dp_view_all\";s:4:\"none\";s:16:\"dp_view_all_text\";s:0:\"\";s:10:\"tab_layout\";s:4:\"left\";s:17:\"tab_block_columns\";s:4:\"full\";s:17:\"tabs_group_layout\";s:4:\"auto\";s:19:\"panels_group_layout\";s:4:\"auto\";s:11:\"panels_grid\";s:3:\"off\";s:14:\"panels_padding\";s:0:\"\";s:18:\"show_default_panel\";s:3:\"off\";s:12:\"tabs_trigger\";s:9:\"mouseover\";s:12:\"menu_segment\";s:0:\"\";s:23:\"segment_transient_cache\";s:3:\"off\";s:30:\"segment_transient_cache_expiry\";s:0:\"\";s:4:\"icon\";s:0:\"\";s:10:\"item_image\";s:0:\"\";s:22:\"inherit_featured_image\";s:3:\"off\";s:10:\"image_size\";s:7:\"inherit\";s:16:\"image_dimensions\";s:7:\"inherit\";s:18:\"image_width_custom\";s:0:\"\";s:19:\"image_height_custom\";s:0:\"\";s:22:\"image_text_top_padding\";s:0:\"\";s:15:\"disable_padding\";s:3:\"off\";s:14:\"custom_content\";s:0:\"\";s:18:\"pad_custom_content\";s:2:\"on\";s:16:\"auto_widget_area\";s:0:\"\";s:11:\"widget_area\";s:0:\"\";s:19:\"widget_area_columns\";s:4:\"auto\";s:16:\"background_color\";s:0:\"\";s:10:\"font_color\";s:0:\"\";s:23:\"background_color_active\";s:0:\"\";s:17:\"font_color_active\";s:0:\"\";s:24:\"background_color_current\";s:7:\"#ffffff\";s:18:\"font_color_current\";s:7:\"#000000\";s:7:\"padding\";s:0:\"\";s:24:\"submenu_background_color\";s:7:\"#ffffff\";s:13:\"submenu_color\";s:7:\"#000000\";s:14:\"hide_on_mobile\";s:3:\"off\";s:15:\"hide_on_desktop\";s:3:\"off\";s:17:\"disable_on_mobile\";s:3:\"off\";s:18:\"disable_on_desktop\";s:3:\"off\";s:25:\"disable_submenu_on_mobile\";s:3:\"off\";}'),(173,49,'_wp_attached_file','2017/03/logo.jpg'),(174,49,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:291;s:6:\"height\";i:194;s:4:\"file\";s:16:\"2017/03/logo.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"logo-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(175,49,'_wp_attachment_image_alt','Watch Hill Bed & Breakfast - Logo Image'),(176,50,'ml-slider_settings','a:35:{s:4:\"type\";s:4:\"flex\";s:6:\"random\";s:5:\"false\";s:8:\"cssClass\";s:0:\"\";s:8:\"printCss\";s:4:\"true\";s:7:\"printJs\";s:4:\"true\";s:5:\"width\";s:3:\"825\";s:6:\"height\";s:3:\"570\";s:3:\"spw\";i:7;s:3:\"sph\";i:5;s:5:\"delay\";s:4:\"3500\";s:6:\"sDelay\";i:30;s:7:\"opacity\";d:0.6999999999999999555910790149937383830547332763671875;s:10:\"titleSpeed\";i:500;s:6:\"effect\";s:4:\"fade\";s:10:\"navigation\";s:5:\"false\";s:5:\"links\";s:4:\"true\";s:10:\"hoverPause\";s:4:\"true\";s:5:\"theme\";s:7:\"default\";s:9:\"direction\";s:10:\"horizontal\";s:7:\"reverse\";s:5:\"false\";s:14:\"animationSpeed\";s:4:\"1000\";s:8:\"prevText\";s:1:\"<\";s:8:\"nextText\";s:1:\">\";s:6:\"slices\";i:15;s:6:\"center\";s:5:\"false\";s:9:\"smartCrop\";s:4:\"true\";s:12:\"carouselMode\";s:5:\"false\";s:14:\"carouselMargin\";s:1:\"5\";s:6:\"easing\";s:6:\"linear\";s:8:\"autoPlay\";s:4:\"true\";s:11:\"thumb_width\";i:150;s:12:\"thumb_height\";i:100;s:9:\"fullWidth\";s:5:\"false\";s:10:\"noConflict\";s:4:\"true\";s:12:\"smoothHeight\";s:5:\"false\";}'),(177,51,'_wp_attached_file','2017/03/home-slide-1.jpg'),(178,51,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:825;s:6:\"height\";i:570;s:4:\"file\";s:24:\"2017/03/home-slide-1.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"home-slide-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:24:\"home-slide-1-300x207.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:207;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:24:\"home-slide-1-768x531.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:531;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-image\";a:4:{s:4:\"file\";s:24:\"home-slide-1-720x400.jpg\";s:5:\"width\";i:720;s:6:\"height\";i:400;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:{}}}'),(179,52,'_wp_attached_file','2017/03/home-slide-2.jpg'),(180,52,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:825;s:6:\"height\";i:570;s:4:\"file\";s:24:\"2017/03/home-slide-2.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"home-slide-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:24:\"home-slide-2-300x207.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:207;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:24:\"home-slide-2-768x531.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:531;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-image\";a:4:{s:4:\"file\";s:24:\"home-slide-2-720x400.jpg\";s:5:\"width\";i:720;s:6:\"height\";i:400;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:{}}}'),(181,53,'_wp_attached_file','2017/03/home-slide-3.jpg'),(182,53,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:825;s:6:\"height\";i:570;s:4:\"file\";s:24:\"2017/03/home-slide-3.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"home-slide-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:24:\"home-slide-3-300x207.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:207;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:24:\"home-slide-3-768x531.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:531;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-image\";a:4:{s:4:\"file\";s:24:\"home-slide-3-720x400.jpg\";s:5:\"width\";i:720;s:6:\"height\";i:400;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:{}}}'),(183,54,'_wp_attached_file','2017/03/home-slide-4.jpg'),(184,54,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:825;s:6:\"height\";i:570;s:4:\"file\";s:24:\"2017/03/home-slide-4.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"home-slide-4-150x150.jpg\";s:5:\"width\";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:\"home-slide-4-300x207.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:207;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:24:\"home-slide-4-768x531.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:531;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-image\";a:4:{s:4:\"file\";s:24:\"home-slide-4-720x400.jpg\";s:5:\"width\";i:720;s:6:\"height\";i:400;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:{}}}'),(185,51,'ml-slider_type','image'),(186,52,'ml-slider_type','image'),(187,53,'ml-slider_type','image'),(188,54,'ml-slider_type','image'),(189,51,'_wp_attachment_backup_sizes','a:1:{s:15:\"resized-700x300\";a:5:{s:4:\"path\";s:83:\"/home/watchhill/public_html/dev/wp-content/uploads/2017/03/home-slide-1-700x300.jpg\";s:4:\"file\";s:24:\"home-slide-1-700x300.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}}'),(190,52,'_wp_attachment_backup_sizes','a:1:{s:15:\"resized-700x300\";a:5:{s:4:\"path\";s:83:\"/home/watchhill/public_html/dev/wp-content/uploads/2017/03/home-slide-2-700x300.jpg\";s:4:\"file\";s:24:\"home-slide-2-700x300.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}}'),(191,53,'_wp_attachment_backup_sizes','a:1:{s:15:\"resized-700x300\";a:5:{s:4:\"path\";s:83:\"/home/watchhill/public_html/dev/wp-content/uploads/2017/03/home-slide-3-700x300.jpg\";s:4:\"file\";s:24:\"home-slide-3-700x300.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}}'),(192,54,'_wp_attachment_backup_sizes','a:1:{s:15:\"resized-700x300\";a:5:{s:4:\"path\";s:83:\"/home/watchhill/public_html/dev/wp-content/uploads/2017/03/home-slide-4-700x300.jpg\";s:4:\"file\";s:24:\"home-slide-4-700x300.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}}'),(193,51,'ml-slider_crop_position','center-center'),(194,51,'_wp_attachment_image_alt',''),(195,52,'ml-slider_crop_position','center-center'),(196,52,'_wp_attachment_image_alt',''),(197,53,'ml-slider_crop_position','center-center'),(198,53,'_wp_attachment_image_alt',''),(199,54,'ml-slider_crop_position','center-center'),(200,54,'_wp_attachment_image_alt','Watch Hill by night'),(201,55,'_edit_lock','1519337987:6'),(202,55,'_edit_last','3'),(203,55,'_wp_page_template','default'),(204,68,'_edit_lock','1489588464:3'),(205,68,'_edit_last','3'),(206,69,'_wp_attached_file','2017/03/Huron-Suite.jpg'),(207,69,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2000;s:6:\"height\";i:1333;s:4:\"file\";s:23:\"2017/03/Huron-Suite.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"Huron-Suite-150x150.jpg\";s:5:\"width\";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:\"Huron-Suite-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:23:\"Huron-Suite-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:24:\"Huron-Suite-1024x682.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:682;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-image\";a:4:{s:4:\"file\";s:23:\"Huron-Suite-720x400.jpg\";s:5:\"width\";i:720;s:6:\"height\";i:400;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:{}}}'),(208,70,'_wp_attached_file','2017/03/ensuite1.jpg'),(209,70,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2000;s:6:\"height\";i:1333;s:4:\"file\";s:20:\"2017/03/ensuite1.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"ensuite1-150x150.jpg\";s:5:\"width\";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:\"ensuite1-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:20:\"ensuite1-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"ensuite1-1024x682.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:682;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-image\";a:4:{s:4:\"file\";s:20:\"ensuite1-720x400.jpg\";s:5:\"width\";i:720;s:6:\"height\";i:400;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:{}}}'),(210,71,'_wp_attached_file','2017/03/1M1A1540.jpg'),(211,71,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:667;s:4:\"file\";s:20:\"2017/03/1M1A1540.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"1M1A1540-150x150.jpg\";s:5:\"width\";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:\"1M1A1540-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:20:\"1M1A1540-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-image\";a:4:{s:4:\"file\";s:20:\"1M1A1540-720x400.jpg\";s:5:\"width\";i:720;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:2:\"13\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1474637975\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"17\";s:3:\"iso\";s:3:\"200\";s:13:\"shutter_speed\";s:3:\"0.8\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(212,72,'_wp_attached_file','2017/03/1M1A1286_b.jpg'),(213,72,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:563;s:4:\"file\";s:22:\"2017/03/1M1A1286_b.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"1M1A1286_b-150x150.jpg\";s:5:\"width\";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:\"1M1A1286_b-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:22:\"1M1A1286_b-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-image\";a:4:{s:4:\"file\";s:22:\"1M1A1286_b-720x400.jpg\";s:5:\"width\";i:720;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:2:\"14\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1474632104\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"17\";s:3:\"iso\";s:3:\"200\";s:13:\"shutter_speed\";s:3:\"1.3\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(214,73,'_wp_attached_file','2017/03/1M1A1207_b.jpg'),(215,73,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:563;s:4:\"file\";s:22:\"2017/03/1M1A1207_b.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"1M1A1207_b-150x150.jpg\";s:5:\"width\";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:\"1M1A1207_b-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:22:\"1M1A1207_b-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-image\";a:4:{s:4:\"file\";s:22:\"1M1A1207_b-720x400.jpg\";s:5:\"width\";i:720;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:2:\"14\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1474630028\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"17\";s:3:\"iso\";s:3:\"200\";s:13:\"shutter_speed\";s:3:\"0.5\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(216,68,'foogallery_attachments','a:5:{i:0;s:2:\"69\";i:1;s:2:\"73\";i:2;s:2:\"72\";i:3;s:2:\"71\";i:4;s:2:\"70\";}'),(217,68,'foogallery_template','default'),(218,68,'foogallery_settings','a:56:{s:16:\"default_lightbox\";s:11:\"foobox-free\";s:15:\"default_spacing\";s:16:\"spacing-width-10\";s:17:\"default_alignment\";s:16:\"alignment-center\";s:25:\"default_loading_animation\";s:3:\"yes\";s:28:\"default_thumbnail_dimensions\";a:3:{s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";s:4:\"crop\";s:1:\"1\";}s:22:\"default_thumbnail_link\";s:5:\"image\";s:20:\"default_border-style\";s:25:\"border-style-square-white\";s:25:\"default_hover-effect-type\";s:0:\"\";s:20:\"default_hover-effect\";s:17:\"hover-effect-zoom\";s:28:\"default_caption-hover-effect\";s:20:\"hover-caption-simple\";s:23:\"default_caption-content\";s:5:\"title\";s:22:\"image-viewer_alignment\";s:16:\"alignment-center\";s:21:\"image-viewer_lightbox\";s:11:\"foobox-free\";s:18:\"image-viewer_theme\";s:0:\"\";s:33:\"image-viewer_theme_custom_bgcolor\";s:7:\"#FFFFFF\";s:35:\"image-viewer_theme_custom_textcolor\";s:7:\"#1b1b1b\";s:36:\"image-viewer_theme_custom_hovercolor\";s:7:\"#F2F2F2\";s:37:\"image-viewer_theme_custom_bordercolor\";s:7:\"#e6e6e6\";s:27:\"image-viewer_thumbnail_size\";a:3:{s:5:\"width\";s:3:\"640\";s:6:\"height\";s:3:\"360\";s:4:\"crop\";s:1:\"1\";}s:27:\"image-viewer_thumbnail_link\";s:5:\"image\";s:30:\"image-viewer_hover-effect-type\";s:0:\"\";s:25:\"image-viewer_hover-effect\";s:17:\"hover-effect-zoom\";s:28:\"image-viewer_caption-content\";s:5:\"title\";s:22:\"image-viewer_text-prev\";s:4:\"Prev\";s:20:\"image-viewer_text-of\";s:2:\"of\";s:22:\"image-viewer_text-next\";s:4:\"Next\";s:22:\"justified_thumb_height\";s:3:\"250\";s:20:\"justified_row_height\";s:3:\"150\";s:24:\"justified_max_row_height\";s:4:\"200%\";s:17:\"justified_margins\";s:1:\"1\";s:24:\"justified_caption_source\";s:5:\"title\";s:24:\"justified_thumbnail_link\";s:5:\"image\";s:18:\"justified_lightbox\";s:11:\"foobox-free\";s:23:\"masonry_thumbnail_width\";s:3:\"150\";s:14:\"masonry_layout\";s:5:\"fixed\";s:20:\"masonry_gutter_width\";s:2:\"10\";s:20:\"masonry_center_align\";s:7:\"default\";s:22:\"masonry_gutter_percent\";s:0:\"\";s:18:\"masonry_hover_zoom\";s:7:\"default\";s:22:\"masonry_thumbnail_link\";s:5:\"image\";s:16:\"masonry_lightbox\";s:11:\"foobox-free\";s:37:\"simple_portfolio_thumbnail_dimensions\";a:3:{s:5:\"width\";s:3:\"250\";s:6:\"height\";s:3:\"200\";s:4:\"crop\";s:1:\"1\";}s:31:\"simple_portfolio_thumbnail_link\";s:5:\"image\";s:25:\"simple_portfolio_lightbox\";s:11:\"foobox-free\";s:23:\"simple_portfolio_gutter\";s:2:\"40\";s:33:\"simple_portfolio_caption_position\";s:0:\"\";s:33:\"simple_portfolio_caption_bg_color\";s:4:\"#fff\";s:35:\"simple_portfolio_caption_text_color\";s:4:\"#333\";s:30:\"thumbnail_thumbnail_dimensions\";a:3:{s:5:\"width\";s:3:\"250\";s:6:\"height\";s:3:\"200\";s:4:\"crop\";s:1:\"1\";}s:18:\"thumbnail_position\";s:14:\"position-block\";s:23:\"thumbnail_caption_style\";s:14:\"caption-simple\";s:25:\"thumbnail_caption_bgcolor\";s:18:\"rgba(0, 0, 0, 0.8)\";s:23:\"thumbnail_caption_color\";s:18:\"rgb(255, 255, 255)\";s:23:\"thumbnail_caption_title\";s:0:\"\";s:29:\"thumbnail_caption_description\";s:0:\"\";s:18:\"thumbnail_lightbox\";s:11:\"foobox-free\";}'),(219,68,'foogallery_sort',''),(220,68,'foogallery_retina',NULL),(224,76,'ml-slider_settings','a:35:{s:4:\"type\";s:4:\"flex\";s:6:\"random\";s:5:\"false\";s:8:\"cssClass\";s:0:\"\";s:8:\"printCss\";s:4:\"true\";s:7:\"printJs\";s:4:\"true\";s:5:\"width\";s:3:\"825\";s:6:\"height\";s:3:\"570\";s:3:\"spw\";i:7;s:3:\"sph\";i:5;s:5:\"delay\";s:4:\"3000\";s:6:\"sDelay\";i:30;s:7:\"opacity\";d:0.6999999999999999555910790149937383830547332763671875;s:10:\"titleSpeed\";i:500;s:6:\"effect\";s:4:\"fade\";s:10:\"navigation\";s:4:\"true\";s:5:\"links\";s:5:\"false\";s:10:\"hoverPause\";s:4:\"true\";s:5:\"theme\";s:7:\"default\";s:9:\"direction\";s:10:\"horizontal\";s:7:\"reverse\";s:5:\"false\";s:14:\"animationSpeed\";s:4:\"1000\";s:8:\"prevText\";s:1:\"<\";s:8:\"nextText\";s:1:\">\";s:6:\"slices\";i:15;s:6:\"center\";s:5:\"false\";s:9:\"smartCrop\";s:4:\"true\";s:12:\"carouselMode\";s:5:\"false\";s:14:\"carouselMargin\";s:1:\"5\";s:6:\"easing\";s:6:\"linear\";s:8:\"autoPlay\";s:4:\"true\";s:11:\"thumb_width\";i:150;s:12:\"thumb_height\";i:100;s:9:\"fullWidth\";s:5:\"false\";s:10:\"noConflict\";s:4:\"true\";s:12:\"smoothHeight\";s:5:\"false\";}'),(225,69,'_wp_old_slug','huron-suite'),(226,69,'ml-slider_type','image'),(227,70,'ml-slider_type','image'),(228,71,'ml-slider_type','image'),(229,72,'ml-slider_type','image'),(230,73,'ml-slider_type','image'),(231,69,'_wp_attachment_backup_sizes','a:1:{s:15:\"resized-825x570\";a:5:{s:4:\"path\";s:82:\"/home/watchhill/public_html/dev/wp-content/uploads/2017/03/Huron-Suite-825x570.jpg\";s:4:\"file\";s:23:\"Huron-Suite-825x570.jpg\";s:5:\"width\";i:825;s:6:\"height\";i:570;s:9:\"mime-type\";s:10:\"image/jpeg\";}}'),(232,70,'_wp_attachment_backup_sizes','a:1:{s:15:\"resized-825x570\";a:5:{s:4:\"path\";s:79:\"/home/watchhill/public_html/dev/wp-content/uploads/2017/03/ensuite1-825x570.jpg\";s:4:\"file\";s:20:\"ensuite1-825x570.jpg\";s:5:\"width\";i:825;s:6:\"height\";i:570;s:9:\"mime-type\";s:10:\"image/jpeg\";}}'),(233,71,'_wp_attachment_backup_sizes','a:1:{s:15:\"resized-825x570\";a:5:{s:4:\"path\";s:79:\"/home/watchhill/public_html/dev/wp-content/uploads/2017/03/1M1A1540-825x570.jpg\";s:4:\"file\";s:20:\"1M1A1540-825x570.jpg\";s:5:\"width\";i:825;s:6:\"height\";i:570;s:9:\"mime-type\";s:10:\"image/jpeg\";}}'),(234,72,'_wp_attachment_backup_sizes','a:1:{s:15:\"resized-814x563\";a:5:{s:4:\"path\";s:81:\"/home/watchhill/public_html/dev/wp-content/uploads/2017/03/1M1A1286_b-814x563.jpg\";s:4:\"file\";s:22:\"1M1A1286_b-814x563.jpg\";s:5:\"width\";i:814;s:6:\"height\";i:563;s:9:\"mime-type\";s:10:\"image/jpeg\";}}'),(235,73,'_wp_attachment_backup_sizes','a:1:{s:15:\"resized-814x563\";a:5:{s:4:\"path\";s:81:\"/home/watchhill/public_html/dev/wp-content/uploads/2017/03/1M1A1207_b-814x563.jpg\";s:4:\"file\";s:22:\"1M1A1207_b-814x563.jpg\";s:5:\"width\";i:814;s:6:\"height\";i:563;s:9:\"mime-type\";s:10:\"image/jpeg\";}}'),(236,69,'ml-slider_crop_position','center-center'),(237,69,'_wp_attachment_image_alt',''),(238,70,'ml-slider_crop_position','center-center'),(239,70,'_wp_attachment_image_alt',''),(240,71,'ml-slider_crop_position','center-center'),(241,71,'_wp_attachment_image_alt',''),(242,72,'ml-slider_crop_position','center-center'),(243,72,'_wp_attachment_image_alt',''),(244,73,'ml-slider_crop_position','center-center'),(245,73,'_wp_attachment_image_alt',''),(246,80,'ml-slider_settings','a:35:{s:4:\"type\";s:4:\"flex\";s:6:\"random\";s:5:\"false\";s:8:\"cssClass\";s:0:\"\";s:8:\"printCss\";s:4:\"true\";s:7:\"printJs\";s:4:\"true\";s:5:\"width\";s:3:\"825\";s:6:\"height\";s:3:\"570\";s:3:\"spw\";i:7;s:3:\"sph\";i:5;s:5:\"delay\";s:4:\"3000\";s:6:\"sDelay\";i:30;s:7:\"opacity\";d:0.6999999999999999555910790149937383830547332763671875;s:10:\"titleSpeed\";i:500;s:6:\"effect\";s:4:\"fade\";s:10:\"navigation\";s:4:\"true\";s:5:\"links\";s:5:\"false\";s:10:\"hoverPause\";s:4:\"true\";s:5:\"theme\";s:7:\"default\";s:9:\"direction\";s:10:\"horizontal\";s:7:\"reverse\";s:5:\"false\";s:14:\"animationSpeed\";s:4:\"1000\";s:8:\"prevText\";s:1:\"<\";s:8:\"nextText\";s:1:\">\";s:6:\"slices\";i:15;s:6:\"center\";s:5:\"false\";s:9:\"smartCrop\";s:4:\"true\";s:12:\"carouselMode\";s:5:\"false\";s:14:\"carouselMargin\";s:1:\"5\";s:6:\"easing\";s:6:\"linear\";s:8:\"autoPlay\";s:4:\"true\";s:11:\"thumb_width\";i:150;s:12:\"thumb_height\";i:100;s:9:\"fullWidth\";s:5:\"false\";s:10:\"noConflict\";s:4:\"true\";s:12:\"smoothHeight\";s:5:\"false\";}'),(247,81,'_wp_attached_file','2017/03/Chantry-Suite.jpg'),(248,81,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2000;s:6:\"height\";i:1333;s:4:\"file\";s:25:\"2017/03/Chantry-Suite.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"Chantry-Suite-150x150.jpg\";s:5:\"width\";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:\"Chantry-Suite-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:25:\"Chantry-Suite-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:26:\"Chantry-Suite-1024x682.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:682;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-image\";a:4:{s:4:\"file\";s:25:\"Chantry-Suite-720x400.jpg\";s:5:\"width\";i:720;s:6:\"height\";i:400;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:{}}}'),(249,82,'_wp_attached_file','2017/03/1M1A1554.jpg'),(250,82,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:667;s:4:\"file\";s:20:\"2017/03/1M1A1554.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"1M1A1554-150x150.jpg\";s:5:\"width\";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:\"1M1A1554-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:20:\"1M1A1554-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-image\";a:4:{s:4:\"file\";s:20:\"1M1A1554-720x400.jpg\";s:5:\"width\";i:720;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:2:\"13\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1474638193\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"17\";s:3:\"iso\";s:3:\"200\";s:13:\"shutter_speed\";s:3:\"0.6\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(251,83,'_wp_attached_file','2017/03/1M1A1572.jpg'),(252,83,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:667;s:4:\"file\";s:20:\"2017/03/1M1A1572.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"1M1A1572-150x150.jpg\";s:5:\"width\";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:\"1M1A1572-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:20:\"1M1A1572-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-image\";a:4:{s:4:\"file\";s:20:\"1M1A1572-720x400.jpg\";s:5:\"width\";i:720;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:2:\"13\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1474638417\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"17\";s:3:\"iso\";s:3:\"200\";s:13:\"shutter_speed\";s:1:\"1\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(253,84,'_wp_attached_file','2017/03/1M1A1586.jpg'),(254,84,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:667;s:4:\"file\";s:20:\"2017/03/1M1A1586.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"1M1A1586-150x150.jpg\";s:5:\"width\";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:\"1M1A1586-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:20:\"1M1A1586-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-image\";a:4:{s:4:\"file\";s:20:\"1M1A1586-720x400.jpg\";s:5:\"width\";i:720;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:2:\"13\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1474638548\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"17\";s:3:\"iso\";s:3:\"200\";s:13:\"shutter_speed\";s:3:\"0.3\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(255,85,'_wp_attached_file','2017/03/1M1A1580.jpg'),(256,85,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:667;s:4:\"file\";s:20:\"2017/03/1M1A1580.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"1M1A1580-150x150.jpg\";s:5:\"width\";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:\"1M1A1580-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:20:\"1M1A1580-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-image\";a:4:{s:4:\"file\";s:20:\"1M1A1580-720x400.jpg\";s:5:\"width\";i:720;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:2:\"13\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1474638485\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"17\";s:3:\"iso\";s:3:\"200\";s:13:\"shutter_speed\";s:15:\"0.0166666666667\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(259,87,'_wp_attached_file','2017/03/1M1A1599.jpg'),(260,87,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:667;s:4:\"file\";s:20:\"2017/03/1M1A1599.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"1M1A1599-150x150.jpg\";s:5:\"width\";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:\"1M1A1599-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:20:\"1M1A1599-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-image\";a:4:{s:4:\"file\";s:20:\"1M1A1599-720x400.jpg\";s:5:\"width\";i:720;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:2:\"13\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1474638696\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"17\";s:3:\"iso\";s:3:\"200\";s:13:\"shutter_speed\";s:4:\"0.25\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(261,88,'_wp_attached_file','2017/03/1M1A1606.jpg'),(262,88,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:667;s:4:\"file\";s:20:\"2017/03/1M1A1606.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"1M1A1606-150x150.jpg\";s:5:\"width\";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:\"1M1A1606-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:20:\"1M1A1606-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-image\";a:4:{s:4:\"file\";s:20:\"1M1A1606-720x400.jpg\";s:5:\"width\";i:720;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:2:\"13\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1474638982\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"17\";s:3:\"iso\";s:3:\"200\";s:13:\"shutter_speed\";s:3:\"0.2\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(263,89,'_wp_attached_file','2017/03/1M1A1608.jpg'),(264,89,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:667;s:4:\"file\";s:20:\"2017/03/1M1A1608.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"1M1A1608-150x150.jpg\";s:5:\"width\";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:\"1M1A1608-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:20:\"1M1A1608-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-image\";a:4:{s:4:\"file\";s:20:\"1M1A1608-720x400.jpg\";s:5:\"width\";i:720;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:2:\"13\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1474639007\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"17\";s:3:\"iso\";s:3:\"200\";s:13:\"shutter_speed\";s:3:\"0.4\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(265,81,'ml-slider_type','image'),(266,82,'ml-slider_type','image'),(267,83,'ml-slider_type','image'),(268,84,'ml-slider_type','image'),(269,85,'ml-slider_type','image'),(270,87,'ml-slider_type','image'),(271,88,'ml-slider_type','image'),(272,89,'ml-slider_type','image'),(273,81,'_wp_attachment_backup_sizes','a:1:{s:15:\"resized-825x570\";a:5:{s:4:\"path\";s:84:\"/home/watchhill/public_html/dev/wp-content/uploads/2017/03/Chantry-Suite-825x570.jpg\";s:4:\"file\";s:25:\"Chantry-Suite-825x570.jpg\";s:5:\"width\";i:825;s:6:\"height\";i:570;s:9:\"mime-type\";s:10:\"image/jpeg\";}}'),(274,82,'_wp_attachment_backup_sizes','a:1:{s:15:\"resized-825x570\";a:5:{s:4:\"path\";s:79:\"/home/watchhill/public_html/dev/wp-content/uploads/2017/03/1M1A1554-825x570.jpg\";s:4:\"file\";s:20:\"1M1A1554-825x570.jpg\";s:5:\"width\";i:825;s:6:\"height\";i:570;s:9:\"mime-type\";s:10:\"image/jpeg\";}}'),(275,83,'_wp_attachment_backup_sizes','a:1:{s:15:\"resized-825x570\";a:5:{s:4:\"path\";s:79:\"/home/watchhill/public_html/dev/wp-content/uploads/2017/03/1M1A1572-825x570.jpg\";s:4:\"file\";s:20:\"1M1A1572-825x570.jpg\";s:5:\"width\";i:825;s:6:\"height\";i:570;s:9:\"mime-type\";s:10:\"image/jpeg\";}}'),(276,84,'_wp_attachment_backup_sizes','a:1:{s:15:\"resized-825x570\";a:5:{s:4:\"path\";s:79:\"/home/watchhill/public_html/dev/wp-content/uploads/2017/03/1M1A1586-825x570.jpg\";s:4:\"file\";s:20:\"1M1A1586-825x570.jpg\";s:5:\"width\";i:825;s:6:\"height\";i:570;s:9:\"mime-type\";s:10:\"image/jpeg\";}}'),(277,85,'_wp_attachment_backup_sizes','a:1:{s:15:\"resized-825x570\";a:5:{s:4:\"path\";s:79:\"/home/watchhill/public_html/dev/wp-content/uploads/2017/03/1M1A1580-825x570.jpg\";s:4:\"file\";s:20:\"1M1A1580-825x570.jpg\";s:5:\"width\";i:825;s:6:\"height\";i:570;s:9:\"mime-type\";s:10:\"image/jpeg\";}}'),(278,87,'_wp_attachment_backup_sizes','a:1:{s:15:\"resized-825x570\";a:5:{s:4:\"path\";s:79:\"/home/watchhill/public_html/dev/wp-content/uploads/2017/03/1M1A1599-825x570.jpg\";s:4:\"file\";s:20:\"1M1A1599-825x570.jpg\";s:5:\"width\";i:825;s:6:\"height\";i:570;s:9:\"mime-type\";s:10:\"image/jpeg\";}}'),(279,88,'_wp_attachment_backup_sizes','a:1:{s:15:\"resized-825x570\";a:5:{s:4:\"path\";s:79:\"/home/watchhill/public_html/dev/wp-content/uploads/2017/03/1M1A1606-825x570.jpg\";s:4:\"file\";s:20:\"1M1A1606-825x570.jpg\";s:5:\"width\";i:825;s:6:\"height\";i:570;s:9:\"mime-type\";s:10:\"image/jpeg\";}}'),(280,89,'_wp_attachment_backup_sizes','a:1:{s:15:\"resized-825x570\";a:5:{s:4:\"path\";s:79:\"/home/watchhill/public_html/dev/wp-content/uploads/2017/03/1M1A1608-825x570.jpg\";s:4:\"file\";s:20:\"1M1A1608-825x570.jpg\";s:5:\"width\";i:825;s:6:\"height\";i:570;s:9:\"mime-type\";s:10:\"image/jpeg\";}}'),(281,82,'ml-slider_crop_position','center-center'),(282,82,'_wp_attachment_image_alt',''),(283,83,'ml-slider_crop_position','center-center'),(284,83,'_wp_attachment_image_alt',''),(285,84,'ml-slider_crop_position','center-center'),(286,84,'_wp_attachment_image_alt',''),(287,85,'ml-slider_crop_position','center-center'),(288,85,'_wp_attachment_image_alt',''),(289,87,'ml-slider_crop_position','center-center'),(290,87,'_wp_attachment_image_alt',''),(291,88,'ml-slider_crop_position','center-center'),(292,88,'_wp_attachment_image_alt',''),(293,89,'ml-slider_crop_position','center-center'),(294,89,'_wp_attachment_image_alt',''),(295,92,'ml-slider_settings','a:35:{s:4:\"type\";s:4:\"flex\";s:6:\"random\";s:5:\"false\";s:8:\"cssClass\";s:0:\"\";s:8:\"printCss\";s:4:\"true\";s:7:\"printJs\";s:4:\"true\";s:5:\"width\";s:3:\"825\";s:6:\"height\";s:3:\"570\";s:3:\"spw\";i:7;s:3:\"sph\";i:5;s:5:\"delay\";s:4:\"3000\";s:6:\"sDelay\";i:30;s:7:\"opacity\";d:0.6999999999999999555910790149937383830547332763671875;s:10:\"titleSpeed\";i:500;s:6:\"effect\";s:4:\"fade\";s:10:\"navigation\";s:4:\"true\";s:5:\"links\";s:5:\"false\";s:10:\"hoverPause\";s:4:\"true\";s:5:\"theme\";s:7:\"default\";s:9:\"direction\";s:10:\"horizontal\";s:7:\"reverse\";s:5:\"false\";s:14:\"animationSpeed\";s:4:\"1000\";s:8:\"prevText\";s:1:\"<\";s:8:\"nextText\";s:1:\">\";s:6:\"slices\";i:15;s:6:\"center\";s:5:\"false\";s:9:\"smartCrop\";s:4:\"true\";s:12:\"carouselMode\";s:5:\"false\";s:14:\"carouselMargin\";s:1:\"5\";s:6:\"easing\";s:6:\"linear\";s:8:\"autoPlay\";s:4:\"true\";s:11:\"thumb_width\";i:150;s:12:\"thumb_height\";i:100;s:9:\"fullWidth\";s:5:\"false\";s:10:\"noConflict\";s:4:\"true\";s:12:\"smoothHeight\";s:5:\"false\";}'),(296,93,'_wp_attached_file','2017/03/1M1A1120.jpg'),(297,93,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:563;s:4:\"file\";s:20:\"2017/03/1M1A1120.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"1M1A1120-150x150.jpg\";s:5:\"width\";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:\"1M1A1120-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:20:\"1M1A1120-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-image\";a:4:{s:4:\"file\";s:20:\"1M1A1120-720x400.jpg\";s:5:\"width\";i:720;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:2:\"13\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1474628085\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"17\";s:3:\"iso\";s:3:\"200\";s:13:\"shutter_speed\";s:3:\"0.5\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(298,94,'_wp_attached_file','2017/03/1M1A1185.jpg'),(299,94,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:562;s:4:\"file\";s:20:\"2017/03/1M1A1185.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"1M1A1185-150x150.jpg\";s:5:\"width\";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:\"1M1A1185-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:20:\"1M1A1185-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-image\";a:4:{s:4:\"file\";s:20:\"1M1A1185-720x400.jpg\";s:5:\"width\";i:720;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:2:\"14\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1474628804\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"17\";s:3:\"iso\";s:3:\"200\";s:13:\"shutter_speed\";s:3:\"0.8\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(300,93,'ml-slider_type','image'),(301,94,'ml-slider_type','image'),(302,93,'_wp_attachment_backup_sizes','a:1:{s:15:\"resized-814x563\";a:5:{s:4:\"path\";s:79:\"/home/watchhill/public_html/dev/wp-content/uploads/2017/03/1M1A1120-814x563.jpg\";s:4:\"file\";s:20:\"1M1A1120-814x563.jpg\";s:5:\"width\";i:814;s:6:\"height\";i:563;s:9:\"mime-type\";s:10:\"image/jpeg\";}}'),(303,94,'_wp_attachment_backup_sizes','a:1:{s:15:\"resized-813x562\";a:5:{s:4:\"path\";s:79:\"/home/watchhill/public_html/dev/wp-content/uploads/2017/03/1M1A1185-813x562.jpg\";s:4:\"file\";s:20:\"1M1A1185-813x562.jpg\";s:5:\"width\";i:813;s:6:\"height\";i:562;s:9:\"mime-type\";s:10:\"image/jpeg\";}}'),(304,93,'ml-slider_crop_position','center-center'),(305,93,'_wp_attachment_image_alt',''),(306,94,'ml-slider_crop_position','center-center'),(307,94,'_wp_attachment_image_alt',''),(308,96,'_edit_lock','1519347616:6'),(309,96,'_edit_last','6'),(310,97,'_wp_attached_file','2017/03/1M1A0790.jpg'),(311,97,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:667;s:4:\"file\";s:20:\"2017/03/1M1A0790.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"1M1A0790-150x150.jpg\";s:5:\"width\";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:\"1M1A0790-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:20:\"1M1A0790-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-image\";a:4:{s:4:\"file\";s:20:\"1M1A0790-720x400.jpg\";s:5:\"width\";i:720;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"7.1\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1474620965\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"17\";s:3:\"iso\";s:3:\"500\";s:13:\"shutter_speed\";s:4:\"0.05\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(312,98,'_wp_attached_file','2017/03/1M1A0791.jpg'),(313,98,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:667;s:4:\"file\";s:20:\"2017/03/1M1A0791.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"1M1A0791-150x150.jpg\";s:5:\"width\";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:\"1M1A0791-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:20:\"1M1A0791-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-image\";a:4:{s:4:\"file\";s:20:\"1M1A0791-720x400.jpg\";s:5:\"width\";i:720;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"7.1\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1474620975\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"17\";s:3:\"iso\";s:3:\"500\";s:13:\"shutter_speed\";s:15:\"0.0666666666667\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(314,99,'_wp_attached_file','2017/03/1M1A0821.jpg'),(315,99,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:667;s:4:\"file\";s:20:\"2017/03/1M1A0821.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"1M1A0821-150x150.jpg\";s:5:\"width\";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:\"1M1A0821-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:20:\"1M1A0821-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-image\";a:4:{s:4:\"file\";s:20:\"1M1A0821-720x400.jpg\";s:5:\"width\";i:720;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"7.1\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1474621805\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"17\";s:3:\"iso\";s:3:\"640\";s:13:\"shutter_speed\";s:4:\"0.05\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(316,100,'_wp_attached_file','2017/03/1M1A0890.jpg'),(317,100,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:667;s:4:\"file\";s:20:\"2017/03/1M1A0890.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"1M1A0890-150x150.jpg\";s:5:\"width\";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:\"1M1A0890-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:20:\"1M1A0890-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-image\";a:4:{s:4:\"file\";s:20:\"1M1A0890-720x400.jpg\";s:5:\"width\";i:720;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1474622874\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"34\";s:3:\"iso\";s:3:\"640\";s:13:\"shutter_speed\";s:5:\"0.008\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(318,101,'_wp_attached_file','2017/03/1M1A0914.jpg'),(319,101,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:667;s:4:\"file\";s:20:\"2017/03/1M1A0914.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"1M1A0914-150x150.jpg\";s:5:\"width\";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:\"1M1A0914-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:20:\"1M1A0914-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-image\";a:4:{s:4:\"file\";s:20:\"1M1A0914-720x400.jpg\";s:5:\"width\";i:720;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"9\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1474623966\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"19\";s:3:\"iso\";s:3:\"640\";s:13:\"shutter_speed\";s:7:\"0.00625\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(320,102,'_wp_attached_file','2017/03/1M1A1355.jpg'),(321,102,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:667;s:4:\"file\";s:20:\"2017/03/1M1A1355.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"1M1A1355-150x150.jpg\";s:5:\"width\";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:\"1M1A1355-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:20:\"1M1A1355-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-image\";a:4:{s:4:\"file\";s:20:\"1M1A1355-720x400.jpg\";s:5:\"width\";i:720;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:2:\"14\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1474634299\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"17\";s:3:\"iso\";s:3:\"200\";s:13:\"shutter_speed\";s:3:\"0.2\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(322,103,'_wp_attached_file','2017/03/1M1A1379.jpg'),(323,103,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:563;s:4:\"file\";s:20:\"2017/03/1M1A1379.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"1M1A1379-150x150.jpg\";s:5:\"width\";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:\"1M1A1379-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:20:\"1M1A1379-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-image\";a:4:{s:4:\"file\";s:20:\"1M1A1379-720x400.jpg\";s:5:\"width\";i:720;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:2:\"14\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1474635350\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"17\";s:3:\"iso\";s:3:\"200\";s:13:\"shutter_speed\";s:4:\"0.25\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(324,104,'_wp_attached_file','2017/03/1M1A1383.jpg'),(325,104,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:667;s:4:\"file\";s:20:\"2017/03/1M1A1383.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"1M1A1383-150x150.jpg\";s:5:\"width\";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:\"1M1A1383-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:20:\"1M1A1383-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-image\";a:4:{s:4:\"file\";s:20:\"1M1A1383-720x400.jpg\";s:5:\"width\";i:720;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:2:\"14\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1474635402\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"17\";s:3:\"iso\";s:3:\"200\";s:13:\"shutter_speed\";s:3:\"0.3\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(326,105,'_wp_attached_file','2017/03/1M1A1388.jpg'),(327,105,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:667;s:4:\"file\";s:20:\"2017/03/1M1A1388.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"1M1A1388-150x150.jpg\";s:5:\"width\";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:\"1M1A1388-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:20:\"1M1A1388-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-image\";a:4:{s:4:\"file\";s:20:\"1M1A1388-720x400.jpg\";s:5:\"width\";i:720;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:2:\"14\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1474635432\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"17\";s:3:\"iso\";s:3:\"200\";s:13:\"shutter_speed\";s:3:\"0.4\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(328,96,'foogallery_attachments','a:17:{i:0;s:3:\"680\";i:1;s:3:\"105\";i:2;s:2:\"98\";i:3;s:3:\"681\";i:4;s:3:\"104\";i:5;s:2:\"99\";i:6;s:3:\"103\";i:7;s:3:\"683\";i:8;s:3:\"100\";i:9;s:3:\"530\";i:10;s:2:\"97\";i:11;s:3:\"684\";i:12;s:3:\"101\";i:13;s:3:\"682\";i:14;s:3:\"111\";i:15;s:3:\"112\";i:16;s:2:\"54\";}'),(329,96,'foogallery_template','justified'),(330,96,'foogallery_settings','a:56:{s:16:\"default_lightbox\";s:11:\"foobox-free\";s:15:\"default_spacing\";s:16:\"spacing-width-10\";s:17:\"default_alignment\";s:16:\"alignment-center\";s:25:\"default_loading_animation\";s:3:\"yes\";s:28:\"default_thumbnail_dimensions\";a:3:{s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";s:4:\"crop\";s:1:\"1\";}s:22:\"default_thumbnail_link\";s:5:\"image\";s:20:\"default_border-style\";s:25:\"border-style-square-white\";s:25:\"default_hover-effect-type\";s:0:\"\";s:20:\"default_hover-effect\";s:17:\"hover-effect-zoom\";s:28:\"default_caption-hover-effect\";s:20:\"hover-caption-simple\";s:23:\"default_caption-content\";s:5:\"title\";s:22:\"image-viewer_alignment\";s:16:\"alignment-center\";s:21:\"image-viewer_lightbox\";s:11:\"foobox-free\";s:18:\"image-viewer_theme\";s:0:\"\";s:33:\"image-viewer_theme_custom_bgcolor\";s:7:\"#FFFFFF\";s:35:\"image-viewer_theme_custom_textcolor\";s:7:\"#1b1b1b\";s:36:\"image-viewer_theme_custom_hovercolor\";s:7:\"#F2F2F2\";s:37:\"image-viewer_theme_custom_bordercolor\";s:7:\"#e6e6e6\";s:27:\"image-viewer_thumbnail_size\";a:3:{s:5:\"width\";s:3:\"640\";s:6:\"height\";s:3:\"360\";s:4:\"crop\";s:1:\"1\";}s:27:\"image-viewer_thumbnail_link\";s:5:\"image\";s:30:\"image-viewer_hover-effect-type\";s:0:\"\";s:25:\"image-viewer_hover-effect\";s:17:\"hover-effect-zoom\";s:28:\"image-viewer_caption-content\";s:5:\"title\";s:22:\"image-viewer_text-prev\";s:4:\"Prev\";s:20:\"image-viewer_text-of\";s:2:\"of\";s:22:\"image-viewer_text-next\";s:4:\"Next\";s:22:\"justified_thumb_height\";s:3:\"250\";s:20:\"justified_row_height\";s:3:\"150\";s:24:\"justified_max_row_height\";s:4:\"200%\";s:17:\"justified_margins\";s:1:\"4\";s:24:\"justified_caption_source\";s:5:\"title\";s:24:\"justified_thumbnail_link\";s:5:\"image\";s:18:\"justified_lightbox\";s:11:\"foobox-free\";s:23:\"masonry_thumbnail_width\";s:3:\"150\";s:14:\"masonry_layout\";s:5:\"fixed\";s:20:\"masonry_gutter_width\";s:2:\"10\";s:20:\"masonry_center_align\";s:7:\"default\";s:22:\"masonry_gutter_percent\";s:0:\"\";s:18:\"masonry_hover_zoom\";s:7:\"default\";s:22:\"masonry_thumbnail_link\";s:5:\"image\";s:16:\"masonry_lightbox\";s:11:\"foobox-free\";s:37:\"simple_portfolio_thumbnail_dimensions\";a:3:{s:5:\"width\";s:3:\"250\";s:6:\"height\";s:3:\"200\";s:4:\"crop\";s:1:\"1\";}s:31:\"simple_portfolio_thumbnail_link\";s:5:\"image\";s:25:\"simple_portfolio_lightbox\";s:11:\"foobox-free\";s:23:\"simple_portfolio_gutter\";s:2:\"40\";s:33:\"simple_portfolio_caption_position\";s:0:\"\";s:33:\"simple_portfolio_caption_bg_color\";s:4:\"#fff\";s:35:\"simple_portfolio_caption_text_color\";s:4:\"#333\";s:30:\"thumbnail_thumbnail_dimensions\";a:3:{s:5:\"width\";s:3:\"250\";s:6:\"height\";s:3:\"200\";s:4:\"crop\";s:1:\"1\";}s:18:\"thumbnail_position\";s:14:\"position-block\";s:23:\"thumbnail_caption_style\";s:14:\"caption-simple\";s:25:\"thumbnail_caption_bgcolor\";s:18:\"rgba(0, 0, 0, 0.8)\";s:23:\"thumbnail_caption_color\";s:18:\"rgb(255, 255, 255)\";s:23:\"thumbnail_caption_title\";s:0:\"\";s:29:\"thumbnail_caption_description\";s:0:\"\";s:18:\"thumbnail_lightbox\";s:11:\"foobox-free\";}'),(331,96,'foogallery_sort',''),(1016,105,'foogallery_thumb_dimensions','a:1:{i:96;a:2:{s:5:\"width\";i:375;s:6:\"height\";i:250;}}'),(1029,9,'_foogallery','96'),(793,46,'_ubermenu_settings','a:110:{s:22:\"submenu_column_default\";s:4:\"auto\";s:24:\"submenu_column_autoclear\";s:2:\"on\";s:11:\"row_padding\";s:0:\"\";s:8:\"grid_row\";s:3:\"off\";s:12:\"item_display\";s:4:\"auto\";s:12:\"disable_link\";s:3:\"off\";s:12:\"disable_text\";s:3:\"off\";s:9:\"highlight\";s:3:\"off\";s:10:\"item_align\";s:4:\"auto\";s:9:\"mini_item\";s:3:\"off\";s:10:\"custom_url\";s:0:\"\";s:8:\"scrollto\";s:0:\"\";s:7:\"no_wrap\";s:3:\"off\";s:12:\"item_trigger\";s:4:\"auto\";s:25:\"disable_submenu_indicator\";s:3:\"off\";s:15:\"disable_current\";s:3:\"off\";s:12:\"target_class\";s:0:\"\";s:9:\"target_id\";s:0:\"\";s:15:\"shiftnav_target\";s:0:\"\";s:7:\"columns\";s:4:\"auto\";s:11:\"item_layout\";s:7:\"default\";s:17:\"content_alignment\";s:7:\"default\";s:9:\"clear_row\";s:3:\"off\";s:12:\"submenu_type\";s:4:\"auto\";s:16:\"submenu_position\";s:10:\"full_width\";s:23:\"flyout_submenu_position\";s:14:\"left_edge_item\";s:13:\"submenu_width\";s:0:\"\";s:17:\"submenu_min_width\";s:0:\"\";s:18:\"submenu_min_height\";s:0:\"\";s:14:\"submenu_padded\";s:3:\"off\";s:14:\"submenu_indent\";s:3:\"off\";s:16:\"submenu_advanced\";s:4:\"auto\";s:19:\"submenu_autocolumns\";s:8:\"disabled\";s:23:\"submenu_column_dividers\";s:0:\"\";s:25:\"submenu_column_min_height\";s:0:\"\";s:12:\"submenu_grid\";s:3:\"off\";s:12:\"show_current\";s:3:\"off\";s:12:\"show_default\";s:3:\"off\";s:24:\"submenu_background_image\";s:0:\"\";s:31:\"submenu_background_image_repeat\";s:9:\"no-repeat\";s:27:\"submenu_background_position\";s:12:\"bottom right\";s:23:\"submenu_background_size\";s:4:\"auto\";s:15:\"submenu_padding\";s:0:\"\";s:22:\"submenu_footer_content\";s:0:\"\";s:10:\"new_column\";s:3:\"off\";s:11:\"dt_taxonomy\";s:0:\"\";s:9:\"dt_number\";s:0:\"\";s:9:\"dt_parent\";s:0:\"\";s:11:\"dt_child_of\";s:0:\"\";s:10:\"dt_exclude\";s:0:\"\";s:10:\"dt_orderby\";s:4:\"name\";s:8:\"dt_order\";s:3:\"ASC\";s:13:\"dt_hide_empty\";s:3:\"off\";s:15:\"dt_hierarchical\";s:3:\"off\";s:14:\"dt_autocolumns\";s:8:\"disabled\";s:22:\"dt_display_term_counts\";s:3:\"off\";s:11:\"dt_view_all\";s:4:\"none\";s:16:\"dt_view_all_text\";s:0:\"\";s:17:\"dp_posts_per_page\";i:-1;s:12:\"dp_post_type\";a:2:{i:0;s:4:\"post\";i:1;s:4:\"page\";}s:11:\"dp_category\";s:0:\"\";s:6:\"dp_tag\";s:0:\"\";s:14:\"dp_post_parent\";s:0:\"\";s:9:\"dp_author\";s:0:\"\";s:10:\"dp_exclude\";s:0:\"\";s:10:\"dp_orderby\";s:5:\"title\";s:8:\"dp_order\";s:3:\"ASC\";s:14:\"dp_autocolumns\";s:8:\"disabled\";s:13:\"dp_subcontent\";s:4:\"none\";s:11:\"dp_view_all\";s:4:\"none\";s:16:\"dp_view_all_text\";s:0:\"\";s:10:\"tab_layout\";s:4:\"left\";s:17:\"tab_block_columns\";s:4:\"full\";s:17:\"tabs_group_layout\";s:4:\"auto\";s:19:\"panels_group_layout\";s:4:\"auto\";s:11:\"panels_grid\";s:3:\"off\";s:14:\"panels_padding\";s:0:\"\";s:18:\"show_default_panel\";s:3:\"off\";s:12:\"tabs_trigger\";s:9:\"mouseover\";s:12:\"menu_segment\";s:0:\"\";s:23:\"segment_transient_cache\";s:3:\"off\";s:30:\"segment_transient_cache_expiry\";s:0:\"\";s:4:\"icon\";s:0:\"\";s:10:\"item_image\";s:0:\"\";s:22:\"inherit_featured_image\";s:3:\"off\";s:10:\"image_size\";s:7:\"inherit\";s:16:\"image_dimensions\";s:7:\"inherit\";s:18:\"image_width_custom\";s:0:\"\";s:19:\"image_height_custom\";s:0:\"\";s:22:\"image_text_top_padding\";s:0:\"\";s:15:\"disable_padding\";s:3:\"off\";s:14:\"custom_content\";s:0:\"\";s:18:\"pad_custom_content\";s:2:\"on\";s:16:\"auto_widget_area\";s:0:\"\";s:11:\"widget_area\";s:0:\"\";s:19:\"widget_area_columns\";s:4:\"auto\";s:16:\"background_color\";s:0:\"\";s:10:\"font_color\";s:0:\"\";s:23:\"background_color_active\";s:0:\"\";s:17:\"font_color_active\";s:0:\"\";s:24:\"background_color_current\";s:7:\"#ffffff\";s:18:\"font_color_current\";s:7:\"#000000\";s:7:\"padding\";s:0:\"\";s:24:\"submenu_background_color\";s:0:\"\";s:13:\"submenu_color\";s:0:\"\";s:14:\"hide_on_mobile\";s:3:\"off\";s:15:\"hide_on_desktop\";s:3:\"off\";s:17:\"disable_on_mobile\";s:3:\"off\";s:18:\"disable_on_desktop\";s:3:\"off\";s:25:\"disable_submenu_on_mobile\";s:3:\"off\";}'),(336,108,'_wp_attached_file','2017/03/1M1A1379-1.jpg'),(337,108,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:563;s:4:\"file\";s:22:\"2017/03/1M1A1379-1.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"1M1A1379-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:22:\"1M1A1379-1-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:22:\"1M1A1379-1-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-image\";a:4:{s:4:\"file\";s:22:\"1M1A1379-1-720x400.jpg\";s:5:\"width\";i:720;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:2:\"14\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1474635350\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"17\";s:3:\"iso\";s:3:\"200\";s:13:\"shutter_speed\";s:4:\"0.25\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(338,109,'_wp_attached_file','2017/03/1M1A1383-1.jpg'),(339,109,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:667;s:4:\"file\";s:22:\"2017/03/1M1A1383-1.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"1M1A1383-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:22:\"1M1A1383-1-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:22:\"1M1A1383-1-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-image\";a:4:{s:4:\"file\";s:22:\"1M1A1383-1-720x400.jpg\";s:5:\"width\";i:720;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:2:\"14\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1474635402\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"17\";s:3:\"iso\";s:3:\"200\";s:13:\"shutter_speed\";s:3:\"0.3\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(340,110,'_wp_attached_file','2017/03/1M1A1388-1.jpg'),(341,110,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:667;s:4:\"file\";s:22:\"2017/03/1M1A1388-1.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"1M1A1388-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:22:\"1M1A1388-1-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:22:\"1M1A1388-1-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-image\";a:4:{s:4:\"file\";s:22:\"1M1A1388-1-720x400.jpg\";s:5:\"width\";i:720;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:2:\"14\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1474635432\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"17\";s:3:\"iso\";s:3:\"200\";s:13:\"shutter_speed\";s:3:\"0.4\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(611,159,'_wp_attached_file','2017/03/IMGP0756.jpg'),(343,111,'_wp_attached_file','2017/03/1M1A1363.jpg'),(344,111,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:667;s:4:\"file\";s:20:\"2017/03/1M1A1363.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"1M1A1363-150x150.jpg\";s:5:\"width\";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:\"1M1A1363-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:20:\"1M1A1363-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-image\";a:4:{s:4:\"file\";s:20:\"1M1A1363-720x400.jpg\";s:5:\"width\";i:720;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:2:\"14\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1474634734\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"17\";s:3:\"iso\";s:3:\"200\";s:13:\"shutter_speed\";s:15:\"0.0333333333333\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(345,112,'_wp_attached_file','2017/03/1M1A1623_b.jpg'),(346,112,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:563;s:4:\"file\";s:22:\"2017/03/1M1A1623_b.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"1M1A1623_b-150x150.jpg\";s:5:\"width\";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:\"1M1A1623_b-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:22:\"1M1A1623_b-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-image\";a:4:{s:4:\"file\";s:22:\"1M1A1623_b-720x400.jpg\";s:5:\"width\";i:720;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:2:\"14\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1474639436\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"17\";s:3:\"iso\";s:3:\"200\";s:13:\"shutter_speed\";s:14:\"0.166666666667\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(347,113,'_wp_attached_file','2017/03/1M1A1640.jpg'),(348,113,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:667;s:4:\"file\";s:20:\"2017/03/1M1A1640.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"1M1A1640-150x150.jpg\";s:5:\"width\";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:\"1M1A1640-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:20:\"1M1A1640-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-image\";a:4:{s:4:\"file\";s:20:\"1M1A1640-720x400.jpg\";s:5:\"width\";i:720;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:2:\"16\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1474639791\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"17\";s:3:\"iso\";s:3:\"200\";s:13:\"shutter_speed\";s:3:\"0.5\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(350,114,'_edit_lock','1519347371:6'),(351,114,'_edit_last','6'),(352,115,'_edit_last','6'),(353,115,'foogallery_attachments','a:21:{i:0;s:3:\"125\";i:1;s:3:\"116\";i:2;s:3:\"675\";i:3;s:3:\"118\";i:4;s:3:\"119\";i:5;s:3:\"672\";i:6;s:3:\"117\";i:7;s:3:\"120\";i:8;s:3:\"121\";i:9;s:3:\"669\";i:10;s:3:\"122\";i:11;s:3:\"677\";i:12;s:3:\"128\";i:13;s:3:\"123\";i:14;s:3:\"124\";i:15;s:3:\"127\";i:16;s:3:\"129\";i:17;s:3:\"676\";i:18;s:3:\"674\";i:19;s:3:\"671\";i:20;s:3:\"670\";}'),(354,115,'foogallery_template','justified'),(355,115,'foogallery_settings','a:56:{s:16:\"default_lightbox\";s:11:\"foobox-free\";s:15:\"default_spacing\";s:16:\"spacing-width-10\";s:17:\"default_alignment\";s:16:\"alignment-center\";s:25:\"default_loading_animation\";s:3:\"yes\";s:28:\"default_thumbnail_dimensions\";a:3:{s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";s:4:\"crop\";s:1:\"1\";}s:22:\"default_thumbnail_link\";s:5:\"image\";s:20:\"default_border-style\";s:25:\"border-style-square-white\";s:25:\"default_hover-effect-type\";s:0:\"\";s:20:\"default_hover-effect\";s:17:\"hover-effect-zoom\";s:28:\"default_caption-hover-effect\";s:20:\"hover-caption-simple\";s:23:\"default_caption-content\";s:5:\"title\";s:22:\"image-viewer_alignment\";s:16:\"alignment-center\";s:21:\"image-viewer_lightbox\";s:11:\"foobox-free\";s:18:\"image-viewer_theme\";s:0:\"\";s:33:\"image-viewer_theme_custom_bgcolor\";s:7:\"#FFFFFF\";s:35:\"image-viewer_theme_custom_textcolor\";s:7:\"#1b1b1b\";s:36:\"image-viewer_theme_custom_hovercolor\";s:7:\"#F2F2F2\";s:37:\"image-viewer_theme_custom_bordercolor\";s:7:\"#e6e6e6\";s:27:\"image-viewer_thumbnail_size\";a:3:{s:5:\"width\";s:3:\"640\";s:6:\"height\";s:3:\"360\";s:4:\"crop\";s:1:\"1\";}s:27:\"image-viewer_thumbnail_link\";s:5:\"image\";s:30:\"image-viewer_hover-effect-type\";s:0:\"\";s:25:\"image-viewer_hover-effect\";s:17:\"hover-effect-zoom\";s:28:\"image-viewer_caption-content\";s:5:\"title\";s:22:\"image-viewer_text-prev\";s:4:\"Prev\";s:20:\"image-viewer_text-of\";s:2:\"of\";s:22:\"image-viewer_text-next\";s:4:\"Next\";s:22:\"justified_thumb_height\";s:3:\"250\";s:20:\"justified_row_height\";s:3:\"150\";s:24:\"justified_max_row_height\";s:4:\"200%\";s:17:\"justified_margins\";s:1:\"4\";s:24:\"justified_caption_source\";s:5:\"title\";s:24:\"justified_thumbnail_link\";s:5:\"image\";s:18:\"justified_lightbox\";s:11:\"foobox-free\";s:23:\"masonry_thumbnail_width\";s:3:\"150\";s:14:\"masonry_layout\";s:5:\"fixed\";s:20:\"masonry_gutter_width\";s:2:\"10\";s:20:\"masonry_center_align\";s:7:\"default\";s:22:\"masonry_gutter_percent\";s:0:\"\";s:18:\"masonry_hover_zoom\";s:7:\"default\";s:22:\"masonry_thumbnail_link\";s:5:\"image\";s:16:\"masonry_lightbox\";s:11:\"foobox-free\";s:37:\"simple_portfolio_thumbnail_dimensions\";a:3:{s:5:\"width\";s:3:\"250\";s:6:\"height\";s:3:\"200\";s:4:\"crop\";s:1:\"1\";}s:31:\"simple_portfolio_thumbnail_link\";s:5:\"image\";s:25:\"simple_portfolio_lightbox\";s:11:\"foobox-free\";s:23:\"simple_portfolio_gutter\";s:2:\"40\";s:33:\"simple_portfolio_caption_position\";s:0:\"\";s:33:\"simple_portfolio_caption_bg_color\";s:4:\"#fff\";s:35:\"simple_portfolio_caption_text_color\";s:4:\"#333\";s:30:\"thumbnail_thumbnail_dimensions\";a:3:{s:5:\"width\";s:3:\"250\";s:6:\"height\";s:3:\"200\";s:4:\"crop\";s:1:\"1\";}s:18:\"thumbnail_position\";s:14:\"position-block\";s:23:\"thumbnail_caption_style\";s:14:\"caption-simple\";s:25:\"thumbnail_caption_bgcolor\";s:18:\"rgba(0, 0, 0, 0.8)\";s:23:\"thumbnail_caption_color\";s:18:\"rgb(255, 255, 255)\";s:23:\"thumbnail_caption_title\";s:0:\"\";s:29:\"thumbnail_caption_description\";s:0:\"\";s:18:\"thumbnail_lightbox\";s:11:\"foobox-free\";}'),(356,115,'foogallery_sort',''),(1074,125,'foogallery_thumb_dimensions','a:1:{i:115;a:2:{s:5:\"width\";i:141;s:6:\"height\";i:250;}}'),(358,115,'_edit_lock','1519347391:6'),(359,116,'_wp_attached_file','2017/03/2F44C325-.jpg'),(360,116,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:768;s:4:\"file\";s:21:\"2017/03/2F44C325-.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"2F44C325--150x150.jpg\";s:5:\"width\";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:\"2F44C325--300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:21:\"2F44C325--768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:22:\"2F44C325--1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-image\";a:4:{s:4:\"file\";s:21:\"2F44C325--720x400.jpg\";s:5:\"width\";i:720;s:6:\"height\";i:400;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:{}}}'),(361,117,'_wp_attached_file','2017/03/5.png'),(362,117,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:504;s:6:\"height\";i:337;s:4:\"file\";s:13:\"2017/03/5.png\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:13:\"5-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:13:\"5-300x201.png\";s:5:\"width\";i:300;s:6:\"height\";i:201;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:{}}}'),(363,118,'_wp_attached_file','2017/03/7.jpg'),(364,118,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1430;s:6:\"height\";i:1073;s:4:\"file\";s:13:\"2017/03/7.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:13:\"7-150x150.jpg\";s:5:\"width\";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:\"7-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:13:\"7-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:14:\"7-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-image\";a:4:{s:4:\"file\";s:13:\"7-720x400.jpg\";s:5:\"width\";i:720;s:6:\"height\";i:400;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:{}}}'),(365,119,'_wp_attached_file','2017/03/8.png'),(366,119,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:628;s:6:\"height\";i:299;s:4:\"file\";s:13:\"2017/03/8.png\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:13:\"8-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:13:\"8-300x143.png\";s:5:\"width\";i:300;s:6:\"height\";i:143;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:{}}}'),(367,120,'_wp_attached_file','2017/03/9.png'),(368,120,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:628;s:6:\"height\";i:299;s:4:\"file\";s:13:\"2017/03/9.png\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:13:\"9-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:13:\"9-300x143.png\";s:5:\"width\";i:300;s:6:\"height\";i:143;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:{}}}'),(369,121,'_wp_attached_file','2017/03/10.png'),(370,121,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:680;s:6:\"height\";i:510;s:4:\"file\";s:14:\"2017/03/10.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:14:\"10-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:14:\"10-300x225.png\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"featured-image\";a:4:{s:4:\"file\";s:14:\"10-680x400.png\";s:5:\"width\";i:680;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(371,122,'_wp_attached_file','2017/03/11.jpg'),(372,122,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:339;s:6:\"height\";i:524;s:4:\"file\";s:14:\"2017/03/11.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:14:\"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:14:\"11-194x300.jpg\";s:5:\"width\";i:194;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-image\";a:4:{s:4:\"file\";s:14:\"11-339x400.jpg\";s:5:\"width\";i:339;s:6:\"height\";i:400;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:{}}}'),(373,123,'_wp_attached_file','2017/03/12.jpg'),(374,123,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:825;s:6:\"height\";i:1275;s:4:\"file\";s:14:\"2017/03/12.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:14:\"12-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:14:\"12-194x300.jpg\";s:5:\"width\";i:194;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:15:\"12-768x1187.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1187;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:15:\"12-663x1024.jpg\";s:5:\"width\";i:663;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-image\";a:4:{s:4:\"file\";s:14:\"12-720x400.jpg\";s:5:\"width\";i:720;s:6:\"height\";i:400;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:{}}}'),(375,124,'_wp_attached_file','2017/03/20161005_190228-e1489590978505.jpg'),(376,124,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:4608;s:6:\"height\";i:2592;s:4:\"file\";s:42:\"2017/03/20161005_190228-e1489590978505.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:42:\"20161005_190228-e1489590978505-150x150.jpg\";s:5:\"width\";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:\"20161005_190228-e1489590978505-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:42:\"20161005_190228-e1489590978505-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:43:\"20161005_190228-e1489590978505-1024x576.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-image\";a:4:{s:4:\"file\";s:42:\"20161005_190228-e1489590978505-720x400.jpg\";s:5:\"width\";i:720;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"1.9\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"SM-G903W\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1475694147\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:3:\"3.7\";s:3:\"iso\";s:2:\"64\";s:13:\"shutter_speed\";s:4:\"0.02\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"3\";s:8:\"keywords\";a:0:{}}}'),(377,125,'_wp_attached_file','2017/03/BEBD9646-.jpg'),(378,125,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1153;s:6:\"height\";i:2048;s:4:\"file\";s:21:\"2017/03/BEBD9646-.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"BEBD9646--150x150.jpg\";s:5:\"width\";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:\"BEBD9646--169x300.jpg\";s:5:\"width\";i:169;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:22:\"BEBD9646--768x1364.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1364;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:22:\"BEBD9646--577x1024.jpg\";s:5:\"width\";i:577;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-image\";a:4:{s:4:\"file\";s:21:\"BEBD9646--720x400.jpg\";s:5:\"width\";i:720;s:6:\"height\";i:400;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:{}}}'),(379,126,'_wp_attached_file','2017/03/exterior.jpg'),(380,126,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2000;s:6:\"height\";i:1333;s:4:\"file\";s:20:\"2017/03/exterior.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"exterior-150x150.jpg\";s:5:\"width\";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:\"exterior-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:20:\"exterior-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"exterior-1024x682.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:682;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-image\";a:4:{s:4:\"file\";s:20:\"exterior-720x400.jpg\";s:5:\"width\";i:720;s:6:\"height\";i:400;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:{}}}'),(381,127,'_wp_attached_file','2017/03/from-our-veranda.jpg'),(382,127,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2048;s:6:\"height\";i:1536;s:4:\"file\";s:28:\"2017/03/from-our-veranda.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"from-our-veranda-150x150.jpg\";s:5:\"width\";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:\"from-our-veranda-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:28:\"from-our-veranda-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:29:\"from-our-veranda-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-image\";a:4:{s:4:\"file\";s:28:\"from-our-veranda-720x400.jpg\";s:5:\"width\";i:720;s:6:\"height\";i:400;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:{}}}'),(383,128,'_wp_attached_file','2017/03/Resized_20161008_183802.jpg'),(384,128,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1440;s:6:\"height\";i:2560;s:4:\"file\";s:35:\"2017/03/Resized_20161008_183802.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"Resized_20161008_183802-150x150.jpg\";s:5:\"width\";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:\"Resized_20161008_183802-169x300.jpg\";s:5:\"width\";i:169;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:36:\"Resized_20161008_183802-768x1365.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:36:\"Resized_20161008_183802-576x1024.jpg\";s:5:\"width\";i:576;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-image\";a:4:{s:4:\"file\";s:35:\"Resized_20161008_183802-720x400.jpg\";s:5:\"width\";i:720;s:6:\"height\";i:400;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:{}}}'),(385,129,'_wp_attached_file','2017/03/river-e1489591033585.jpg'),(386,129,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2592;s:6:\"height\";i:4608;s:4:\"file\";s:32:\"2017/03/river-e1489591033585.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"river-e1489591033585-150x150.jpg\";s:5:\"width\";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:\"river-e1489591033585-169x300.jpg\";s:5:\"width\";i:169;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:33:\"river-e1489591033585-768x1365.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:33:\"river-e1489591033585-576x1024.jpg\";s:5:\"width\";i:576;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-image\";a:4:{s:4:\"file\";s:32:\"river-e1489591033585-720x400.jpg\";s:5:\"width\";i:720;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"1.9\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"SM-G903W\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1477851655\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:3:\"3.7\";s:3:\"iso\";s:2:\"80\";s:13:\"shutter_speed\";s:4:\"0.01\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"6\";s:8:\"keywords\";a:0:{}}}'),(387,130,'_wp_attached_file','2017/03/sunrise.jpg'),(388,130,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1536;s:6:\"height\";i:2048;s:4:\"file\";s:19:\"2017/03/sunrise.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"sunrise-150x150.jpg\";s:5:\"width\";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:\"sunrise-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:20:\"sunrise-768x1024.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:20:\"sunrise-768x1024.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-image\";a:4:{s:4:\"file\";s:19:\"sunrise-720x400.jpg\";s:5:\"width\";i:720;s:6:\"height\";i:400;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:{}}}'),(389,129,'_edit_lock','1489590915:3'),(390,129,'_foogallery_custom_url',''),(391,129,'_foogallery_custom_target','default'),(392,129,'_edit_last','3'),(393,114,'_wp_page_template','default'),(400,133,'_menu_item_type','post_type'),(401,133,'_menu_item_menu_item_parent','38'),(402,133,'_menu_item_object_id','114'),(403,133,'_menu_item_object','page'),(404,133,'_menu_item_target',''),(405,133,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(406,133,'_menu_item_xfn',''),(407,133,'_menu_item_url',''),(696,13,'_genesis_title','Your hosts at Watch Hill Bed & Breakfast- a luxurious beach house in Southampton Ontario'),(412,124,'_edit_lock','1489590915:3'),(413,124,'_foogallery_custom_url',''),(414,124,'_foogallery_custom_target','default'),(415,124,'_edit_last','3'),(417,124,'_wp_attachment_backup_sizes','a:6:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:4608;s:6:\"height\";i:2592;s:4:\"file\";s:19:\"20161005_190228.jpg\";}s:14:\"thumbnail-orig\";a:4:{s:4:\"file\";s:27:\"20161005_190228-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"medium-orig\";a:4:{s:4:\"file\";s:27:\"20161005_190228-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"medium_large-orig\";a:4:{s:4:\"file\";s:27:\"20161005_190228-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"large-orig\";a:4:{s:4:\"file\";s:28:\"20161005_190228-1024x576.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"featured-image-orig\";a:4:{s:4:\"file\";s:27:\"20161005_190228-720x400.jpg\";s:5:\"width\";i:720;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}}'),(418,129,'_wp_attachment_backup_sizes','a:6:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:4608;s:6:\"height\";i:2592;s:4:\"file\";s:9:\"river.jpg\";}s:14:\"thumbnail-orig\";a:4:{s:4:\"file\";s:17:\"river-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"medium-orig\";a:4:{s:4:\"file\";s:17:\"river-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"medium_large-orig\";a:4:{s:4:\"file\";s:17:\"river-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"large-orig\";a:4:{s:4:\"file\";s:18:\"river-1024x576.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"featured-image-orig\";a:4:{s:4:\"file\";s:17:\"river-720x400.jpg\";s:5:\"width\";i:720;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}}'),(419,137,'ml-slider_settings','a:35:{s:4:\"type\";s:4:\"flex\";s:6:\"random\";s:5:\"false\";s:8:\"cssClass\";s:0:\"\";s:8:\"printCss\";s:4:\"true\";s:7:\"printJs\";s:4:\"true\";s:5:\"width\";s:3:\"825\";s:6:\"height\";s:3:\"570\";s:3:\"spw\";i:7;s:3:\"sph\";i:5;s:5:\"delay\";s:4:\"3000\";s:6:\"sDelay\";i:30;s:7:\"opacity\";d:0.6999999999999999555910790149937383830547332763671875;s:10:\"titleSpeed\";i:500;s:6:\"effect\";s:4:\"fade\";s:10:\"navigation\";s:4:\"true\";s:5:\"links\";s:5:\"false\";s:10:\"hoverPause\";s:4:\"true\";s:5:\"theme\";s:7:\"default\";s:9:\"direction\";s:10:\"horizontal\";s:7:\"reverse\";s:5:\"false\";s:14:\"animationSpeed\";s:4:\"1000\";s:8:\"prevText\";s:1:\"<\";s:8:\"nextText\";s:1:\">\";s:6:\"slices\";i:15;s:6:\"center\";s:5:\"false\";s:9:\"smartCrop\";s:4:\"true\";s:12:\"carouselMode\";s:5:\"false\";s:14:\"carouselMargin\";s:1:\"5\";s:6:\"easing\";s:6:\"linear\";s:8:\"autoPlay\";s:4:\"true\";s:11:\"thumb_width\";i:150;s:12:\"thumb_height\";i:100;s:9:\"fullWidth\";s:5:\"false\";s:10:\"noConflict\";s:4:\"true\";s:12:\"smoothHeight\";s:5:\"false\";}'),(420,105,'ml-slider_type','image'),(421,104,'ml-slider_type','image'),(422,103,'ml-slider_type','image'),(423,97,'ml-slider_type','image'),(424,101,'ml-slider_type','image'),(425,112,'ml-slider_type','image'),(426,105,'_wp_attachment_backup_sizes','a:1:{s:15:\"resized-825x570\";a:5:{s:4:\"path\";s:79:\"/home/watchhill/public_html/dev/wp-content/uploads/2017/03/1M1A1388-825x570.jpg\";s:4:\"file\";s:20:\"1M1A1388-825x570.jpg\";s:5:\"width\";i:825;s:6:\"height\";i:570;s:9:\"mime-type\";s:10:\"image/jpeg\";}}'),(427,104,'_wp_attachment_backup_sizes','a:1:{s:15:\"resized-825x570\";a:5:{s:4:\"path\";s:79:\"/home/watchhill/public_html/dev/wp-content/uploads/2017/03/1M1A1383-825x570.jpg\";s:4:\"file\";s:20:\"1M1A1383-825x570.jpg\";s:5:\"width\";i:825;s:6:\"height\";i:570;s:9:\"mime-type\";s:10:\"image/jpeg\";}}'),(428,103,'_wp_attachment_backup_sizes','a:1:{s:15:\"resized-814x563\";a:5:{s:4:\"path\";s:79:\"/home/watchhill/public_html/dev/wp-content/uploads/2017/03/1M1A1379-814x563.jpg\";s:4:\"file\";s:20:\"1M1A1379-814x563.jpg\";s:5:\"width\";i:814;s:6:\"height\";i:563;s:9:\"mime-type\";s:10:\"image/jpeg\";}}'),(429,97,'_wp_attachment_backup_sizes','a:1:{s:15:\"resized-825x570\";a:5:{s:4:\"path\";s:79:\"/home/watchhill/public_html/dev/wp-content/uploads/2017/03/1M1A0790-825x570.jpg\";s:4:\"file\";s:20:\"1M1A0790-825x570.jpg\";s:5:\"width\";i:825;s:6:\"height\";i:570;s:9:\"mime-type\";s:10:\"image/jpeg\";}}'),(430,101,'_wp_attachment_backup_sizes','a:1:{s:15:\"resized-825x570\";a:5:{s:4:\"path\";s:79:\"/home/watchhill/public_html/dev/wp-content/uploads/2017/03/1M1A0914-825x570.jpg\";s:4:\"file\";s:20:\"1M1A0914-825x570.jpg\";s:5:\"width\";i:825;s:6:\"height\";i:570;s:9:\"mime-type\";s:10:\"image/jpeg\";}}'),(431,112,'_wp_attachment_backup_sizes','a:1:{s:15:\"resized-814x563\";a:5:{s:4:\"path\";s:81:\"/home/watchhill/public_html/dev/wp-content/uploads/2017/03/1M1A1623_b-814x563.jpg\";s:4:\"file\";s:22:\"1M1A1623_b-814x563.jpg\";s:5:\"width\";i:814;s:6:\"height\";i:563;s:9:\"mime-type\";s:10:\"image/jpeg\";}}'),(432,105,'ml-slider_crop_position','center-center'),(433,105,'_wp_attachment_image_alt','The Great Room'),(434,104,'ml-slider_crop_position','center-center'),(435,104,'_wp_attachment_image_alt','The Great Room'),(436,103,'ml-slider_crop_position','center-center'),(437,103,'_wp_attachment_image_alt','The Great Room'),(438,97,'ml-slider_crop_position','center-center'),(439,97,'_wp_attachment_image_alt','Front Porch - Watch Hill Bed & Breakfast'),(440,101,'ml-slider_crop_position','center-center'),(441,101,'_wp_attachment_image_alt','Patio at Watch Hill B&B'),(442,112,'ml-slider_crop_position','center-center'),(443,112,'_wp_attachment_image_alt','Dining Room'),(444,141,'_wp_attached_file','2017/03/1M1A1266_b.jpg'),(445,141,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:562;s:4:\"file\";s:22:\"2017/03/1M1A1266_b.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"1M1A1266_b-150x150.jpg\";s:5:\"width\";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:\"1M1A1266_b-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:22:\"1M1A1266_b-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-image\";a:4:{s:4:\"file\";s:22:\"1M1A1266_b-720x400.jpg\";s:5:\"width\";i:720;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:2:\"13\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1474631459\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"40\";s:3:\"iso\";s:3:\"200\";s:13:\"shutter_speed\";s:3:\"0.4\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(446,141,'ml-slider_type','image'),(447,141,'_wp_attachment_backup_sizes','a:1:{s:15:\"resized-813x562\";a:5:{s:4:\"path\";s:81:\"/home/watchhill/public_html/dev/wp-content/uploads/2017/03/1M1A1266_b-813x562.jpg\";s:4:\"file\";s:22:\"1M1A1266_b-813x562.jpg\";s:5:\"width\";i:813;s:6:\"height\";i:562;s:9:\"mime-type\";s:10:\"image/jpeg\";}}'),(448,141,'ml-slider_crop_position','center-center'),(449,141,'_wp_attachment_image_alt',''),(450,142,'_wp_attached_file','2017/03/1M1A1575.jpg'),(451,142,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:667;s:4:\"file\";s:20:\"2017/03/1M1A1575.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"1M1A1575-150x150.jpg\";s:5:\"width\";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:\"1M1A1575-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:20:\"1M1A1575-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-image\";a:4:{s:4:\"file\";s:20:\"1M1A1575-720x400.jpg\";s:5:\"width\";i:720;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:2:\"13\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1474638436\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"35\";s:3:\"iso\";s:3:\"200\";s:13:\"shutter_speed\";s:3:\"0.3\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(452,142,'ml-slider_type','image'),(453,142,'_wp_attachment_backup_sizes','a:1:{s:15:\"resized-825x570\";a:5:{s:4:\"path\";s:79:\"/home/watchhill/public_html/dev/wp-content/uploads/2017/03/1M1A1575-825x570.jpg\";s:4:\"file\";s:20:\"1M1A1575-825x570.jpg\";s:5:\"width\";i:825;s:6:\"height\";i:570;s:9:\"mime-type\";s:10:\"image/jpeg\";}}'),(454,142,'ml-slider_crop_position','center-center'),(455,142,'_wp_attachment_image_alt',''),(456,143,'_wp_attached_file','2017/03/1M1A1175.jpg'),(457,143,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:562;s:4:\"file\";s:20:\"2017/03/1M1A1175.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"1M1A1175-150x150.jpg\";s:5:\"width\";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:\"1M1A1175-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:20:\"1M1A1175-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-image\";a:4:{s:4:\"file\";s:20:\"1M1A1175-720x400.jpg\";s:5:\"width\";i:720;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:2:\"10\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1474628675\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"17\";s:3:\"iso\";s:3:\"200\";s:13:\"shutter_speed\";s:3:\"0.4\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(458,143,'ml-slider_type','image'),(459,143,'_wp_attachment_backup_sizes','a:1:{s:15:\"resized-813x562\";a:5:{s:4:\"path\";s:79:\"/home/watchhill/public_html/dev/wp-content/uploads/2017/03/1M1A1175-813x562.jpg\";s:4:\"file\";s:20:\"1M1A1175-813x562.jpg\";s:5:\"width\";i:813;s:6:\"height\";i:562;s:9:\"mime-type\";s:10:\"image/jpeg\";}}'),(460,143,'ml-slider_crop_position','center-center'),(461,143,'_wp_attachment_image_alt',''),(462,144,'_wp_attached_file','2017/03/1M1A1492.jpg'),(463,144,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:667;s:4:\"file\";s:20:\"2017/03/1M1A1492.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"1M1A1492-150x150.jpg\";s:5:\"width\";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:\"1M1A1492-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:20:\"1M1A1492-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-image\";a:4:{s:4:\"file\";s:20:\"1M1A1492-720x400.jpg\";s:5:\"width\";i:720;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:2:\"13\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1474637079\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"17\";s:3:\"iso\";s:3:\"200\";s:13:\"shutter_speed\";s:3:\"0.4\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(464,144,'ml-slider_type','image'),(465,144,'_wp_attachment_backup_sizes','a:1:{s:15:\"resized-825x570\";a:5:{s:4:\"path\";s:79:\"/home/watchhill/public_html/dev/wp-content/uploads/2017/03/1M1A1492-825x570.jpg\";s:4:\"file\";s:20:\"1M1A1492-825x570.jpg\";s:5:\"width\";i:825;s:6:\"height\";i:570;s:9:\"mime-type\";s:10:\"image/jpeg\";}}'),(466,144,'ml-slider_crop_position','center-center'),(467,144,'_wp_attachment_image_alt',''),(468,145,'_wp_attached_file','2017/03/1M1A1500.jpg'),(469,145,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:667;s:4:\"file\";s:20:\"2017/03/1M1A1500.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"1M1A1500-150x150.jpg\";s:5:\"width\";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:\"1M1A1500-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:20:\"1M1A1500-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-image\";a:4:{s:4:\"file\";s:20:\"1M1A1500-720x400.jpg\";s:5:\"width\";i:720;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:2:\"13\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1474637248\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"19\";s:3:\"iso\";s:3:\"200\";s:13:\"shutter_speed\";s:3:\"0.2\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(470,145,'ml-slider_type','image'),(471,145,'_wp_attachment_backup_sizes','a:1:{s:15:\"resized-825x570\";a:5:{s:4:\"path\";s:79:\"/home/watchhill/public_html/dev/wp-content/uploads/2017/03/1M1A1500-825x570.jpg\";s:4:\"file\";s:20:\"1M1A1500-825x570.jpg\";s:5:\"width\";i:825;s:6:\"height\";i:570;s:9:\"mime-type\";s:10:\"image/jpeg\";}}'),(472,145,'ml-slider_crop_position','center-center'),(473,145,'_wp_attachment_image_alt',''),(474,146,'_wp_attached_file','2017/03/1M1A1549.jpg'),(475,146,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:667;s:4:\"file\";s:20:\"2017/03/1M1A1549.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"1M1A1549-150x150.jpg\";s:5:\"width\";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:\"1M1A1549-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:20:\"1M1A1549-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-image\";a:4:{s:4:\"file\";s:20:\"1M1A1549-720x400.jpg\";s:5:\"width\";i:720;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:2:\"13\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1474638088\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"17\";s:3:\"iso\";s:3:\"200\";s:13:\"shutter_speed\";s:3:\"0.4\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(476,146,'ml-slider_type','image'),(477,146,'_wp_attachment_backup_sizes','a:1:{s:15:\"resized-825x570\";a:5:{s:4:\"path\";s:79:\"/home/watchhill/public_html/dev/wp-content/uploads/2017/03/1M1A1549-825x570.jpg\";s:4:\"file\";s:20:\"1M1A1549-825x570.jpg\";s:5:\"width\";i:825;s:6:\"height\";i:570;s:9:\"mime-type\";s:10:\"image/jpeg\";}}'),(478,146,'ml-slider_crop_position','center-center'),(479,146,'_wp_attachment_image_alt',''),(483,30,'wpmf_filetype','png'),(482,30,'wpmf_size','47433'),(484,32,'wpmf_size','6707'),(485,32,'wpmf_filetype','png'),(486,33,'wpmf_size','7860'),(487,33,'wpmf_filetype','png'),(488,34,'wpmf_size','7860'),(489,34,'wpmf_filetype','png'),(490,49,'wpmf_size','24226'),(491,49,'wpmf_filetype','jpg'),(492,51,'wpmf_size','304458'),(493,51,'wpmf_filetype','jpg'),(494,52,'wpmf_size','103799'),(495,52,'wpmf_filetype','jpg'),(496,53,'wpmf_size','418809'),(497,53,'wpmf_filetype','jpg'),(498,54,'wpmf_size','402718'),(499,54,'wpmf_filetype','jpg'),(500,69,'wpmf_size','290268'),(501,69,'wpmf_filetype','jpg'),(502,70,'wpmf_size','215737'),(503,70,'wpmf_filetype','jpg'),(504,71,'wpmf_size','160218'),(505,71,'wpmf_filetype','jpg'),(506,72,'wpmf_size','145356'),(507,72,'wpmf_filetype','jpg'),(508,73,'wpmf_size','167001'),(509,73,'wpmf_filetype','jpg'),(510,81,'wpmf_size','290189'),(511,81,'wpmf_filetype','jpg'),(512,82,'wpmf_size','199906'),(513,82,'wpmf_filetype','jpg'),(514,83,'wpmf_size','201734'),(515,83,'wpmf_filetype','jpg'),(516,84,'wpmf_size','190105'),(517,84,'wpmf_filetype','jpg'),(518,85,'wpmf_size','139872'),(519,85,'wpmf_filetype','jpg'),(520,87,'wpmf_size','159047'),(521,87,'wpmf_filetype','jpg'),(522,88,'wpmf_size','168916'),(523,88,'wpmf_filetype','jpg'),(524,89,'wpmf_size','137416'),(525,89,'wpmf_filetype','jpg'),(526,93,'wpmf_size','151979'),(527,93,'wpmf_filetype','jpg'),(528,94,'wpmf_size','136750'),(529,94,'wpmf_filetype','jpg'),(530,97,'wpmf_size','256867'),(531,97,'wpmf_filetype','jpg'),(532,98,'wpmf_size','264459'),(533,98,'wpmf_filetype','jpg'),(534,99,'wpmf_size','255572'),(535,99,'wpmf_filetype','jpg'),(536,100,'wpmf_size','321689'),(537,100,'wpmf_filetype','jpg'),(538,101,'wpmf_size','361885'),(539,101,'wpmf_filetype','jpg'),(540,102,'wpmf_size','184582'),(541,102,'wpmf_filetype','jpg'),(542,103,'wpmf_size','140420'),(543,103,'wpmf_filetype','jpg'),(544,104,'wpmf_size','189931'),(545,104,'wpmf_filetype','jpg'),(546,105,'wpmf_size','198708'),(547,105,'wpmf_filetype','jpg'),(548,108,'wpmf_size','140420'),(549,108,'wpmf_filetype','jpg'),(550,109,'wpmf_size','189931'),(551,109,'wpmf_filetype','jpg'),(552,110,'wpmf_size','198708'),(553,110,'wpmf_filetype','jpg'),(554,111,'wpmf_size','157094'),(555,111,'wpmf_filetype','jpg'),(556,112,'wpmf_size','179575'),(557,112,'wpmf_filetype','jpg'),(558,113,'wpmf_size','195776'),(559,113,'wpmf_filetype','jpg'),(560,116,'wpmf_size','105000'),(561,116,'wpmf_filetype','jpg'),(562,117,'wpmf_size','407842'),(563,117,'wpmf_filetype','png'),(564,118,'wpmf_size','361805'),(565,118,'wpmf_filetype','jpg'),(566,119,'wpmf_size','509288'),(567,119,'wpmf_filetype','png'),(568,120,'wpmf_size','449622'),(569,120,'wpmf_filetype','png'),(570,121,'wpmf_size','641078'),(571,121,'wpmf_filetype','png'),(572,122,'wpmf_size','67677'),(573,122,'wpmf_filetype','jpg'),(574,123,'wpmf_size','245417'),(575,123,'wpmf_filetype','jpg'),(576,124,'wpmf_size','1341013'),(577,124,'wpmf_filetype','jpg'),(578,125,'wpmf_size','292230'),(579,125,'wpmf_filetype','jpg'),(580,126,'wpmf_size','1112240'),(581,126,'wpmf_filetype','jpg'),(582,127,'wpmf_size','256856'),(583,127,'wpmf_filetype','jpg'),(584,128,'wpmf_size','290986'),(585,128,'wpmf_filetype','jpg'),(586,129,'wpmf_size','1554284'),(587,129,'wpmf_filetype','jpg'),(588,130,'wpmf_size','526769'),(589,130,'wpmf_filetype','jpg'),(590,141,'wpmf_size','186757'),(591,141,'wpmf_filetype','jpg'),(592,142,'wpmf_size','177995'),(593,142,'wpmf_filetype','jpg'),(594,143,'wpmf_size','172822'),(595,143,'wpmf_filetype','jpg'),(596,144,'wpmf_size','147569'),(597,144,'wpmf_filetype','jpg'),(598,145,'wpmf_size','135024'),(599,145,'wpmf_filetype','jpg'),(600,146,'wpmf_size','169471'),(601,146,'wpmf_filetype','jpg'),(602,17,'_wpmf_gallery_custom_image_link','https://www.airbnb.ca/rooms/14839468?s=0tR1BQdF'),(603,17,'_gallery_link_target','_blank'),(604,21,'_oembed_f0696635d0ae7bf8bac8ad03f74896b3','{{unknown}}'),(605,158,'_wp_attached_file','2017/03/1M1A0798_b.jpg'),(606,158,'wpmf_size','262482'),(607,158,'wpmf_filetype','jpg'),(608,158,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:563;s:4:\"file\";s:22:\"2017/03/1M1A0798_b.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"1M1A0798_b-150x150.jpg\";s:5:\"width\";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:\"1M1A0798_b-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:22:\"1M1A0798_b-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-image\";a:4:{s:4:\"file\";s:22:\"1M1A0798_b-720x400.jpg\";s:5:\"width\";i:720;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:2:\"11\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1474621062\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"20\";s:3:\"iso\";s:3:\"500\";s:13:\"shutter_speed\";s:15:\"0.0333333333333\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(612,159,'wpmf_size','57850'),(613,159,'wpmf_filetype','jpg'),(614,159,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:480;s:6:\"height\";i:473;s:4:\"file\";s:20:\"2017/03/IMGP0756.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"IMGP0756-150x150.jpg\";s:5:\"width\";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:\"IMGP0756-300x296.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:296;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-image\";a:4:{s:4:\"file\";s:20:\"IMGP0756-480x400.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"4.2\";s:6:\"credit\";s:6:\"Picasa\";s:6:\"camera\";s:10:\"PENTAX X-5\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1408264474\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"12.8\";s:3:\"iso\";s:3:\"100\";s:13:\"shutter_speed\";s:5:\"0.005\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(615,159,'_wp_attachment_image_alt','Sue and Richard'),(616,164,'_wp_attached_file','2017/03/IMGP0761.jpg'),(617,164,'wpmf_size','1453351'),(618,164,'wpmf_filetype','jpg'),(619,164,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2259;s:6:\"height\";i:3094;s:4:\"file\";s:20:\"2017/03/IMGP0761.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"IMGP0761-150x150.jpg\";s:5:\"width\";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:\"IMGP0761-219x300.jpg\";s:5:\"width\";i:219;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:21:\"IMGP0761-768x1052.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1052;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"IMGP0761-748x1024.jpg\";s:5:\"width\";i:748;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-image\";a:4:{s:4:\"file\";s:20:\"IMGP0761-720x400.jpg\";s:5:\"width\";i:720;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"4.2\";s:6:\"credit\";s:6:\"Picasa\";s:6:\"camera\";s:10:\"PENTAX X-5\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1408264503\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"12.8\";s:3:\"iso\";s:3:\"100\";s:13:\"shutter_speed\";s:4:\"0.01\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(620,164,'_wp_attachment_image_alt','Sue and Richard'),(624,5,'_genesis_title','Watch Hill Bed & Breakfast- a luxurious beach house in Southampton Ontario'),(625,5,'_genesis_description','Our rooms feature private ensuite bathrooms and fireplaces.Watch Hill B&B is a luxurious beach house in Southampton Ontario overlooking Chantry Island on Lake Huron, and the Saugeen River. Featured in Our Homes magazine, Grey Bruce County Summer 2017 Issue.'),(626,5,'_genesis_keywords','Watch Hill, Bed & Breakfast, B&B, Southampton, Chantry Island,Lake Huron,Saugeen River,Beach House, luxurious,Our Homes Magazine, Grey Bruce County'),(627,15,'_genesis_title','Watch Hill  Bed & Breakfast -  accommodations include private ensuite bathroom and fireplace'),(628,15,'_genesis_description','Each suite at Watch Hill Bed & Breakfast features a view of the Saugeen River, or Lake Huron, and all rooms have a private ensuite bathroom and fireplace.'),(629,15,'_genesis_keywords','Watch Hill, Bed & Breakfast, B&B,Lake Huron,Saugeen River, private, fireplace'),(634,174,'_wp_attached_file','2017/03/chantry.jpg'),(635,174,'wpmf_size','28529'),(636,174,'wpmf_filetype','jpg'),(637,174,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:255;s:6:\"height\";i:440;s:4:\"file\";s:19:\"2017/03/chantry.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"chantry-150x150.jpg\";s:5:\"width\";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:\"chantry-174x300.jpg\";s:5:\"width\";i:174;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-image\";a:4:{s:4:\"file\";s:19:\"chantry-255x400.jpg\";s:5:\"width\";i:255;s:6:\"height\";i:400;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:{}}}'),(638,175,'_wp_attached_file','2017/03/huron.jpg'),(639,175,'wpmf_size','31422'),(640,175,'wpmf_filetype','jpg'),(641,175,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:255;s:6:\"height\";i:440;s:4:\"file\";s:17:\"2017/03/huron.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:17:\"huron-150x150.jpg\";s:5:\"width\";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:\"huron-174x300.jpg\";s:5:\"width\";i:174;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-image\";a:4:{s:4:\"file\";s:17:\"huron-255x400.jpg\";s:5:\"width\";i:255;s:6:\"height\";i:400;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:{}}}'),(642,176,'_wp_attached_file','2017/03/saugeen.jpg'),(643,176,'wpmf_size','25494'),(644,176,'wpmf_filetype','jpg'),(645,176,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:255;s:6:\"height\";i:440;s:4:\"file\";s:19:\"2017/03/saugeen.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"saugeen-150x150.jpg\";s:5:\"width\";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:\"saugeen-174x300.jpg\";s:5:\"width\";i:174;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-image\";a:4:{s:4:\"file\";s:19:\"saugeen-255x400.jpg\";s:5:\"width\";i:255;s:6:\"height\";i:400;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:{}}}'),(646,184,'_wp_attached_file','2017/03/room-details.jpg'),(647,184,'wpmf_size','2451'),(648,184,'wpmf_filetype','jpg'),(649,184,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:255;s:6:\"height\";i:30;s:4:\"file\";s:24:\"2017/03/room-details.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"room-details-150x30.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:30;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:{}}}'),(650,192,'_wp_attached_file','2017/03/BB-Button.jpg'),(651,192,'wpmf_size','38976'),(652,192,'wpmf_filetype','jpg'),(653,192,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:255;s:6:\"height\";i:440;s:4:\"file\";s:21:\"2017/03/BB-Button.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"BB-Button-150x150.jpg\";s:5:\"width\";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:\"BB-Button-174x300.jpg\";s:5:\"width\";i:174;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-image\";a:4:{s:4:\"file\";s:21:\"BB-Button-255x400.jpg\";s:5:\"width\";i:255;s:6:\"height\";i:400;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:{}}}'),(654,193,'_wp_attached_file','2017/03/rooms-button.jpg'),(655,193,'wpmf_size','29293'),(656,193,'wpmf_filetype','jpg'),(657,193,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:255;s:6:\"height\";i:440;s:4:\"file\";s:24:\"2017/03/rooms-button.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"rooms-button-150x150.jpg\";s:5:\"width\";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:\"rooms-button-174x300.jpg\";s:5:\"width\";i:174;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-image\";a:4:{s:4:\"file\";s:24:\"rooms-button-255x400.jpg\";s:5:\"width\";i:255;s:6:\"height\";i:400;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:{}}}'),(658,194,'_wp_attached_file','2017/03/hosts-button.jpg'),(659,194,'wpmf_size','28761'),(660,194,'wpmf_filetype','jpg'),(661,194,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:255;s:6:\"height\";i:440;s:4:\"file\";s:24:\"2017/03/hosts-button.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"hosts-button-150x150.jpg\";s:5:\"width\";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:\"hosts-button-174x300.jpg\";s:5:\"width\";i:174;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-image\";a:4:{s:4:\"file\";s:24:\"hosts-button-255x400.jpg\";s:5:\"width\";i:255;s:6:\"height\";i:400;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:{}}}'),(662,55,'_wpmf_gallery_custom_image_link','https://www.watchhill.ca/contact/'),(663,55,'_gallery_link_target',''),(664,226,'_edit_lock','1523040824:4'),(665,226,'_edit_last','4'),(666,226,'_wp_page_template','default'),(667,228,'_menu_item_type','post_type'),(668,228,'_menu_item_menu_item_parent','42'),(669,228,'_menu_item_object_id','226'),(670,228,'_menu_item_object','page'),(671,228,'_menu_item_target',''),(672,228,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(673,228,'_menu_item_xfn',''),(674,228,'_menu_item_url',''),(678,237,'ml-slider_settings','a:35:{s:4:\"type\";s:4:\"flex\";s:6:\"random\";s:5:\"false\";s:8:\"cssClass\";s:0:\"\";s:8:\"printCss\";s:4:\"true\";s:7:\"printJs\";s:4:\"true\";s:5:\"width\";s:3:\"825\";s:6:\"height\";s:3:\"570\";s:3:\"spw\";i:7;s:3:\"sph\";i:5;s:5:\"delay\";s:4:\"3500\";s:6:\"sDelay\";i:30;s:7:\"opacity\";d:0.6999999999999999555910790149937383830547332763671875;s:10:\"titleSpeed\";i:500;s:6:\"effect\";s:4:\"fade\";s:10:\"navigation\";s:5:\"false\";s:5:\"links\";s:4:\"true\";s:10:\"hoverPause\";s:4:\"true\";s:5:\"theme\";s:7:\"default\";s:9:\"direction\";s:10:\"horizontal\";s:7:\"reverse\";s:5:\"false\";s:14:\"animationSpeed\";s:4:\"1000\";s:8:\"prevText\";s:1:\"<\";s:8:\"nextText\";s:1:\">\";s:6:\"slices\";i:15;s:6:\"center\";s:5:\"false\";s:9:\"smartCrop\";s:4:\"true\";s:12:\"carouselMode\";s:5:\"false\";s:14:\"carouselMargin\";s:1:\"5\";s:6:\"easing\";s:6:\"linear\";s:8:\"autoPlay\";s:4:\"true\";s:11:\"thumb_width\";i:150;s:12:\"thumb_height\";i:100;s:9:\"fullWidth\";s:5:\"false\";s:10:\"noConflict\";s:4:\"true\";s:12:\"smoothHeight\";s:5:\"false\";}'),(679,238,'_thumbnail_id','54'),(680,238,'ml-slider_type','image'),(681,238,'ml-slider_crop_position','center-center'),(682,238,'_wp_attachment_image_alt',''),(683,7,'_genesis_title','Watch Hill Bed & Breakfast- a beach house overlooking Chantry Island on Lake Huron, and the Saugeen River, Southampton Ontario'),(684,7,'_genesis_description','Watch Hill Bed & Breakfast is a beach house in Southampton Ontario, which overlooks Chantry Island. Just steps from our front porch is the beach. The area offers canoe, kayak, golf, x country ski and so much more.'),(685,7,'_genesis_keywords','Watch Hill, Bed & Breakfast, B&B, Beach House, Southampton, Chantry Island,Lake Huron,Saugeen River,Beach House'),(686,9,'_genesis_title','Watch Hill Bed & Breakfast- a luxurious beach house in Southampton Ontario'),(687,9,'_genesis_description','Watch Hill Bed & Breakfast'),(688,9,'_genesis_keywords','Watch Hill, Bed & Breakfast, B&B, Southampton, Chantry Island,Lake Huron,Saugeen River,Beach House'),(691,114,'_genesis_title','Watch Hill Bed & Breakfast- a luxurious beach house with views of Chantry Island, Lake Huron and the Saugeen River in Southampton Ontario'),(692,114,'_genesis_description','Watch Hill Bed & Breakfast over looks Chantry Island and the Saugeen River in Southampton Ontario. Steps from our front door you can explore the beaches , bike the trails or hike the paths.'),(693,114,'_genesis_keywords','Watch Hill, Bed & Breakfast, B&B, Southampton, Chantry Island,Lake Huron,Saugeen River,Beach House'),(697,13,'_genesis_description','Watch Hill Bed & Breakfast is a freshly renovated Victorian  Beach house in Southampton, Ontario.'),(698,13,'_genesis_keywords','Watch Hill, Bed & Breakfast, B&B, Southampton, Chantry Island,Lake Huron,Saugeen River,Beach House'),(699,17,'_genesis_title','Huron Suite at Watch Hill Bed & Breakfast- suite features a view of Lake Huron, fireplace, ensuite bathroom'),(700,17,'_genesis_description','Watch Hill Bed & Breakfast, The Huron Suite features a view of Lake Huron, a Queen size bed, fireplace, TV (including Netflix), and a full four-piece en suite bathroom'),(701,17,'_genesis_keywords','Watch Hill, Bed & Breakfast, B&B,Lake Huron,Saugeen River,suite, private, fireplace'),(702,19,'_genesis_title','Chantry Suite at Watch Hill Bed & Breakfast - private ensuite bathroom and fireplace with a view of Chantry Island'),(703,19,'_genesis_description','Watch Hill Bed & Breakfast- Chantry Suite,features a private ensuite bathroom and fireplace , from the private alcove enjoy the view of Chantry Island'),(704,19,'_genesis_keywords','Watch Hill, Bed & Breakfast, B&B,Lake Huron,Saugeen River, Chantry Island, suite, private, fireplace'),(705,21,'_genesis_title','Saugeen Suite at Watch Hill  Bed & Breakfast - private ensuite bathroom with a view of the Saugeen River'),(706,21,'_genesis_description','Watch Hill Bed & Breakfast - Saugeen Suite features a private ensuite bathroom with a view of the Saugeen River'),(707,21,'_genesis_keywords','Watch Hill, Bed & Breakfast, B&B,Lake Huron,Saugeen River,suite, private'),(708,23,'_genesis_title','Watch Hill Bed & Breakfast- a luxurious victorian beach house with views of Chantry Island on Lake Huron and the Saugeen River, Southampton Ontario'),(709,23,'_genesis_description','At Watch Hill Bed & Breakfast We strive to provide you with a stress free, relaxing B&B experience.'),(710,23,'_genesis_keywords','Watch Hill, Bed & Breakfast, B&B, Southampton, Chantry Island,Lake Huron,Saugeen River,Beach House'),(711,28,'_genesis_title','Watch Hill Bed & Breakfast- a luxurious beach house in Southampton Ontario'),(712,28,'_genesis_keywords','Watch Hill, Bed & Breakfast, B&B, Southampton, Chantry Island,Lake Huron,Saugeen River,Beach House'),(714,28,'_genesis_description','Watch Hill Bed & Breakfast - a luxurious victorian beach house in Southampton Ontario with views of Chantry Island on Lake Huron'),(715,55,'_genesis_title','Watch Hill Bed & Breakfast- a luxurious beach house in Southampton Ontario'),(716,250,'_wp_attached_file','2017/03/1M1A6671.jpg'),(717,250,'wpmf_size','2549069'),(718,250,'wpmf_filetype','jpg'),(719,250,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2000;s:6:\"height\";i:1333;s:4:\"file\";s:20:\"2017/03/1M1A6671.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"1M1A6671-150x150.jpg\";s:5:\"width\";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:\"1M1A6671-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:20:\"1M1A6671-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"1M1A6671-1024x682.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:682;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-image\";a:4:{s:4:\"file\";s:20:\"1M1A6671-720x400.jpg\";s:5:\"width\";i:720;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:2:\"11\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1476385813\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"20\";s:3:\"iso\";s:3:\"320\";s:13:\"shutter_speed\";s:2:\"25\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(720,251,'_thumbnail_id','250'),(721,251,'ml-slider_type','image'),(722,250,'_wp_attachment_backup_sizes','a:1:{s:15:\"resized-825x570\";a:5:{s:4:\"path\";s:79:\"/home/watchhill/public_html/dev/wp-content/uploads/2017/03/1M1A6671-825x570.jpg\";s:4:\"file\";s:20:\"1M1A6671-825x570.jpg\";s:5:\"width\";i:825;s:6:\"height\";i:570;s:9:\"mime-type\";s:10:\"image/jpeg\";}}'),(723,251,'ml-slider_crop_position','center-center'),(724,251,'_wp_attachment_image_alt',''),(733,117,'_wp_attachment_image_alt','If you canoe down the river...'),(734,116,'_wp_attachment_image_alt','Swimming in Lake Huron'),(735,130,'_wp_attachment_image_alt','Sunrise from Watch Hill B&B'),(736,129,'_wp_attachment_image_alt','Saugeen River Sunset'),(737,128,'_wp_attachment_image_alt','Lighthouse'),(738,127,'_wp_attachment_image_alt','Sunset over Lake Huron and the Saugeen River from our veranda at Watch Hill, Southampton, Ontario'),(739,126,'_wp_attachment_image_alt','Watch Hill B&B'),(740,124,'_wp_attachment_image_alt','Lake Huron'),(741,123,'_wp_attachment_image_alt','Southampton Summer Music Camp'),(742,118,'_wp_attachment_image_alt','Lighthouse at Sunset'),(756,21,'_wpmf_gallery_custom_image_link',''),(757,21,'_gallery_link_target',''),(815,23,'_genesis_scripts_body_position','bottom'),(806,15,'_genesis_scripts_body_position','bottom'),(813,5,'_wpmf_gallery_custom_image_link','http://www.ourhomes.ca/'),(774,226,'_genesis_title','The Harbour Suite - studio apartment at Watch Hill B&B, a Beach House in Southampton Ontario'),(775,226,'_genesis_description','The Harbour Suite at Watch Hill is a studio apartment with kitchenette, available to rent from October - May. Situated on site at Watch Hill B&B in Southampton Ontario, it comfortably sleeps 6.'),(776,226,'_genesis_keywords','The Harbour Suite. studio apartment, rent,Watch Hill, Bed & Breakfast,Beach House, B&B, Southampton, Chantry Island,Lake Huron,Saugeen River,Beach House'),(1089,513,'_edit_lock','1517900146:4'),(781,113,'_wp_attachment_image_alt','Dining Room'),(782,111,'_wp_attachment_image_alt','Grand Piano in the Great Room'),(783,110,'_wp_attachment_image_alt','The Great Room'),(784,109,'_wp_attachment_image_alt','The Great Room'),(785,108,'_wp_attachment_image_alt','The Great Room'),(786,102,'_wp_attachment_image_alt','The Great Room'),(787,100,'_wp_attachment_image_alt','Patio at Watch Hill B&B'),(788,99,'_wp_attachment_image_alt','Front Porch - Watch Hill Bed & Breakfast'),(789,98,'_wp_attachment_image_alt','Front Porch Dining Area- Watch Hill Bed & Breakfast'),(790,250,'_wp_attachment_image_alt','Watch Hill Bed & Breakfast - a Beach House in Southampton Ontario'),(791,158,'_wp_attachment_image_alt','Watch Hill Bed & Breakfast overlooks Chantry Island on Lake Huron, Southampton Ontario'),(794,47,'_ubermenu_settings','a:110:{s:22:\"submenu_column_default\";s:4:\"auto\";s:24:\"submenu_column_autoclear\";s:2:\"on\";s:11:\"row_padding\";s:0:\"\";s:8:\"grid_row\";s:3:\"off\";s:12:\"item_display\";s:4:\"auto\";s:12:\"disable_link\";s:3:\"off\";s:12:\"disable_text\";s:3:\"off\";s:9:\"highlight\";s:3:\"off\";s:10:\"item_align\";s:4:\"auto\";s:9:\"mini_item\";s:3:\"off\";s:10:\"custom_url\";s:0:\"\";s:8:\"scrollto\";s:0:\"\";s:7:\"no_wrap\";s:3:\"off\";s:12:\"item_trigger\";s:4:\"auto\";s:25:\"disable_submenu_indicator\";s:3:\"off\";s:15:\"disable_current\";s:3:\"off\";s:12:\"target_class\";s:0:\"\";s:9:\"target_id\";s:0:\"\";s:15:\"shiftnav_target\";s:0:\"\";s:7:\"columns\";s:4:\"auto\";s:11:\"item_layout\";s:7:\"default\";s:17:\"content_alignment\";s:7:\"default\";s:9:\"clear_row\";s:3:\"off\";s:12:\"submenu_type\";s:4:\"auto\";s:16:\"submenu_position\";s:10:\"full_width\";s:23:\"flyout_submenu_position\";s:14:\"left_edge_item\";s:13:\"submenu_width\";s:0:\"\";s:17:\"submenu_min_width\";s:0:\"\";s:18:\"submenu_min_height\";s:0:\"\";s:14:\"submenu_padded\";s:3:\"off\";s:14:\"submenu_indent\";s:3:\"off\";s:16:\"submenu_advanced\";s:4:\"auto\";s:19:\"submenu_autocolumns\";s:8:\"disabled\";s:23:\"submenu_column_dividers\";s:0:\"\";s:25:\"submenu_column_min_height\";s:0:\"\";s:12:\"submenu_grid\";s:3:\"off\";s:12:\"show_current\";s:3:\"off\";s:12:\"show_default\";s:3:\"off\";s:24:\"submenu_background_image\";s:0:\"\";s:31:\"submenu_background_image_repeat\";s:9:\"no-repeat\";s:27:\"submenu_background_position\";s:12:\"bottom right\";s:23:\"submenu_background_size\";s:4:\"auto\";s:15:\"submenu_padding\";s:0:\"\";s:22:\"submenu_footer_content\";s:0:\"\";s:10:\"new_column\";s:3:\"off\";s:11:\"dt_taxonomy\";s:0:\"\";s:9:\"dt_number\";s:0:\"\";s:9:\"dt_parent\";s:0:\"\";s:11:\"dt_child_of\";s:0:\"\";s:10:\"dt_exclude\";s:0:\"\";s:10:\"dt_orderby\";s:4:\"name\";s:8:\"dt_order\";s:3:\"ASC\";s:13:\"dt_hide_empty\";s:3:\"off\";s:15:\"dt_hierarchical\";s:3:\"off\";s:14:\"dt_autocolumns\";s:8:\"disabled\";s:22:\"dt_display_term_counts\";s:3:\"off\";s:11:\"dt_view_all\";s:4:\"none\";s:16:\"dt_view_all_text\";s:0:\"\";s:17:\"dp_posts_per_page\";i:-1;s:12:\"dp_post_type\";a:2:{i:0;s:4:\"post\";i:1;s:4:\"page\";}s:11:\"dp_category\";s:0:\"\";s:6:\"dp_tag\";s:0:\"\";s:14:\"dp_post_parent\";s:0:\"\";s:9:\"dp_author\";s:0:\"\";s:10:\"dp_exclude\";s:0:\"\";s:10:\"dp_orderby\";s:5:\"title\";s:8:\"dp_order\";s:3:\"ASC\";s:14:\"dp_autocolumns\";s:8:\"disabled\";s:13:\"dp_subcontent\";s:4:\"none\";s:11:\"dp_view_all\";s:4:\"none\";s:16:\"dp_view_all_text\";s:0:\"\";s:10:\"tab_layout\";s:4:\"left\";s:17:\"tab_block_columns\";s:4:\"full\";s:17:\"tabs_group_layout\";s:4:\"auto\";s:19:\"panels_group_layout\";s:4:\"auto\";s:11:\"panels_grid\";s:3:\"off\";s:14:\"panels_padding\";s:0:\"\";s:18:\"show_default_panel\";s:3:\"off\";s:12:\"tabs_trigger\";s:9:\"mouseover\";s:12:\"menu_segment\";s:0:\"\";s:23:\"segment_transient_cache\";s:3:\"off\";s:30:\"segment_transient_cache_expiry\";s:0:\"\";s:4:\"icon\";s:0:\"\";s:10:\"item_image\";s:0:\"\";s:22:\"inherit_featured_image\";s:3:\"off\";s:10:\"image_size\";s:7:\"inherit\";s:16:\"image_dimensions\";s:7:\"inherit\";s:18:\"image_width_custom\";s:0:\"\";s:19:\"image_height_custom\";s:0:\"\";s:22:\"image_text_top_padding\";s:0:\"\";s:15:\"disable_padding\";s:3:\"off\";s:14:\"custom_content\";s:0:\"\";s:18:\"pad_custom_content\";s:2:\"on\";s:16:\"auto_widget_area\";s:0:\"\";s:11:\"widget_area\";s:0:\"\";s:19:\"widget_area_columns\";s:4:\"auto\";s:16:\"background_color\";s:0:\"\";s:10:\"font_color\";s:0:\"\";s:23:\"background_color_active\";s:0:\"\";s:17:\"font_color_active\";s:0:\"\";s:24:\"background_color_current\";s:7:\"#ffffff\";s:18:\"font_color_current\";s:7:\"#000000\";s:7:\"padding\";s:0:\"\";s:24:\"submenu_background_color\";s:0:\"\";s:13:\"submenu_color\";s:0:\"\";s:14:\"hide_on_mobile\";s:3:\"off\";s:15:\"hide_on_desktop\";s:3:\"off\";s:17:\"disable_on_mobile\";s:3:\"off\";s:18:\"disable_on_desktop\";s:3:\"off\";s:25:\"disable_submenu_on_mobile\";s:3:\"off\";}'),(801,5,'_genesis_scripts_body_position','bottom'),(812,21,'_genesis_scripts_body_position','bottom'),(810,34,'_oembed_d6c12f4d366b2fa5a430f5b2f9530505','{{unknown}}'),(811,33,'_oembed_5b9146bf10646248cbd32a412c981c0f','{{unknown}}'),(816,7,'_genesis_scripts_body_position','bottom'),(817,394,'_wp_attached_file','2017/06/Chantry-button.jpg'),(818,394,'wpmf_size','27860'),(819,394,'wpmf_filetype','jpg'),(820,394,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:255;s:6:\"height\";i:440;s:4:\"file\";s:26:\"2017/06/Chantry-button.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"Chantry-button-150x150.jpg\";s:5:\"width\";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:\"Chantry-button-174x300.jpg\";s:5:\"width\";i:174;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-image\";a:4:{s:4:\"file\";s:26:\"Chantry-button-255x400.jpg\";s:5:\"width\";i:255;s:6:\"height\";i:400;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:{}}}'),(821,395,'_wp_attached_file','2017/06/Huron-button.jpg'),(822,395,'wpmf_size','30825'),(823,395,'wpmf_filetype','jpg'),(824,395,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:255;s:6:\"height\";i:440;s:4:\"file\";s:24:\"2017/06/Huron-button.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"Huron-button-150x150.jpg\";s:5:\"width\";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:\"Huron-button-174x300.jpg\";s:5:\"width\";i:174;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-image\";a:4:{s:4:\"file\";s:24:\"Huron-button-255x400.jpg\";s:5:\"width\";i:255;s:6:\"height\";i:400;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:{}}}'),(825,396,'_wp_attached_file','2017/06/Saugeen-button.jpg'),(826,396,'wpmf_size','24558'),(827,396,'wpmf_filetype','jpg'),(828,396,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:255;s:6:\"height\";i:440;s:4:\"file\";s:26:\"2017/06/Saugeen-button.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"Saugeen-button-150x150.jpg\";s:5:\"width\";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:\"Saugeen-button-174x300.jpg\";s:5:\"width\";i:174;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-image\";a:4:{s:4:\"file\";s:26:\"Saugeen-button-255x400.jpg\";s:5:\"width\";i:255;s:6:\"height\";i:400;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:{}}}'),(829,17,'_genesis_scripts_body_position','bottom'),(830,19,'_genesis_scripts_body_position','bottom'),(831,28,'_genesis_scripts_body_position','bottom'),(857,422,'ml-slider_type','image'),(858,421,'_wp_attachment_backup_sizes','a:1:{s:15:\"resized-825x570\";a:5:{s:4:\"path\";s:91:\"/home/watchhill/public_html/wp-content/uploads/2017/06/Saugeen-OurHomes-Feature-825x570.jpg\";s:4:\"file\";s:36:\"Saugeen-OurHomes-Feature-825x570.jpg\";s:5:\"width\";i:825;s:6:\"height\";i:570;s:9:\"mime-type\";s:10:\"image/jpeg\";}}'),(852,421,'_wp_attached_file','2017/06/Saugeen-OurHomes-Feature.jpg'),(853,421,'wpmf_size','397105'),(854,421,'wpmf_filetype','jpg'),(855,421,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:825;s:6:\"height\";i:1023;s:4:\"file\";s:36:\"2017/06/Saugeen-OurHomes-Feature.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:36:\"Saugeen-OurHomes-Feature-150x150.jpg\";s:5:\"width\";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:\"Saugeen-OurHomes-Feature-242x300.jpg\";s:5:\"width\";i:242;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:36:\"Saugeen-OurHomes-Feature-768x952.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:952;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-image\";a:4:{s:4:\"file\";s:36:\"Saugeen-OurHomes-Feature-720x400.jpg\";s:5:\"width\";i:720;s:6:\"height\";i:400;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:{}}}'),(847,420,'ml-slider_type','image'),(837,418,'ml-slider_type','image'),(856,422,'_thumbnail_id','421'),(839,418,'ml-slider_crop_position','center-center'),(840,418,'_wp_attachment_image_alt',''),(841,418,'_wp_desired_post_slug','slider-92-image'),(849,420,'ml-slider_crop_position','center-center'),(850,420,'_wp_attachment_image_alt',''),(851,420,'_wp_desired_post_slug','slider-92-image'),(859,422,'ml-slider_crop_position','center-center'),(860,422,'_wp_attachment_image_alt',''),(1701,664,'wpmf_order','0'),(1702,664,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:7360;s:6:\"height\";i:4912;s:4:\"file\";s:27:\"2018/02/Sunset-DSC1693.jpeg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"Sunset-DSC1693-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:27:\"Sunset-DSC1693-300x200.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:27:\"Sunset-DSC1693-768x513.jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:513;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:28:\"Sunset-DSC1693-1024x683.jpeg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-image\";a:4:{s:4:\"file\";s:27:\"Sunset-DSC1693-720x400.jpeg\";s:5:\"width\";i:720;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"9\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:10:\"NIKON D800\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1516472854\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"44\";s:3:\"iso\";s:3:\"800\";s:13:\"shutter_speed\";s:15:\"0.0166666666667\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(1703,665,'_wp_attached_file','2018/02/IMG_2097.jpg'),(1704,665,'wpmf_size','2252800'),(1705,665,'wpmf_filetype','jpg'),(1706,665,'wpmf_order','0'),(1707,665,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:4032;s:6:\"height\";i:3024;s:4:\"file\";s:20:\"2018/02/IMG_2097.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"IMG_2097-150x150.jpg\";s:5:\"width\";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_2097-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:20:\"IMG_2097-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"IMG_2097-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-image\";a:4:{s:4:\"file\";s:20:\"IMG_2097-720x400.jpg\";s:5:\"width\";i:720;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:13:\"iPhone 7 Plus\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1514546797\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:3:\"6.6\";s:3:\"iso\";s:2:\"20\";s:13:\"shutter_speed\";s:17:\"0.000375939849624\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(1708,666,'_wp_attached_file','2018/02/IMG_2102.jpg'),(1709,666,'wpmf_size','1594353'),(1710,666,'wpmf_filetype','jpg'),(1711,666,'wpmf_order','0'),(1712,666,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:4032;s:6:\"height\";i:3024;s:4:\"file\";s:20:\"2018/02/IMG_2102.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"IMG_2102-150x150.jpg\";s:5:\"width\";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_2102-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:20:\"IMG_2102-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"IMG_2102-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-image\";a:4:{s:4:\"file\";s:20:\"IMG_2102-720x400.jpg\";s:5:\"width\";i:720;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"1.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:13:\"iPhone 7 Plus\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1514548412\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"3.99\";s:3:\"iso\";s:2:\"25\";s:13:\"shutter_speed\";s:17:\"0.000176991150442\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(1696,663,'_edit_lock','1519345286:6'),(1697,663,'_edit_last','6'),(1698,664,'_wp_attached_file','2018/02/Sunset-DSC1693.jpeg'),(1699,664,'wpmf_size','22235068'),(1700,664,'wpmf_filetype','jpeg'),(983,513,'_wp_attached_file','2018/02/IMG_0107.jpeg'),(984,513,'wpmf_size','27467'),(985,513,'wpmf_filetype','jpeg'),(986,513,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:320;s:6:\"height\";i:240;s:4:\"file\";s:21:\"2018/02/IMG_0107.jpeg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"IMG_0107-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:\"IMG_0107-300x225.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:225;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:{}}}'),(1219,532,'_wp_attached_file','2018/02/houseofhistory.jpg'),(1220,532,'wpmf_size','167578'),(1221,532,'wpmf_filetype','jpg'),(1222,532,'wpmf_order','0'),(1223,532,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:597;s:4:\"file\";s:26:\"2018/02/houseofhistory.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"houseofhistory-150x150.jpg\";s:5:\"width\";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:\"houseofhistory-300x179.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:179;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:26:\"houseofhistory-768x458.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:458;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-image\";a:4:{s:4:\"file\";s:26:\"houseofhistory-720x400.jpg\";s:5:\"width\";i:720;s:6:\"height\";i:400;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:{}}}'),(1224,11,'_thumbnail_id','532'),(1225,11,'_genesis_title','History of Watch Hill'),(1226,11,'_genesis_scripts_body_position','bottom'),(1227,536,'_menu_item_type','post_type'),(1228,536,'_menu_item_menu_item_parent','38'),(1229,536,'_menu_item_object_id','11'),(1230,536,'_menu_item_object','page'),(1231,536,'_menu_item_target',''),(1232,536,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1233,536,'_menu_item_xfn',''),(1234,536,'_menu_item_url',''),(1236,537,'_edit_lock','1519337711:6'),(1237,537,'_edit_last','6'),(1238,537,'_wp_page_template','default'),(1239,537,'_genesis_title','Testimonials'),(1240,537,'_genesis_scripts_body_position','bottom'),(1241,568,'_menu_item_type','post_type'),(1242,568,'_menu_item_menu_item_parent','0'),(1243,568,'_menu_item_object_id','537'),(1244,568,'_menu_item_object','page'),(873,226,'_genesis_scripts_body_position','bottom'),(874,446,'_wp_attached_file','2017/09/1-e1505753463879.jpg'),(875,446,'wpmf_size','111835'),(876,446,'wpmf_filetype','jpg'),(877,446,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:480;s:6:\"height\";i:640;s:4:\"file\";s:28:\"2017/09/1-e1505753463879.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"1-e1505753463879-150x150.jpg\";s:5:\"width\";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:\"1-e1505753463879-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-image\";a:4:{s:4:\"file\";s:28:\"1-e1505753463879-480x400.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:27:\"meta-slider-resized-480x331\";a:4:{s:4:\"file\";s:28:\"1-e1505753463879-480x331.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:331;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.2\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:9:\"iPhone 5s\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1505723344\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"4.15\";s:3:\"iso\";s:3:\"250\";s:13:\"shutter_speed\";s:15:\"0.0588235294118\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"6\";s:8:\"keywords\";a:0:{}}}'),(878,447,'_wp_attached_file','2017/09/2-e1505753451507.jpg'),(879,447,'wpmf_size','95837'),(880,447,'wpmf_filetype','jpg'),(881,447,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:480;s:6:\"height\";i:640;s:4:\"file\";s:28:\"2017/09/2-e1505753451507.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"2-e1505753451507-150x150.jpg\";s:5:\"width\";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:\"2-e1505753451507-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-image\";a:4:{s:4:\"file\";s:28:\"2-e1505753451507-480x400.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:27:\"meta-slider-resized-480x331\";a:4:{s:4:\"file\";s:28:\"2-e1505753451507-480x331.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:331;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:27:\"meta-slider-resized-480x360\";a:4:{s:4:\"file\";s:28:\"2-e1505753451507-480x360.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.2\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:9:\"iPhone 5s\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1505723436\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"4.15\";s:3:\"iso\";s:3:\"250\";s:13:\"shutter_speed\";s:15:\"0.0588235294118\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"6\";s:8:\"keywords\";a:0:{}}}'),(882,448,'_wp_attached_file','2017/09/3-e1505753439736.jpg'),(883,448,'wpmf_size','90104'),(884,448,'wpmf_filetype','jpg'),(885,448,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:480;s:6:\"height\";i:640;s:4:\"file\";s:28:\"2017/09/3-e1505753439736.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"3-e1505753439736-150x150.jpg\";s:5:\"width\";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:\"3-e1505753439736-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-image\";a:4:{s:4:\"file\";s:28:\"3-e1505753439736-480x400.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:27:\"meta-slider-resized-480x331\";a:4:{s:4:\"file\";s:28:\"3-e1505753439736-480x331.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:331;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:27:\"meta-slider-resized-480x360\";a:4:{s:4:\"file\";s:28:\"3-e1505753439736-480x360.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.2\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:9:\"iPhone 5s\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1505723629\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"4.15\";s:3:\"iso\";s:3:\"500\";s:13:\"shutter_speed\";s:15:\"0.0666666666667\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"6\";s:8:\"keywords\";a:0:{}}}'),(886,449,'_wp_attached_file','2017/09/4-e1505753426189.jpg'),(887,449,'wpmf_size','96153'),(888,449,'wpmf_filetype','jpg'),(889,449,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:480;s:6:\"height\";i:640;s:4:\"file\";s:28:\"2017/09/4-e1505753426189.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"4-e1505753426189-150x150.jpg\";s:5:\"width\";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:\"4-e1505753426189-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-image\";a:4:{s:4:\"file\";s:28:\"4-e1505753426189-480x400.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:27:\"meta-slider-resized-480x331\";a:4:{s:4:\"file\";s:28:\"4-e1505753426189-480x331.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:331;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:27:\"meta-slider-resized-480x360\";a:4:{s:4:\"file\";s:28:\"4-e1505753426189-480x360.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.2\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:9:\"iPhone 5s\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1505723720\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"4.15\";s:3:\"iso\";s:3:\"250\";s:13:\"shutter_speed\";s:15:\"0.0333333333333\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"6\";s:8:\"keywords\";a:0:{}}}'),(890,449,'_wp_attachment_backup_sizes','a:6:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:640;s:6:\"height\";i:480;s:4:\"file\";s:5:\"4.jpg\";}s:14:\"thumbnail-orig\";a:4:{s:4:\"file\";s:13:\"4-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"medium-orig\";a:4:{s:4:\"file\";s:13:\"4-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"featured-image-orig\";a:4:{s:4:\"file\";s:13:\"4-640x400.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"resized-480x331\";a:5:{s:4:\"path\";s:83:\"/home/watchhill/public_html/wp-content/uploads/2017/09/4-e1505753426189-480x331.jpg\";s:4:\"file\";s:28:\"4-e1505753426189-480x331.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:331;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"resized-480x360\";a:5:{s:4:\"path\";s:83:\"/home/watchhill/public_html/wp-content/uploads/2017/09/4-e1505753426189-480x360.jpg\";s:4:\"file\";s:28:\"4-e1505753426189-480x360.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}}'),(891,448,'_wp_attachment_backup_sizes','a:6:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:640;s:6:\"height\";i:480;s:4:\"file\";s:5:\"3.jpg\";}s:14:\"thumbnail-orig\";a:4:{s:4:\"file\";s:13:\"3-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"medium-orig\";a:4:{s:4:\"file\";s:13:\"3-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"featured-image-orig\";a:4:{s:4:\"file\";s:13:\"3-640x400.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"resized-480x331\";a:5:{s:4:\"path\";s:83:\"/home/watchhill/public_html/wp-content/uploads/2017/09/3-e1505753439736-480x331.jpg\";s:4:\"file\";s:28:\"3-e1505753439736-480x331.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:331;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"resized-480x360\";a:5:{s:4:\"path\";s:83:\"/home/watchhill/public_html/wp-content/uploads/2017/09/3-e1505753439736-480x360.jpg\";s:4:\"file\";s:28:\"3-e1505753439736-480x360.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}}'),(892,447,'_wp_attachment_backup_sizes','a:6:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:640;s:6:\"height\";i:480;s:4:\"file\";s:5:\"2.jpg\";}s:14:\"thumbnail-orig\";a:4:{s:4:\"file\";s:13:\"2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"medium-orig\";a:4:{s:4:\"file\";s:13:\"2-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"featured-image-orig\";a:4:{s:4:\"file\";s:13:\"2-640x400.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"resized-480x331\";a:5:{s:4:\"path\";s:83:\"/home/watchhill/public_html/wp-content/uploads/2017/09/2-e1505753451507-480x331.jpg\";s:4:\"file\";s:28:\"2-e1505753451507-480x331.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:331;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"resized-480x360\";a:5:{s:4:\"path\";s:83:\"/home/watchhill/public_html/wp-content/uploads/2017/09/2-e1505753451507-480x360.jpg\";s:4:\"file\";s:28:\"2-e1505753451507-480x360.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}}'),(893,446,'_wp_attachment_backup_sizes','a:5:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:640;s:6:\"height\";i:480;s:4:\"file\";s:5:\"1.jpg\";}s:14:\"thumbnail-orig\";a:4:{s:4:\"file\";s:13:\"1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"medium-orig\";a:4:{s:4:\"file\";s:13:\"1-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"featured-image-orig\";a:4:{s:4:\"file\";s:13:\"1-640x400.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"resized-480x331\";a:5:{s:4:\"path\";s:83:\"/home/watchhill/public_html/wp-content/uploads/2017/09/1-e1505753463879-480x331.jpg\";s:4:\"file\";s:28:\"1-e1505753463879-480x331.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:331;s:9:\"mime-type\";s:10:\"image/jpeg\";}}'),(894,450,'_thumbnail_id','449'),(895,450,'_wp_attachment_image_alt',''),(896,450,'ml-slider_type','image'),(897,451,'_thumbnail_id','448'),(898,451,'_wp_attachment_image_alt',''),(899,451,'ml-slider_type','image'),(900,452,'_thumbnail_id','447'),(901,452,'_wp_attachment_image_alt',''),(902,452,'ml-slider_type','image'),(903,453,'_thumbnail_id','446'),(904,453,'_wp_attachment_image_alt',''),(905,453,'ml-slider_type','image'),(906,450,'ml-slider_crop_position','center-center'),(907,451,'ml-slider_crop_position','center-center'),(908,452,'ml-slider_crop_position','center-center'),(909,453,'ml-slider_crop_position','center-center'),(910,481,'_wp_attached_file','2017/10/IMG_0102.jpg'),(911,481,'wpmf_size','92232'),(912,481,'wpmf_filetype','jpg'),(913,481,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:640;s:6:\"height\";i:480;s:4:\"file\";s:20:\"2017/10/IMG_0102.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"IMG_0102-150x150.jpg\";s:5:\"width\";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_0102-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-image\";a:4:{s:4:\"file\";s:20:\"IMG_0102-640x400.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:27:\"meta-slider-resized-360x480\";a:4:{s:4:\"file\";s:20:\"IMG_0102-360x480.jpg\";s:5:\"width\";i:360;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.4\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"iPad Pro\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1508420094\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:3:\"3.3\";s:3:\"iso\";s:2:\"80\";s:13:\"shutter_speed\";s:15:\"0.0333333333333\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(914,482,'_thumbnail_id','481'),(915,482,'_wp_attachment_image_alt',''),(916,482,'ml-slider_type','image'),(917,481,'_wp_attachment_backup_sizes','a:1:{s:15:\"resized-360x480\";a:5:{s:4:\"path\";s:75:\"/home/watchhill/public_html/wp-content/uploads/2017/10/IMG_0102-360x480.jpg\";s:4:\"file\";s:20:\"IMG_0102-360x480.jpg\";s:5:\"width\";i:360;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}}'),(918,482,'ml-slider_crop_position','center-center'),(919,453,'_wp_desired_post_slug','slider-348-image-4'),(920,483,'_wp_attached_file','2017/10/IMG_0097.jpg'),(921,483,'wpmf_size','92551'),(922,483,'wpmf_filetype','jpg'),(923,483,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:640;s:6:\"height\";i:480;s:4:\"file\";s:20:\"2017/10/IMG_0097.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"IMG_0097-150x150.jpg\";s:5:\"width\";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_0097-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-image\";a:4:{s:4:\"file\";s:20:\"IMG_0097-640x400.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:27:\"meta-slider-resized-360x480\";a:4:{s:4:\"file\";s:20:\"IMG_0097-360x480.jpg\";s:5:\"width\";i:360;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.4\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"iPad Pro\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1508419893\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:3:\"3.3\";s:3:\"iso\";s:3:\"125\";s:13:\"shutter_speed\";s:15:\"0.0333333333333\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(924,484,'_thumbnail_id','483'),(925,484,'_wp_attachment_image_alt',''),(926,484,'ml-slider_type','image'),(927,483,'_wp_attachment_backup_sizes','a:1:{s:15:\"resized-360x480\";a:5:{s:4:\"path\";s:75:\"/home/watchhill/public_html/wp-content/uploads/2017/10/IMG_0097-360x480.jpg\";s:4:\"file\";s:20:\"IMG_0097-360x480.jpg\";s:5:\"width\";i:360;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}}'),(928,484,'ml-slider_crop_position','center-center'),(929,451,'_wp_desired_post_slug','slider-348-image-2'),(930,485,'_wp_attached_file','2017/10/IMG_0115.jpg'),(931,485,'wpmf_size','88084'),(932,485,'wpmf_filetype','jpg'),(933,485,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:640;s:6:\"height\";i:480;s:4:\"file\";s:20:\"2017/10/IMG_0115.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"IMG_0115-150x150.jpg\";s:5:\"width\";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_0115-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-image\";a:4:{s:4:\"file\";s:20:\"IMG_0115-640x400.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.4\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"iPad Pro\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1508420546\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:3:\"3.3\";s:3:\"iso\";s:2:\"25\";s:13:\"shutter_speed\";s:15:\"0.0333333333333\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(934,486,'_thumbnail_id','485'),(935,486,'_wp_attachment_image_alt',''),(936,486,'ml-slider_type','image'),(937,450,'_wp_desired_post_slug','slider-348-image'),(938,486,'ml-slider_crop_position','center-center'),(939,487,'_wp_attached_file','2017/10/IMG_0114.jpg'),(940,487,'wpmf_size','85501'),(941,487,'wpmf_filetype','jpg'),(942,487,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:640;s:6:\"height\";i:480;s:4:\"file\";s:20:\"2017/10/IMG_0114.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"IMG_0114-150x150.jpg\";s:5:\"width\";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_0114-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-image\";a:4:{s:4:\"file\";s:20:\"IMG_0114-640x400.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.4\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"iPad Pro\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1508420508\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:3:\"3.3\";s:3:\"iso\";s:3:\"160\";s:13:\"shutter_speed\";s:15:\"0.0333333333333\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(943,488,'_thumbnail_id','487'),(944,488,'_wp_attachment_image_alt',''),(945,488,'ml-slider_type','image'),(946,452,'_wp_desired_post_slug','slider-348-image-3'),(947,488,'ml-slider_crop_position','center-center'),(948,492,'_wp_attached_file','2017/03/Huron.jpg'),(949,492,'wpmf_size','23779'),(950,492,'wpmf_filetype','jpg'),(951,492,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:195;s:6:\"height\";i:440;s:4:\"file\";s:17:\"2017/03/Huron.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:17:\"Huron-150x150.jpg\";s:5:\"width\";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:\"Huron-133x300.jpg\";s:5:\"width\";i:133;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-image\";a:4:{s:4:\"file\";s:17:\"Huron-195x400.jpg\";s:5:\"width\";i:195;s:6:\"height\";i:400;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:{}}}'),(952,493,'_wp_attached_file','2017/03/chantry-1.jpg'),(953,493,'wpmf_size','19876'),(954,493,'wpmf_filetype','jpg'),(955,493,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:195;s:6:\"height\";i:440;s:4:\"file\";s:21:\"2017/03/chantry-1.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"chantry-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:21:\"chantry-1-133x300.jpg\";s:5:\"width\";i:133;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-image\";a:4:{s:4:\"file\";s:21:\"chantry-1-195x400.jpg\";s:5:\"width\";i:195;s:6:\"height\";i:400;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:{}}}'),(956,494,'_wp_attached_file','2017/03/saugeen-1.jpg'),(957,494,'wpmf_size','20100'),(958,494,'wpmf_filetype','jpg'),(959,494,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:195;s:6:\"height\";i:440;s:4:\"file\";s:21:\"2017/03/saugeen-1.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"saugeen-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:21:\"saugeen-1-133x300.jpg\";s:5:\"width\";i:133;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-image\";a:4:{s:4:\"file\";s:21:\"saugeen-1-195x400.jpg\";s:5:\"width\";i:195;s:6:\"height\";i:400;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:{}}}'),(960,495,'_wp_attached_file','2017/03/Harbour.jpg'),(961,495,'wpmf_size','23037'),(962,495,'wpmf_filetype','jpg'),(963,495,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:195;s:6:\"height\";i:440;s:4:\"file\";s:19:\"2017/03/Harbour.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"Harbour-150x150.jpg\";s:5:\"width\";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:\"Harbour-133x300.jpg\";s:5:\"width\";i:133;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-image\";a:4:{s:4:\"file\";s:19:\"Harbour-195x400.jpg\";s:5:\"width\";i:195;s:6:\"height\";i:400;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:{}}}'),(964,496,'_wp_attached_file','2017/03/Huron-1.jpg'),(965,496,'wpmf_size','23779'),(966,496,'wpmf_filetype','jpg'),(967,496,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:195;s:6:\"height\";i:440;s:4:\"file\";s:19:\"2017/03/Huron-1.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"Huron-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:19:\"Huron-1-133x300.jpg\";s:5:\"width\";i:133;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-image\";a:4:{s:4:\"file\";s:19:\"Huron-1-195x400.jpg\";s:5:\"width\";i:195;s:6:\"height\";i:400;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:{}}}'),(968,497,'_wp_attached_file','2017/03/chantry-2.jpg'),(969,497,'wpmf_size','19876'),(970,497,'wpmf_filetype','jpg'),(971,497,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:195;s:6:\"height\";i:440;s:4:\"file\";s:21:\"2017/03/chantry-2.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"chantry-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:21:\"chantry-2-133x300.jpg\";s:5:\"width\";i:133;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-image\";a:4:{s:4:\"file\";s:21:\"chantry-2-195x400.jpg\";s:5:\"width\";i:195;s:6:\"height\";i:400;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:{}}}'),(972,498,'_wp_attached_file','2017/03/chantry-3.jpg'),(973,498,'wpmf_size','19876'),(974,498,'wpmf_filetype','jpg'),(975,498,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:195;s:6:\"height\";i:440;s:4:\"file\";s:21:\"2017/03/chantry-3.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"chantry-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:21:\"chantry-3-133x300.jpg\";s:5:\"width\";i:133;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-image\";a:4:{s:4:\"file\";s:21:\"chantry-3-195x400.jpg\";s:5:\"width\";i:195;s:6:\"height\";i:400;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:{}}}'),(976,499,'_wp_attached_file','2017/03/Harbour-1.jpg'),(977,499,'wpmf_size','23037'),(978,499,'wpmf_filetype','jpg'),(979,499,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:195;s:6:\"height\";i:440;s:4:\"file\";s:21:\"2017/03/Harbour-1.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"Harbour-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:21:\"Harbour-1-133x300.jpg\";s:5:\"width\";i:133;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-image\";a:4:{s:4:\"file\";s:21:\"Harbour-1-195x400.jpg\";s:5:\"width\";i:195;s:6:\"height\";i:400;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:{}}}'),(980,9,'_genesis_scripts_body_position','bottom'),(987,514,'_wp_attached_file','2018/02/IMG_2181-e1517898694856.jpg'),(988,514,'wpmf_size','117774'),(989,514,'wpmf_filetype','jpg'),(990,514,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:480;s:6:\"height\";i:640;s:4:\"file\";s:35:\"2018/02/IMG_2181-e1517898694856.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"IMG_2181-e1517898694856-150x150.jpg\";s:5:\"width\";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_2181-e1517898694856-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-image\";a:4:{s:4:\"file\";s:35:\"IMG_2181-e1517898694856-480x400.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.2\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:9:\"iPhone 5s\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1513195928\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"4.15\";s:3:\"iso\";s:3:\"500\";s:13:\"shutter_speed\";s:15:\"0.0666666666667\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"6\";s:8:\"keywords\";a:0:{}}}'),(991,515,'_wp_attached_file','2018/02/IMG_2184-e1517898551841.jpg'),(992,515,'wpmf_size','99606'),(993,515,'wpmf_filetype','jpg'),(994,515,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:480;s:6:\"height\";i:640;s:4:\"file\";s:35:\"2018/02/IMG_2184-e1517898551841.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"IMG_2184-e1517898551841-150x150.jpg\";s:5:\"width\";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_2184-e1517898551841-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-image\";a:4:{s:4:\"file\";s:35:\"IMG_2184-e1517898551841-480x400.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.2\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:9:\"iPhone 5s\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1513352173\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"4.15\";s:3:\"iso\";s:2:\"40\";s:13:\"shutter_speed\";s:15:\"0.0166666666667\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"6\";s:8:\"keywords\";a:0:{}}}'),(995,516,'_wp_attached_file','2018/02/IMG_2193-e1517898463667.jpg'),(996,516,'wpmf_size','112075'),(997,516,'wpmf_filetype','jpg'),(998,516,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:480;s:6:\"height\";i:640;s:4:\"file\";s:35:\"2018/02/IMG_2193-e1517898463667.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"IMG_2193-e1517898463667-150x150.jpg\";s:5:\"width\";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_2193-e1517898463667-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-image\";a:4:{s:4:\"file\";s:35:\"IMG_2193-e1517898463667-480x400.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.2\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:9:\"iPhone 5s\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1513521580\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"4.15\";s:3:\"iso\";s:2:\"32\";s:13:\"shutter_speed\";s:16:\"0.00129198966408\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"6\";s:8:\"keywords\";a:0:{}}}'),(999,514,'_edit_lock','1517900098:4'),(1214,530,'_wp_attachment_image_alt','Fireside wine and chocolate'),(1017,104,'foogallery_thumb_dimensions','a:1:{i:96;a:2:{s:5:\"width\";i:375;s:6:\"height\";i:250;}}'),(1018,103,'foogallery_thumb_dimensions','a:1:{i:96;a:2:{s:5:\"width\";i:444;s:6:\"height\";i:250;}}'),(1019,111,'foogallery_thumb_dimensions','a:1:{i:96;a:2:{s:5:\"width\";i:375;s:6:\"height\";i:250;}}'),(1020,112,'foogallery_thumb_dimensions','a:1:{i:96;a:2:{s:5:\"width\";i:444;s:6:\"height\";i:250;}}'),(1021,97,'foogallery_thumb_dimensions','a:1:{i:96;a:2:{s:5:\"width\";i:375;s:6:\"height\";i:250;}}'),(1022,98,'foogallery_thumb_dimensions','a:1:{i:96;a:2:{s:5:\"width\";i:375;s:6:\"height\";i:250;}}'),(1023,99,'foogallery_thumb_dimensions','a:1:{i:96;a:2:{s:5:\"width\";i:375;s:6:\"height\";i:250;}}'),(1024,100,'foogallery_thumb_dimensions','a:1:{i:96;a:2:{s:5:\"width\";i:375;s:6:\"height\";i:250;}}'),(1025,101,'foogallery_thumb_dimensions','a:1:{i:96;a:2:{s:5:\"width\";i:375;s:6:\"height\";i:250;}}'),(1026,54,'foogallery_thumb_dimensions','a:1:{i:96;a:2:{s:5:\"width\";i:362;s:6:\"height\";i:250;}}'),(1107,115,'_foogallery_settings','a:25:{s:21:\"foogallery_items_view\";s:6:\"manage\";s:22:\"justified_thumb_height\";s:3:\"250\";s:20:\"justified_row_height\";s:3:\"150\";s:24:\"justified_max_row_height\";s:4:\"200%\";s:17:\"justified_margins\";s:1:\"4\";s:24:\"justified_thumbnail_link\";s:5:\"image\";s:18:\"justified_lightbox\";s:6:\"foobox\";s:17:\"justified_lastrow\";s:6:\"center\";s:15:\"justified_theme\";s:8:\"fg-light\";s:21:\"justified_border_size\";s:0:\"\";s:25:\"justified_rounded_corners\";s:0:\"\";s:21:\"justified_drop_shadow\";s:0:\"\";s:22:\"justified_inner_shadow\";s:0:\"\";s:22:\"justified_loading_icon\";s:18:\"fg-loading-default\";s:23:\"justified_loaded_effect\";s:17:\"fg-loaded-fade-in\";s:28:\"justified_hover_effect_color\";s:0:\"\";s:28:\"justified_hover_effect_scale\";s:0:\"\";s:41:\"justified_hover_effect_caption_visibility\";s:0:\"\";s:33:\"justified_hover_effect_transition\";s:13:\"fg-hover-fade\";s:27:\"justified_hover_effect_icon\";s:0:\"\";s:30:\"justified_caption_title_source\";s:0:\"\";s:29:\"justified_caption_desc_source\";s:0:\"\";s:31:\"justified_captions_limit_length\";s:0:\"\";s:21:\"justified_paging_type\";s:0:\"\";s:18:\"justified_lazyload\";s:0:\"\";}'),(1109,96,'_foogallery_settings','a:25:{s:21:\"foogallery_items_view\";s:6:\"manage\";s:22:\"justified_thumb_height\";s:3:\"250\";s:20:\"justified_row_height\";s:3:\"150\";s:24:\"justified_max_row_height\";s:4:\"200%\";s:17:\"justified_margins\";s:1:\"1\";s:24:\"justified_thumbnail_link\";s:5:\"image\";s:18:\"justified_lightbox\";s:6:\"foobox\";s:17:\"justified_lastrow\";s:6:\"center\";s:15:\"justified_theme\";s:8:\"fg-light\";s:21:\"justified_border_size\";s:14:\"fg-border-thin\";s:25:\"justified_rounded_corners\";s:0:\"\";s:21:\"justified_drop_shadow\";s:17:\"fg-shadow-outline\";s:22:\"justified_inner_shadow\";s:0:\"\";s:22:\"justified_loading_icon\";s:18:\"fg-loading-default\";s:23:\"justified_loaded_effect\";s:17:\"fg-loaded-fade-in\";s:28:\"justified_hover_effect_color\";s:0:\"\";s:28:\"justified_hover_effect_scale\";s:0:\"\";s:41:\"justified_hover_effect_caption_visibility\";s:16:\"fg-caption-hover\";s:33:\"justified_hover_effect_transition\";s:13:\"fg-hover-fade\";s:27:\"justified_hover_effect_icon\";s:13:\"fg-hover-zoom\";s:30:\"justified_caption_title_source\";s:0:\"\";s:29:\"justified_caption_desc_source\";s:0:\"\";s:31:\"justified_captions_limit_length\";s:0:\"\";s:21:\"justified_paging_type\";s:0:\"\";s:18:\"justified_lazyload\";s:0:\"\";}'),(1032,516,'_edit_lock','1517900015:4'),(1033,516,'_wp_attachment_image_alt','Santa and Dooley on the front porch'),(1034,516,'_wpmf_gallery_custom_image_link',''),(1035,516,'_gallery_link_target',''),(1036,516,'_foogallery_custom_url',''),(1037,516,'_foogallery_custom_target','default'),(1038,516,'_foogallery_custom_class',''),(1039,516,'_edit_last','4'),(1040,516,'_wp_attachment_backup_sizes','a:4:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:640;s:6:\"height\";i:480;s:4:\"file\";s:12:\"IMG_2193.jpg\";}s:14:\"thumbnail-orig\";a:4:{s:4:\"file\";s:20:\"IMG_2193-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"medium-orig\";a:4:{s:4:\"file\";s:20:\"IMG_2193-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"featured-image-orig\";a:4:{s:4:\"file\";s:20:\"IMG_2193-640x400.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}}'),(1041,515,'_edit_lock','1517900058:4'),(1042,515,'_wp_attachment_backup_sizes','a:4:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:640;s:6:\"height\";i:480;s:4:\"file\";s:12:\"IMG_2184.jpg\";}s:14:\"thumbnail-orig\";a:4:{s:4:\"file\";s:20:\"IMG_2184-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"medium-orig\";a:4:{s:4:\"file\";s:20:\"IMG_2184-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"featured-image-orig\";a:4:{s:4:\"file\";s:20:\"IMG_2184-640x400.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}}'),(1043,515,'_wp_attachment_image_alt','Dooley on the front porch, waiting for Christmas'),(1044,515,'_wpmf_gallery_custom_image_link',''),(1045,515,'_gallery_link_target',''),(1046,515,'_foogallery_custom_url',''),(1047,515,'_foogallery_custom_target','default'),(1048,515,'_foogallery_custom_class',''),(1049,515,'_edit_last','4'),(1050,514,'_wp_attachment_backup_sizes','a:4:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:640;s:6:\"height\";i:480;s:4:\"file\";s:12:\"IMG_2181.jpg\";}s:14:\"thumbnail-orig\";a:4:{s:4:\"file\";s:20:\"IMG_2181-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"medium-orig\";a:4:{s:4:\"file\";s:20:\"IMG_2181-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"featured-image-orig\";a:4:{s:4:\"file\";s:20:\"IMG_2181-640x400.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}}'),(1051,514,'_wp_attachment_image_alt','Snow-layden Christmas tree at Watch Hill'),(1052,514,'_wpmf_gallery_custom_image_link',''),(1053,514,'_gallery_link_target',''),(1054,514,'_foogallery_custom_url',''),(1055,514,'_foogallery_custom_target','default'),(1056,514,'_foogallery_custom_class',''),(1057,514,'_edit_last','4'),(1059,125,'_wp_attachment_image_alt','steps from the beach'),(1060,125,'_edit_lock','1517899586:4'),(1061,125,'_wpmf_gallery_custom_image_link',''),(1062,125,'_gallery_link_target',''),(1063,125,'_foogallery_custom_url',''),(1064,125,'_foogallery_custom_target','default'),(1065,125,'_foogallery_custom_class',''),(1066,125,'_edit_last','4'),(1067,130,'_edit_lock','1517899765:4'),(1068,130,'_wpmf_gallery_custom_image_link',''),(1069,130,'_gallery_link_target',''),(1070,130,'_foogallery_custom_url',''),(1071,130,'_foogallery_custom_target','default'),(1072,130,'_foogallery_custom_class',''),(1073,130,'_edit_last','4'),(1075,116,'foogallery_thumb_dimensions','a:1:{i:115;a:2:{s:5:\"width\";i:333;s:6:\"height\";i:250;}}'),(1076,118,'foogallery_thumb_dimensions','a:1:{i:115;a:2:{s:5:\"width\";i:333;s:6:\"height\";i:250;}}'),(1077,117,'foogallery_thumb_dimensions','a:1:{i:115;a:2:{s:5:\"width\";i:374;s:6:\"height\";i:250;}}'),(1078,119,'foogallery_thumb_dimensions','a:1:{i:115;a:2:{s:5:\"width\";i:525;s:6:\"height\";i:250;}}'),(1079,120,'foogallery_thumb_dimensions','a:1:{i:115;a:2:{s:5:\"width\";i:525;s:6:\"height\";i:250;}}'),(1080,121,'foogallery_thumb_dimensions','a:1:{i:115;a:2:{s:5:\"width\";i:333;s:6:\"height\";i:250;}}'),(1081,122,'foogallery_thumb_dimensions','a:1:{i:115;a:2:{s:5:\"width\";i:162;s:6:\"height\";i:250;}}'),(1082,123,'foogallery_thumb_dimensions','a:1:{i:115;a:2:{s:5:\"width\";i:162;s:6:\"height\";i:250;}}'),(1083,124,'foogallery_thumb_dimensions','a:1:{i:115;a:2:{s:5:\"width\";i:444;s:6:\"height\";i:250;}}'),(1084,127,'foogallery_thumb_dimensions','a:1:{i:115;a:2:{s:5:\"width\";i:333;s:6:\"height\";i:250;}}'),(1085,128,'foogallery_thumb_dimensions','a:1:{i:115;a:2:{s:5:\"width\";i:141;s:6:\"height\";i:250;}}'),(1086,129,'foogallery_thumb_dimensions','a:1:{i:115;a:2:{s:5:\"width\";i:141;s:6:\"height\";i:250;}}'),(1087,130,'foogallery_thumb_dimensions','a:1:{i:115;a:2:{s:5:\"width\";i:188;s:6:\"height\";i:250;}}'),(1090,513,'_wp_attachment_image_alt','Santa plays the piano in the Watch Hill Great Room'),(1091,513,'_wpmf_gallery_custom_image_link',''),(1092,513,'_gallery_link_target',''),(1093,513,'_foogallery_custom_url',''),(1094,513,'_foogallery_custom_target','default'),(1095,513,'_foogallery_custom_class',''),(1096,513,'_edit_last','4'),(1111,30,'wpmf_order','0'),(1245,568,'_menu_item_target',''),(1246,568,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1247,568,'_menu_item_xfn',''),(1248,568,'_menu_item_url',''),(1250,13,'_genesis_scripts_body_position','bottom'),(1251,574,'_edit_lock','1519344826:6'),(1252,574,'_edit_last','6'),(1253,575,'_wp_attached_file','2018/02/CP-2999.jpg'),(1254,575,'wpmf_size','327497'),(1829,9,'_foogallery_css','a:1:{s:15:\"foogallery-core\";a:5:{s:3:\"src\";s:113:\"https://www.watchhill.ca/wp-content/plugins/foogallery/extensions/default-templates/shared/css/foogallery.min.css\";s:4:\"deps\";a:0:{}s:3:\"ver\";s:6:\"1.4.15\";s:5:\"media\";s:3:\"all\";s:4:\"site\";s:24:\"https://www.watchhill.ca\";}}'),(1112,32,'wpmf_order','0'),(1113,33,'wpmf_order','0'),(1114,34,'wpmf_order','0'),(1115,49,'wpmf_order','0'),(1116,51,'wpmf_order','0'),(1117,52,'wpmf_order','0'),(1118,53,'wpmf_order','0'),(1119,54,'wpmf_order','0'),(1120,69,'wpmf_order','0'),(1121,70,'wpmf_order','0'),(1122,71,'wpmf_order','0'),(1123,72,'wpmf_order','0'),(1124,73,'wpmf_order','0'),(1125,81,'wpmf_order','0'),(1126,82,'wpmf_order','0'),(1127,83,'wpmf_order','0'),(1128,84,'wpmf_order','0'),(1129,85,'wpmf_order','0'),(1130,87,'wpmf_order','0'),(1131,88,'wpmf_order','0'),(1132,89,'wpmf_order','0'),(1133,93,'wpmf_order','0'),(1134,94,'wpmf_order','0'),(1135,97,'wpmf_order','0'),(1136,98,'wpmf_order','0'),(1137,99,'wpmf_order','0'),(1138,100,'wpmf_order','0'),(1139,101,'wpmf_order','0'),(1140,102,'wpmf_order','0'),(1141,103,'wpmf_order','0'),(1142,104,'wpmf_order','0'),(1143,105,'wpmf_order','0'),(1144,108,'wpmf_order','0'),(1145,109,'wpmf_order','0'),(1146,110,'wpmf_order','0'),(1147,111,'wpmf_order','0'),(1148,112,'wpmf_order','0'),(1149,113,'wpmf_order','0'),(1150,116,'wpmf_order','0'),(1151,117,'wpmf_order','0'),(1152,118,'wpmf_order','0'),(1153,119,'wpmf_order','0'),(1154,120,'wpmf_order','0'),(1155,121,'wpmf_order','0'),(1156,122,'wpmf_order','0'),(1157,123,'wpmf_order','0'),(1158,124,'wpmf_order','0'),(1159,125,'wpmf_order','0'),(1160,126,'wpmf_order','0'),(1161,127,'wpmf_order','0'),(1162,128,'wpmf_order','0'),(1163,129,'wpmf_order','0'),(1164,130,'wpmf_order','0'),(1165,141,'wpmf_order','0'),(1166,142,'wpmf_order','0'),(1167,143,'wpmf_order','0'),(1168,144,'wpmf_order','0'),(1169,145,'wpmf_order','0'),(1170,146,'wpmf_order','0'),(1171,158,'wpmf_order','0'),(1172,159,'wpmf_order','0'),(1173,164,'wpmf_order','0'),(1174,174,'wpmf_order','0'),(1175,175,'wpmf_order','0'),(1176,176,'wpmf_order','0'),(1177,184,'wpmf_order','0'),(1178,192,'wpmf_order','0'),(1179,193,'wpmf_order','0'),(1180,194,'wpmf_order','0'),(1181,250,'wpmf_order','0'),(1182,394,'wpmf_order','0'),(1183,395,'wpmf_order','0'),(1184,396,'wpmf_order','0'),(1185,421,'wpmf_order','0'),(1186,446,'wpmf_order','0'),(1187,447,'wpmf_order','0'),(1188,448,'wpmf_order','0'),(1189,449,'wpmf_order','0'),(1190,481,'wpmf_order','0'),(1191,483,'wpmf_order','0'),(1192,485,'wpmf_order','0'),(1193,487,'wpmf_order','0'),(1194,492,'wpmf_order','0'),(1195,493,'wpmf_order','0'),(1196,494,'wpmf_order','0'),(1197,495,'wpmf_order','0'),(1198,496,'wpmf_order','0'),(1199,497,'wpmf_order','0'),(1200,498,'wpmf_order','0'),(1201,499,'wpmf_order','0'),(1202,513,'wpmf_order','0'),(1203,514,'wpmf_order','0'),(1204,515,'wpmf_order','0'),(1205,516,'wpmf_order','0'),(1208,68,'_foogallery_settings','a:78:{s:16:\"default_lightbox\";s:11:\"foobox-free\";s:15:\"default_spacing\";s:12:\"fg-gutter-10\";s:17:\"default_alignment\";s:9:\"fg-center\";s:25:\"default_loading_animation\";s:3:\"yes\";s:28:\"default_thumbnail_dimensions\";a:3:{s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";s:4:\"crop\";s:1:\"1\";}s:22:\"default_thumbnail_link\";s:5:\"image\";s:20:\"default_border-style\";s:25:\"border-style-square-white\";s:25:\"default_hover-effect-type\";s:0:\"\";s:20:\"default_hover-effect\";s:17:\"hover-effect-zoom\";s:28:\"default_caption-hover-effect\";s:20:\"hover-caption-simple\";s:23:\"default_caption-content\";s:5:\"title\";s:22:\"image-viewer_alignment\";s:9:\"fg-center\";s:21:\"image-viewer_lightbox\";s:11:\"foobox-free\";s:18:\"image-viewer_theme\";s:8:\"fg-light\";s:33:\"image-viewer_theme_custom_bgcolor\";s:7:\"#FFFFFF\";s:35:\"image-viewer_theme_custom_textcolor\";s:7:\"#1b1b1b\";s:36:\"image-viewer_theme_custom_hovercolor\";s:7:\"#F2F2F2\";s:37:\"image-viewer_theme_custom_bordercolor\";s:7:\"#e6e6e6\";s:27:\"image-viewer_thumbnail_size\";a:3:{s:5:\"width\";s:3:\"640\";s:6:\"height\";s:3:\"360\";s:4:\"crop\";s:1:\"1\";}s:27:\"image-viewer_thumbnail_link\";s:5:\"image\";s:30:\"image-viewer_hover-effect-type\";s:0:\"\";s:25:\"image-viewer_hover-effect\";s:17:\"hover-effect-zoom\";s:28:\"image-viewer_caption-content\";s:5:\"title\";s:22:\"image-viewer_text-prev\";s:4:\"Prev\";s:20:\"image-viewer_text-of\";s:2:\"of\";s:22:\"image-viewer_text-next\";s:4:\"Next\";s:22:\"justified_thumb_height\";s:3:\"250\";s:20:\"justified_row_height\";s:3:\"150\";s:24:\"justified_max_row_height\";s:4:\"200%\";s:17:\"justified_margins\";s:1:\"1\";s:24:\"justified_caption_source\";s:5:\"title\";s:24:\"justified_thumbnail_link\";s:5:\"image\";s:18:\"justified_lightbox\";s:11:\"foobox-free\";s:23:\"masonry_thumbnail_width\";s:3:\"150\";s:14:\"masonry_layout\";s:5:\"fixed\";s:20:\"masonry_gutter_width\";s:2:\"10\";s:20:\"masonry_center_align\";s:7:\"default\";s:22:\"masonry_gutter_percent\";s:0:\"\";s:18:\"masonry_hover_zoom\";s:7:\"default\";s:22:\"masonry_thumbnail_link\";s:5:\"image\";s:16:\"masonry_lightbox\";s:11:\"foobox-free\";s:37:\"simple_portfolio_thumbnail_dimensions\";a:3:{s:5:\"width\";s:3:\"250\";s:6:\"height\";s:3:\"200\";s:4:\"crop\";s:1:\"1\";}s:31:\"simple_portfolio_thumbnail_link\";s:5:\"image\";s:25:\"simple_portfolio_lightbox\";s:11:\"foobox-free\";s:23:\"simple_portfolio_gutter\";s:2:\"40\";s:33:\"simple_portfolio_caption_position\";s:0:\"\";s:33:\"simple_portfolio_caption_bg_color\";s:4:\"#fff\";s:35:\"simple_portfolio_caption_text_color\";s:4:\"#333\";s:30:\"thumbnail_thumbnail_dimensions\";a:3:{s:5:\"width\";s:3:\"250\";s:6:\"height\";s:3:\"200\";s:4:\"crop\";s:1:\"1\";}s:18:\"thumbnail_position\";s:9:\"fg-center\";s:23:\"thumbnail_caption_style\";s:14:\"caption-simple\";s:25:\"thumbnail_caption_bgcolor\";s:18:\"rgba(0, 0, 0, 0.8)\";s:23:\"thumbnail_caption_color\";s:18:\"rgb(255, 255, 255)\";s:23:\"thumbnail_caption_title\";s:0:\"\";s:29:\"thumbnail_caption_description\";s:0:\"\";s:18:\"thumbnail_lightbox\";s:11:\"foobox-free\";s:13:\"default_theme\";s:8:\"fg-light\";s:19:\"default_border_size\";s:14:\"fg-border-thin\";s:19:\"default_drop_shadow\";s:15:\"fg-shadow-small\";s:23:\"default_rounded_corners\";s:0:\"\";s:20:\"default_inner_shadow\";s:0:\"\";s:20:\"default_loading_icon\";s:18:\"fg-loading-default\";s:27:\"default_hover_effect_preset\";s:9:\"fg-custom\";s:39:\"default_hover_effect_caption_visibility\";s:0:\"\";s:31:\"default_hover_effect_transition\";s:13:\"fg-hover-fade\";s:25:\"default_hover_effect_icon\";s:13:\"fg-hover-zoom\";s:28:\"default_caption_title_source\";s:0:\"\";s:27:\"default_caption_desc_source\";s:4:\"none\";s:32:\"image-viewer_hover_effect_preset\";s:9:\"fg-custom\";s:44:\"image-viewer_hover_effect_caption_visibility\";s:0:\"\";s:36:\"image-viewer_hover_effect_transition\";s:13:\"fg-hover-fade\";s:30:\"image-viewer_hover_effect_icon\";s:13:\"fg-hover-zoom\";s:33:\"image-viewer_caption_title_source\";s:0:\"\";s:32:\"image-viewer_caption_desc_source\";s:4:\"none\";s:17:\"masonry_alignment\";s:0:\"\";s:26:\"masonry_hover_effect_scale\";s:14:\"fg-hover-scale\";s:29:\"thumbnail_hover_effect_preset\";s:9:\"fg-custom\";s:41:\"thumbnail_hover_effect_caption_visibility\";s:17:\"fg-caption-always\";}'),(1209,530,'_wp_attached_file','2018/02/wineglassatfire.jpg'),(1210,530,'wpmf_size','132017'),(1211,530,'wpmf_filetype','jpg'),(1212,530,'wpmf_order','0'),(1213,530,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:765;s:4:\"file\";s:27:\"2018/02/wineglassatfire.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"wineglassatfire-150x150.jpg\";s:5:\"width\";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:\"wineglassatfire-300x230.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:230;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:27:\"wineglassatfire-768x588.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:588;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-image\";a:4:{s:4:\"file\";s:27:\"wineglassatfire-720x400.jpg\";s:5:\"width\";i:720;s:6:\"height\";i:400;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:{}}}'),(1255,575,'wpmf_filetype','jpg'),(1256,575,'wpmf_order','0'),(1257,575,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:1500;s:4:\"file\";s:19:\"2018/02/CP-2999.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"CP-2999-150x150.jpg\";s:5:\"width\";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:\"CP-2999-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:20:\"CP-2999-768x1152.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1152;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:20:\"CP-2999-683x1024.jpg\";s:5:\"width\";i:683;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-image\";a:4:{s:4:\"file\";s:19:\"CP-2999-720x400.jpg\";s:5:\"width\";i:720;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1510927853\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"40\";s:3:\"iso\";s:3:\"500\";s:13:\"shutter_speed\";s:5:\"0.025\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(1258,576,'_wp_attached_file','2018/02/CP-3012.jpg'),(1259,576,'wpmf_size','189837'),(1260,576,'wpmf_filetype','jpg'),(1261,576,'wpmf_order','0'),(1262,576,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:667;s:4:\"file\";s:19:\"2018/02/CP-3012.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"CP-3012-150x150.jpg\";s:5:\"width\";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:\"CP-3012-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:19:\"CP-3012-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-image\";a:4:{s:4:\"file\";s:19:\"CP-3012-720x400.jpg\";s:5:\"width\";i:720;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1510928094\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"17\";s:3:\"iso\";s:3:\"500\";s:13:\"shutter_speed\";s:4:\"0.04\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(1263,577,'_wp_attached_file','2018/02/CP-3015.jpg'),(1264,577,'wpmf_size','196143'),(1265,577,'wpmf_filetype','jpg'),(1266,577,'wpmf_order','0'),(1267,577,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:667;s:4:\"file\";s:19:\"2018/02/CP-3015.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"CP-3015-150x150.jpg\";s:5:\"width\";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:\"CP-3015-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:19:\"CP-3015-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-image\";a:4:{s:4:\"file\";s:19:\"CP-3015-720x400.jpg\";s:5:\"width\";i:720;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1510928283\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"17\";s:3:\"iso\";s:3:\"500\";s:13:\"shutter_speed\";s:15:\"0.0666666666667\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(1268,578,'_wp_attached_file','2018/02/CP-3023.jpg'),(1269,578,'wpmf_size','236858'),(1270,578,'wpmf_filetype','jpg'),(1271,578,'wpmf_order','0'),(1272,578,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:667;s:4:\"file\";s:19:\"2018/02/CP-3023.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"CP-3023-150x150.jpg\";s:5:\"width\";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:\"CP-3023-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:19:\"CP-3023-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-image\";a:4:{s:4:\"file\";s:19:\"CP-3023-720x400.jpg\";s:5:\"width\";i:720;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1510928404\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"22\";s:3:\"iso\";s:3:\"500\";s:13:\"shutter_speed\";s:3:\"0.1\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(1273,579,'_wp_attached_file','2018/02/CP-3026.jpg'),(1274,579,'wpmf_size','164748'),(1275,579,'wpmf_filetype','jpg'),(1276,579,'wpmf_order','0'),(1277,579,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:667;s:4:\"file\";s:19:\"2018/02/CP-3026.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"CP-3026-150x150.jpg\";s:5:\"width\";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:\"CP-3026-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:19:\"CP-3026-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-image\";a:4:{s:4:\"file\";s:19:\"CP-3026-720x400.jpg\";s:5:\"width\";i:720;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1510928455\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"40\";s:3:\"iso\";s:3:\"500\";s:13:\"shutter_speed\";s:5:\"0.125\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(1278,580,'_wp_attached_file','2018/02/CP-3033.jpg'),(1279,580,'wpmf_size','214685'),(1280,580,'wpmf_filetype','jpg'),(1281,580,'wpmf_order','0'),(1282,580,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:667;s:4:\"file\";s:19:\"2018/02/CP-3033.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"CP-3033-150x150.jpg\";s:5:\"width\";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:\"CP-3033-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:19:\"CP-3033-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-image\";a:4:{s:4:\"file\";s:19:\"CP-3033-720x400.jpg\";s:5:\"width\";i:720;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1510928630\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"22\";s:3:\"iso\";s:3:\"500\";s:13:\"shutter_speed\";s:3:\"0.3\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(1283,581,'_wp_attached_file','2018/02/CP-3045.jpg'),(1284,581,'wpmf_size','189595'),(1285,581,'wpmf_filetype','jpg'),(1286,581,'wpmf_order','0'),(1287,581,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:667;s:4:\"file\";s:19:\"2018/02/CP-3045.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"CP-3045-150x150.jpg\";s:5:\"width\";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:\"CP-3045-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:19:\"CP-3045-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-image\";a:4:{s:4:\"file\";s:19:\"CP-3045-720x400.jpg\";s:5:\"width\";i:720;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1510928760\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"32\";s:3:\"iso\";s:3:\"500\";s:13:\"shutter_speed\";s:14:\"0.166666666667\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(1288,582,'_wp_attached_file','2018/02/CP-3064.jpg'),(1289,582,'wpmf_size','423063'),(1290,582,'wpmf_filetype','jpg'),(1291,582,'wpmf_order','0'),(1292,582,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:1500;s:4:\"file\";s:19:\"2018/02/CP-3064.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"CP-3064-150x150.jpg\";s:5:\"width\";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:\"CP-3064-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:20:\"CP-3064-768x1152.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1152;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:20:\"CP-3064-683x1024.jpg\";s:5:\"width\";i:683;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-image\";a:4:{s:4:\"file\";s:19:\"CP-3064-720x400.jpg\";s:5:\"width\";i:720;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1510929061\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"30\";s:3:\"iso\";s:3:\"500\";s:13:\"shutter_speed\";s:5:\"0.125\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(1293,583,'_wp_attached_file','2018/02/CP-3072.jpg'),(1294,583,'wpmf_size','159646'),(1295,583,'wpmf_filetype','jpg'),(1296,583,'wpmf_order','0'),(1297,583,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:667;s:4:\"file\";s:19:\"2018/02/CP-3072.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"CP-3072-150x150.jpg\";s:5:\"width\";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:\"CP-3072-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:19:\"CP-3072-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-image\";a:4:{s:4:\"file\";s:19:\"CP-3072-720x400.jpg\";s:5:\"width\";i:720;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1510929286\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"29\";s:3:\"iso\";s:3:\"500\";s:13:\"shutter_speed\";s:3:\"0.1\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(1298,584,'_wp_attached_file','2018/02/CP-3083.jpg'),(1299,584,'wpmf_size','202817'),(1300,584,'wpmf_filetype','jpg'),(1301,584,'wpmf_order','0'),(1302,584,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:667;s:4:\"file\";s:19:\"2018/02/CP-3083.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"CP-3083-150x150.jpg\";s:5:\"width\";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:\"CP-3083-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:19:\"CP-3083-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-image\";a:4:{s:4:\"file\";s:19:\"CP-3083-720x400.jpg\";s:5:\"width\";i:720;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1510929377\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"17\";s:3:\"iso\";s:3:\"500\";s:13:\"shutter_speed\";s:4:\"0.05\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(1303,585,'_wp_attached_file','2018/02/CP-3098.jpg'),(1304,585,'wpmf_size','117050'),(1305,585,'wpmf_filetype','jpg'),(1306,585,'wpmf_order','0'),(1307,585,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:667;s:4:\"file\";s:19:\"2018/02/CP-3098.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"CP-3098-150x150.jpg\";s:5:\"width\";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:\"CP-3098-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:19:\"CP-3098-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-image\";a:4:{s:4:\"file\";s:19:\"CP-3098-720x400.jpg\";s:5:\"width\";i:720;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1510929603\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"17\";s:3:\"iso\";s:3:\"500\";s:13:\"shutter_speed\";s:3:\"0.1\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(1308,586,'_wp_attached_file','2018/02/CP-3101.jpg'),(1309,586,'wpmf_size','176692'),(1310,586,'wpmf_filetype','jpg'),(1311,586,'wpmf_order','0'),(1312,586,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:667;s:4:\"file\";s:19:\"2018/02/CP-3101.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"CP-3101-150x150.jpg\";s:5:\"width\";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:\"CP-3101-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:19:\"CP-3101-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-image\";a:4:{s:4:\"file\";s:19:\"CP-3101-720x400.jpg\";s:5:\"width\";i:720;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1510929691\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"17\";s:3:\"iso\";s:3:\"500\";s:13:\"shutter_speed\";s:3:\"0.1\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(1313,587,'_wp_attached_file','2018/02/CP-3103.jpg'),(1314,587,'wpmf_size','347020'),(1315,587,'wpmf_filetype','jpg'),(1316,587,'wpmf_order','0'),(1317,587,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:1500;s:4:\"file\";s:19:\"2018/02/CP-3103.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"CP-3103-150x150.jpg\";s:5:\"width\";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:\"CP-3103-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:20:\"CP-3103-768x1152.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1152;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:20:\"CP-3103-683x1024.jpg\";s:5:\"width\";i:683;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-image\";a:4:{s:4:\"file\";s:19:\"CP-3103-720x400.jpg\";s:5:\"width\";i:720;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1510929781\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"17\";s:3:\"iso\";s:3:\"500\";s:13:\"shutter_speed\";s:3:\"0.1\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(1318,588,'_wp_attached_file','2018/02/CP-3108.jpg'),(1319,588,'wpmf_size','142492'),(1320,588,'wpmf_filetype','jpg'),(1321,588,'wpmf_order','0'),(1322,588,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:667;s:4:\"file\";s:19:\"2018/02/CP-3108.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"CP-3108-150x150.jpg\";s:5:\"width\";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:\"CP-3108-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:19:\"CP-3108-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-image\";a:4:{s:4:\"file\";s:19:\"CP-3108-720x400.jpg\";s:5:\"width\";i:720;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1510929896\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"17\";s:3:\"iso\";s:3:\"500\";s:13:\"shutter_speed\";s:3:\"0.1\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(1323,589,'_wp_attached_file','2018/02/CP-3113.jpg'),(1324,589,'wpmf_size','136986'),(1325,589,'wpmf_filetype','jpg'),(1326,589,'wpmf_order','0'),(1327,589,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:667;s:4:\"file\";s:19:\"2018/02/CP-3113.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"CP-3113-150x150.jpg\";s:5:\"width\";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:\"CP-3113-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:19:\"CP-3113-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-image\";a:4:{s:4:\"file\";s:19:\"CP-3113-720x400.jpg\";s:5:\"width\";i:720;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1510929969\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"40\";s:3:\"iso\";s:3:\"500\";s:13:\"shutter_speed\";s:3:\"0.4\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(1328,591,'_wp_attached_file','2018/02/CP-3115.jpg'),(1329,591,'wpmf_size','130662'),(1330,591,'wpmf_filetype','jpg'),(1331,591,'wpmf_order','0'),(1332,591,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:667;s:4:\"file\";s:19:\"2018/02/CP-3115.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"CP-3115-150x150.jpg\";s:5:\"width\";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:\"CP-3115-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:19:\"CP-3115-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-image\";a:4:{s:4:\"file\";s:19:\"CP-3115-720x400.jpg\";s:5:\"width\";i:720;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1510930020\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"40\";s:3:\"iso\";s:3:\"500\";s:13:\"shutter_speed\";s:3:\"0.2\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(1333,592,'_wp_attached_file','2018/02/CP-3124.jpg'),(1334,592,'wpmf_size','152653'),(1335,592,'wpmf_filetype','jpg'),(1336,592,'wpmf_order','0'),(1337,592,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:667;s:4:\"file\";s:19:\"2018/02/CP-3124.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"CP-3124-150x150.jpg\";s:5:\"width\";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:\"CP-3124-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:19:\"CP-3124-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-image\";a:4:{s:4:\"file\";s:19:\"CP-3124-720x400.jpg\";s:5:\"width\";i:720;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1510930191\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"17\";s:3:\"iso\";s:3:\"500\";s:13:\"shutter_speed\";s:15:\"0.0769230769231\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(1338,593,'_wp_attached_file','2018/02/CP-3128.jpg'),(1339,593,'wpmf_size','175352'),(1340,593,'wpmf_filetype','jpg'),(1341,593,'wpmf_order','0'),(1342,593,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:667;s:4:\"file\";s:19:\"2018/02/CP-3128.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"CP-3128-150x150.jpg\";s:5:\"width\";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:\"CP-3128-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:19:\"CP-3128-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-image\";a:4:{s:4:\"file\";s:19:\"CP-3128-720x400.jpg\";s:5:\"width\";i:720;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1510930366\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"17\";s:3:\"iso\";s:3:\"500\";s:13:\"shutter_speed\";s:3:\"0.2\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(1343,594,'_wp_attached_file','2018/02/CP-3137.jpg'),(1344,594,'wpmf_size','181527'),(1345,594,'wpmf_filetype','jpg'),(1346,594,'wpmf_order','0'),(1347,594,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:667;s:4:\"file\";s:19:\"2018/02/CP-3137.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"CP-3137-150x150.jpg\";s:5:\"width\";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:\"CP-3137-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:19:\"CP-3137-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-image\";a:4:{s:4:\"file\";s:19:\"CP-3137-720x400.jpg\";s:5:\"width\";i:720;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1510930524\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"19\";s:3:\"iso\";s:3:\"500\";s:13:\"shutter_speed\";s:15:\"0.0666666666667\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(1348,595,'_wp_attached_file','2018/02/CP-3144.jpg'),(1349,595,'wpmf_size','153147'),(1350,595,'wpmf_filetype','jpg'),(1351,595,'wpmf_order','0'),(1352,595,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:667;s:4:\"file\";s:19:\"2018/02/CP-3144.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"CP-3144-150x150.jpg\";s:5:\"width\";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:\"CP-3144-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:19:\"CP-3144-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-image\";a:4:{s:4:\"file\";s:19:\"CP-3144-720x400.jpg\";s:5:\"width\";i:720;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1510930601\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"29\";s:3:\"iso\";s:3:\"500\";s:13:\"shutter_speed\";s:5:\"0.125\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(1353,596,'_wp_attached_file','2018/02/CP-3148.jpg'),(1354,596,'wpmf_size','118293'),(1355,596,'wpmf_filetype','jpg'),(1356,596,'wpmf_order','0'),(1357,596,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:667;s:4:\"file\";s:19:\"2018/02/CP-3148.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"CP-3148-150x150.jpg\";s:5:\"width\";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:\"CP-3148-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:19:\"CP-3148-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-image\";a:4:{s:4:\"file\";s:19:\"CP-3148-720x400.jpg\";s:5:\"width\";i:720;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"4\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1510930670\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"32\";s:3:\"iso\";s:3:\"500\";s:13:\"shutter_speed\";s:4:\"0.05\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(1358,597,'_wp_attached_file','2018/02/CP-3154.jpg'),(1359,597,'wpmf_size','158509'),(1360,597,'wpmf_filetype','jpg'),(1361,597,'wpmf_order','0'),(1362,597,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:667;s:4:\"file\";s:19:\"2018/02/CP-3154.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"CP-3154-150x150.jpg\";s:5:\"width\";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:\"CP-3154-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:19:\"CP-3154-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-image\";a:4:{s:4:\"file\";s:19:\"CP-3154-720x400.jpg\";s:5:\"width\";i:720;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1510930813\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"17\";s:3:\"iso\";s:3:\"500\";s:13:\"shutter_speed\";s:4:\"0.25\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(1363,598,'_wp_attached_file','2018/02/CP-3158.jpg'),(1364,598,'wpmf_size','159551'),(1365,598,'wpmf_filetype','jpg'),(1366,598,'wpmf_order','0'),(1367,598,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:667;s:4:\"file\";s:19:\"2018/02/CP-3158.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"CP-3158-150x150.jpg\";s:5:\"width\";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:\"CP-3158-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:19:\"CP-3158-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-image\";a:4:{s:4:\"file\";s:19:\"CP-3158-720x400.jpg\";s:5:\"width\";i:720;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"4\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1510930914\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"40\";s:3:\"iso\";s:3:\"500\";s:13:\"shutter_speed\";s:5:\"0.025\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(1368,599,'_wp_attached_file','2018/02/CP-3163.jpg'),(1369,599,'wpmf_size','217905'),(1370,599,'wpmf_filetype','jpg'),(1371,599,'wpmf_order','0'),(1372,599,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:667;s:4:\"file\";s:19:\"2018/02/CP-3163.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"CP-3163-150x150.jpg\";s:5:\"width\";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:\"CP-3163-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:19:\"CP-3163-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-image\";a:4:{s:4:\"file\";s:19:\"CP-3163-720x400.jpg\";s:5:\"width\";i:720;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1510930984\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"27\";s:3:\"iso\";s:3:\"500\";s:13:\"shutter_speed\";s:14:\"0.166666666667\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(1373,600,'_wp_attached_file','2018/02/CP-3177.jpg'),(1374,600,'wpmf_size','186068'),(1375,600,'wpmf_filetype','jpg'),(1376,600,'wpmf_order','0'),(1377,600,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:667;s:4:\"file\";s:19:\"2018/02/CP-3177.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"CP-3177-150x150.jpg\";s:5:\"width\";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:\"CP-3177-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:19:\"CP-3177-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-image\";a:4:{s:4:\"file\";s:19:\"CP-3177-720x400.jpg\";s:5:\"width\";i:720;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"4\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1510931156\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"32\";s:3:\"iso\";s:3:\"500\";s:13:\"shutter_speed\";s:15:\"0.0666666666667\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(1378,601,'_wp_attached_file','2018/02/CP-3206.jpg'),(1379,601,'wpmf_size','181825'),(1380,601,'wpmf_filetype','jpg'),(1381,601,'wpmf_order','0'),(1382,601,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:667;s:4:\"file\";s:19:\"2018/02/CP-3206.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"CP-3206-150x150.jpg\";s:5:\"width\";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:\"CP-3206-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:19:\"CP-3206-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-image\";a:4:{s:4:\"file\";s:19:\"CP-3206-720x400.jpg\";s:5:\"width\";i:720;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"4\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1510931448\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"22\";s:3:\"iso\";s:3:\"500\";s:13:\"shutter_speed\";s:15:\"0.0166666666667\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(1383,602,'_wp_attached_file','2018/02/CP-3221.jpg'),(1384,602,'wpmf_size','159516'),(1385,602,'wpmf_filetype','jpg'),(1386,602,'wpmf_order','0'),(1387,602,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:667;s:4:\"file\";s:19:\"2018/02/CP-3221.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"CP-3221-150x150.jpg\";s:5:\"width\";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:\"CP-3221-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:19:\"CP-3221-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-image\";a:4:{s:4:\"file\";s:19:\"CP-3221-720x400.jpg\";s:5:\"width\";i:720;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"4\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1510931663\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"17\";s:3:\"iso\";s:3:\"500\";s:13:\"shutter_speed\";s:5:\"0.002\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(1388,603,'_wp_attached_file','2018/02/CP-3228.jpg'),(1389,603,'wpmf_size','190330'),(1390,603,'wpmf_filetype','jpg'),(1391,603,'wpmf_order','0'),(1392,603,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:667;s:4:\"file\";s:19:\"2018/02/CP-3228.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"CP-3228-150x150.jpg\";s:5:\"width\";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:\"CP-3228-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:19:\"CP-3228-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-image\";a:4:{s:4:\"file\";s:19:\"CP-3228-720x400.jpg\";s:5:\"width\";i:720;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1510931791\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"17\";s:3:\"iso\";s:3:\"500\";s:13:\"shutter_speed\";s:3:\"0.5\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(1393,604,'_wp_attached_file','2018/02/CP-3229.jpg'),(1394,604,'wpmf_size','232819'),(1395,604,'wpmf_filetype','jpg'),(1396,604,'wpmf_order','0'),(1397,604,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:667;s:4:\"file\";s:19:\"2018/02/CP-3229.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"CP-3229-150x150.jpg\";s:5:\"width\";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:\"CP-3229-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:19:\"CP-3229-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-image\";a:4:{s:4:\"file\";s:19:\"CP-3229-720x400.jpg\";s:5:\"width\";i:720;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1510931798\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"40\";s:3:\"iso\";s:3:\"500\";s:13:\"shutter_speed\";s:3:\"0.5\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(1398,605,'_wp_attached_file','2018/02/CP-3232.jpg'),(1399,605,'wpmf_size','179337'),(1400,605,'wpmf_filetype','jpg'),(1401,605,'wpmf_order','0'),(1402,605,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:667;s:4:\"file\";s:19:\"2018/02/CP-3232.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"CP-3232-150x150.jpg\";s:5:\"width\";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:\"CP-3232-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:19:\"CP-3232-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-image\";a:4:{s:4:\"file\";s:19:\"CP-3232-720x400.jpg\";s:5:\"width\";i:720;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1510931877\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"17\";s:3:\"iso\";s:3:\"500\";s:13:\"shutter_speed\";s:1:\"1\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(1403,606,'_wp_attached_file','2018/02/CP-3250.jpg'),(1404,606,'wpmf_size','248182'),(1405,606,'wpmf_filetype','jpg'),(1406,606,'wpmf_order','0'),(1407,606,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:667;s:4:\"file\";s:19:\"2018/02/CP-3250.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"CP-3250-150x150.jpg\";s:5:\"width\";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:\"CP-3250-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:19:\"CP-3250-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-image\";a:4:{s:4:\"file\";s:19:\"CP-3250-720x400.jpg\";s:5:\"width\";i:720;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1510932171\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"17\";s:3:\"iso\";s:3:\"500\";s:13:\"shutter_speed\";s:3:\"0.3\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(1408,607,'_wp_attached_file','2018/02/CP-3254.jpg'),(1409,607,'wpmf_size','177592'),(1410,607,'wpmf_filetype','jpg'),(1411,607,'wpmf_order','0'),(1412,607,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:667;s:4:\"file\";s:19:\"2018/02/CP-3254.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"CP-3254-150x150.jpg\";s:5:\"width\";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:\"CP-3254-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:19:\"CP-3254-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-image\";a:4:{s:4:\"file\";s:19:\"CP-3254-720x400.jpg\";s:5:\"width\";i:720;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1510932218\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"22\";s:3:\"iso\";s:3:\"500\";s:13:\"shutter_speed\";s:3:\"0.5\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(1413,608,'_wp_attached_file','2018/02/CP-3268.jpg'),(1414,608,'wpmf_size','215258'),(1415,608,'wpmf_filetype','jpg'),(1416,608,'wpmf_order','0'),(1417,608,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:667;s:4:\"file\";s:19:\"2018/02/CP-3268.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"CP-3268-150x150.jpg\";s:5:\"width\";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:\"CP-3268-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:19:\"CP-3268-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-image\";a:4:{s:4:\"file\";s:19:\"CP-3268-720x400.jpg\";s:5:\"width\";i:720;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1510932475\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"20\";s:3:\"iso\";s:3:\"500\";s:13:\"shutter_speed\";s:4:\"0.25\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(1418,609,'_wp_attached_file','2018/02/CP-3272.jpg'),(1419,609,'wpmf_size','247985'),(1420,609,'wpmf_filetype','jpg'),(1421,609,'wpmf_order','0'),(1422,609,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:667;s:4:\"file\";s:19:\"2018/02/CP-3272.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"CP-3272-150x150.jpg\";s:5:\"width\";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:\"CP-3272-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:19:\"CP-3272-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-image\";a:4:{s:4:\"file\";s:19:\"CP-3272-720x400.jpg\";s:5:\"width\";i:720;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1510932521\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"40\";s:3:\"iso\";s:3:\"500\";s:13:\"shutter_speed\";s:4:\"0.25\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(1423,610,'_wp_attached_file','2018/02/CP-3277.jpg'),(1424,610,'wpmf_size','265913'),(1425,610,'wpmf_filetype','jpg'),(1426,610,'wpmf_order','0'),(1427,610,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:667;s:4:\"file\";s:19:\"2018/02/CP-3277.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"CP-3277-150x150.jpg\";s:5:\"width\";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:\"CP-3277-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:19:\"CP-3277-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-image\";a:4:{s:4:\"file\";s:19:\"CP-3277-720x400.jpg\";s:5:\"width\";i:720;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"4\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1510932604\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"25\";s:3:\"iso\";s:3:\"500\";s:13:\"shutter_speed\";s:5:\"0.025\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(1428,611,'_wp_attached_file','2018/02/CP-3289.jpg'),(1429,611,'wpmf_size','357860'),(1430,611,'wpmf_filetype','jpg'),(1431,611,'wpmf_order','0'),(1432,611,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:667;s:4:\"file\";s:19:\"2018/02/CP-3289.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"CP-3289-150x150.jpg\";s:5:\"width\";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:\"CP-3289-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:19:\"CP-3289-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-image\";a:4:{s:4:\"file\";s:19:\"CP-3289-720x400.jpg\";s:5:\"width\";i:720;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1510932828\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"38\";s:3:\"iso\";s:3:\"500\";s:13:\"shutter_speed\";s:5:\"0.125\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(1433,612,'_wp_attached_file','2018/02/CP-3293.jpg'),(1434,612,'wpmf_size','265071'),(1435,612,'wpmf_filetype','jpg'),(1436,612,'wpmf_order','0'),(1437,612,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:667;s:4:\"file\";s:19:\"2018/02/CP-3293.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"CP-3293-150x150.jpg\";s:5:\"width\";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:\"CP-3293-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:19:\"CP-3293-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-image\";a:4:{s:4:\"file\";s:19:\"CP-3293-720x400.jpg\";s:5:\"width\";i:720;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"4\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1510932894\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"17\";s:3:\"iso\";s:3:\"500\";s:13:\"shutter_speed\";s:3:\"0.1\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(1438,613,'_wp_attached_file','2018/02/CP-3301.jpg'),(1439,613,'wpmf_size','355526'),(1440,613,'wpmf_filetype','jpg'),(1441,613,'wpmf_order','0'),(1442,613,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:667;s:4:\"file\";s:19:\"2018/02/CP-3301.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"CP-3301-150x150.jpg\";s:5:\"width\";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:\"CP-3301-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:19:\"CP-3301-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-image\";a:4:{s:4:\"file\";s:19:\"CP-3301-720x400.jpg\";s:5:\"width\";i:720;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:2:\"13\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1510932988\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"40\";s:3:\"iso\";s:3:\"500\";s:13:\"shutter_speed\";s:3:\"1.3\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(1443,614,'_wp_attached_file','2018/02/CP-3306.jpg'),(1444,614,'wpmf_size','305018'),(1445,614,'wpmf_filetype','jpg'),(1446,614,'wpmf_order','0'),(1447,614,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:667;s:4:\"file\";s:19:\"2018/02/CP-3306.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"CP-3306-150x150.jpg\";s:5:\"width\";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:\"CP-3306-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:19:\"CP-3306-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-image\";a:4:{s:4:\"file\";s:19:\"CP-3306-720x400.jpg\";s:5:\"width\";i:720;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:2:\"13\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1510933022\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"17\";s:3:\"iso\";s:3:\"500\";s:13:\"shutter_speed\";s:3:\"0.4\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(1448,615,'_wp_attached_file','2018/02/CP-3310.jpg'),(1449,615,'wpmf_size','178035'),(1450,615,'wpmf_filetype','jpg'),(1451,615,'wpmf_order','0'),(1452,615,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:667;s:4:\"file\";s:19:\"2018/02/CP-3310.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"CP-3310-150x150.jpg\";s:5:\"width\";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:\"CP-3310-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:19:\"CP-3310-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-image\";a:4:{s:4:\"file\";s:19:\"CP-3310-720x400.jpg\";s:5:\"width\";i:720;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"4\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1510933060\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"40\";s:3:\"iso\";s:3:\"500\";s:13:\"shutter_speed\";s:3:\"0.1\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(1453,616,'_wp_attached_file','2018/02/CP-3312.jpg'),(1454,616,'wpmf_size','206339'),(1455,616,'wpmf_filetype','jpg'),(1456,616,'wpmf_order','0'),(1457,616,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:667;s:4:\"file\";s:19:\"2018/02/CP-3312.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"CP-3312-150x150.jpg\";s:5:\"width\";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:\"CP-3312-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:19:\"CP-3312-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-image\";a:4:{s:4:\"file\";s:19:\"CP-3312-720x400.jpg\";s:5:\"width\";i:720;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1510933113\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"17\";s:3:\"iso\";s:3:\"500\";s:13:\"shutter_speed\";s:14:\"0.166666666667\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(1458,617,'_wp_attached_file','2018/02/CP-3315-Edit.jpg'),(1459,617,'wpmf_size','354414'),(1460,617,'wpmf_filetype','jpg'),(1461,617,'wpmf_order','0'),(1462,617,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:1500;s:4:\"file\";s:24:\"2018/02/CP-3315-Edit.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"CP-3315-Edit-150x150.jpg\";s:5:\"width\";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:\"CP-3315-Edit-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:25:\"CP-3315-Edit-768x1152.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1152;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:25:\"CP-3315-Edit-683x1024.jpg\";s:5:\"width\";i:683;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-image\";a:4:{s:4:\"file\";s:24:\"CP-3315-Edit-720x400.jpg\";s:5:\"width\";i:720;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1510933147\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"36\";s:3:\"iso\";s:3:\"500\";s:13:\"shutter_speed\";s:15:\"0.0769230769231\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(1463,618,'_wp_attached_file','2018/02/CP-3323.jpg'),(1464,618,'wpmf_size','379942'),(1465,618,'wpmf_filetype','jpg'),(1466,618,'wpmf_order','0'),(1467,618,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:1500;s:4:\"file\";s:19:\"2018/02/CP-3323.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"CP-3323-150x150.jpg\";s:5:\"width\";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:\"CP-3323-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:20:\"CP-3323-768x1152.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1152;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:20:\"CP-3323-683x1024.jpg\";s:5:\"width\";i:683;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-image\";a:4:{s:4:\"file\";s:19:\"CP-3323-720x400.jpg\";s:5:\"width\";i:720;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1510933407\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"17\";s:3:\"iso\";s:3:\"500\";s:13:\"shutter_speed\";s:3:\"0.2\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(1468,619,'_wp_attached_file','2018/02/CP-3356.jpg'),(1469,619,'wpmf_size','191272'),(1470,619,'wpmf_filetype','jpg'),(1471,619,'wpmf_order','0'),(1472,619,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:667;s:4:\"file\";s:19:\"2018/02/CP-3356.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"CP-3356-150x150.jpg\";s:5:\"width\";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:\"CP-3356-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:19:\"CP-3356-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-image\";a:4:{s:4:\"file\";s:19:\"CP-3356-720x400.jpg\";s:5:\"width\";i:720;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1510934158\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"17\";s:3:\"iso\";s:3:\"500\";s:13:\"shutter_speed\";s:3:\"0.3\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(1473,620,'_wp_attached_file','2018/02/CP-3358.jpg'),(1474,620,'wpmf_size','238458'),(1475,620,'wpmf_filetype','jpg'),(1476,620,'wpmf_order','0'),(1477,620,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:667;s:4:\"file\";s:19:\"2018/02/CP-3358.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"CP-3358-150x150.jpg\";s:5:\"width\";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:\"CP-3358-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:19:\"CP-3358-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-image\";a:4:{s:4:\"file\";s:19:\"CP-3358-720x400.jpg\";s:5:\"width\";i:720;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1510934195\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"17\";s:3:\"iso\";s:3:\"500\";s:13:\"shutter_speed\";s:3:\"0.2\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(1478,621,'_wp_attached_file','2018/02/CP-3399.jpg'),(1479,621,'wpmf_size','269647'),(1480,621,'wpmf_filetype','jpg'),(1481,621,'wpmf_order','0'),(1482,621,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:667;s:4:\"file\";s:19:\"2018/02/CP-3399.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"CP-3399-150x150.jpg\";s:5:\"width\";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:\"CP-3399-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:19:\"CP-3399-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-image\";a:4:{s:4:\"file\";s:19:\"CP-3399-720x400.jpg\";s:5:\"width\";i:720;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"4\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1510935049\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"40\";s:3:\"iso\";s:3:\"500\";s:13:\"shutter_speed\";s:4:\"0.25\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(1483,622,'_wp_attached_file','2018/02/CP-3405.jpg'),(1484,622,'wpmf_size','204965'),(1485,622,'wpmf_filetype','jpg'),(1486,622,'wpmf_order','0'),(1487,622,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:667;s:4:\"file\";s:19:\"2018/02/CP-3405.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"CP-3405-150x150.jpg\";s:5:\"width\";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:\"CP-3405-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:19:\"CP-3405-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-image\";a:4:{s:4:\"file\";s:19:\"CP-3405-720x400.jpg\";s:5:\"width\";i:720;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"4\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1510935190\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"26\";s:3:\"iso\";s:3:\"500\";s:13:\"shutter_speed\";s:15:\"0.0666666666667\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(1488,623,'_wp_attached_file','2018/02/CP-3418.jpg'),(1489,623,'wpmf_size','428524'),(1490,623,'wpmf_filetype','jpg'),(1491,623,'wpmf_order','0'),(1492,623,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:1500;s:4:\"file\";s:19:\"2018/02/CP-3418.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"CP-3418-150x150.jpg\";s:5:\"width\";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:\"CP-3418-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:20:\"CP-3418-768x1152.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1152;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:20:\"CP-3418-683x1024.jpg\";s:5:\"width\";i:683;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-image\";a:4:{s:4:\"file\";s:19:\"CP-3418-720x400.jpg\";s:5:\"width\";i:720;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1510935424\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"20\";s:3:\"iso\";s:3:\"500\";s:13:\"shutter_speed\";s:5:\"0.125\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(1493,624,'_wp_attached_file','2018/02/CP-3439.jpg'),(1494,624,'wpmf_size','219220'),(1495,624,'wpmf_filetype','jpg'),(1496,624,'wpmf_order','0'),(1497,624,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:667;s:4:\"file\";s:19:\"2018/02/CP-3439.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"CP-3439-150x150.jpg\";s:5:\"width\";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:\"CP-3439-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:19:\"CP-3439-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-image\";a:4:{s:4:\"file\";s:19:\"CP-3439-720x400.jpg\";s:5:\"width\";i:720;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"4\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1510935755\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"17\";s:3:\"iso\";s:3:\"500\";s:13:\"shutter_speed\";s:15:\"0.0333333333333\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(1498,625,'_wp_attached_file','2018/02/CP-3451.jpg'),(1499,625,'wpmf_size','145460'),(1500,625,'wpmf_filetype','jpg'),(1501,625,'wpmf_order','0'),(1502,625,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:667;s:4:\"file\";s:19:\"2018/02/CP-3451.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"CP-3451-150x150.jpg\";s:5:\"width\";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:\"CP-3451-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:19:\"CP-3451-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-image\";a:4:{s:4:\"file\";s:19:\"CP-3451-720x400.jpg\";s:5:\"width\";i:720;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1510936272\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"33\";s:3:\"iso\";s:3:\"500\";s:13:\"shutter_speed\";s:3:\"0.3\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(1503,626,'_wp_attached_file','2018/02/CP-3455.jpg'),(1504,626,'wpmf_size','482593'),(1505,626,'wpmf_filetype','jpg'),(1506,626,'wpmf_order','0'),(1507,626,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:1500;s:4:\"file\";s:19:\"2018/02/CP-3455.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"CP-3455-150x150.jpg\";s:5:\"width\";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:\"CP-3455-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:20:\"CP-3455-768x1152.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1152;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:20:\"CP-3455-683x1024.jpg\";s:5:\"width\";i:683;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-image\";a:4:{s:4:\"file\";s:19:\"CP-3455-720x400.jpg\";s:5:\"width\";i:720;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1510936469\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"20\";s:3:\"iso\";s:3:\"500\";s:13:\"shutter_speed\";s:5:\"0.125\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(1508,627,'_wp_attached_file','2018/02/CP-3464.jpg'),(1509,627,'wpmf_size','129614'),(1510,627,'wpmf_filetype','jpg'),(1511,627,'wpmf_order','0'),(1512,627,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:667;s:4:\"file\";s:19:\"2018/02/CP-3464.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"CP-3464-150x150.jpg\";s:5:\"width\";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:\"CP-3464-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:19:\"CP-3464-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-image\";a:4:{s:4:\"file\";s:19:\"CP-3464-720x400.jpg\";s:5:\"width\";i:720;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1510936646\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"40\";s:3:\"iso\";s:3:\"500\";s:13:\"shutter_speed\";s:15:\"0.0666666666667\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(1513,628,'_wp_attached_file','2018/02/CP-3466.jpg'),(1514,628,'wpmf_size','150098'),(1515,628,'wpmf_filetype','jpg'),(1516,628,'wpmf_order','0'),(1517,628,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:667;s:4:\"file\";s:19:\"2018/02/CP-3466.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"CP-3466-150x150.jpg\";s:5:\"width\";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:\"CP-3466-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:19:\"CP-3466-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-image\";a:4:{s:4:\"file\";s:19:\"CP-3466-720x400.jpg\";s:5:\"width\";i:720;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1510936924\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"27\";s:3:\"iso\";s:3:\"500\";s:13:\"shutter_speed\";s:15:\"0.0666666666667\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(1518,629,'_wp_attached_file','2018/02/CP-3475.jpg'),(1519,629,'wpmf_size','436036'),(1520,629,'wpmf_filetype','jpg'),(1521,629,'wpmf_order','0'),(1522,629,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:1500;s:4:\"file\";s:19:\"2018/02/CP-3475.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"CP-3475-150x150.jpg\";s:5:\"width\";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:\"CP-3475-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:20:\"CP-3475-768x1152.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1152;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:20:\"CP-3475-683x1024.jpg\";s:5:\"width\";i:683;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-image\";a:4:{s:4:\"file\";s:19:\"CP-3475-720x400.jpg\";s:5:\"width\";i:720;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1510937210\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"17\";s:3:\"iso\";s:3:\"500\";s:13:\"shutter_speed\";s:14:\"0.166666666667\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(1523,630,'_wp_attached_file','2018/02/CP-3477.jpg'),(1524,630,'wpmf_size','239079'),(1525,630,'wpmf_filetype','jpg'),(1526,630,'wpmf_order','0'),(1527,630,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:667;s:4:\"file\";s:19:\"2018/02/CP-3477.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"CP-3477-150x150.jpg\";s:5:\"width\";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:\"CP-3477-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:19:\"CP-3477-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-image\";a:4:{s:4:\"file\";s:19:\"CP-3477-720x400.jpg\";s:5:\"width\";i:720;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1510937422\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"17\";s:3:\"iso\";s:3:\"500\";s:13:\"shutter_speed\";s:3:\"0.2\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(1528,631,'_wp_attached_file','2018/02/CP-3479.jpg'),(1529,631,'wpmf_size','626383'),(1530,631,'wpmf_filetype','jpg'),(1531,631,'wpmf_order','0'),(1532,631,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:1500;s:4:\"file\";s:19:\"2018/02/CP-3479.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"CP-3479-150x150.jpg\";s:5:\"width\";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:\"CP-3479-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:20:\"CP-3479-768x1152.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1152;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:20:\"CP-3479-683x1024.jpg\";s:5:\"width\";i:683;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-image\";a:4:{s:4:\"file\";s:19:\"CP-3479-720x400.jpg\";s:5:\"width\";i:720;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1510937463\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"17\";s:3:\"iso\";s:3:\"500\";s:13:\"shutter_speed\";s:3:\"0.4\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(1533,632,'_wp_attached_file','2018/02/CP-3494.jpg'),(1534,632,'wpmf_size','550457'),(1535,632,'wpmf_filetype','jpg'),(1536,632,'wpmf_order','0'),(1537,632,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:1500;s:4:\"file\";s:19:\"2018/02/CP-3494.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"CP-3494-150x150.jpg\";s:5:\"width\";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:\"CP-3494-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:20:\"CP-3494-768x1152.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1152;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:20:\"CP-3494-683x1024.jpg\";s:5:\"width\";i:683;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-image\";a:4:{s:4:\"file\";s:19:\"CP-3494-720x400.jpg\";s:5:\"width\";i:720;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"4\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1510938061\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"28\";s:3:\"iso\";s:4:\"3200\";s:13:\"shutter_speed\";s:4:\"0.05\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(1538,633,'_wp_attached_file','2018/02/CP-3496.jpg'),(1539,633,'wpmf_size','294606'),(1540,633,'wpmf_filetype','jpg'),(1541,633,'wpmf_order','0'),(1542,633,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:1500;s:4:\"file\";s:19:\"2018/02/CP-3496.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"CP-3496-150x150.jpg\";s:5:\"width\";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:\"CP-3496-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:20:\"CP-3496-768x1152.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1152;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:20:\"CP-3496-683x1024.jpg\";s:5:\"width\";i:683;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-image\";a:4:{s:4:\"file\";s:19:\"CP-3496-720x400.jpg\";s:5:\"width\";i:720;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"4\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1510938184\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"31\";s:3:\"iso\";s:4:\"3200\";s:13:\"shutter_speed\";s:4:\"0.01\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(1543,634,'_wp_attached_file','2018/02/CP-3503.jpg'),(1544,634,'wpmf_size','168167'),(1545,634,'wpmf_filetype','jpg'),(1546,634,'wpmf_order','0'),(1547,634,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:667;s:4:\"file\";s:19:\"2018/02/CP-3503.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"CP-3503-150x150.jpg\";s:5:\"width\";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:\"CP-3503-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:19:\"CP-3503-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-image\";a:4:{s:4:\"file\";s:19:\"CP-3503-720x400.jpg\";s:5:\"width\";i:720;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1510938310\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"17\";s:3:\"iso\";s:3:\"640\";s:13:\"shutter_speed\";s:4:\"0.05\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(1548,635,'_wp_attached_file','2018/02/CP-3508.jpg'),(1549,635,'wpmf_size','379461'),(1550,635,'wpmf_filetype','jpg'),(1551,635,'wpmf_order','0'),(1552,635,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:1500;s:4:\"file\";s:19:\"2018/02/CP-3508.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"CP-3508-150x150.jpg\";s:5:\"width\";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:\"CP-3508-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:20:\"CP-3508-768x1152.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1152;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:20:\"CP-3508-683x1024.jpg\";s:5:\"width\";i:683;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-image\";a:4:{s:4:\"file\";s:19:\"CP-3508-720x400.jpg\";s:5:\"width\";i:720;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1510938409\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"22\";s:3:\"iso\";s:3:\"640\";s:13:\"shutter_speed\";s:3:\"0.5\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(1553,636,'_wp_attached_file','2018/02/CP-3524.jpg'),(1554,636,'wpmf_size','204190'),(1555,636,'wpmf_filetype','jpg'),(1556,636,'wpmf_order','0'),(1557,636,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:667;s:4:\"file\";s:19:\"2018/02/CP-3524.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"CP-3524-150x150.jpg\";s:5:\"width\";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:\"CP-3524-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:19:\"CP-3524-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-image\";a:4:{s:4:\"file\";s:19:\"CP-3524-720x400.jpg\";s:5:\"width\";i:720;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1510938951\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"17\";s:3:\"iso\";s:3:\"640\";s:13:\"shutter_speed\";s:3:\"0.3\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(1558,637,'_wp_attached_file','2018/02/CP-3532.jpg'),(1559,637,'wpmf_size','230056'),(1560,637,'wpmf_filetype','jpg'),(1561,637,'wpmf_order','0'),(1562,637,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:667;s:4:\"file\";s:19:\"2018/02/CP-3532.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"CP-3532-150x150.jpg\";s:5:\"width\";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:\"CP-3532-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:19:\"CP-3532-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-image\";a:4:{s:4:\"file\";s:19:\"CP-3532-720x400.jpg\";s:5:\"width\";i:720;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1510939108\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"17\";s:3:\"iso\";s:3:\"640\";s:13:\"shutter_speed\";s:3:\"0.3\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(1563,638,'_wp_attached_file','2018/02/CP-3533.jpg'),(1564,638,'wpmf_size','201312'),(1565,638,'wpmf_filetype','jpg'),(1566,638,'wpmf_order','0'),(1567,638,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:667;s:4:\"file\";s:19:\"2018/02/CP-3533.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"CP-3533-150x150.jpg\";s:5:\"width\";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:\"CP-3533-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:19:\"CP-3533-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-image\";a:4:{s:4:\"file\";s:19:\"CP-3533-720x400.jpg\";s:5:\"width\";i:720;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1510939194\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"17\";s:3:\"iso\";s:3:\"640\";s:13:\"shutter_speed\";s:3:\"0.3\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(1568,639,'_wp_attached_file','2018/02/CP-3555.jpg'),(1569,639,'wpmf_size','146083'),(1570,639,'wpmf_filetype','jpg'),(1571,639,'wpmf_order','0'),(1572,639,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:667;s:4:\"file\";s:19:\"2018/02/CP-3555.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"CP-3555-150x150.jpg\";s:5:\"width\";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:\"CP-3555-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:19:\"CP-3555-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-image\";a:4:{s:4:\"file\";s:19:\"CP-3555-720x400.jpg\";s:5:\"width\";i:720;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"4\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1510939425\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"40\";s:3:\"iso\";s:3:\"640\";s:13:\"shutter_speed\";s:4:\"0.05\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(1573,640,'_wp_attached_file','2018/02/CP-3557.jpg'),(1574,640,'wpmf_size','159888'),(1575,640,'wpmf_filetype','jpg'),(1576,640,'wpmf_order','0'),(1577,640,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:667;s:4:\"file\";s:19:\"2018/02/CP-3557.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"CP-3557-150x150.jpg\";s:5:\"width\";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:\"CP-3557-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:19:\"CP-3557-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-image\";a:4:{s:4:\"file\";s:19:\"CP-3557-720x400.jpg\";s:5:\"width\";i:720;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"4\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1510939501\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"17\";s:3:\"iso\";s:3:\"640\";s:13:\"shutter_speed\";s:5:\"0.125\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(1578,641,'_wp_attached_file','2018/02/CP-3576.jpg'),(1579,641,'wpmf_size','220629'),(1580,641,'wpmf_filetype','jpg'),(1581,641,'wpmf_order','0'),(1582,641,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:667;s:4:\"file\";s:19:\"2018/02/CP-3576.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"CP-3576-150x150.jpg\";s:5:\"width\";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:\"CP-3576-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:19:\"CP-3576-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-image\";a:4:{s:4:\"file\";s:19:\"CP-3576-720x400.jpg\";s:5:\"width\";i:720;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1510939960\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"17\";s:3:\"iso\";s:3:\"500\";s:13:\"shutter_speed\";s:14:\"0.166666666667\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(1583,642,'_wp_attached_file','2018/02/CP-3580.jpg'),(1584,642,'wpmf_size','323196'),(1585,642,'wpmf_filetype','jpg'),(1586,642,'wpmf_order','0'),(1587,642,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:1500;s:4:\"file\";s:19:\"2018/02/CP-3580.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"CP-3580-150x150.jpg\";s:5:\"width\";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:\"CP-3580-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:20:\"CP-3580-768x1152.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1152;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:20:\"CP-3580-683x1024.jpg\";s:5:\"width\";i:683;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-image\";a:4:{s:4:\"file\";s:19:\"CP-3580-720x400.jpg\";s:5:\"width\";i:720;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1510940002\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"32\";s:3:\"iso\";s:3:\"500\";s:13:\"shutter_speed\";s:3:\"0.5\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(1588,643,'_wp_attached_file','2018/02/CP-3581.jpg'),(1589,643,'wpmf_size','182112'),(1590,643,'wpmf_filetype','jpg'),(1591,643,'wpmf_order','0'),(1592,643,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:667;s:4:\"file\";s:19:\"2018/02/CP-3581.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"CP-3581-150x150.jpg\";s:5:\"width\";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:\"CP-3581-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:19:\"CP-3581-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-image\";a:4:{s:4:\"file\";s:19:\"CP-3581-720x400.jpg\";s:5:\"width\";i:720;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1510940079\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"26\";s:3:\"iso\";s:3:\"500\";s:13:\"shutter_speed\";s:3:\"0.5\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(1593,644,'_wp_attached_file','2018/02/CP-3584.jpg'),(1594,644,'wpmf_size','188134'),(1595,644,'wpmf_filetype','jpg'),(1596,644,'wpmf_order','0'),(1597,644,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:667;s:4:\"file\";s:19:\"2018/02/CP-3584.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"CP-3584-150x150.jpg\";s:5:\"width\";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:\"CP-3584-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:19:\"CP-3584-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-image\";a:4:{s:4:\"file\";s:19:\"CP-3584-720x400.jpg\";s:5:\"width\";i:720;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1510940237\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"31\";s:3:\"iso\";s:3:\"500\";s:13:\"shutter_speed\";s:3:\"0.3\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(1598,645,'_wp_attached_file','2018/02/CP-3591.jpg'),(1599,645,'wpmf_size','251783'),(1600,645,'wpmf_filetype','jpg'),(1601,645,'wpmf_order','0'),(1602,645,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:667;s:4:\"file\";s:19:\"2018/02/CP-3591.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"CP-3591-150x150.jpg\";s:5:\"width\";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:\"CP-3591-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:19:\"CP-3591-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-image\";a:4:{s:4:\"file\";s:19:\"CP-3591-720x400.jpg\";s:5:\"width\";i:720;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1510940318\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"17\";s:3:\"iso\";s:3:\"500\";s:13:\"shutter_speed\";s:15:\"0.0666666666667\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(1603,646,'_wp_attached_file','2018/02/CP-3597.jpg'),(1604,646,'wpmf_size','228871'),(1605,646,'wpmf_filetype','jpg'),(1606,646,'wpmf_order','0'),(1607,646,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:667;s:4:\"file\";s:19:\"2018/02/CP-3597.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"CP-3597-150x150.jpg\";s:5:\"width\";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:\"CP-3597-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:19:\"CP-3597-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-image\";a:4:{s:4:\"file\";s:19:\"CP-3597-720x400.jpg\";s:5:\"width\";i:720;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1510940391\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"19\";s:3:\"iso\";s:3:\"500\";s:13:\"shutter_speed\";s:5:\"0.125\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(1608,647,'_wp_attached_file','2018/02/CP-3614.jpg'),(1609,647,'wpmf_size','248078'),(1610,647,'wpmf_filetype','jpg'),(1611,647,'wpmf_order','0'),(1612,647,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:1500;s:4:\"file\";s:19:\"2018/02/CP-3614.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"CP-3614-150x150.jpg\";s:5:\"width\";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:\"CP-3614-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:20:\"CP-3614-768x1152.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1152;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:20:\"CP-3614-683x1024.jpg\";s:5:\"width\";i:683;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-image\";a:4:{s:4:\"file\";s:19:\"CP-3614-720x400.jpg\";s:5:\"width\";i:720;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1510940737\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"17\";s:3:\"iso\";s:3:\"500\";s:13:\"shutter_speed\";s:3:\"0.3\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(1613,648,'_wp_attached_file','2018/02/CP-3615.jpg'),(1614,648,'wpmf_size','359873'),(1615,648,'wpmf_filetype','jpg'),(1616,648,'wpmf_order','0'),(1617,648,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:1500;s:4:\"file\";s:19:\"2018/02/CP-3615.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"CP-3615-150x150.jpg\";s:5:\"width\";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:\"CP-3615-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:20:\"CP-3615-768x1152.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1152;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:20:\"CP-3615-683x1024.jpg\";s:5:\"width\";i:683;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-image\";a:4:{s:4:\"file\";s:19:\"CP-3615-720x400.jpg\";s:5:\"width\";i:720;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1510940806\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"28\";s:3:\"iso\";s:3:\"500\";s:13:\"shutter_speed\";s:3:\"0.3\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(1618,649,'_wp_attached_file','2018/02/CP-3620.jpg'),(1619,649,'wpmf_size','137557'),(1620,649,'wpmf_filetype','jpg'),(1621,649,'wpmf_order','0'),(1622,649,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:667;s:4:\"file\";s:19:\"2018/02/CP-3620.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"CP-3620-150x150.jpg\";s:5:\"width\";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:\"CP-3620-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:19:\"CP-3620-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-image\";a:4:{s:4:\"file\";s:19:\"CP-3620-720x400.jpg\";s:5:\"width\";i:720;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:2:\"14\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1510940888\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"17\";s:3:\"iso\";s:3:\"500\";s:13:\"shutter_speed\";s:3:\"0.5\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(1623,650,'_wp_attached_file','2018/02/CP-3622.jpg'),(1624,650,'wpmf_size','297928'),(1625,650,'wpmf_filetype','jpg'),(1626,650,'wpmf_order','0'),(1627,650,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:667;s:4:\"file\";s:19:\"2018/02/CP-3622.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"CP-3622-150x150.jpg\";s:5:\"width\";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:\"CP-3622-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:19:\"CP-3622-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-image\";a:4:{s:4:\"file\";s:19:\"CP-3622-720x400.jpg\";s:5:\"width\";i:720;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1510941234\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"17\";s:3:\"iso\";s:3:\"500\";s:13:\"shutter_speed\";s:4:\"0.05\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(1628,651,'_wp_attached_file','2018/02/CP-3644.jpg'),(1629,651,'wpmf_size','551229'),(1630,651,'wpmf_filetype','jpg'),(1631,651,'wpmf_order','0'),(1632,651,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:1500;s:4:\"file\";s:19:\"2018/02/CP-3644.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"CP-3644-150x150.jpg\";s:5:\"width\";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:\"CP-3644-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:20:\"CP-3644-768x1152.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1152;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:20:\"CP-3644-683x1024.jpg\";s:5:\"width\";i:683;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-image\";a:4:{s:4:\"file\";s:19:\"CP-3644-720x400.jpg\";s:5:\"width\";i:720;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1510941485\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"28\";s:3:\"iso\";s:3:\"500\";s:13:\"shutter_speed\";s:3:\"0.2\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(1633,652,'_wp_attached_file','2018/02/CP-3654.jpg'),(1634,652,'wpmf_size','382350'),(1635,652,'wpmf_filetype','jpg'),(1636,652,'wpmf_order','0'),(1637,652,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:667;s:4:\"file\";s:19:\"2018/02/CP-3654.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"CP-3654-150x150.jpg\";s:5:\"width\";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:\"CP-3654-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:19:\"CP-3654-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-image\";a:4:{s:4:\"file\";s:19:\"CP-3654-720x400.jpg\";s:5:\"width\";i:720;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1510941621\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"17\";s:3:\"iso\";s:3:\"500\";s:13:\"shutter_speed\";s:3:\"0.4\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(1638,653,'_wp_attached_file','2018/02/CP-3663.jpg'),(1639,653,'wpmf_size','143648'),(1640,653,'wpmf_filetype','jpg'),(1641,653,'wpmf_order','0'),(1642,653,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:667;s:4:\"file\";s:19:\"2018/02/CP-3663.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"CP-3663-150x150.jpg\";s:5:\"width\";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:\"CP-3663-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:19:\"CP-3663-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-image\";a:4:{s:4:\"file\";s:19:\"CP-3663-720x400.jpg\";s:5:\"width\";i:720;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"4\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1510942121\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"40\";s:3:\"iso\";s:4:\"3200\";s:13:\"shutter_speed\";s:5:\"0.025\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(1643,654,'_wp_attached_file','2018/02/CP-3664.jpg'),(1644,654,'wpmf_size','417160'),(1645,654,'wpmf_filetype','jpg'),(1646,654,'wpmf_order','0'),(1647,654,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:1500;s:4:\"file\";s:19:\"2018/02/CP-3664.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"CP-3664-150x150.jpg\";s:5:\"width\";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:\"CP-3664-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:20:\"CP-3664-768x1152.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1152;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:20:\"CP-3664-683x1024.jpg\";s:5:\"width\";i:683;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-image\";a:4:{s:4:\"file\";s:19:\"CP-3664-720x400.jpg\";s:5:\"width\";i:720;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"4\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1510942133\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"30\";s:3:\"iso\";s:4:\"3200\";s:13:\"shutter_speed\";s:5:\"0.025\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(1648,655,'_wp_attached_file','2018/02/CP-3667.jpg'),(1649,655,'wpmf_size','427694'),(1650,655,'wpmf_filetype','jpg'),(1651,655,'wpmf_order','0'),(1652,655,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:1500;s:4:\"file\";s:19:\"2018/02/CP-3667.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"CP-3667-150x150.jpg\";s:5:\"width\";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:\"CP-3667-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:20:\"CP-3667-768x1152.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1152;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:20:\"CP-3667-683x1024.jpg\";s:5:\"width\";i:683;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-image\";a:4:{s:4:\"file\";s:19:\"CP-3667-720x400.jpg\";s:5:\"width\";i:720;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"4\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1510942150\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"23\";s:3:\"iso\";s:4:\"3200\";s:13:\"shutter_speed\";s:15:\"0.0666666666667\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(1653,656,'_wp_attached_file','2018/02/IMG_0107-1.jpeg'),(1654,656,'wpmf_size','27467'),(1655,656,'wpmf_filetype','jpeg'),(1656,656,'wpmf_order','0'),(1657,656,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:320;s:6:\"height\";i:240;s:4:\"file\";s:23:\"2018/02/IMG_0107-1.jpeg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"IMG_0107-1-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:23:\"IMG_0107-1-300x225.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:225;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:{}}}'),(1658,657,'_wp_attached_file','2018/02/IMG_0108.jpeg'),(1659,657,'wpmf_size','31458'),(1660,657,'wpmf_filetype','jpeg'),(1661,657,'wpmf_order','0'),(1662,657,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:320;s:6:\"height\";i:240;s:4:\"file\";s:21:\"2018/02/IMG_0108.jpeg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"IMG_0108-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:\"IMG_0108-300x225.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:225;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:{}}}'),(1663,658,'_wp_attached_file','2018/02/IMG_2181-1-e1519344327173.jpg'),(1664,658,'wpmf_size','117774'),(1665,658,'wpmf_filetype','jpg'),(1666,658,'wpmf_order','0'),(1667,658,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:480;s:6:\"height\";i:640;s:4:\"file\";s:37:\"2018/02/IMG_2181-1-e1519344327173.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:37:\"IMG_2181-1-e1519344327173-150x150.jpg\";s:5:\"width\";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:\"IMG_2181-1-e1519344327173-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-image\";a:4:{s:4:\"file\";s:37:\"IMG_2181-1-e1519344327173-480x400.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.2\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:9:\"iPhone 5s\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1513195928\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"4.15\";s:3:\"iso\";s:3:\"500\";s:13:\"shutter_speed\";s:15:\"0.0666666666667\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"6\";s:8:\"keywords\";a:0:{}}}'),(1668,659,'_wp_attached_file','2018/02/IMG_2184-1-e1519344314796.jpg'),(1669,659,'wpmf_size','99606'),(1670,659,'wpmf_filetype','jpg'),(1671,659,'wpmf_order','0'),(1672,659,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:480;s:6:\"height\";i:640;s:4:\"file\";s:37:\"2018/02/IMG_2184-1-e1519344314796.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:37:\"IMG_2184-1-e1519344314796-150x150.jpg\";s:5:\"width\";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:\"IMG_2184-1-e1519344314796-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-image\";a:4:{s:4:\"file\";s:37:\"IMG_2184-1-e1519344314796-480x400.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.2\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:9:\"iPhone 5s\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1513352173\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"4.15\";s:3:\"iso\";s:2:\"40\";s:13:\"shutter_speed\";s:15:\"0.0166666666667\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"6\";s:8:\"keywords\";a:0:{}}}'),(1673,660,'_wp_attached_file','2018/02/IMG_2193-1-e1519344261491.jpg'),(1674,660,'wpmf_size','112075'),(1675,660,'wpmf_filetype','jpg'),(1676,660,'wpmf_order','0'),(1677,660,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:480;s:6:\"height\";i:640;s:4:\"file\";s:37:\"2018/02/IMG_2193-1-e1519344261491.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:37:\"IMG_2193-1-e1519344261491-150x150.jpg\";s:5:\"width\";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:\"IMG_2193-1-e1519344261491-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-image\";a:4:{s:4:\"file\";s:37:\"IMG_2193-1-e1519344261491-480x400.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.2\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:9:\"iPhone 5s\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1513521580\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"4.15\";s:3:\"iso\";s:2:\"32\";s:13:\"shutter_speed\";s:16:\"0.00129198966408\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"6\";s:8:\"keywords\";a:0:{}}}'),(1678,660,'_edit_lock','1519344273:6'),(1679,660,'_wp_attachment_backup_sizes','a:4:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:640;s:6:\"height\";i:480;s:4:\"file\";s:14:\"IMG_2193-1.jpg\";}s:14:\"thumbnail-orig\";a:4:{s:4:\"file\";s:22:\"IMG_2193-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"medium-orig\";a:4:{s:4:\"file\";s:22:\"IMG_2193-1-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"featured-image-orig\";a:4:{s:4:\"file\";s:22:\"IMG_2193-1-640x400.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}}'),(1680,660,'_wpmf_gallery_custom_image_link',''),(1681,660,'_gallery_link_target',''),(1682,660,'_foogallery_custom_url',''),(1683,660,'_foogallery_custom_target','default'),(1684,660,'_foogallery_custom_class',''),(1685,660,'_edit_last','6'),(1686,659,'_wp_attachment_backup_sizes','a:4:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:640;s:6:\"height\";i:480;s:4:\"file\";s:14:\"IMG_2184-1.jpg\";}s:14:\"thumbnail-orig\";a:4:{s:4:\"file\";s:22:\"IMG_2184-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"medium-orig\";a:4:{s:4:\"file\";s:22:\"IMG_2184-1-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"featured-image-orig\";a:4:{s:4:\"file\";s:22:\"IMG_2184-1-640x400.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}}'),(1687,658,'_wp_attachment_backup_sizes','a:4:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:640;s:6:\"height\";i:480;s:4:\"file\";s:14:\"IMG_2181-1.jpg\";}s:14:\"thumbnail-orig\";a:4:{s:4:\"file\";s:22:\"IMG_2181-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"medium-orig\";a:4:{s:4:\"file\";s:22:\"IMG_2181-1-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"featured-image-orig\";a:4:{s:4:\"file\";s:22:\"IMG_2181-1-640x400.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}}'),(1694,7,'_foogallery','574'),(1689,574,'foogallery_attachments','a:85:{i:0;s:3:\"660\";i:1;s:3:\"659\";i:2;s:3:\"658\";i:3;s:3:\"657\";i:4;s:3:\"656\";i:5;s:3:\"655\";i:6;s:3:\"654\";i:7;s:3:\"653\";i:8;s:3:\"652\";i:9;s:3:\"651\";i:10;s:3:\"650\";i:11;s:3:\"649\";i:12;s:3:\"648\";i:13;s:3:\"647\";i:14;s:3:\"646\";i:15;s:3:\"645\";i:16;s:3:\"644\";i:17;s:3:\"643\";i:18;s:3:\"642\";i:19;s:3:\"641\";i:20;s:3:\"640\";i:21;s:3:\"639\";i:22;s:3:\"638\";i:23;s:3:\"637\";i:24;s:3:\"636\";i:25;s:3:\"635\";i:26;s:3:\"634\";i:27;s:3:\"633\";i:28;s:3:\"632\";i:29;s:3:\"631\";i:30;s:3:\"630\";i:31;s:3:\"629\";i:32;s:3:\"628\";i:33;s:3:\"627\";i:34;s:3:\"626\";i:35;s:3:\"625\";i:36;s:3:\"624\";i:37;s:3:\"623\";i:38;s:3:\"622\";i:39;s:3:\"621\";i:40;s:3:\"620\";i:41;s:3:\"619\";i:42;s:3:\"618\";i:43;s:3:\"617\";i:44;s:3:\"616\";i:45;s:3:\"615\";i:46;s:3:\"614\";i:47;s:3:\"613\";i:48;s:3:\"612\";i:49;s:3:\"611\";i:50;s:3:\"610\";i:51;s:3:\"609\";i:52;s:3:\"608\";i:53;s:3:\"607\";i:54;s:3:\"606\";i:55;s:3:\"605\";i:56;s:3:\"604\";i:57;s:3:\"603\";i:58;s:3:\"602\";i:59;s:3:\"601\";i:60;s:3:\"600\";i:61;s:3:\"599\";i:62;s:3:\"598\";i:63;s:3:\"597\";i:64;s:3:\"596\";i:65;s:3:\"595\";i:66;s:3:\"594\";i:67;s:3:\"593\";i:68;s:3:\"592\";i:69;s:3:\"591\";i:70;s:3:\"589\";i:71;s:3:\"588\";i:72;s:3:\"587\";i:73;s:3:\"586\";i:74;s:3:\"585\";i:75;s:3:\"584\";i:76;s:3:\"583\";i:77;s:3:\"582\";i:78;s:3:\"581\";i:79;s:3:\"580\";i:80;s:3:\"579\";i:81;s:3:\"578\";i:82;s:3:\"577\";i:83;s:3:\"576\";i:84;s:3:\"575\";}'),(1690,574,'foogallery_template','default'),(1691,574,'_foogallery_settings','a:23:{s:21:\"foogallery_items_view\";s:6:\"manage\";s:28:\"default_thumbnail_dimensions\";a:2:{s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:22:\"default_thumbnail_link\";s:5:\"image\";s:16:\"default_lightbox\";s:6:\"foobox\";s:15:\"default_spacing\";s:12:\"fg-gutter-10\";s:17:\"default_alignment\";s:9:\"fg-center\";s:13:\"default_theme\";s:8:\"fg-light\";s:19:\"default_border_size\";s:14:\"fg-border-thin\";s:23:\"default_rounded_corners\";s:0:\"\";s:19:\"default_drop_shadow\";s:17:\"fg-shadow-outline\";s:20:\"default_inner_shadow\";s:0:\"\";s:20:\"default_loading_icon\";s:18:\"fg-loading-default\";s:21:\"default_loaded_effect\";s:17:\"fg-loaded-fade-in\";s:26:\"default_hover_effect_color\";s:0:\"\";s:26:\"default_hover_effect_scale\";s:0:\"\";s:39:\"default_hover_effect_caption_visibility\";s:16:\"fg-caption-hover\";s:31:\"default_hover_effect_transition\";s:13:\"fg-hover-fade\";s:25:\"default_hover_effect_icon\";s:13:\"fg-hover-zoom\";s:28:\"default_caption_title_source\";s:0:\"\";s:27:\"default_caption_desc_source\";s:0:\"\";s:29:\"default_captions_limit_length\";s:0:\"\";s:19:\"default_paging_type\";s:0:\"\";s:16:\"default_lazyload\";s:0:\"\";}'),(1692,574,'foogallery_sort',''),(1695,7,'_foogallery_css','a:1:{s:15:\"foogallery-core\";a:5:{s:3:\"src\";s:113:\"https://www.watchhill.ca/wp-content/plugins/foogallery/extensions/default-templates/shared/css/foogallery.min.css\";s:4:\"deps\";a:0:{}s:3:\"ver\";s:6:\"1.4.15\";s:5:\"media\";s:3:\"all\";s:4:\"site\";s:24:\"https://www.watchhill.ca\";}}'),(1713,667,'_wp_attached_file','2018/02/IMG_2112.jpg'),(1714,667,'wpmf_size','3301354'),(1715,667,'wpmf_filetype','jpg'),(1716,667,'wpmf_order','0'),(1717,667,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:3024;s:6:\"height\";i:4032;s:4:\"file\";s:20:\"2018/02/IMG_2112.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"IMG_2112-150x150.jpg\";s:5:\"width\";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_2112-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:21:\"IMG_2112-768x1024.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"IMG_2112-768x1024.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-image\";a:4:{s:4:\"file\";s:20:\"IMG_2112-720x400.jpg\";s:5:\"width\";i:720;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:13:\"iPhone 7 Plus\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1514641411\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:3:\"6.6\";s:3:\"iso\";s:2:\"20\";s:13:\"shutter_speed\";s:17:\"0.000699790062981\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(1718,668,'_wp_attached_file','2018/02/Resized_IMG_20180107_112048_975.jpg'),(1719,668,'wpmf_size','80041'),(1720,668,'wpmf_filetype','jpg'),(1721,668,'wpmf_order','0'),(1722,668,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:857;s:6:\"height\";i:1024;s:4:\"file\";s:43:\"2018/02/Resized_IMG_20180107_112048_975.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:43:\"Resized_IMG_20180107_112048_975-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:43:\"Resized_IMG_20180107_112048_975-251x300.jpg\";s:5:\"width\";i:251;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:43:\"Resized_IMG_20180107_112048_975-768x918.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:918;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:44:\"Resized_IMG_20180107_112048_975-857x1024.jpg\";s:5:\"width\";i:857;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-image\";a:4:{s:4:\"file\";s:43:\"Resized_IMG_20180107_112048_975-720x400.jpg\";s:5:\"width\";i:720;s:6:\"height\";i:400;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:{}}}'),(1723,663,'foogallery_attachments','a:6:{i:0;s:3:\"668\";i:1;s:3:\"667\";i:2;s:3:\"666\";i:3;s:3:\"665\";i:4;s:3:\"664\";i:5;s:3:\"130\";}'),(1724,663,'foogallery_template','default'),(1725,663,'_foogallery_settings','a:23:{s:21:\"foogallery_items_view\";s:6:\"manage\";s:28:\"default_thumbnail_dimensions\";a:2:{s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:22:\"default_thumbnail_link\";s:5:\"image\";s:16:\"default_lightbox\";s:6:\"foobox\";s:15:\"default_spacing\";s:12:\"fg-gutter-10\";s:17:\"default_alignment\";s:9:\"fg-center\";s:13:\"default_theme\";s:8:\"fg-light\";s:19:\"default_border_size\";s:14:\"fg-border-thin\";s:23:\"default_rounded_corners\";s:0:\"\";s:19:\"default_drop_shadow\";s:17:\"fg-shadow-outline\";s:20:\"default_inner_shadow\";s:0:\"\";s:20:\"default_loading_icon\";s:18:\"fg-loading-default\";s:21:\"default_loaded_effect\";s:17:\"fg-loaded-fade-in\";s:26:\"default_hover_effect_color\";s:0:\"\";s:26:\"default_hover_effect_scale\";s:0:\"\";s:39:\"default_hover_effect_caption_visibility\";s:16:\"fg-caption-hover\";s:31:\"default_hover_effect_transition\";s:13:\"fg-hover-fade\";s:25:\"default_hover_effect_icon\";s:13:\"fg-hover-zoom\";s:28:\"default_caption_title_source\";s:0:\"\";s:27:\"default_caption_desc_source\";s:0:\"\";s:29:\"default_captions_limit_length\";s:0:\"\";s:19:\"default_paging_type\";s:0:\"\";s:16:\"default_lazyload\";s:0:\"\";}'),(1726,663,'foogallery_sort',''),(1727,669,'_wp_attached_file','2017/03/FB_IMG_1517939589806.jpg'),(1728,669,'wpmf_size','29827'),(1729,669,'wpmf_filetype','jpg'),(1730,669,'wpmf_order','0'),(1731,669,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1080;s:6:\"height\";i:1080;s:4:\"file\";s:32:\"2017/03/FB_IMG_1517939589806.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"FB_IMG_1517939589806-150x150.jpg\";s:5:\"width\";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:\"FB_IMG_1517939589806-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:32:\"FB_IMG_1517939589806-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:34:\"FB_IMG_1517939589806-1024x1024.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-image\";a:4:{s:4:\"file\";s:32:\"FB_IMG_1517939589806-720x400.jpg\";s:5:\"width\";i:720;s:6:\"height\";i:400;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:{}}}'),(1732,670,'_wp_attached_file','2017/03/FB_IMG_1517939602269.jpg'),(1733,670,'wpmf_size','54261'),(1734,670,'wpmf_filetype','jpg'),(1735,670,'wpmf_order','0'),(1736,670,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:576;s:6:\"height\";i:576;s:4:\"file\";s:32:\"2017/03/FB_IMG_1517939602269.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"FB_IMG_1517939602269-150x150.jpg\";s:5:\"width\";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:\"FB_IMG_1517939602269-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-image\";a:4:{s:4:\"file\";s:32:\"FB_IMG_1517939602269-576x400.jpg\";s:5:\"width\";i:576;s:6:\"height\";i:400;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:{}}}'),(1737,671,'_wp_attached_file','2017/03/FB_IMG_1517939664874.jpg'),(1738,671,'wpmf_size','36581'),(1739,671,'wpmf_filetype','jpg'),(1740,671,'wpmf_order','0'),(1741,671,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:809;s:6:\"height\";i:809;s:4:\"file\";s:32:\"2017/03/FB_IMG_1517939664874.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"FB_IMG_1517939664874-150x150.jpg\";s:5:\"width\";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:\"FB_IMG_1517939664874-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:32:\"FB_IMG_1517939664874-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-image\";a:4:{s:4:\"file\";s:32:\"FB_IMG_1517939664874-720x400.jpg\";s:5:\"width\";i:720;s:6:\"height\";i:400;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:{}}}'),(1742,672,'_wp_attached_file','2017/03/FB_IMG_1517939724561.jpg'),(1743,672,'wpmf_size','60205'),(1744,672,'wpmf_filetype','jpg'),(1745,672,'wpmf_order','0'),(1746,672,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1080;s:6:\"height\";i:1080;s:4:\"file\";s:32:\"2017/03/FB_IMG_1517939724561.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"FB_IMG_1517939724561-150x150.jpg\";s:5:\"width\";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:\"FB_IMG_1517939724561-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:32:\"FB_IMG_1517939724561-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:34:\"FB_IMG_1517939724561-1024x1024.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-image\";a:4:{s:4:\"file\";s:32:\"FB_IMG_1517939724561-720x400.jpg\";s:5:\"width\";i:720;s:6:\"height\";i:400;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:{}}}'),(1747,673,'_wp_attached_file','2017/03/FB_IMG_1517939744243.jpg'),(1748,673,'wpmf_size','96882'),(1749,673,'wpmf_filetype','jpg'),(1750,673,'wpmf_order','0'),(1751,673,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1080;s:6:\"height\";i:608;s:4:\"file\";s:32:\"2017/03/FB_IMG_1517939744243.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"FB_IMG_1517939744243-150x150.jpg\";s:5:\"width\";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:\"FB_IMG_1517939744243-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:32:\"FB_IMG_1517939744243-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:33:\"FB_IMG_1517939744243-1024x576.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-image\";a:4:{s:4:\"file\";s:32:\"FB_IMG_1517939744243-720x400.jpg\";s:5:\"width\";i:720;s:6:\"height\";i:400;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:{}}}'),(1752,674,'_wp_attached_file','2017/03/FB_IMG_1517939788079.jpg'),(1753,674,'wpmf_size','65607'),(1754,674,'wpmf_filetype','jpg'),(1755,674,'wpmf_order','0'),(1756,674,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:960;s:6:\"height\";i:720;s:4:\"file\";s:32:\"2017/03/FB_IMG_1517939788079.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"FB_IMG_1517939788079-150x150.jpg\";s:5:\"width\";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:\"FB_IMG_1517939788079-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:32:\"FB_IMG_1517939788079-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-image\";a:4:{s:4:\"file\";s:32:\"FB_IMG_1517939788079-720x400.jpg\";s:5:\"width\";i:720;s:6:\"height\";i:400;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:{}}}'),(1757,675,'_wp_attached_file','2017/03/FB_IMG_1517939808879.jpg'),(1758,675,'wpmf_size','58403'),(1759,675,'wpmf_filetype','jpg'),(1760,675,'wpmf_order','0'),(1761,675,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:912;s:6:\"height\";i:912;s:4:\"file\";s:32:\"2017/03/FB_IMG_1517939808879.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"FB_IMG_1517939808879-150x150.jpg\";s:5:\"width\";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:\"FB_IMG_1517939808879-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:32:\"FB_IMG_1517939808879-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-image\";a:4:{s:4:\"file\";s:32:\"FB_IMG_1517939808879-720x400.jpg\";s:5:\"width\";i:720;s:6:\"height\";i:400;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:{}}}'),(1762,676,'_wp_attached_file','2017/03/FB_IMG_1517941199470.jpg'),(1763,676,'wpmf_size','89111'),(1764,676,'wpmf_filetype','jpg'),(1765,676,'wpmf_order','0'),(1766,676,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1080;s:6:\"height\";i:737;s:4:\"file\";s:32:\"2017/03/FB_IMG_1517941199470.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"FB_IMG_1517941199470-150x150.jpg\";s:5:\"width\";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:\"FB_IMG_1517941199470-300x205.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:205;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:32:\"FB_IMG_1517941199470-768x524.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:524;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:33:\"FB_IMG_1517941199470-1024x699.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:699;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-image\";a:4:{s:4:\"file\";s:32:\"FB_IMG_1517941199470-720x400.jpg\";s:5:\"width\";i:720;s:6:\"height\";i:400;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:{}}}'),(1767,677,'_wp_attached_file','2017/03/FB_IMG_1517942120013.jpg'),(1768,677,'wpmf_size','160982'),(1769,677,'wpmf_filetype','jpg'),(1770,677,'wpmf_order','0'),(1771,677,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1080;s:6:\"height\";i:1080;s:4:\"file\";s:32:\"2017/03/FB_IMG_1517942120013.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"FB_IMG_1517942120013-150x150.jpg\";s:5:\"width\";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:\"FB_IMG_1517942120013-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:32:\"FB_IMG_1517942120013-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:34:\"FB_IMG_1517942120013-1024x1024.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-image\";a:4:{s:4:\"file\";s:32:\"FB_IMG_1517942120013-720x400.jpg\";s:5:\"width\";i:720;s:6:\"height\";i:400;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:{}}}'),(1823,114,'_foogallery','115'),(1824,114,'_foogallery','663'),(1825,114,'_foogallery_css','a:1:{s:15:\"foogallery-core\";a:5:{s:3:\"src\";s:113:\"https://www.watchhill.ca/wp-content/plugins/foogallery/extensions/default-templates/shared/css/foogallery.min.css\";s:4:\"deps\";a:0:{}s:3:\"ver\";s:6:\"1.4.15\";s:5:\"media\";s:3:\"all\";s:4:\"site\";s:24:\"https://www.watchhill.ca\";}}'),(1773,114,'_genesis_scripts_body_position','bottom'),(1826,114,'_foogallery_css','a:1:{s:15:\"foogallery-core\";a:5:{s:3:\"src\";s:113:\"https://www.watchhill.ca/wp-content/plugins/foogallery/extensions/default-templates/shared/css/foogallery.min.css\";s:4:\"deps\";a:0:{}s:3:\"ver\";s:6:\"1.4.15\";s:5:\"media\";s:3:\"all\";s:4:\"site\";s:24:\"https://www.watchhill.ca\";}}'),(1778,677,'_wp_attachment_image_alt','Art classes at Scubbyâ€™s point, just across the street'),(1779,676,'_wp_attachment_image_alt','Stormy day'),(1780,674,'_wp_attachment_image_alt','Boarding to shore at end of day'),(1781,672,'_wp_attachment_image_alt','See Watch Hill peeking through the trees (upper right)'),(1782,117,'_edit_lock','1519346782:6'),(1783,117,'_wpmf_gallery_custom_image_link',''),(1784,117,'_gallery_link_target',''),(1785,117,'_foogallery_custom_url',''),(1786,117,'_foogallery_custom_target','default'),(1787,117,'_foogallery_custom_class',''),(1788,117,'_edit_last','6'),(1789,669,'_wp_attachment_image_alt','Fishing under a summer rainbow'),(1790,680,'_wp_attached_file','2018/02/FB_IMG_1517939681694.jpg'),(1791,680,'wpmf_size','97618'),(1792,680,'wpmf_filetype','jpg'),(1793,680,'wpmf_order','0'),(1794,680,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1080;s:6:\"height\";i:1080;s:4:\"file\";s:32:\"2018/02/FB_IMG_1517939681694.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"FB_IMG_1517939681694-150x150.jpg\";s:5:\"width\";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:\"FB_IMG_1517939681694-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:32:\"FB_IMG_1517939681694-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:34:\"FB_IMG_1517939681694-1024x1024.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-image\";a:4:{s:4:\"file\";s:32:\"FB_IMG_1517939681694-720x400.jpg\";s:5:\"width\";i:720;s:6:\"height\";i:400;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:{}}}'),(1795,681,'_wp_attached_file','2018/02/FB_IMG_1517939757588.jpg'),(1796,681,'wpmf_size','92282'),(1797,681,'wpmf_filetype','jpg'),(1798,681,'wpmf_order','0'),(1799,681,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1080;s:6:\"height\";i:1348;s:4:\"file\";s:32:\"2018/02/FB_IMG_1517939757588.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"FB_IMG_1517939757588-150x150.jpg\";s:5:\"width\";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:\"FB_IMG_1517939757588-240x300.jpg\";s:5:\"width\";i:240;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:32:\"FB_IMG_1517939757588-768x959.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:959;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:33:\"FB_IMG_1517939757588-820x1024.jpg\";s:5:\"width\";i:820;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-image\";a:4:{s:4:\"file\";s:32:\"FB_IMG_1517939757588-720x400.jpg\";s:5:\"width\";i:720;s:6:\"height\";i:400;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:{}}}'),(1800,682,'_wp_attached_file','2018/02/FB_IMG_1517939571158.jpg'),(1801,682,'wpmf_size','62736'),(1802,682,'wpmf_filetype','jpg'),(1803,682,'wpmf_order','0'),(1804,682,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:768;s:6:\"height\";i:960;s:4:\"file\";s:32:\"2018/02/FB_IMG_1517939571158.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"FB_IMG_1517939571158-150x150.jpg\";s:5:\"width\";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:\"FB_IMG_1517939571158-240x300.jpg\";s:5:\"width\";i:240;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:32:\"FB_IMG_1517939571158-768x960.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:960;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-image\";a:4:{s:4:\"file\";s:32:\"FB_IMG_1517939571158-720x400.jpg\";s:5:\"width\";i:720;s:6:\"height\";i:400;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:{}}}'),(1805,683,'_wp_attached_file','2018/02/FB_IMG_1517939633705.jpg'),(1806,683,'wpmf_size','85072'),(1807,683,'wpmf_filetype','jpg'),(1808,683,'wpmf_order','0'),(1809,683,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1080;s:6:\"height\";i:773;s:4:\"file\";s:32:\"2018/02/FB_IMG_1517939633705.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"FB_IMG_1517939633705-150x150.jpg\";s:5:\"width\";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:\"FB_IMG_1517939633705-300x215.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:215;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:32:\"FB_IMG_1517939633705-768x550.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:33:\"FB_IMG_1517939633705-1024x733.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:733;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-image\";a:4:{s:4:\"file\";s:32:\"FB_IMG_1517939633705-720x400.jpg\";s:5:\"width\";i:720;s:6:\"height\";i:400;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:{}}}'),(1810,684,'_wp_attached_file','2018/02/FB_IMG_1517939657486.jpg'),(1811,684,'wpmf_size','145133'),(1812,684,'wpmf_filetype','jpg'),(1813,684,'wpmf_order','0'),(1814,684,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1080;s:6:\"height\";i:1350;s:4:\"file\";s:32:\"2018/02/FB_IMG_1517939657486.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"FB_IMG_1517939657486-150x150.jpg\";s:5:\"width\";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:\"FB_IMG_1517939657486-240x300.jpg\";s:5:\"width\";i:240;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:32:\"FB_IMG_1517939657486-768x960.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:960;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:33:\"FB_IMG_1517939657486-819x1024.jpg\";s:5:\"width\";i:819;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-image\";a:4:{s:4:\"file\";s:32:\"FB_IMG_1517939657486-720x400.jpg\";s:5:\"width\";i:720;s:6:\"height\";i:400;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:{}}}'),(1815,684,'_wp_attachment_image_alt','Baked daily for guests and served at the coffee station'),(1816,683,'_wp_attachment_image_alt','Canada Day Breakfast. Letâ€™s celebrate!'),(1817,682,'_wp_attachment_image_alt','Spectacular garden bloom'),(1818,681,'_wp_attachment_image_alt','Sunshine on the breakfast table'),(1819,680,'_wp_attachment_image_alt','Colour the day away or make music as you wish'),(1820,675,'_wp_attachment_image_alt','See this from the veranda - if you use binoculars.');
/*!40000 ALTER TABLE `wh_postmeta` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wh_posts`
--

DROP TABLE IF EXISTS `wh_posts`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wh_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_520_ci NOT NULL,
  `post_title` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `post_excerpt` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `post_status` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'publish',
  `comment_status` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'open',
  `ping_status` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'open',
  `post_password` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `post_name` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `to_ping` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `pinged` text COLLATE utf8mb4_unicode_520_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_520_ci NOT NULL,
  `post_parent` bigint(20) unsigned NOT NULL DEFAULT '0',
  `guid` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `menu_order` int(11) NOT NULL DEFAULT '0',
  `post_type` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'post',
  `post_mime_type` varchar(100) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `comment_count` bigint(20) NOT NULL DEFAULT '0',
  PRIMARY KEY (`ID`),
  KEY `post_name` (`post_name`(191)),
  KEY `type_status_date` (`post_type`,`post_status`,`post_date`,`ID`),
  KEY `post_parent` (`post_parent`),
  KEY `post_author` (`post_author`)
) ENGINE=MyISAM AUTO_INCREMENT=697 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wh_posts`
--

LOCK TABLES `wh_posts` WRITE;
/*!40000 ALTER TABLE `wh_posts` DISABLE KEYS */;
INSERT INTO `wh_posts` VALUES (1,1,'2017-03-06 06:42:32','2017-03-06 11:42:32','Welcome to WordPress. This is your first post. Edit or delete it, then start writing!','Hello world!','','publish','open','open','','hello-world','','','2017-03-06 06:42:32','2017-03-06 11:42:32','',0,'http://www.watchhill.ca/?p=1',0,'post','',1),(161,3,'2017-03-21 13:27:55','2017-03-21 17:27:55','[caption id=\"attachment_159\" align=\"alignnone\" width=\"300\"]<img class=\"size-medium wp-image-159\" src=\"https://www.watchhill.ca/wp-content/uploads/2017/03/IMGP0756-300x296.jpg\" alt=\"Sue and Richard\" width=\"300\" height=\"296\" /> Your Hosts, Sue &amp; Richard[/caption]\r\n\r\nPlease contact us to make a booking, or if you have any questions about your stay.\r\n\r\nWe can be reached via email at info@watchhill.ca or by phone, 1-519-513-9065','Contact','','inherit','closed','closed','','28-revision-v1','','','2017-03-21 13:27:55','2017-03-21 17:27:55','',28,'https://www.watchhill.ca/2017/03/28-revision-v1/',0,'revision','',0),(30,1,'2017-03-06 08:30:34','2017-03-06 13:30:34','','bg','','inherit','closed','closed','','bg','','','2017-03-06 08:30:34','2017-03-06 13:30:34','',0,'http://www.watchhill.ca/wp-content/uploads/2017/03/bg.png',0,'attachment','image/png',0),(348,3,'2017-04-26 13:15:35','2017-04-26 17:15:35','','Harbour','','publish','closed','closed','','new-slider-7','','','2017-10-26 13:09:21','2017-10-26 17:09:21','',0,'https://www.watchhill.ca/?post_type=ml-slider&#038;p=348',0,'ml-slider','',0),(32,1,'2017-03-07 09:57:35','2017-03-07 14:57:35','','watch-hill-favicon','','inherit','closed','closed','','watch-hill-favicon','','','2017-03-07 09:57:35','2017-03-07 14:57:35','',0,'http://www.watchhill.ca/wp-content/uploads/2017/03/watch-hill-favicon.png',0,'attachment','image/png',0),(33,1,'2017-03-07 09:57:38','2017-03-07 14:57:38','http://www.watchhill.ca/wp-content/uploads/2017/03/cropped-watch-hill-favicon.png','cropped-watch-hill-favicon.png','','inherit','closed','closed','','cropped-watch-hill-favicon-png','','','2017-03-07 09:57:38','2017-03-07 14:57:38','',0,'http://www.watchhill.ca/wp-content/uploads/2017/03/cropped-watch-hill-favicon.png',0,'attachment','image/png',0),(5,1,'2017-03-06 07:13:31','2017-03-06 12:13:31','<h1 style=\"text-align: center;\">A bright and airy, luxurious Bed &amp; Breakfast in Southampton, Ontario.</h1><!--more-->\r\n\r\n\r\n<h2 style=\"text-align: center;\">Truly a Beach House.</h2>\r\nWatch Hill is Southamptonâ€™s Grande Dame, a Beach House home-away-from-home overlooking the mouth of the Saugeen River where it meanders past a working lighthouse toward Â sparkling Lake Huron. Marvel at the magnificent sunsets over Chantry Island or watch boats sail by on the beautiful Saugeen River from our veranda.Â The beach is just steps away.\r\n<h2 style=\"text-align: center;\">Featured In Our Homes Magazine</h2>\r\n<p style=\"text-align: center;\"><a href=\"http://www.ourhomes.ca/\" target=\"_blank\" rel=\"noopener noreferrer\">Our Homes Magazine</a> recently featured Watch Hill in theirÂ  <a href=\"http://www.ourhomes.ca/greybruce/archive/591\" target=\"_blank\" rel=\"noopener noreferrer\">Grey/Bruce County Summer 2017 issue.</a>Â Pick upÂ a paper copy, or viewÂ the pdf online <a href=\"http://www.ourhomes.ca/uploads/pdfs/Feature_OH_GreyBruce_2017Summer.pdf\" target=\"_blank\" rel=\"noopener noreferrer\">here</a>, and the flipbook <a href=\"http://digital.lmgroup.com/i/832764-summer-2017\" target=\"_blank\" rel=\"noopener noreferrer\">here.</a>Â See before and after pictures of the 2 year renovation process that brought our Victorian beach house dream to life.</p>','Home','','publish','closed','closed','','home','','','2018-02-22 17:20:39','2018-02-22 22:20:39','',0,'http://www.watchhill.ca/?page_id=5',1,'page','',0),(571,6,'2018-02-22 17:22:35','2018-02-22 22:22:35','<span class=\"text_5mbkop-o_O-size_reduced_1oti1ib-o_O-inline_g86r3e\" data-reactid=\"369\"><span data-reactid=\"370\">We are retired (this time we mean it) from very rewarding careers and have spent the last two years remodelling and renovating Watch Hill. Â Friends who visited remarked on theÂ beauty of Watch Hill and its views and several encouraged us to share it. So, here we are. Hosting is one of our favourite things to do. We have stayed in numerous B&amp;Bs ourselves and believe the experience can be far superior to a rentedÂ hotel room. </span></span>\r\n\r\n<span class=\"text_5mbkop-o_O-size_reduced_1oti1ib-o_O-inline_g86r3e\" data-reactid=\"369\"><span data-reactid=\"372\">Won\'t you join us?</span></span>\r\n\r\n[caption id=\"attachment_164\" align=\"aligncenter\" width=\"219\"]<img class=\"size-medium wp-image-164\" src=\"https://www.watchhill.ca/wp-content/uploads/2017/03/IMGP0761-219x300.jpg\" alt=\"Sue and Richard\" width=\"219\" height=\"300\" /> Sue &amp; Richard[/caption]','Your Hosts','','inherit','closed','closed','','13-revision-v1','','','2018-02-22 17:22:35','2018-02-22 22:22:35','',13,'https://www.watchhill.ca/2018/02/13-revision-v1/',0,'revision','',0),(61,3,'2017-06-19 08:37:15','2017-06-19 12:37:15','<h1 style=\"text-align: center;\">A bright and airy, luxurious Bed &amp; Breakfast in Southampton, Ontario.</h1>\n<h2 style=\"text-align: center;\">Truly a Beach House.</h2>\nWatch Hill is Southamptonâ€™s Grande Dame, a Beach House home-away-from-home overlooking the mouth of the Saugeen River where it meanders past a working lighthouse and fishing pier toward Chantry Island and on to sparkling Lake Huron. The beach is steps from our front porch; Southampton is famous for its sunsets.\n<h2 style=\"text-align: center;\">Featured In Our Homes Magazine</h2>\n<p style=\"text-align: center;\"><a href=\"http://www.ourhomes.ca/\" target=\"_blank\" rel=\"noopener noreferrer\">Our Homes Magazine</a> recently featured Watch Hill in theirÂ  <a href=\"http://www.ourhomes.ca/greybruce/archive/591\" target=\"_blank\" rel=\"noopener noreferrer\">Grey/Bruce County Summer 2017 issue.</a> Find a glossy paper copy, or have a look at the pdf online <a href=\"http://www.ourhomes.ca/uploads/pdfs/Feature_OH_GreyBruce_2017Summer.pdf\" target=\"_blank\" rel=\"noopener noreferrer\">here</a>, and the flipbook <a href=\"http://digital.lmgroup.com/i/832764-summer-2017\" target=\"_blank\" rel=\"noopener noreferrer\">here.</a> ViewÂ  before and after pictures of the 2 year renovation process that brought our Victorian beach house dream, to life.</p>','Home','','inherit','closed','closed','','5-autosave-v1','','','2017-06-19 08:37:15','2017-06-19 12:37:15','',5,'https://www.watchhill.ca/2017/03/5-autosave-v1/',0,'revision','',0),(265,5,'2017-03-29 14:28:31','2017-03-29 18:28:31','<span class=\"text_5mbkop-o_O-size_reduced_1oti1ib-o_O-inline_g86r3e\" data-reactid=\"369\"><span data-reactid=\"370\">We are retired (this time we mean it) from very rewarding careers and have spent the last two years remodelling and renovating Watch Hill. Â Friends who visited remarked on theÂ beauty of Watch Hill and its views and several encouraged us to share it. So, here we are. Hosting is one of our favourite things to do. We have stayed in numerous B&amp;Bs ourselves and believe the experience can be far superior to a rentedÂ hotel room. </span><br data-reactid=\"371\" /><span data-reactid=\"372\">Won\'t you join us?</span></span>\n\n[caption id=\"attachment_164\" align=\"aligncenter\" width=\"219\"]<img class=\"size-medium wp-image-164\" src=\"https://www.watchhill.ca/wp-content/uploads/2017/03/IMGP0761-219x300.jpg\" alt=\"Sue and Richard\" width=\"219\" height=\"300\" /> Sue &amp; Richard[/caption]','Your Hosts','','inherit','closed','closed','','13-autosave-v1','','','2017-03-29 14:28:31','2017-03-29 18:28:31','',13,'https://www.watchhill.ca/2017/03/13-autosave-v1/',0,'revision','',0),(7,1,'2017-03-06 07:14:50','2017-03-06 12:14:50','<img class=\"aligncenter wp-image-118 size-large\" src=\"https://www.watchhill.ca/wp-content/uploads/2017/03/7-1024x768.jpg\" alt=\"\" width=\"1024\" height=\"768\" />\r\n<div class=\"simple-format-container\" data-reactid=\"186\">\r\n<div class=\"simple-format-container\" data-reactid=\"208\">\r\n<p data-reactid=\"209\"><span data-reactid=\"210\">Watch Hill is truly Southamptonâ€™s Grande Dame, a Beach House home-away-from-home overlooking the mouth of the Saugeen River where it meanders past a working lighthouse and fishing pier toward Chantry Island and on to sparkling blue Lake Huron.</span></p>\r\n<p data-reactid=\"209\">Steps from the front door canoe, kayak, swim, fish, golf, hike, bike, x country ski, snowmobile, stroll the walking trail to downtown shops and delis or bike the rail-trail for miles into villages \"down the way\".Â <br data-reactid=\"211\" /><span data-reactid=\"212\">Downtown offers no shortage of attractions, boutiques, and dining establishments. Fun days, adventures and special occasions can be arranged (please ask us about this); explore the beaches, spend a day on the river, bike the trails or hike the paths and then enjoy a massage or yoga on the porch.</span></p>\r\n\r\n</div>\r\n<h4>Over 1,000 people toured Watch Hill to raise money for the hospital in November 2017. See highlights from the tour in the video below.</h4>\r\nhttps://youtu.be/RUOrc7RLJEY\r\n<!--more-->\r\n\r\n<h4>Thanks toÂ Candra Schank Photography for these photos of the Christmas Home Tour at Watch Hill.</h4>\r\n[foogallery id=\"574\"]\r\n\r\n</div>','About','','publish','closed','closed','','about','','','2018-02-22 19:14:44','2018-02-23 00:14:44','',0,'http://www.watchhill.ca/?page_id=7',2,'page','',0),(663,6,'2018-02-22 19:21:24','2018-02-23 00:21:24','','Winter Activities','','publish','closed','closed','','winter-activities','','','2018-02-22 19:21:24','2018-02-23 00:21:24','',0,'https://www.watchhill.ca/?post_type=foogallery&#038;p=663',0,'foogallery','',0),(664,6,'2018-02-22 19:19:16','2018-02-23 00:19:16','',' Sunset DSC1693','','inherit','closed','closed','','_sunset-dsc1693','','','2018-02-22 19:19:16','2018-02-23 00:19:16','',663,'https://www.watchhill.ca/wp-content/uploads/2018/02/Sunset-DSC1693.jpeg',0,'attachment','image/jpeg',0),(665,6,'2018-02-22 19:19:30','2018-02-23 00:19:30','','IMG 2097','','inherit','closed','closed','','img_2097','','','2018-02-22 19:19:30','2018-02-23 00:19:30','',663,'https://www.watchhill.ca/wp-content/uploads/2018/02/IMG_2097.jpg',0,'attachment','image/jpeg',0),(666,6,'2018-02-22 19:19:37','2018-02-23 00:19:37','','IMG 2102','','inherit','closed','closed','','img_2102','','','2018-02-22 19:19:37','2018-02-23 00:19:37','',663,'https://www.watchhill.ca/wp-content/uploads/2018/02/IMG_2102.jpg',0,'attachment','image/jpeg',0),(667,6,'2018-02-22 19:19:49','2018-02-23 00:19:49','','IMG 2112','','inherit','closed','closed','','img_2112','','','2018-02-22 19:19:49','2018-02-23 00:19:49','',663,'https://www.watchhill.ca/wp-content/uploads/2018/02/IMG_2112.jpg',0,'attachment','image/jpeg',0),(668,6,'2018-02-22 19:19:52','2018-02-23 00:19:52','','Resized IMG 20180107 112048 975','','inherit','closed','closed','','resized_img_20180107_112048_975','','','2018-02-22 19:19:52','2018-02-23 00:19:52','',663,'https://www.watchhill.ca/wp-content/uploads/2018/02/Resized_IMG_20180107_112048_975.jpg',0,'attachment','image/jpeg',0),(9,1,'2017-03-06 07:15:05','2017-03-06 12:15:05','Watch Hillâ€™s common areas include a spectacular Great room, dining room and a large veranda furnished for enjoying outdoor breakfast or just lazing the day away in one of our comfortable chairs.\r\n\r\n[foogallery id=\"96\"]','Shared Spaces','','publish','closed','closed','','gallery','','','2018-02-05 16:55:32','2018-02-05 21:55:32','',7,'http://www.watchhill.ca/?page_id=9',0,'page','',0),(107,3,'2017-03-15 11:01:07','2017-03-15 15:01:07','Watch Hillâ€™s common areas include a spectacular Great room, dining room and a large veranda furnished for enjoying outdoor breakfast or just lazing the day away in one of our comfortable chairs.\r\n\r\n[foogallery id=\"96\"]','Gallery','','inherit','closed','closed','','9-revision-v1','','','2017-03-15 11:01:07','2017-03-15 15:01:07','',9,'https://www.watchhill.ca/2017/03/9-revision-v1/',0,'revision','',0),(108,3,'2017-03-15 11:02:37','2017-03-15 15:02:37','','The Great Room','','inherit','closed','closed','','1m1a1379-2','','','2017-03-30 14:23:11','2017-03-30 18:23:11','',96,'https://www.watchhill.ca/wp-content/uploads/2017/03/1M1A1379-1.jpg',0,'attachment','image/jpeg',0),(109,3,'2017-03-15 11:02:40','2017-03-15 15:02:40','','The Great Room','','inherit','closed','closed','','1m1a1383-2','','','2017-03-30 14:23:09','2017-03-30 18:23:09','',96,'https://www.watchhill.ca/wp-content/uploads/2017/03/1M1A1383-1.jpg',0,'attachment','image/jpeg',0),(110,3,'2017-03-15 11:02:44','2017-03-15 15:02:44','','The Great Room','','inherit','closed','closed','','1m1a1388-2','','','2017-03-30 14:23:07','2017-03-30 18:23:07','',96,'https://www.watchhill.ca/wp-content/uploads/2017/03/1M1A1388-1.jpg',0,'attachment','image/jpeg',0),(10,1,'2017-03-06 07:15:05','2017-03-06 12:15:05','Far far away, behind the word mountains, far from the countries Vokalia and Consonantia, there live the blind texts. Separated they live in Bookmarksgrove right at the coast of the Semantics, a large language ocean.\r\n\r\nA small river named Duden flows by their place and supplies it with the necessary regelialia. It is a paradisematic country, in which roasted parts of sentences fly into your mouth.\r\n\r\nEven the all-powerful Pointing has no control about the blind texts it is an almost unorthographic life One day however a small line of blind text by the name of Lorem Ipsum decided to leave for the far World of Grammar.\r\n\r\nThe Big Oxmox advised her not to do so, because there were thousands of bad Commas, wild Question Marks and devious Semikoli, but the Little Blind Text didnâ€™t listen. She packed her seven versalia, put her initial into the belt and made herself on the way.\r\n\r\nWhen she reached the first hills of the Italic Mountains, she had a last view back on the skyline of her hometown Bookmarksgrove, the headline of Alphabet Village and the subline of her own road, the Line Lane. Pityful a rethoric question ran over her cheek, then ','Gallery','','inherit','closed','closed','','9-revision-v1','','','2017-03-06 07:15:05','2017-03-06 12:15:05','',9,'http://www.watchhill.ca/2017/03/9-revision-v1/',0,'revision','',0),(11,1,'2017-03-06 07:15:21','2017-03-06 12:15:21','<h1><img class=\"wp-image-532 aligncenter\" src=\"https://www.watchhill.ca/wp-content/uploads/2018/02/houseofhistory-300x179.jpg\" alt=\"\" width=\"708\" height=\"422\" /></h1>\r\nWatch Hill was built in 1987 by Matt and Tim Weichel of Southampton as a replica 1920â€™s style beach house and intended to be a dream home for their father who chose its name.Â  For a time it was owned by an American who operated off-track betting from the back office. In later years, filled with antiques, Watch Hill became a Victorian Grande Dame owned by Michelle and Lorin Myers.Â  Now, Watch Hill has shed its Victorian ambiance and taken on the aura of the Hampton\'s Beach House featured in the Jack Nicholson/Diane Keaton movie, <i>Somethingâ€™s Gotta Give</i>.Â  In order to become a working B&amp;B, visited by more than 200 guests during its maiden season (Summer 2017), Carla Pavlov (CR Designs) took on the beach house design challenge.\r\n\r\nCollaborating with many local craftsmen and artisans we tried to maintain the grandeur of Watch Hill and to prepare her for sharing with travellers from as near as down the road to as far away as the Black Forrest of Germany.\r\n\r\nWe hope youâ€™ll visit soon to join us in this new chapter of Watch Hillâ€™s history.','History of Watch Hill','','publish','closed','closed','','history-of-watch-hill','','','2018-02-21 21:31:57','2018-02-22 02:31:57','',7,'http://www.watchhill.ca/?page_id=11',0,'page','',0),(12,1,'2017-03-06 07:15:21','2017-03-06 12:15:21','Far far away, behind the word mountains, far from the countries Vokalia and Consonantia, there live the blind texts. Separated they live in Bookmarksgrove right at the coast of the Semantics, a large language ocean.\r\n\r\nA small river named Duden flows by their place and supplies it with the necessary regelialia. It is a paradisematic country, in which roasted parts of sentences fly into your mouth.\r\n\r\nEven the all-powerful Pointing has no control about the blind texts it is an almost unorthographic life One day however a small line of blind text by the name of Lorem Ipsum decided to leave for the far World of Grammar.\r\n\r\nThe Big Oxmox advised her not to do so, because there were thousands of bad Commas, wild Question Marks and devious Semikoli, but the Little Blind Text didnâ€™t listen. She packed her seven versalia, put her initial into the belt and made herself on the way.\r\n\r\nWhen she reached the first hills of the Italic Mountains, she had a last view back on the skyline of her hometown Bookmarksgrove, the headline of Alphabet Village and the subline of her own road, the Line Lane. Pityful a rethoric question ran over her cheek, then ','History of Watch Hill','','inherit','closed','closed','','11-revision-v1','','','2017-03-06 07:15:21','2017-03-06 12:15:21','',11,'http://www.watchhill.ca/2017/03/11-revision-v1/',0,'revision','',0),(13,1,'2017-03-06 07:15:38','2017-03-06 12:15:38','[caption id=\"attachment_164\" align=\"alignright\" width=\"219\"]<img class=\"size-medium wp-image-164\" src=\"https://www.watchhill.ca/wp-content/uploads/2017/03/IMGP0761-219x300.jpg\" alt=\"Sue and Richard\" width=\"219\" height=\"300\" /> Sue &amp; Richard[/caption]\r\n\r\n<span class=\"text_5mbkop-o_O-size_reduced_1oti1ib-o_O-inline_g86r3e\" data-reactid=\"369\"><span data-reactid=\"370\">We are retired (this time we mean it) from very rewarding careers and have spent the last two years remodelling and renovating Watch Hill. Friends who visited remarked on theÂ beauty of Watch Hill and its views and several encouraged us to share it. So, here we are. Hosting is one of our favourite things to do. We have stayed in numerous B&amp;Bs ourselves and believe the experience can be far superior to a rentedÂ hotel room. </span></span>\r\n\r\n<span class=\"text_5mbkop-o_O-size_reduced_1oti1ib-o_O-inline_g86r3e\" data-reactid=\"369\"><span data-reactid=\"372\">Won\'t you join us?</span></span>','Your Hosts','','publish','closed','closed','','your-hosts','','','2018-02-22 17:27:31','2018-02-22 22:27:31','',7,'http://www.watchhill.ca/?page_id=13',0,'page','',0),(165,3,'2017-03-21 16:16:47','2017-03-21 20:16:47','<span class=\"text_5mbkop-o_O-size_reduced_1oti1ib-o_O-inline_g86r3e\" data-reactid=\"369\"><span data-reactid=\"370\">We are retired (this time we mean it) from very rewarding careers. We have spent the last two years remodelling and renovating Watch HIll, a Victorian Beach house and the Grand Dame of Southampton. People who visit us remark on how beautiful our home is, and several have encouraged us to share it with others. So, we are. We are told we are excellent hosts, and hosting is one of our favourite things to do. We have stayed in numerous B&amp;Bs ourselves and believe that it is far superior to renting a hotel room. </span><br data-reactid=\"371\" /><span data-reactid=\"372\">Won\'t you join us?</span></span>\r\n\r\n[caption id=\"attachment_164\" align=\"aligncenter\" width=\"219\"]<img class=\"size-medium wp-image-164\" src=\"https://www.watchhill.ca/wp-content/uploads/2017/03/IMGP0761-219x300.jpg\" alt=\"Sue and Richard\" width=\"219\" height=\"300\" /> Sue &amp; Richard[/caption]','Your Hosts','','inherit','closed','closed','','13-revision-v1','','','2017-03-21 16:16:47','2017-03-21 20:16:47','',13,'https://www.watchhill.ca/2017/03/13-revision-v1/',0,'revision','',0),(14,1,'2017-03-06 07:15:38','2017-03-06 12:15:38','Far far away, behind the word mountains, far from the countries Vokalia and Consonantia, there live the blind texts. Separated they live in Bookmarksgrove right at the coast of the Semantics, a large language ocean.\r\n\r\nA small river named Duden flows by their place and supplies it with the necessary regelialia. It is a paradisematic country, in which roasted parts of sentences fly into your mouth.\r\n\r\nEven the all-powerful Pointing has no control about the blind texts it is an almost unorthographic life One day however a small line of blind text by the name of Lorem Ipsum decided to leave for the far World of Grammar.\r\n\r\nThe Big Oxmox advised her not to do so, because there were thousands of bad Commas, wild Question Marks and devious Semikoli, but the Little Blind Text didnâ€™t listen. She packed her seven versalia, put her initial into the belt and made herself on the way.\r\n\r\nWhen she reached the first hills of the Italic Mountains, she had a last view back on the skyline of her hometown Bookmarksgrove, the headline of Alphabet Village and the subline of her own road, the Line Lane. Pityful a rethoric question ran over her cheek, then ','Your Hosts','','inherit','closed','closed','','13-revision-v1','','','2017-03-06 07:15:38','2017-03-06 12:15:38','',13,'http://www.watchhill.ca/2017/03/13-revision-v1/',0,'revision','',0),(15,1,'2017-03-06 07:15:54','2017-03-06 12:15:54','[metaslider id=137]\r\n<h2>The Suites</h2>\r\nEach suite at Watch Hill features a view of the Saugeen River or Lake Huron and all rooms have a private ensuite bathroom. All bathrooms are equipped with shampoo, hair dryers and an Eminence hostess gift from our local spa. The house is equipped with central air conditioning.\r\n\r\nThe Chantry, Huron, and SaugeenÂ suites are available for booking from May 11thÂ  - October 15th. The Harbour Suite; a studio apartment with private entrance, king size bed, kitchenette, isÂ  available October 19th through April 29th. Breakfast items provided.\r\n<h2 data-reactid=\"187\">Common Areas</h2>\r\n<p data-reactid=\"187\"><span data-reactid=\"188\">Watch Hillâ€™s common areas include a spectacular Great room, dining room and a large veranda furnished for enjoying outdoor breakfast or just lazing the day away in one of our comfortable chairs. Alternatively, take your breakfast on our sunny patio and then work on your tan or finish your novel in one of our colourful Adirondacks. </span><br data-reactid=\"189\" /><span data-reactid=\"190\">Arrangements can be made to watch the latest movies on the 60â€ Apple-TV over the fireplace in the Great room.</span><br data-reactid=\"191\" /><span data-reactid=\"192\">Common areas have tables suitable for working on a laptop.</span><br data-reactid=\"193\" /><span data-reactid=\"194\">We are pleased to offer our guests the use of an electric vehicle charging unit.</span></p>\r\n\r\n<h2 data-reactid=\"187\">Breakfast</h2>\r\nThe coffee station is available throughout the day with home baked cookies served every afternoon at 3.Â  Breakfasts include continental offerings sourced from local epicures; granola, fresh fruit from the farm, local cheese, jams and maple syrup â€“ and a daily hot entrÃ©e.<span data-reactid=\"225\"> Please contact us if you have any dietary restrictions or concerns</span>; we would be happy to accommodate you.\r\n<h2>Booking</h2>\r\nPlease <a href=\"mailto:info@watchhill.ca\">email</a> or call us at 1-519-513-9065 for more information, or to book a suite.\r\n\r\nVisit the suites\' individual pages to view the calendars for availability.\r\n<div class=\"one-fourth first\"><a href=\"https://www.watchhill.ca/accommodations/the-huron/\">\r\n<img class=\"alignnone wp-image-496 size-medium\" src=\"https://www.watchhill.ca/wp-content/uploads/2017/03/Huron-1-133x300.jpg\" alt=\"\" width=\"195\" height=\"440\" /></a></div>\r\n<div class=\"one-fourth\"><a href=\"https://www.watchhill.ca/accommodations/the-chantry/\">\r\n<img class=\"alignnone wp-image-497 size-medium\" src=\"https://www.watchhill.ca/wp-content/uploads/2017/03/chantry-2-133x300.jpg\" alt=\"\" width=\"195\" height=\"440\" /></a></div>\r\n<div class=\"one-fourth\"><a href=\"https://www.watchhill.ca/accommodations/the-saugeen/\">\r\n<img class=\"alignnone wp-image-494 size-medium\" src=\"https://www.watchhill.ca/wp-content/uploads/2017/03/saugeen-1-133x300.jpg\" alt=\"\" width=\"195\" height=\"440\" /></a></div>\r\n<div class=\"one-fourth\"><a href=\"https://www.watchhill.ca/accommodations/harbour-suite/\">\r\n<img class=\"alignnone wp-image-499 size-medium\" src=\"https://www.watchhill.ca/wp-content/uploads/2017/03/Harbour-1-133x300.jpg\" alt=\"\" width=\"195\" height=\"440\" /></a></div>\r\n<div class=\"clearfix\"></div>','Accommodations','','publish','closed','closed','','accommodations','','','2018-01-17 10:37:15','2018-01-17 15:37:15','',0,'http://www.watchhill.ca/?page_id=15',3,'page','',0),(434,4,'2017-08-28 13:27:22','2017-08-28 17:27:22','[metaslider id=137]\r\n<h2>The Suites</h2>\r\nEach suite at Watch Hill features a view of the Saugeen River or Lake Huron and all rooms have a private ensuite bathroom. All bathrooms are equipped with shampoo, hair dryers and an Eminence hostess gift from our local spa. The house is equipped with central air conditioning.\r\n\r\nOur suites are available for booking from June 1st - September 30th. Coming Fall 2017 The Harbour Suite will be available; a studio apartment with kitchenette.\r\n<h2 data-reactid=\"187\">Common Areas</h2>\r\n<p data-reactid=\"187\"><span data-reactid=\"188\">Watch Hillâ€™s common areas include a spectacular Great room, dining room and a large veranda furnished for enjoying outdoor breakfast or just lazing the day away in one of our comfortable chairs. Alternatively, take your breakfast on our sunny patio and then work on your tan or finish your novel in one of our colourful Adirondacks. </span><br data-reactid=\"189\" /><span data-reactid=\"190\">Arrangements can be made to watch the latest movies on the 60â€ Apple-TV over the fireplace in the Great room.</span><br data-reactid=\"191\" /><span data-reactid=\"192\">Common areas have tables suitable for working on a laptop.</span><br data-reactid=\"193\" /><span data-reactid=\"194\">We are pleased to offer our guests the use of an electric vehicle charging unit.</span></p>\r\n\r\n<h2 data-reactid=\"187\">Breakfast</h2>\r\nThe coffee station is available throughout the day with home baked cookies served every afternoon at 3.Â  Breakfasts include continental offerings sourced from local epicures; granola, fresh fruit from the farm, local cheese, jams and maple syrup â€“ and a daily hot entrÃ©e.<span data-reactid=\"225\"> Please contact us if you have any dietary restrictions or concerns</span>; we would be happy to accommodate you.\r\n<h2>Booking</h2>\r\nPlease <a href=\"mailto:info@watchhill.ca\">email</a> or call us at 1-519-513-9065 for more information, or to book a suite.\r\n\r\nVisit the suites\' individual pages to view the calendars for availability.\r\n<div class=\"one-third first\"><a href=\"https://www.watchhill.ca/accommodations/the-huron/\">\r\n<img class=\"alignnone wp-image-175 size-full\" src=\"https://www.watchhill.ca/wp-content/uploads/2017/06/Huron-button.jpg\" alt=\"\" /></a></div>\r\n<div class=\"one-third\"><a href=\"https://www.watchhill.ca/accommodations/the-chantry/\">\r\n<img class=\"wp-image-174 size-full alignnone\" src=\"https://www.watchhill.ca/wp-content/uploads/2017/06/Chantry-button.jpg\" alt=\"\" /></a></div>\r\n<div class=\"one-third\"><a href=\"https://www.watchhill.ca/accommodations/the-saugeen/\">\r\n<img class=\"wp-image-176 size-full alignnone\" src=\"https://www.watchhill.ca/wp-content/uploads/2017/06/Saugeen-button.jpg\" alt=\"\" /></a></div>\r\n<div class=\"clearfix\"></div>','Accommodations','','inherit','closed','closed','','15-revision-v1','','','2017-08-28 13:27:22','2017-08-28 17:27:22','',15,'https://www.watchhill.ca/2017/08/15-revision-v1/',0,'revision','',0),(17,1,'2017-03-06 07:16:11','2017-03-06 12:16:11','[metaslider id=76]\r\n<p style=\"text-align: center;\">Inhale the sun washed breeze and listen to the waves from the Huron Suite with its spectacular view of Lake Huron featuring a Queen size bed, fireplace, TV (including Netflix), Â air conditioning, and a full four-piece en suite bathroom.</p>\r\n<p style=\"text-align: center;\">Priceâ€¦$220</p>\r\n<p style=\"text-align: center;\">Please view the calendar for availability, and <a href=\"mailto:info@watchhill.ca\">email</a> or call us at 1-519-513-9065 to book this room.</p>\r\n[wpsbc id=\"1\" title=\"yes\" legend=\"yes\" dropdown=\"yes\" start=\"7\" display=\"4\" language=\"auto\" month=\"6\" year=\"0\" history=\"1\"]','The Huron','','publish','closed','closed','','the-huron','','','2017-10-18 10:26:34','2017-10-18 14:26:34','',15,'http://www.watchhill.ca/?page_id=17',1,'page','',0),(398,3,'2017-06-21 08:48:24','2017-06-21 12:48:24','[metaslider id=76]\r\n<p style=\"text-align: center;\">Inhale the sun washed breeze and listen to the waves from the Huron Suite with its spectacular view of Lake Huron featuring a Queen size bed, fireplace, TV (including Netflix), and a full four-piece ensuite bathroom.</p>\r\n<p style=\"text-align: center;\">Priceâ€¦$210</p>\r\n<p style=\"text-align: center;\">Please view the calendar for availability, and <a href=\"mailto:info@watchhill.ca\">email</a> or call us at 1-519-513-9065 to book this room.</p>\r\n[wpsbc id=\"1\" title=\"yes\" legend=\"yes\" dropdown=\"yes\" start=\"7\" display=\"4\" language=\"auto\" month=\"6\" year=\"0\" history=\"1\"]','The Huron','','inherit','closed','closed','','17-revision-v1','','','2017-06-21 08:48:24','2017-06-21 12:48:24','',17,'https://www.watchhill.ca/2017/06/17-revision-v1/',0,'revision','',0),(272,5,'2017-03-29 14:37:13','2017-03-29 18:37:13','[metaslider id=80]\n<p style=\"text-align: center;\">Marvel at the magnificent sunsets over Chantry Island or watch boats sail by on the beautiful Saugeen River from the Chantry Suite alcove. Enjoy a King size bed, fireplace and a three-piece en suite bathroom.</p>\n<p style=\"text-align: center;\">Priceâ€¦.$210</p>\n<p style=\"text-align: center;\">Please email or call us at 1-519-513-9065 for availability and to book this room, or follow the link below to book via Airbnb.</p>\n<p style=\"text-align: center;\">Book this room <a href=\"https://www.airbnb.ca/rooms/14839417?s=0tR1BQdF\" target=\"_blank\">with Airbnb</a></p>','The Chantry','','inherit','closed','closed','','19-autosave-v1','','','2017-03-29 14:37:13','2017-03-29 18:37:13','',19,'https://www.watchhill.ca/2017/03/19-autosave-v1/',0,'revision','',0),(283,3,'2017-03-29 14:59:51','2017-03-29 18:59:51','[metaslider id=80]\r\n<p style=\"text-align: center;\">Marvel at the magnificent sunsets over Chantry Island or watch boats sail by on the beautiful Saugeen River from the Chantry Suite alcove. Enjoy a King size bed, fireplace and a three-piece en suite bathroom.</p>\r\n<p style=\"text-align: center;\">Priceâ€¦.$210</p>\r\n<p style=\"text-align: center;\">Please <a href=\"mailto:info@watchhill.ca\">email</a> or call us at 1-519-513-9065 for availability and to book this room, or follow the link below to book via Airbnb.</p>\r\n<p style=\"text-align: center;\">Book this room <a href=\"https://www.airbnb.ca/rooms/14839417?s=0tR1BQdF\" target=\"_blank\">with Airbnb</a></p>','The Chantry','','inherit','closed','closed','','19-revision-v1','','','2017-03-29 14:59:51','2017-03-29 18:59:51','',19,'https://www.watchhill.ca/2017/03/19-revision-v1/',0,'revision','',0),(68,3,'2017-03-15 10:34:22','2017-03-15 14:34:22','','Huron Suite','','publish','closed','closed','','huron-suite','','','2017-03-15 10:34:22','2017-03-15 14:34:22','',0,'https://www.watchhill.ca/?post_type=foogallery&#038;p=68',0,'foogallery','',0),(225,3,'2017-03-23 13:35:52','2017-03-23 17:35:52','<span class=\"text_5mbkop-o_O-size_reduced_1oti1ib-o_O-inline_g86r3e\" data-reactid=\"369\"><span data-reactid=\"370\">We are retired (this time we mean it) from very rewarding careers. We have spent the last two years remodelling and renovating Watch Hill, a Victorian Beach house and the Grand Dame of Southampton. People who visit us remark on how beautiful our home is, and several have encouraged us to share it with others. So, we are. We are told we are excellent hosts, and hosting is one of our favourite things to do. We have stayed in numerous B&amp;Bs ourselves and believe that it is far superior to renting a hotel room. </span><br data-reactid=\"371\" /><span data-reactid=\"372\">Won\'t you join us?</span></span>\r\n\r\n[caption id=\"attachment_164\" align=\"aligncenter\" width=\"219\"]<img class=\"size-medium wp-image-164\" src=\"https://www.watchhill.ca/wp-content/uploads/2017/03/IMGP0761-219x300.jpg\" alt=\"Sue and Richard\" width=\"219\" height=\"300\" /> Sue &amp; Richard[/caption]','Your Hosts','','inherit','closed','closed','','13-revision-v1','','','2017-03-23 13:35:52','2017-03-23 17:35:52','',13,'https://www.watchhill.ca/2017/03/13-revision-v1/',0,'revision','',0),(226,3,'2017-03-23 13:40:51','2017-03-23 17:40:51','[metaslider id=348]\r\n<p style=\"text-align: center;\">Â TheÂ Harbour Suite, a studio apartment with private entrance, king size bed , kitchenette; comfortably sleeps 4; available October 1st - May 30th, Breakfast items provided.</p>\r\n<p style=\"text-align: center;\">Price... $150</p>\r\n<p style=\"text-align: center;\">Please contact us for more information, or to make a booking.</p>\r\n<p style=\"text-align: center;\">email us at <a href=\"mailto:info@watchhill.ca\">info@watchhill.ca</a> or call us at 1-519-513-9065</p>\r\n<p style=\"text-align: center;\">[wpsbc id=\"4\" title=\"yes\" legend=\"yes\" dropdown=\"yes\" start=\"1\" display=\"4\" language=\"auto\" month=\"10\" year=\"0\" history=\"1\"]</p>','The Harbour Suite','','publish','closed','closed','','harbour-suite','','','2018-04-06 14:49:22','2018-04-06 18:49:22','',15,'https://www.watchhill.ca/?page_id=226',0,'page','',0),(464,4,'2017-09-20 13:04:37','2017-09-20 17:04:37','[metaslider id=348]\r\n<p style=\"text-align: center;\">Â TheÂ Harbour Suite, a studio apartment with private entrance, king size bed and kitchenette; comfortably sleeps 4; available October 1st - May 30th,</p>\r\n<p style=\"text-align: center;\">Please contact us for more information, or to make a booking.</p>\r\n<p style=\"text-align: center;\">email us at <a href=\"mailto:info@watchhill.ca\">info@watchhill.ca</a> or call us at 1-519-513-9065</p>\r\n<p style=\"text-align: center;\">[wpsbc id=\"4\" title=\"yes\" legend=\"yes\" dropdown=\"yes\" start=\"1\" display=\"4\" language=\"auto\" month=\"10\" year=\"0\" history=\"1\"]</p>','The Harbour Suite','','inherit','closed','closed','','226-revision-v1','','','2017-09-20 13:04:37','2017-09-20 17:04:37','',226,'https://www.watchhill.ca/2017/09/226-revision-v1/',0,'revision','',0),(19,1,'2017-03-06 07:16:27','2017-03-06 12:16:27','[metaslider id=80]\r\n<p style=\"text-align: center;\">Marvel at the magnificent sunsets over Chantry Island or watch boats sail by on the beautiful Saugeen River from the Chantry Suite alcove. Enjoy Â central air conditioning, a King size bed, fireplace TV (including Netflix) and a three-piece en suite bathroom.</p>\r\n<p style=\"text-align: center;\">Priceâ€¦.$225</p>\r\n<p style=\"text-align: center;\">Please view the calendar for availability,and <a href=\"mailto:info@watchhill.ca\">email</a> or call us at 1-519-513-9065Â  to book this room.</p>\r\n[wpsbc id=\"5\" title=\"yes\" legend=\"yes\" dropdown=\"yes\" start=\"7\" display=\"4\" language=\"auto\" month=\"6\" year=\"0\" history=\"1\"]','The Chantry','','publish','closed','closed','','the-chantry','','','2018-03-15 14:03:36','2018-03-15 18:03:36','',15,'http://www.watchhill.ca/?page_id=19',2,'page','',0),(399,3,'2017-06-21 08:48:52','2017-06-21 12:48:52','[metaslider id=80]\r\n<p style=\"text-align: center;\">Marvel at the magnificent sunsets over Chantry Island or watch boats sail by on the beautiful Saugeen River from the Chantry Suite alcove. Enjoy a King size bed, fireplace and a three-piece en suite bathroom.</p>\r\n<p style=\"text-align: center;\">Priceâ€¦.$210</p>\r\n<p style=\"text-align: center;\">Please view the calendar for availability,and <a href=\"mailto:info@watchhill.ca\">email</a> or call us at 1-519-513-9065Â  to book this room.</p>\r\n<p style=\"text-align: center;\">[wpsbc id=\"2\" title=\"yes\" legend=\"yes\" dropdown=\"yes\" start=\"7\" display=\"4\" language=\"auto\" month=\"6\" year=\"0\" history=\"1\"]</p>','The Chantry','','inherit','closed','closed','','19-revision-v1','','','2017-06-21 08:48:52','2017-06-21 12:48:52','',19,'https://www.watchhill.ca/2017/06/19-revision-v1/',0,'revision','',0),(92,3,'2017-03-15 10:54:44','2017-03-15 14:54:44','','Saugeen Suite','','publish','closed','closed','','new-slider-4','','','2017-06-27 12:46:10','2017-06-27 16:46:10','',0,'https://www.watchhill.ca/?post_type=ml-slider&#038;p=92',0,'ml-slider','',0),(93,3,'2017-03-15 10:55:13','2017-03-15 14:55:13','','1M1A1120','','inherit','closed','closed','','1m1a1120','','','2017-06-27 12:46:10','2017-06-27 16:46:10','',0,'https://www.watchhill.ca/wp-content/uploads/2017/03/1M1A1120.jpg',0,'attachment','image/jpeg',0),(94,3,'2017-03-15 10:56:27','2017-03-15 14:56:27','','1M1A1185','','inherit','closed','closed','','1m1a1185','','','2017-06-27 12:46:10','2017-06-27 16:46:10','',0,'https://www.watchhill.ca/wp-content/uploads/2017/03/1M1A1185.jpg',1,'attachment','image/jpeg',0),(475,4,'2017-10-18 10:25:51','2017-10-18 14:25:51','[metaslider id=348]\r\n<p style=\"text-align: center;\">Â TheÂ Harbour Suite, a studio apartment with private entrance, king size bed , kitchenette; comfortably sleeps 4; available October 1st - May 30th, Breakfast items provided.</p>\r\n<p style=\"text-align: center;\">Price $150</p>\r\n<p style=\"text-align: center;\">Please contact us for more information, or to make a booking.</p>\r\n<p style=\"text-align: center;\">email us at <a href=\"mailto:info@watchhill.ca\">info@watchhill.ca</a> or call us at 1-519-513-9065</p>\r\n<p style=\"text-align: center;\">[wpsbc id=\"4\" title=\"yes\" legend=\"yes\" dropdown=\"yes\" start=\"1\" display=\"4\" language=\"auto\" month=\"10\" year=\"0\" history=\"1\"]</p>','The Harbour Suite','','inherit','closed','closed','','226-revision-v1','','','2017-10-18 10:25:51','2017-10-18 14:25:51','',226,'https://www.watchhill.ca/2017/10/226-revision-v1/',0,'revision','',0),(486,3,'2017-10-26 13:05:46','2017-10-26 17:05:46','','Slider 348 - image','','publish','closed','closed','','slider-348-image-2','','','2017-10-26 13:09:21','2017-10-26 17:09:21','',0,'https://www.watchhill.ca/?post_type=ml-slide&#038;p=486',3,'ml-slide','',0),(21,1,'2017-03-06 07:16:50','2017-03-06 12:16:50','[metaslider id=92]\r\n<p style=\"text-align: center;\">The Saugeen Suite is air conditioned, Â features a three-piece en suite bathroom, Queen size bed, and a view of the Saugeen River. Comfy and cozy, this room appeals to those who like to sleep a little later.</p>\r\n<p style=\"text-align: center;\">Priceâ€¦.$190</p>\r\n<p style=\"text-align: center;\">Please view the calendar for availability, and <a href=\"mailto:info@watchhill.ca\">email</a> or call us at 1-519-513-9065 to book this room.</p>\r\n<p style=\"text-align: center;\">[wpsbc id=\"3\" title=\"yes\" legend=\"yes\" dropdown=\"yes\" start=\"7\" display=\"4\" language=\"auto\" month=\"6\" year=\"0\" history=\"1\"]</p>','The Saugeen','','publish','closed','closed','','the-saugeen','','','2017-10-18 10:27:10','2017-10-18 14:27:10','',15,'http://www.watchhill.ca/?page_id=21',3,'page','',0),(96,3,'2017-03-15 11:00:52','2017-03-15 15:00:52','','Shared Spaces','','publish','closed','closed','','shared-spaces','','','2018-02-22 20:01:14','2018-02-23 01:01:14','',0,'https://www.watchhill.ca/?post_type=foogallery&#038;p=96',0,'foogallery','',0),(97,3,'2017-03-15 11:00:16','2017-03-15 15:00:16','','Front Porch - Watch Hill Bed & Breakfast','','inherit','closed','closed','','1m1a0790','','','2017-03-30 14:23:29','2017-03-30 18:23:29','',96,'https://www.watchhill.ca/wp-content/uploads/2017/03/1M1A0790.jpg',4,'attachment','image/jpeg',0),(98,3,'2017-03-15 11:00:20','2017-03-15 15:00:20','','Front Porch Dining Area- Watch Hill Bed & Breakfast','','inherit','closed','closed','','1m1a0791','','','2017-03-30 14:23:27','2017-03-30 18:23:27','',96,'https://www.watchhill.ca/wp-content/uploads/2017/03/1M1A0791.jpg',0,'attachment','image/jpeg',0),(23,1,'2017-03-06 07:17:13','2017-03-06 12:17:13','At Watch Hill we strive to provide a stress free, fun and relaxing B&amp;B experience.\r\n\r\nOur newly renovated Victorian Beach House is non-smoking and we do not allow pets. Â Our Bernese Mountain Dog, Dooley, is on-site, however, and is not allowed inÂ guest areas.\r\n\r\nWatch HillÂ is tailored to adults; please contact us before booking if your reservationÂ includes children.\r\n\r\nThe Chantry Suite is $225/night, The Huron Suite is $220/night and The Saugeen Suite is $190/night.Â  These suites are available May 11thÂ - October 19th.\r\n\r\nThe HarbourÂ Suite; a studio apartment with a private entrance, kitchenette and capacity to sleep 4, is available October 19thÂ - April 30th. Â Daily rateÂ  $150/night or $600 per week.Â  Breakfast food items are provided.\r\n\r\n<strong>Booking Deposit</strong>\r\n\r\nWe require one nightâ€™s fee if booking 2 or 3 nights or $100 if booking for less than two nights. Guests booking for more than 3 nights will be charged 50% of their booking fee to secure their reservation.\r\n\r\n<strong>Cancellation Policy</strong>\r\n\r\nOur business is seasonal and reservations are usually made well in advance of guest arrival. We rarely get last-minute bookings which means a cancelled room often remains empty. And because we have a limited inventory (three suites) the loss of revenue on one suite is significant.\r\n\r\nWe require 7 nights notice in order to refund your booking deposit and to cancel your booking.Â  A cancellation with less than 48 hours notice will result in a full booking charge.Â  A booking (night) is calculated beginning at the check-in time of 3:00 p.m.\r\n\r\n<strong>Check inâ€¦Check out</strong>\r\n\r\nCheck-in is normally between 3:00 p.m. and 5:00 p.m. unless other arrangements are made.\r\n\r\nCheck out is normally 11:00 a.m. unless other arrangements are made.\r\n\r\nWe are happy to accommodate your dietary needs. Â Please let us know of any restrictions when you make your booking.\r\n\r\n&nbsp;','Rates & Policies','','publish','closed','closed','','rates-policies','','','2018-01-15 10:25:16','2018-01-15 15:25:16','',0,'http://www.watchhill.ca/?page_id=23',4,'page','',0),(493,3,'2017-11-03 10:02:11','2017-11-03 14:02:11','','Chantry','','inherit','closed','closed','','chantry-2','','','2017-11-03 10:02:11','2017-11-03 14:02:11','',15,'https://www.watchhill.ca/wp-content/uploads/2017/03/chantry-1.jpg',0,'attachment','image/jpeg',0),(461,4,'2017-09-20 12:55:37','2017-09-20 16:55:37','[metaslider id=137]\r\n<h2>The Suites</h2>\r\nEach suite at Watch Hill features a view of the Saugeen River or Lake Huron and all rooms have a private ensuite bathroom. All bathrooms are equipped with shampoo, hair dryers and an Eminence hostess gift from our local spa. The house is equipped with central air conditioning.\r\n\r\nOur suites are available for booking from June 1st - September 30th. Â The Harbour Suite; a studio apartment with kitchenette isÂ available October 1st through May 31.\r\n<h2 data-reactid=\"187\">Common Areas</h2>\r\n<p data-reactid=\"187\"><span data-reactid=\"188\">Watch Hillâ€™s common areas include a spectacular Great room, dining room and a large veranda furnished for enjoying outdoor breakfast or just lazing the day away in one of our comfortable chairs. Alternatively, take your breakfast on our sunny patio and then work on your tan or finish your novel in one of our colourful Adirondacks. </span><br data-reactid=\"189\" /><span data-reactid=\"190\">Arrangements can be made to watch the latest movies on the 60â€ Apple-TV over the fireplace in the Great room.</span><br data-reactid=\"191\" /><span data-reactid=\"192\">Common areas have tables suitable for working on a laptop.</span><br data-reactid=\"193\" /><span data-reactid=\"194\">We are pleased to offer our guests the use of an electric vehicle charging unit.</span></p>\r\n\r\n<h2 data-reactid=\"187\">Breakfast</h2>\r\nThe coffee station is available throughout the day with home baked cookies served every afternoon at 3.Â  Breakfasts include continental offerings sourced from local epicures; granola, fresh fruit from the farm, local cheese, jams and maple syrup â€“ and a daily hot entrÃ©e.<span data-reactid=\"225\"> Please contact us if you have any dietary restrictions or concerns</span>; we would be happy to accommodate you.\r\n<h2>Booking</h2>\r\nPlease <a href=\"mailto:info@watchhill.ca\">email</a> or call us at 1-519-513-9065 for more information, or to book a suite.\r\n\r\nVisit the suites\' individual pages to view the calendars for availability.\r\n<div class=\"one-third first\"><a href=\"https://www.watchhill.ca/accommodations/the-huron/\">\r\n<img class=\"alignnone wp-image-175 size-full\" src=\"https://www.watchhill.ca/wp-content/uploads/2017/06/Huron-button.jpg\" alt=\"\" /></a></div>\r\n<div class=\"one-third\"><a href=\"https://www.watchhill.ca/accommodations/the-chantry/\">\r\n<img class=\"wp-image-174 size-full alignnone\" src=\"https://www.watchhill.ca/wp-content/uploads/2017/06/Chantry-button.jpg\" alt=\"\" /></a></div>\r\n<div class=\"one-third\"><a href=\"https://www.watchhill.ca/accommodations/the-saugeen/\">\r\n<img class=\"wp-image-176 size-full alignnone\" src=\"https://www.watchhill.ca/wp-content/uploads/2017/06/Saugeen-button.jpg\" alt=\"\" /></a></div>\r\n<div class=\"clearfix\"></div>','Accommodations','','inherit','closed','closed','','15-revision-v1','','','2017-09-20 12:55:37','2017-09-20 16:55:37','',15,'https://www.watchhill.ca/2017/09/15-revision-v1/',0,'revision','',0),(34,1,'2017-03-07 09:58:06','2017-03-07 14:58:06','http://www.watchhill.ca/wp-content/uploads/2017/03/cropped-watch-hill-favicon-1.png','cropped-watch-hill-favicon-1.png','','inherit','closed','closed','','cropped-watch-hill-favicon-1-png','','','2017-03-07 09:58:06','2017-03-07 14:58:06','',0,'http://www.watchhill.ca/wp-content/uploads/2017/03/cropped-watch-hill-favicon-1.png',0,'attachment','image/png',0),(341,3,'2017-04-25 14:42:11','2017-04-25 18:42:11','Watch Hill is truly Southamptonâ€™s Grande Dame, a Beach House home-away-from-home overlooking the mouth of the Saugeen River where it meanders past a working lighthouse and fishing peer toward Chantry Island on the sparkling blue Huron Lake.\n\nHere are some images of our renovations at Watch Hill\n\n&nbsp;','History of Watch Hill','','inherit','closed','closed','','11-autosave-v1','','','2017-04-25 14:42:11','2017-04-25 18:42:11','',11,'https://www.watchhill.ca/2017/04/11-autosave-v1/',0,'revision','',0),(37,1,'2017-03-07 10:04:28','2017-03-07 15:04:28',' ','','','publish','closed','closed','','37','','','2018-02-22 19:31:06','2018-02-23 00:31:06','',0,'http://www.watchhill.ca/?p=37',1,'nav_menu_item','',0),(38,1,'2017-03-07 10:04:28','2017-03-07 15:04:28',' ','','','publish','closed','closed','','38','','','2018-02-22 19:31:06','2018-02-23 00:31:06','',0,'http://www.watchhill.ca/?p=38',2,'nav_menu_item','',0),(39,1,'2017-03-07 10:04:28','2017-03-07 15:04:28',' ','','','publish','closed','closed','','39','','','2018-02-22 19:31:06','2018-02-23 00:31:06','',7,'http://www.watchhill.ca/?p=39',11,'nav_menu_item','',0),(41,1,'2017-03-07 10:04:28','2017-03-07 15:04:28',' ','','','publish','closed','closed','','41','','','2018-02-22 19:31:06','2018-02-23 00:31:06','',7,'http://www.watchhill.ca/?p=41',3,'nav_menu_item','',0),(42,1,'2017-03-07 10:04:28','2017-03-07 15:04:28',' ','','','publish','closed','closed','','42','','','2018-02-22 19:31:06','2018-02-23 00:31:06','',0,'http://www.watchhill.ca/?p=42',6,'nav_menu_item','',0),(43,1,'2017-03-07 10:04:28','2017-03-07 15:04:28',' ','','','publish','closed','closed','','43','','','2018-02-22 19:31:06','2018-02-23 00:31:06','',15,'http://www.watchhill.ca/?p=43',7,'nav_menu_item','',0),(44,1,'2017-03-07 10:04:28','2017-03-07 15:04:28',' ','','','publish','closed','closed','','44','','','2018-02-22 19:31:06','2018-02-23 00:31:06','',15,'http://www.watchhill.ca/?p=44',8,'nav_menu_item','',0),(45,1,'2017-03-07 10:04:28','2017-03-07 15:04:28',' ','','','publish','closed','closed','','45','','','2018-02-22 19:31:06','2018-02-23 00:31:06','',15,'http://www.watchhill.ca/?p=45',9,'nav_menu_item','',0),(46,1,'2017-03-07 10:04:28','2017-03-07 15:04:28',' ','','','publish','closed','closed','','46','','','2018-02-22 19:31:06','2018-02-23 00:31:06','',0,'http://www.watchhill.ca/?p=46',13,'nav_menu_item','',0),(47,1,'2017-03-07 10:04:28','2017-03-07 15:04:28',' ','','','publish','closed','closed','','47','','','2018-02-22 19:31:06','2018-02-23 00:31:06','',0,'http://www.watchhill.ca/?p=47',14,'nav_menu_item','',0),(51,1,'2017-03-07 16:28:48','2017-03-07 21:28:48','','home-slide-1','Welcome to Watch Hill','inherit','closed','closed','','home-slide-1','','','2017-03-30 11:04:47','2017-03-30 15:04:47','',0,'http://www.watchhill.ca/wp-content/uploads/2017/03/home-slide-1.jpg',0,'attachment','image/jpeg',0),(490,4,'2017-10-30 20:03:53','2017-10-31 00:03:53','At Watch Hill we strive to provide a stress free, fun and relaxing B&amp;B experience.\r\n\r\nOur newly renovated Victorian Beach House is non-smoking and we do not allow pets. Â Our Bernese Mountain Dog, Dooley, is on-site, however, and is not allowed inÂ guest areas.\r\n\r\nWatch HillÂ is tailored to adults; please contact us before booking if your reservationÂ includes children.\r\n\r\nThe Chantry Suite is $225/night, The Huron Suite is $220/night and The Saugeen Suite is $190/night.Â  These suites are available from June 1st - September 30th.\r\n\r\nThe HarbourÂ Suite; a studio apartment with a private entrance, kitchenette and capacity to sleep 4, is available October 1st - May 30th. Â Daily rateÂ  $150/night or $600 per week.Â  Breakfast food items are provided.\r\n\r\nCancellations require 24-hours notice.\r\n\r\nWe are happy to accommodate your dietary needs. Â Please let us know of any restrictions when you make your booking.\r\n\r\n&nbsp;','Rates & Policies','','inherit','closed','closed','','23-revision-v1','','','2017-10-30 20:03:53','2017-10-31 00:03:53','',23,'https://www.watchhill.ca/2017/10/23-revision-v1/',0,'revision','',0),(29,1,'2017-03-06 07:19:09','2017-03-06 12:19:09','Far far away, behind the word mountains, far from the countries Vokalia and Consonantia, there live the blind texts. Separated they live in Bookmarksgrove right at the coast of the Semantics, a large language ocean.\r\n\r\nA small river named Duden flows by their place and supplies it with the necessary regelialia. It is a paradisematic country, in which roasted parts of sentences fly into your mouth.\r\n\r\nEven the all-powerful Pointing has no control about the blind texts it is an almost unorthographic life One day however a small line of blind text by the name of Lorem Ipsum decided to leave for the far World of Grammar.\r\n\r\nThe Big Oxmox advised her not to do so, because there were thousands of bad Commas, wild Question Marks and devious Semikoli, but the Little Blind Text didnâ€™t listen. She packed her seven versalia, put her initial into the belt and made herself on the way.\r\n\r\nWhen she reached the first hills of the Italic Mountains, she had a last view back on the skyline of her hometown Bookmarksgrove, the headline of Alphabet Village and the subline of her own road, the Line Lane. Pityful a rethoric question ran over her cheek, then ','Contact','','inherit','closed','closed','','28-revision-v1','','','2017-03-06 07:19:09','2017-03-06 12:19:09','',28,'http://www.watchhill.ca/2017/03/28-revision-v1/',0,'revision','',0),(28,1,'2017-03-06 07:19:09','2017-03-06 12:19:09','[caption id=\"attachment_159\" align=\"aligncenter\" width=\"300\"]<img class=\"size-medium wp-image-159\" src=\"https://www.watchhill.ca/wp-content/uploads/2017/03/IMGP0756-300x296.jpg\" alt=\"Sue and Richard\" width=\"300\" height=\"296\" /> Your Hosts, Sue &amp; Richard[/caption]\r\n<p style=\"text-align: center;\">PleaseÂ email Â <a href=\"mailto:info@watchhill.ca\">info@watchhill.ca</a> orÂ callÂ 1-519-513-9065 to make Â a booking, or if you have any questions about your stay.</p>\r\n<p style=\"text-align: center;\">Watch Hill Bed &amp; Breakfast</p>\r\n<p style=\"text-align: center;\">24 South Rankin St, Southampton Ontario Â N0H 2L0</p>','Contact','','publish','closed','closed','','contact','','','2017-06-26 15:10:10','2017-06-26 19:10:10','',0,'http://www.watchhill.ca/?page_id=28',5,'page','',0),(415,4,'2017-06-26 15:10:10','2017-06-26 19:10:10','[caption id=\"attachment_159\" align=\"aligncenter\" width=\"300\"]<img class=\"size-medium wp-image-159\" src=\"https://www.watchhill.ca/wp-content/uploads/2017/03/IMGP0756-300x296.jpg\" alt=\"Sue and Richard\" width=\"300\" height=\"296\" /> Your Hosts, Sue &amp; Richard[/caption]\r\n<p style=\"text-align: center;\">PleaseÂ email Â <a href=\"mailto:info@watchhill.ca\">info@watchhill.ca</a> orÂ callÂ 1-519-513-9065 to make Â a booking, or if you have any questions about your stay.</p>\r\n<p style=\"text-align: center;\">Watch Hill Bed &amp; Breakfast</p>\r\n<p style=\"text-align: center;\">24 South Rankin St, Southampton Ontario Â N0H 2L0</p>','Contact','','inherit','closed','closed','','28-revision-v1','','','2017-06-26 15:10:10','2017-06-26 19:10:10','',28,'https://www.watchhill.ca/2017/06/28-revision-v1/',0,'revision','',0),(162,3,'2017-03-21 13:28:22','2017-03-21 17:28:22','[caption id=\"attachment_159\" align=\"aligncenter\" width=\"300\"]<img class=\"size-medium wp-image-159\" src=\"https://www.watchhill.ca/wp-content/uploads/2017/03/IMGP0756-300x296.jpg\" alt=\"Sue and Richard\" width=\"300\" height=\"296\" /> Your Hosts, Sue &amp; Richard[/caption]\r\n<p style=\"text-align: center;\">Please contact us to make a booking, or if you have any questions about your stay.</p>\r\n<p style=\"text-align: center;\">We can be reached via email at info@watchhill.ca or by phone, 1-519-513-9065</p>','Contact','','inherit','closed','closed','','28-revision-v1','','','2017-03-21 13:28:22','2017-03-21 17:28:22','',28,'https://www.watchhill.ca/2017/03/28-revision-v1/',0,'revision','',0),(49,1,'2017-03-07 14:40:20','2017-03-07 19:40:20','','Watch Hill Bed & Breakfast - Logo Image','','inherit','closed','closed','','logo','','','2017-03-07 14:40:57','2017-03-07 19:40:57','',0,'http://www.watchhill.ca/wp-content/uploads/2017/03/logo.jpg',0,'attachment','image/jpeg',0),(50,1,'2017-03-07 16:28:22','2017-03-07 21:28:22','','Home Page','','publish','closed','closed','','new-slider','','','2017-03-30 11:04:47','2017-03-30 15:04:47','',0,'http://www.watchhill.ca/?post_type=ml-slider&#038;p=50',0,'ml-slider','',0),(52,1,'2017-03-07 16:28:50','2017-03-07 21:28:50','','home-slide-2','Welcome to Watch Hill','inherit','closed','closed','','home-slide-2','','','2017-03-30 11:04:47','2017-03-30 15:04:47','',0,'http://www.watchhill.ca/wp-content/uploads/2017/03/home-slide-2.jpg',1,'attachment','image/jpeg',0),(53,1,'2017-03-07 16:28:55','2017-03-07 21:28:55','','home-slide-3','','inherit','closed','closed','','home-slide-3','','','2017-03-30 11:04:47','2017-03-30 15:04:47','',0,'http://www.watchhill.ca/wp-content/uploads/2017/03/home-slide-3.jpg',2,'attachment','image/jpeg',0),(54,1,'2017-03-07 16:29:00','2017-03-07 21:29:00','Watch Hill by night','Watch Hill by night','Watch Hill by night','inherit','closed','closed','','home-slide-4','','','2018-02-22 20:01:06','2018-02-23 01:01:06','',0,'http://www.watchhill.ca/wp-content/uploads/2017/03/home-slide-4.jpg',3,'attachment','image/jpeg',0),(55,1,'2017-03-08 14:45:20','2017-03-08 19:45:20','<div class=\"entry-content\">\r\n\r\nThis privacy policy is intended to inform you how we use information that is collected from you on this website. Please read the privacy policy before using this website or submitting any information through this website.\r\n\r\n<strong>Collection of Information </strong>\r\n\r\n<strong>Personal Information </strong> When you send us an email, we require that you provide your name and email address so that we can respond to your specific request. We will never sell, trade or share this information with any third party. Other information you provide, such as location data for rare species sightings, will be shared only with your permission.\r\n\r\n<strong>Cookie/Tracking Technologies </strong> Our website may use cookie and tracking technologies to gather information about your web browser and operating system, to monitor the number and nature of visitors, and to understand how visitors are using the website. Our website may also use cookies for advanced features such as personalization. No personal information is collected via cookies and tracking technology.\r\n\r\n<strong>Information Security </strong> No personal information is stored on this website or is accessible through this website. Feedback submitted through the website may be monitored by our webmaster for the purposes of ensuring proper operation of the website.\r\n\r\nEmail generated through links provided on this site is not secured or encrypted. <strong>Please do not provide any confidential or sensitive information via email.</strong>\r\n\r\n<strong>Privacy Contact Information </strong> If you have any questions, concerns, or comments about this privacy policy, please see our main <a href=\"https://www.watchhill.ca/contact/\">Contact Page.</a>\r\n\r\n<strong>Changes to This Policy </strong> Changes may be made to this privacy policy without notice. However, any changes to this privacy policy will be made available on this page.\r\n\r\n<strong>Privacy Policies on Other Websites </strong> This privacy policy applies only to this website. If you visit other sites from links provided on this website, please ensure that you review the privacy policies posted at those websites.\r\n\r\n</div>','Privacy Policy','','publish','closed','closed','','privacy-policy','','','2017-03-24 14:30:41','2017-03-24 18:30:41','',0,'http://www.watchhill.ca/?page_id=55',6,'page','',0),(56,1,'2017-03-08 14:45:20','2017-03-08 19:45:20','Far far away, behind the word mountains, far from the countries Vokalia and Consonantia, there live the blind texts. Separated they live in Bookmarksgrove right at the coast of the Semantics, a large language ocean.\r\n\r\nA small river named Duden flows by their place and supplies it with the necessary regelialia. It is a paradisematic country, in which roasted parts of sentences fly into your mouth.\r\n\r\nEven the all-powerful Pointing has no control about the blind texts it is an almost unorthographic life One day however a small line of blind text by the name of Lorem Ipsum decided to leave for the far World of Grammar.\r\n\r\nThe Big Oxmox advised her not to do so, because there were thousands of bad Commas, wild Question Marks and devious Semikoli, but the Little Blind Text didnâ€™t listen. She packed her seven versalia, put her initial into the belt and made herself on the way.\r\n\r\nWhen she reached the first hills of the Italic Mountains, she had a last view back on the skyline of her hometown Bookmarksgrove, the headline of Alphabet Village and the subline of her own road, the Line Lane. Pityful a rethoric question ran over her cheek, then ','Privacy Policy','','inherit','closed','closed','','55-revision-v1','','','2017-03-08 14:45:20','2017-03-08 19:45:20','',55,'http://www.watchhill.ca/2017/03/55-revision-v1/',0,'revision','',0),(159,3,'2017-03-21 13:25:24','2017-03-21 17:25:24','','Sue Carruthers and Richard Lee at Watch Hill B&B','Your Hosts, Sue & Richard','inherit','closed','closed','','imgp0756','','','2017-03-30 14:26:34','2017-03-30 18:26:34','',28,'https://www.watchhill.ca/wp-content/uploads/2017/03/IMGP0756.jpg',0,'attachment','image/jpeg',0),(572,6,'2018-02-22 17:27:18','2018-02-22 22:27:18','[caption id=\"attachment_164\" align=\"alignright\" width=\"219\"]<img class=\"size-medium wp-image-164\" src=\"https://www.watchhill.ca/wp-content/uploads/2017/03/IMGP0761-219x300.jpg\" alt=\"Sue and Richard\" width=\"219\" height=\"300\" /> Sue &amp; Richard[/caption]\n\n<span class=\"text_5mbkop-o_O-size_reduced_1oti1ib-o_O-inline_g86r3e\" data-reactid=\"369\"><span data-reactid=\"370\">We are retired (this time we mean it) from very rewarding careers and have spent the last two years remodelling and renovating Watch Hill. Â Friends who visited remarked on theÂ beauty of Watch Hill and its views and several encouraged us to share it. So, here we are. Hosting is one of our favourite things to do. We have stayed in numerous B&amp;Bs ourselves and believe the experience can be far superior to a rentedÂ hotel room. </span></span>\n\n<span class=\"text_5mbkop-o_O-size_reduced_1oti1ib-o_O-inline_g86r3e\" data-reactid=\"369\"><span data-reactid=\"372\">Won\'t you join us?</span></span>','Your Hosts','','inherit','closed','closed','','13-autosave-v1','','','2018-02-22 17:27:18','2018-02-22 22:27:18','',13,'https://www.watchhill.ca/2018/02/13-autosave-v1/',0,'revision','',0),(408,4,'2017-06-21 12:31:10','2017-06-21 16:31:10','[metaslider id=80]\n<p style=\"text-align: center;\">Marvel at the magnificent sunsets over Chantry Island or watch boats sail by on the beautiful Saugeen River from the Chantry Suite alcove. Enjoy Â central air conditioning, a King size bed, fireplace TV (including Netflix) and a three-piece en suite bathroom.</p>\n<p style=\"text-align: center;\">Priceâ€¦.$210</p>\n<p style=\"text-align: center;\">Please view the calendar for availability,and <a href=\"mailto:info@watchhill.ca\">email</a> or call us at 1-519-513-9065Â  to book this room.</p>\n<p style=\"text-align: center;\">[wpsbc id=\"2\" title=\"yes\" legend=\"yes\" dropdown=\"yes\" start=\"7\" display=\"4\" language=\"auto\" month=\"6\" year=\"0\" history=\"1\"]</p>','The Chantry','','inherit','closed','closed','','19-autosave-v1','','','2017-06-21 12:31:10','2017-06-21 16:31:10','',19,'https://www.watchhill.ca/2017/06/19-autosave-v1/',0,'revision','',0),(281,5,'2017-03-29 15:02:33','2017-03-29 19:02:33','<img class=\"aligncenter wp-image-118 size-large\" src=\"https://www.watchhill.ca/wp-content/uploads/2017/03/7-1024x768.jpg\" alt=\"\" width=\"1024\" height=\"768\" />\n<div class=\"simple-format-container\" data-reactid=\"186\">\n<div class=\"simple-format-container\" data-reactid=\"208\">\n<p data-reactid=\"209\"><span data-reactid=\"210\">Watch Hill is truly Southamptonâ€™s Grande Dame, a Beach House home-away-from-home overlooking the mouth of the Saugeen River where it meanders past a working lighthouse and fishing pier toward Chantry Island and on to sparkling blue Lake Huron.</span></p>\n<p data-reactid=\"209\">Steps from the front door canoe, kayak, swim, fish, golf, hike, bike, x country ski, snowmobile, stroll the walking trail to downtown shops and delis or bike the rail-trail for miles into villages \"down the way\".Â <br data-reactid=\"211\" /><span data-reactid=\"212\">Downtown offers no shortage of attractions, boutiques,and dining establishments. Fun days, adventures and special occasions can be arranged (please ask us about this); explore the beaches, spend a day on the river, bike the trails or hike the paths then enjoy a massage or yoga on the porch.</span></p>\n<p data-reactid=\"209\"></p>\n\n</div>\n</div>','About','','inherit','closed','closed','','7-autosave-v1','','','2017-03-29 15:02:33','2017-03-29 19:02:33','',7,'https://www.watchhill.ca/2017/03/7-autosave-v1/',0,'revision','',0),(458,4,'2018-01-15 10:24:07','2018-01-15 15:24:07','At Watch Hill we strive to provide a stress free, fun and relaxing B&amp;B experience.\n\nOur newly renovated Victorian Beach House is non-smoking and we do not allow pets. Â Our Bernese Mountain Dog, Dooley, is on-site, however, and is not allowed inÂ guest areas.\n\nWatch HillÂ is tailored to adults; please contact us before booking if your reservationÂ includes children.\n\nThe Chantry Suite is $225/night, The Huron Suite is $220/night and The Saugeen Suite is $190/night.Â  These suites are available May 11thÂ - October 19th.\n\nThe HarbourÂ Suite; a studio apartment with a private entrance, kitchenette and capacity to sleep 4, is available November 1st - April 30th. Â Daily rateÂ  $150/night or $600 per week.Â  Breakfast food items are provided.\n\n<strong>Booking Deposit</strong>\n\nWe require one nightâ€™s fee if booking 2 or 3 nights or $100 if booking for less than two nights. Guests booking for more than 3 nights will be charged 50% of their booking fee to secure their reservation.\n\n<strong>Cancellation Policy</strong>\n\nOur business is seasonal and reservations are usually made well in advance of guest arrival. We rarely get last-minute bookings which means a cancelled room often remains empty. And because we have a limited inventory (three suites) the loss of revenue on one suite is significant.\n\nWe require 7 nights notice in order to refund your booking deposit and to cancel your booking.Â  A cancellation with less than 48 hours notice will result in a full booking charge.Â  A booking (night) is calculated beginning at the check-in time of 3:00 p.m.\n\n<strong>Check inâ€¦Check out</strong>\n\nCheck-in is normally between 3:00 p.m. and 5:00 p.m. unless other arrangements are made.\n\nCheck out is normally 11:00 a.m. unless other arrangements are made.\n\nWe are happy to accommodate your dietary needs. Â Please let us know of any restrictions when you make your booking.\n\n&nbsp;','Rates & Policies','','inherit','closed','closed','','23-autosave-v1','','','2018-01-15 10:24:07','2018-01-15 15:24:07','',23,'https://www.watchhill.ca/2017/09/23-autosave-v1/',0,'revision','',0),(489,4,'2017-10-30 19:51:14','2017-10-30 23:51:14','At Watch Hill we strive to provide a stress free, fun and relaxing B&amp;B experience.\r\n\r\nOur newly renovated Victorian Beach House is non-smoking and we do not allow pets. Â Our Bernese Mountain Dog, Dooley, is on-site, however, and is not allowed inÂ guest areas.\r\n\r\nWatch HillÂ is tailored to adults; please contact us before booking if your reservationÂ includes children.\r\n\r\nThe Chantry and Huron Suites are $210/night, and the Saugeen suite is $180/night. Â These suites are available from June 1st - September 30th.\r\n\r\nThe HarbourÂ Suite; a studio apartment with kitchenette and capacity to sleep 4, is available October 1st - May 30th. Â Daily rateÂ  $150.\r\n\r\nCancellations require 24-hours notice.\r\n\r\nWe are happy to accommodate your dietary needs. Â Please let us know of any restrictions when you make your booking.\r\n\r\n&nbsp;','Rates & Policies','','inherit','closed','closed','','23-revision-v1','','','2017-10-30 19:51:14','2017-10-30 23:51:14','',23,'https://www.watchhill.ca/2017/10/23-revision-v1/',0,'revision','',0),(459,4,'2017-09-20 12:51:20','2017-09-20 16:51:20','At Watch Hill we strive to provide a stress free, fun and relaxing B&amp;B experience.\r\n\r\nOur newly renovated Victorian Beach House is non-smoking and we do not allow pets. Â Our Bernese Mountain Dog, Dooley, is on-site, however, and is not allowed inÂ guest areas.\r\n\r\nWatch HillÂ is tailored to adults; please contact us before booking if your reservationÂ includes children.\r\n\r\nThe Chantry and Huron Suites are $210/night, and the Saugeen suite is $180/night. Â These suites are available from June 1st - September 30th.\r\n\r\nThe Huron Suite; a studio apartment with kitchenette and capacity to sleep 4, is available October 1st - May 30th. Â Daily rate in October and May,$150. Daily rate November through April $100. Weekly rate $600.\r\n\r\nCancellations require 24-hours notice.\r\n\r\nWe are happy to accommodate your dietary needs. Â Please let us know of any restrictions when you make your booking.\r\n\r\n&nbsp;','Rates & Policies','','inherit','closed','closed','','23-revision-v1','','','2017-09-20 12:51:20','2017-09-20 16:51:20','',23,'https://www.watchhill.ca/2017/09/23-revision-v1/',0,'revision','',0),(69,3,'2017-03-15 10:31:38','2017-03-15 14:31:38','','Huron-Suite','','inherit','closed','closed','','huron-suite-2','','','2017-04-26 13:07:46','2017-04-26 17:07:46','',68,'https://www.watchhill.ca/wp-content/uploads/2017/03/Huron-Suite.jpg',0,'attachment','image/jpeg',0),(70,3,'2017-03-15 10:33:17','2017-03-15 14:33:17','','ensuite1','','inherit','closed','closed','','ensuite1','','','2017-04-26 13:07:46','2017-04-26 17:07:46','',68,'https://www.watchhill.ca/wp-content/uploads/2017/03/ensuite1.jpg',3,'attachment','image/jpeg',0),(71,3,'2017-03-15 10:33:27','2017-03-15 14:33:27','','1M1A1540','','inherit','closed','closed','','1m1a1540','','','2017-03-15 15:04:31','2017-03-15 19:04:31','',68,'https://www.watchhill.ca/wp-content/uploads/2017/03/1M1A1540.jpg',4,'attachment','image/jpeg',0),(72,3,'2017-03-15 10:33:36','2017-03-15 14:33:36','','1M1A1286_b','','inherit','closed','closed','','1m1a1286_b','','','2017-04-26 13:07:46','2017-04-26 17:07:46','',68,'https://www.watchhill.ca/wp-content/uploads/2017/03/1M1A1286_b.jpg',2,'attachment','image/jpeg',0),(73,3,'2017-03-15 10:33:44','2017-03-15 14:33:44','','1M1A1207_b','','inherit','closed','closed','','1m1a1207_b','','','2017-04-26 13:07:46','2017-04-26 17:07:46','',68,'https://www.watchhill.ca/wp-content/uploads/2017/03/1M1A1207_b.jpg',1,'attachment','image/jpeg',0),(400,3,'2017-06-21 08:49:22','2017-06-21 12:49:22','[metaslider id=92]\r\n<p style=\"text-align: center;\">The Saugeen Suite features a three-piece en suite bathroom, Queen size bed, and a view of the Saugeen River. Comfy and cozy, this room appeals to those who like to sleep a little later.</p>\r\n<p style=\"text-align: center;\">Priceâ€¦.$180</p>\r\n<p style=\"text-align: center;\">Please view the calendar for availability, and <a href=\"mailto:info@watchhill.ca\">email</a> or call us at 1-519-513-9065 to book this room.</p>\r\n<p style=\"text-align: center;\">[wpsbc id=\"3\" title=\"yes\" legend=\"yes\" dropdown=\"yes\" start=\"7\" display=\"4\" language=\"auto\" month=\"6\" year=\"0\" history=\"1\"]</p>','The Saugeen','','inherit','closed','closed','','21-revision-v1','','','2017-06-21 08:49:22','2017-06-21 12:49:22','',21,'https://www.watchhill.ca/2017/06/21-revision-v1/',0,'revision','',0),(382,4,'2017-06-14 22:24:17','2017-06-15 02:24:17','[metaslider id=92]\r\n<p style=\"text-align: center;\">The Saugeen Suite features a three-piece en suite bathroom, Queen size bed, and a view of the Saugeen River. Comfy and cozy, this room appeals to those who like to sleep a little later.</p>\r\n<p style=\"text-align: center;\">Priceâ€¦.$180</p>\r\n<p style=\"text-align: center;\">Please view the calendar for availability, and <a href=\"mailto:info@watchhill.ca\">email</a> or call us at 1-519-513-9065 to book this room, or follow the link below to book via Airbnb.</p>\r\n<p style=\"text-align: center;\">[wpsbc id=\"3\" title=\"yes\" legend=\"yes\" dropdown=\"yes\" start=\"7\" display=\"4\" language=\"auto\" month=\"6\" year=\"0\" history=\"1\"]</p>\r\n<p style=\"text-align: left;\">Book this room <a href=\"https://www.airbnb.ca/rooms/14838721?s=0tR1BQdF\" target=\"_blank\" rel=\"noopener noreferrer\">with Airbnb</a></p>','The Saugeen','','inherit','closed','closed','','21-revision-v1','','','2017-06-14 22:24:17','2017-06-15 02:24:17','',21,'https://www.watchhill.ca/2017/06/21-revision-v1/',0,'revision','',0),(385,3,'2017-06-19 08:34:04','2017-06-19 12:34:04','<h1 style=\"text-align: center;\">A bright and airy, luxurious Bed &amp; Breakfast in Southampton, Ontario.</h1>\r\n<h2 style=\"text-align: center;\">Truly a Beach House.</h2>\r\nWatch Hill is Southamptonâ€™s Grande Dame, a Beach House home-away-from-home overlooking the mouth of the Saugeen River where it meanders past a working lighthouse and fishing pier toward Chantry Island and on to sparkling Lake Huron. The beach is steps from our front porch; Southampton is famous for its sunsets.\r\n<p style=\"text-align: center;\"><a href=\"http://www.ourhomes.ca/\" target=\"_blank\" rel=\"noopener noreferrer\">Our Homes Magazine</a> recently featured Watch Hill in theirÂ  <a href=\"http://www.ourhomes.ca/greybruce/archive/591\" target=\"_blank\" rel=\"noopener noreferrer\">Grey/Bruce County Summer 2017 issue.</a> Find a glossy paper copy, or have a look at the pdf online <a href=\"http://www.ourhomes.ca/uploads/pdfs/Feature_OH_GreyBruce_2017Summer.pdf\" target=\"_blank\" rel=\"noopener noreferrer\">here</a>, and the flipbook <a href=\"http://digital.lmgroup.com/i/832764-summer-2017\" target=\"_blank\" rel=\"noopener noreferrer\">here.</a> ViewÂ  before and after pictures of the 2 year renovation process that brought our Victorian Beach house dream to life.</p>','Home','','inherit','closed','closed','','5-revision-v1','','','2017-06-19 08:34:04','2017-06-19 12:34:04','',5,'https://www.watchhill.ca/2017/06/5-revision-v1/',0,'revision','',0),(76,3,'2017-03-15 10:36:08','2017-03-15 14:36:08','','Huron Suite','','publish','closed','closed','','new-slider-2','','','2017-04-26 13:07:46','2017-04-26 17:07:46','',0,'https://www.watchhill.ca/?post_type=ml-slider&#038;p=76',0,'ml-slider','',0),(80,3,'2017-03-15 10:43:42','2017-03-15 14:43:42','','Chantry Suite','','publish','closed','closed','','new-slider-3','','','2017-03-15 15:15:59','2017-03-15 19:15:59','',0,'https://www.watchhill.ca/?post_type=ml-slider&#038;p=80',0,'ml-slider','',0),(77,3,'2017-03-30 12:27:20','2017-03-30 16:27:20','[metaslider id=76]\n<p style=\"text-align: center;\">Inhale the sun washed breeze and listen to the waves from the Huron Suite with its spectacular view of Lake Huron featuring a Queen size bed, fireplace, TV (including Netflix), and a full four-piece ensuite bathroom.</p>\n<p style=\"text-align: center;\">Priceâ€¦$210</p>\n<p style=\"text-align: center;\">Please <a href=\"mailto:info@watchhill.ca\">email</a> or call us at 1-519-513-9065 for availability and to book this room, or follow the link below to book via Airbnb.</p>\n<p style=\"text-align: center;\">Book this room <a href=\"https://www.airbnb.ca/rooms/14839468?s=0tR1BQdF\" target=\"_blank\">with Airbnb</a></p>\n[wpsbc id=\"1\" title=\"yes\" legend=\"yes\" dropdown=\"yes\" start=\"7\" display=\"4\" language=\"auto\" month=\"6\" year=\"0\" history=\"1\"]','The Huron','','inherit','closed','closed','','17-autosave-v1','','','2017-03-30 12:27:20','2017-03-30 16:27:20','',17,'https://www.watchhill.ca/2017/03/17-autosave-v1/',0,'revision','',0),(304,3,'2017-03-30 11:08:42','2017-03-30 15:08:42','[metaslider id=80]\r\n<p style=\"text-align: center;\">Marvel at the magnificent sunsets over Chantry Island or watch boats sail by on the beautiful Saugeen River from the Chantry Suite alcove. Enjoy a King size bed, fireplace and a three-piece en suite bathroom.</p>\r\n<p style=\"text-align: center;\">Priceâ€¦.$210</p>\r\n<p style=\"text-align: center;\">Please <a href=\"mailto:info@watchhill.ca\">email</a> or call us at 1-519-513-9065 for availability and to book this room, or follow the link below to book via Airbnb.</p>\r\n<p style=\"text-align: center;\">Book this room <a href=\"https://www.airbnb.ca/rooms/14839417?s=0tR1BQdF\" target=\"_blank\">with Airbnb</a></p>\r\n<p style=\"text-align: center;\">[wpsbc id=\"2\" title=\"yes\" legend=\"yes\" dropdown=\"yes\" start=\"7\" display=\"4\" language=\"auto\" month=\"6\" year=\"0\" history=\"1\"]</p>','The Chantry','','inherit','closed','closed','','19-revision-v1','','','2017-03-30 11:08:42','2017-03-30 15:08:42','',19,'https://www.watchhill.ca/2017/03/19-revision-v1/',0,'revision','',0),(81,3,'2017-03-15 10:44:07','2017-03-15 14:44:07','','Chantry-Suite','','inherit','closed','closed','','chantry-suite','','','2017-03-15 10:46:07','2017-03-15 14:46:07','',0,'https://www.watchhill.ca/wp-content/uploads/2017/03/Chantry-Suite.jpg',1,'attachment','image/jpeg',0),(82,3,'2017-03-15 10:44:37','2017-03-15 14:44:37','','1M1A1554','','inherit','closed','closed','','1m1a1554','','','2017-03-15 15:15:59','2017-03-15 19:15:59','',0,'https://www.watchhill.ca/wp-content/uploads/2017/03/1M1A1554.jpg',0,'attachment','image/jpeg',0),(83,3,'2017-03-15 10:44:46','2017-03-15 14:44:46','','1M1A1572','','inherit','closed','closed','','1m1a1572','','','2017-03-15 15:15:59','2017-03-15 19:15:59','',0,'https://www.watchhill.ca/wp-content/uploads/2017/03/1M1A1572.jpg',1,'attachment','image/jpeg',0),(84,3,'2017-03-15 10:44:54','2017-03-15 14:44:54','','1M1A1586','','inherit','closed','closed','','1m1a1586','','','2017-03-15 15:15:59','2017-03-15 19:15:59','',0,'https://www.watchhill.ca/wp-content/uploads/2017/03/1M1A1586.jpg',3,'attachment','image/jpeg',0),(85,3,'2017-03-15 10:45:01','2017-03-15 14:45:01','','1M1A1580','','inherit','closed','closed','','1m1a1580','','','2017-03-15 15:15:59','2017-03-15 19:15:59','',0,'https://www.watchhill.ca/wp-content/uploads/2017/03/1M1A1580.jpg',4,'attachment','image/jpeg',0),(87,3,'2017-03-15 10:45:40','2017-03-15 14:45:40','','1M1A1599','','inherit','closed','closed','','1m1a1599','','','2017-03-15 15:15:59','2017-03-15 19:15:59','',0,'https://www.watchhill.ca/wp-content/uploads/2017/03/1M1A1599.jpg',2,'attachment','image/jpeg',0),(88,3,'2017-03-15 10:45:57','2017-03-15 14:45:57','','1M1A1606','','inherit','closed','closed','','1m1a1606','','','2017-03-15 15:15:59','2017-03-15 19:15:59','',0,'https://www.watchhill.ca/wp-content/uploads/2017/03/1M1A1606.jpg',5,'attachment','image/jpeg',0),(89,3,'2017-03-15 10:46:05','2017-03-15 14:46:05','','1M1A1608','','inherit','closed','closed','','1m1a1608','','','2017-03-15 15:15:59','2017-03-15 19:15:59','',0,'https://www.watchhill.ca/wp-content/uploads/2017/03/1M1A1608.jpg',6,'attachment','image/jpeg',0),(308,3,'2017-03-30 11:52:53','2017-03-30 15:52:53','[metaslider id=92]\r\n<p style=\"text-align: center;\">The Saugeen Suite features a three-piece ensuite bathroom, fireplace,Queen size bed, TV (including Netflix) and a view of the Saugeen River. Comfy and cozy, this room appeals to those who like to sleep a little later.</p>\r\n<p style=\"text-align: center;\">Priceâ€¦.$180</p>\r\n<p style=\"text-align: center;\">Please <a href=\"mailto:info@watchhill.ca\">email</a> or call us at 1-519-513-9065 for availability and to book this room, or follow the link below to book via Airbnb.</p>\r\n<p style=\"text-align: center;\">Book this room <a href=\"https://www.airbnb.ca/rooms/14838721?s=0tR1BQdF\" target=\"_blank\">with Airbnb</a></p>\r\n<p style=\"text-align: center;\">[wpsbc id=\"3\" title=\"yes\" legend=\"yes\" dropdown=\"yes\" start=\"1\" display=\"4\" language=\"auto\" month=\"0\" year=\"0\" history=\"1\"]</p>','The Saugeen','','inherit','closed','closed','','21-revision-v1','','','2017-03-30 11:52:53','2017-03-30 15:52:53','',21,'https://www.watchhill.ca/2017/03/21-revision-v1/',0,'revision','',0),(99,3,'2017-03-15 11:00:25','2017-03-15 15:00:25','','Front Porch - Watch Hill Bed & Breakfast','','inherit','closed','closed','','1m1a0821','','','2017-03-30 14:23:25','2017-03-30 18:23:25','',96,'https://www.watchhill.ca/wp-content/uploads/2017/03/1M1A0821.jpg',0,'attachment','image/jpeg',0),(100,3,'2017-03-15 11:00:27','2017-03-15 15:00:27','','Patio at Watch Hill B&B','','inherit','closed','closed','','1m1a0890','','','2017-03-30 14:23:22','2017-03-30 18:23:22','',96,'https://www.watchhill.ca/wp-content/uploads/2017/03/1M1A0890.jpg',0,'attachment','image/jpeg',0),(101,3,'2017-03-15 11:00:33','2017-03-15 15:00:33','','Patio at Watch Hill B&B','','inherit','closed','closed','','1m1a0914','','','2017-03-30 14:23:20','2017-03-30 18:23:20','',96,'https://www.watchhill.ca/wp-content/uploads/2017/03/1M1A0914.jpg',5,'attachment','image/jpeg',0),(102,3,'2017-03-15 11:00:37','2017-03-15 15:00:37','','The Great Room','','inherit','closed','closed','','1m1a1355','','','2017-03-30 14:23:18','2017-03-30 18:23:18','',96,'https://www.watchhill.ca/wp-content/uploads/2017/03/1M1A1355.jpg',0,'attachment','image/jpeg',0),(103,3,'2017-03-15 11:00:40','2017-03-15 15:00:40','','Watch Netflix on the 60\" Apple TV','','inherit','closed','closed','','1m1a1379','','','2017-03-30 14:24:51','2017-03-30 18:24:51','',96,'https://www.watchhill.ca/wp-content/uploads/2017/03/1M1A1379.jpg',2,'attachment','image/jpeg',0),(104,3,'2017-03-15 11:00:43','2017-03-15 15:00:43','','The Great Room','','inherit','closed','closed','','1m1a1383','','','2017-03-30 14:23:14','2017-03-30 18:23:14','',96,'https://www.watchhill.ca/wp-content/uploads/2017/03/1M1A1383.jpg',1,'attachment','image/jpeg',0),(105,3,'2017-03-15 11:00:45','2017-03-15 15:00:45','','The Great Room','','inherit','closed','closed','','1m1a1388','','','2017-03-30 14:23:12','2017-03-30 18:23:12','',96,'https://www.watchhill.ca/wp-content/uploads/2017/03/1M1A1388.jpg',0,'attachment','image/jpeg',0),(106,3,'2017-03-15 11:00:59','2017-03-15 15:00:59','Watch Hillâ€™s common areas include a spectacular Great room, dining room and a large veranda furnished for enjoying outdoor breakfast or just lazing the day away in one of our comfortable chairs.\n\n&nbsp;','Gallery','','inherit','closed','closed','','9-autosave-v1','','','2017-03-15 11:00:59','2017-03-15 15:00:59','',9,'https://www.watchhill.ca/2017/03/9-autosave-v1/',0,'revision','',0),(111,3,'2017-03-15 11:04:40','2017-03-15 15:04:40','','Grand Piano in the Great Room','','inherit','closed','closed','','1m1a1363','','','2017-03-30 14:23:05','2017-03-30 18:23:05','',96,'https://www.watchhill.ca/wp-content/uploads/2017/03/1M1A1363.jpg',0,'attachment','image/jpeg',0),(112,3,'2017-03-15 11:05:10','2017-03-15 15:05:10','','Dining Room','','inherit','closed','closed','','1m1a1623_b','','','2017-03-30 14:23:04','2017-03-30 18:23:04','',96,'https://www.watchhill.ca/wp-content/uploads/2017/03/1M1A1623_b.jpg',6,'attachment','image/jpeg',0),(113,3,'2017-03-15 11:06:02','2017-03-15 15:06:02','','Dining Room','','inherit','closed','closed','','1m1a1640','','','2017-03-30 14:23:02','2017-03-30 18:23:02','',96,'https://www.watchhill.ca/wp-content/uploads/2017/03/1M1A1640.jpg',0,'attachment','image/jpeg',0),(114,3,'2017-03-15 11:11:49','2017-03-15 15:11:49','Steps from the front door, canoe, kayak, swim, fish, stroll the walking trail to downtown shops and delis or bike the rail trail for miles into villages â€œdown the wayâ€.Â <span data-reactid=\"180\">Marvel at the magnificent sunsets over Chantry Island or watch boats pass by on the beautiful Saugeen River.</span>\r\n<p data-reactid=\"209\"><span data-reactid=\"212\">Downtown Southampton offers no shortage of attractions, boutiques and dining establishments. Fun days, adventures and special occasions can be arranged (please ask us about this); explore the beaches, spend time on the river, bike the trails or hike the paths and complete your day with a massage or yoga on the porch.</span></p>\r\nContact us and we would be more than happy to give you more information, or to arrange activities for you during your stay.\r\n<h3 style=\"text-align: center;\">Summer Activities</h3>\r\n[foogallery id=\"115\"]\r\n\r\n&nbsp;\r\n<h3 style=\"text-align: center;\">Winter Activities</h3>\r\n[foogallery id=\"663\"]','The Area','','publish','closed','closed','','the-area','','','2018-02-22 19:56:09','2018-02-23 00:56:09','',7,'https://www.watchhill.ca/?page_id=114',0,'page','',0),(115,3,'2017-03-15 11:08:14','2017-03-15 15:08:14','','Summer Activities','','publish','closed','closed','','activities','','','2018-02-22 19:55:09','2018-02-23 00:55:09','',0,'https://www.watchhill.ca/?post_type=foogallery&#038;p=115',0,'foogallery','',0),(116,3,'2017-03-15 11:08:42','2017-03-15 15:08:42','','Swimming in Lake Huron','Swimming in Lake Huron','inherit','closed','closed','','2f44c325','','','2017-03-29 12:53:39','2017-03-29 16:53:39','',115,'https://www.watchhill.ca/wp-content/uploads/2017/03/2F44C325-.jpg',0,'attachment','image/jpeg',0),(117,3,'2017-03-15 11:08:46','2017-03-15 15:08:46','If you canoe down the river...','If you canoe down the river...','If you canoe down the river...','inherit','closed','closed','','5','','','2018-02-22 19:46:19','2018-02-23 00:46:19','',115,'https://www.watchhill.ca/wp-content/uploads/2017/03/5.png',0,'attachment','image/png',0),(118,3,'2017-03-15 11:08:51','2017-03-15 15:08:51','','Lighthouse at Sunset','Lighthouse at Sunset, Chantry Island and Lake Huron','inherit','closed','closed','','7','','','2017-03-30 14:30:42','2017-03-30 18:30:42','',115,'https://www.watchhill.ca/wp-content/uploads/2017/03/7.jpg',0,'attachment','image/jpeg',0),(119,3,'2017-03-15 11:08:56','2017-03-15 15:08:56','','Golfing','Golfing','inherit','closed','closed','','8','','','2017-03-29 12:53:03','2017-03-29 16:53:03','',115,'https://www.watchhill.ca/wp-content/uploads/2017/03/8.png',0,'attachment','image/png',0),(120,3,'2017-03-15 11:09:00','2017-03-15 15:09:00','','Kayaking','Kayaking','inherit','closed','closed','','9','','','2017-03-29 12:52:51','2017-03-29 16:52:51','',115,'https://www.watchhill.ca/wp-content/uploads/2017/03/9.png',0,'attachment','image/png',0),(121,3,'2017-03-15 11:09:03','2017-03-15 15:09:03','','Sailboats on Lake Huron','Sailboats on Lake Huron','inherit','closed','closed','','10','','','2017-03-29 12:52:39','2017-03-29 16:52:39','',115,'https://www.watchhill.ca/wp-content/uploads/2017/03/10.png',0,'attachment','image/png',0),(122,3,'2017-03-15 11:09:05','2017-03-15 15:09:05','','Southampton Arts Centre Art School','Southampton Arts Centre Art School','inherit','closed','closed','','11','','','2017-03-29 12:52:18','2017-03-29 16:52:18','',115,'https://www.watchhill.ca/wp-content/uploads/2017/03/11.jpg',0,'attachment','image/jpeg',0),(123,3,'2017-03-15 11:09:07','2017-03-15 15:09:07','','Southampton Summer Music Camp','Southampton Summer Music Camp','inherit','closed','closed','','12','','','2017-03-29 12:55:52','2017-03-29 16:55:52','',115,'https://www.watchhill.ca/wp-content/uploads/2017/03/12.jpg',0,'attachment','image/jpeg',0),(124,3,'2017-03-15 11:09:23','2017-03-15 15:09:23','','Lake Huron','Lake Huron ','inherit','closed','closed','','20161005_190228','','','2017-03-29 12:55:24','2017-03-29 16:55:24','',115,'https://www.watchhill.ca/wp-content/uploads/2017/03/20161005_190228.jpg',0,'attachment','image/jpeg',0),(125,3,'2017-03-15 11:09:27','2017-03-15 15:09:27','','steps from the beach','steps from the beach','inherit','closed','closed','','bebd9646','','','2018-02-06 01:46:23','2018-02-06 06:46:23','',115,'https://www.watchhill.ca/wp-content/uploads/2017/03/BEBD9646-.jpg',0,'attachment','image/jpeg',0),(126,3,'2017-03-15 11:09:36','2017-03-15 15:09:36','','Watch Hill B&B','Watch Hill B&B','inherit','closed','closed','','exterior','','','2017-03-29 12:55:08','2017-03-29 16:55:08','',115,'https://www.watchhill.ca/wp-content/uploads/2017/03/exterior.jpg',0,'attachment','image/jpeg',0),(127,3,'2017-03-15 11:09:40','2017-03-15 15:09:40','','Sunset over Lake Huron and the Saugeen River from our veranda at Watch Hill, Southampton, Ontario','from our veranda','inherit','closed','closed','','from-our-veranda','','','2017-03-30 14:29:28','2017-03-30 18:29:28','',115,'https://www.watchhill.ca/wp-content/uploads/2017/03/from-our-veranda.jpg',0,'attachment','image/jpeg',0),(128,3,'2017-03-15 11:09:45','2017-03-15 15:09:45','','Lighthouse on Lake Huron near Chantry Island, Southampton Ontario','Lighthouse','inherit','closed','closed','','resized_20161008_183802','','','2017-03-30 14:28:29','2017-03-30 18:28:29','',115,'https://www.watchhill.ca/wp-content/uploads/2017/03/Resized_20161008_183802.jpg',0,'attachment','image/jpeg',0),(129,3,'2017-03-15 11:10:05','2017-03-15 15:10:05','','Saugeen River Sunset Southampton Ontario','Saugeen River Sunset','inherit','closed','closed','','river','','','2017-03-30 14:27:42','2017-03-30 18:27:42','',115,'https://www.watchhill.ca/wp-content/uploads/2017/03/river.jpg',0,'attachment','image/jpeg',0),(130,3,'2017-03-15 11:10:12','2017-03-15 15:10:12','','Sunrise from Watch Hill B&B','Sunrise from Watch Hill B&B','inherit','closed','closed','','sunrise','','','2018-02-06 01:49:22','2018-02-06 06:49:22','',115,'https://www.watchhill.ca/wp-content/uploads/2017/03/sunrise.jpg',0,'attachment','image/jpeg',0),(131,3,'2017-03-15 11:11:49','2017-03-15 15:11:49','Steps from the front door, canoe, kayak, swim, fish, stroll the walking trail to downtown shops and delis or bike the rail trail for miles into villages â€œdown the wayâ€.\r\n\r\nAsk us about available activities while you\'re in Southampton.\r\n\r\n[foogallery id=\"115\"]','The Area','','inherit','closed','closed','','114-revision-v1','','','2017-03-15 11:11:49','2017-03-15 15:11:49','',114,'https://www.watchhill.ca/2017/03/114-revision-v1/',0,'revision','',0),(132,3,'2017-03-15 11:12:34','2017-03-15 15:12:34','Steps from the front door, canoe, kayak, swim, fish, stroll the walking trail to downtown shops and delis or bike the rail trail for miles into villages â€œdown the wayâ€.\r\n\r\nAsk us about things to do while you\'re in Southampton.\r\n\r\n[foogallery id=\"115\"]','The Area','','inherit','closed','closed','','114-revision-v1','','','2017-03-15 11:12:34','2017-03-15 15:12:34','',114,'https://www.watchhill.ca/2017/03/114-revision-v1/',0,'revision','',0),(133,3,'2017-03-15 11:13:14','2017-03-15 15:13:14',' ','','','publish','closed','closed','','133','','','2018-02-22 19:31:06','2018-02-23 00:31:06','',7,'https://www.watchhill.ca/?p=133',4,'nav_menu_item','',0),(134,3,'2017-03-15 11:14:20','2017-03-15 15:14:20','Steps from the front door, canoe, kayak, swim, fish, stroll the walking trail to downtown shops and delis or bike the rail trail for miles into villages â€œdown the wayâ€.\r\n\r\nAsk us about the various activities available while you\'re in Southampton.\r\n\r\n[foogallery id=\"115\"]','The Area','','inherit','closed','closed','','114-revision-v1','','','2017-03-15 11:14:20','2017-03-15 15:14:20','',114,'https://www.watchhill.ca/2017/03/114-revision-v1/',0,'revision','',0),(137,3,'2017-03-15 11:23:14','2017-03-15 15:23:14','','Shared Spaces','','publish','closed','closed','','new-slider-5','','','2017-03-24 16:55:29','2017-03-24 20:55:29','',0,'https://www.watchhill.ca/?post_type=ml-slider&#038;p=137',0,'ml-slider','',0),(322,3,'2017-03-30 12:33:17','2017-03-30 16:33:17','[metaslider id=237]\r\n<p style=\"text-align: center;\">Coming Fall 2017 is The Loft, a studio apartment with kitchenette, which comfortably sleeps 6. The Loft can be booked from October 1st - May 30th, some exclusions apply. This space is on the Beach House property,but not part of the main house.</p>\r\n<p style=\"text-align: center;\">Please contact us for more information, or to make a booking.</p>\r\n<p style=\"text-align: center;\">email us at <a href=\"mailto:info@watchhill.ca\">info@watchhill.ca</a> or call us at 1-519-513-9065</p>\r\n<p style=\"text-align: center;\">[wpsbc id=\"4\" title=\"yes\" legend=\"yes\" dropdown=\"yes\" start=\"1\" display=\"4\" language=\"auto\" month=\"10\" year=\"0\" history=\"1\"]</p>','The Loft','','inherit','closed','closed','','226-revision-v1','','','2017-03-30 12:33:17','2017-03-30 16:33:17','',226,'https://www.watchhill.ca/2017/03/226-revision-v1/',0,'revision','',0),(335,4,'2017-03-31 10:35:39','2017-03-31 14:35:39','[metaslider id=92]\r\n<p style=\"text-align: center;\">The Saugeen Suite features a three-piece ensuite bathroom, Queen size bed, TV (including Netflix) and a view of the Saugeen River. Comfy and cozy, this room appeals to those who like to sleep a little later.</p>\r\n<p style=\"text-align: center;\">Priceâ€¦.$180</p>\r\n<p style=\"text-align: center;\">Please view the calendar for availability, and <a href=\"mailto:info@watchhill.ca\">email</a> or call us at 1-519-513-9065 to book this room, or follow the link below to book via Airbnb.</p>\r\n<p style=\"text-align: center;\">[wpsbc id=\"3\" title=\"yes\" legend=\"yes\" dropdown=\"yes\" start=\"7\" display=\"4\" language=\"auto\" month=\"6\" year=\"0\" history=\"1\"]</p>\r\n<p style=\"text-align: left;\">Book this room <a href=\"https://www.airbnb.ca/rooms/14838721?s=0tR1BQdF\" target=\"_blank\">with Airbnb</a></p>','The Saugeen','','inherit','closed','closed','','21-revision-v1','','','2017-03-31 10:35:39','2017-03-31 14:35:39','',21,'https://www.watchhill.ca/2017/03/21-revision-v1/',0,'revision','',0),(141,3,'2017-03-15 14:58:45','2017-03-15 18:58:45','','1M1A1266_b','','inherit','closed','closed','','1m1a1266_b','','','2017-04-26 13:07:46','2017-04-26 17:07:46','',0,'https://www.watchhill.ca/wp-content/uploads/2017/03/1M1A1266_b.jpg',7,'attachment','image/jpeg',0),(142,3,'2017-03-15 14:59:51','2017-03-15 18:59:51','','1M1A1575','','inherit','closed','closed','','1m1a1575','','','2017-03-15 15:15:59','2017-03-15 19:15:59','',0,'https://www.watchhill.ca/wp-content/uploads/2017/03/1M1A1575.jpg',7,'attachment','image/jpeg',0),(143,3,'2017-03-15 15:01:19','2017-03-15 19:01:19','','1M1A1175','','inherit','closed','closed','','1m1a1175','','','2017-06-27 12:46:10','2017-06-27 16:46:10','',0,'https://www.watchhill.ca/wp-content/uploads/2017/03/1M1A1175.jpg',2,'attachment','image/jpeg',0),(144,3,'2017-03-15 15:04:12','2017-03-15 19:04:12','','1M1A1492','','inherit','closed','closed','','1m1a1492','','','2017-04-26 13:07:46','2017-04-26 17:07:46','',0,'https://www.watchhill.ca/wp-content/uploads/2017/03/1M1A1492.jpg',6,'attachment','image/jpeg',0),(145,3,'2017-03-15 15:06:31','2017-03-15 19:06:31','','1M1A1500','','inherit','closed','closed','','1m1a1500','','','2017-04-26 13:07:46','2017-04-26 17:07:46','',0,'https://www.watchhill.ca/wp-content/uploads/2017/03/1M1A1500.jpg',5,'attachment','image/jpeg',0),(146,3,'2017-03-15 15:07:20','2017-03-15 19:07:20','','1M1A1549','','inherit','closed','closed','','1m1a1549','','','2017-04-26 13:07:46','2017-04-26 17:07:46','',0,'https://www.watchhill.ca/wp-content/uploads/2017/03/1M1A1549.jpg',4,'attachment','image/jpeg',0),(147,3,'2017-03-24 14:23:12','2017-03-24 18:23:12','At Watch Hill Bed &amp; Breakfast We strive to provide you with a stress free, relaxing B&amp;B experience.\n\nOur newly renovated Victorian Beach House is non-smoking, and we do not allow pets. We do have a dog on-site, however it is not allowed in the guest areas.\n\nOur home is located in Southampton, Ont\n\nOur B&amp;B is tailored to adults; please contact us before booking if your booking includes children.\n\nThe Chantry and Huron Suites are $210/night, and the Saugeen suite is $185/night. These suites are available from June 1st - September 20th.\n\nAvailable Fall 2017 is The Loft; a studio apartment with kitchenette; capacity to sleep 6 people. The Loft may be booked from October 1st - May 30th. Some exclusions apply. (Thanksgiving and Christmas - please enquire)\n\nWe would appreciate at least 24 hours notice for any cancellations.\n\nWe are happy to provide accommodate your dietary needs, please let us know of any restrictions when you make your booking.\n\n&nbsp;','Rates & Policies','','inherit','closed','closed','','23-autosave-v1','','','2017-03-24 14:23:12','2017-03-24 18:23:12','',23,'https://www.watchhill.ca/2017/03/23-autosave-v1/',0,'revision','',0),(320,3,'2017-03-30 12:31:17','2017-03-30 16:31:17','[metaslider id=80]\r\n<p style=\"text-align: center;\">Marvel at the magnificent sunsets over Chantry Island or watch boats sail by on the beautiful Saugeen River from the Chantry Suite alcove. Enjoy a King size bed, fireplace and a three-piece en suite bathroom.</p>\r\n<p style=\"text-align: center;\">Priceâ€¦.$210</p>\r\n<p style=\"text-align: center;\">Please view the calendar for availability,and <a href=\"mailto:info@watchhill.ca\">email</a> or call us at 1-519-513-9065Â  to book this room, or follow the link below to book via Airbnb.</p>\r\n<p style=\"text-align: center;\">[wpsbc id=\"2\" title=\"yes\" legend=\"yes\" dropdown=\"yes\" start=\"7\" display=\"4\" language=\"auto\" month=\"6\" year=\"0\" history=\"1\"]</p>\r\n<p style=\"text-align: left;\">Book this room <a href=\"https://www.airbnb.ca/rooms/14839417?s=0tR1BQdF\" target=\"_blank\">with Airbnb</a></p>','The Chantry','','inherit','closed','closed','','19-revision-v1','','','2017-03-30 12:31:17','2017-03-30 16:31:17','',19,'https://www.watchhill.ca/2017/03/19-revision-v1/',0,'revision','',0),(327,3,'2017-03-30 13:03:26','2017-03-30 17:03:26','[metaslider id=76]\r\n<p style=\"text-align: center;\">Inhale the sun washed breeze and listen to the waves from the Huron Suite with its spectacular view of Lake Huron featuring a Queen size bed, fireplace, TV (including Netflix), and a full four-piece ensuite bathroom.</p>\r\n<p style=\"text-align: center;\">Priceâ€¦$210</p>\r\n<p style=\"text-align: center;\">Please view the calendar for availability, and <a href=\"mailto:info@watchhill.ca\">email</a> or call us at 1-519-513-9065 to book this room, or follow the link below to book via Airbnb.</p>\r\n[wpsbc id=\"1\" title=\"yes\" legend=\"yes\" dropdown=\"yes\" start=\"7\" display=\"4\" language=\"auto\" month=\"6\" year=\"0\" history=\"1\"]\r\n\r\nBook this room <a href=\"https://www.airbnb.ca/rooms/14839468?s=0tR1BQdF\" target=\"_blank\">with Airbnb</a>','The Huron','','inherit','closed','closed','','17-revision-v1','','','2017-03-30 13:03:26','2017-03-30 17:03:26','',17,'https://www.watchhill.ca/2017/03/17-revision-v1/',0,'revision','',0),(158,3,'2017-03-17 13:15:57','2017-03-17 17:15:57','','Watch Hill Bed & Breakfast overlooks Chantry Island on Lake Huron, Southampton Ontario','','inherit','closed','closed','','1m1a0798_b','','','2017-03-30 14:27:08','2017-03-30 18:27:08','',96,'https://www.watchhill.ca/wp-content/uploads/2017/03/1M1A0798_b.jpg',0,'attachment','image/jpeg',0),(160,3,'2017-03-24 14:24:33','2017-03-24 18:24:33','[caption id=\"attachment_159\" align=\"aligncenter\" width=\"300\"]<img class=\"size-medium wp-image-159\" src=\"https://www.watchhill.ca/wp-content/uploads/2017/03/IMGP0756-300x296.jpg\" alt=\"Sue and Richard\" width=\"300\" height=\"296\" /> Your Hosts, Sue &amp; Richard[/caption]\n<p style=\"text-align: center;\">Please contact us to make a booking, or if you have any questions about your stay.</p>\n<p style=\"text-align: center;\">We can be reached via email at <a href=\"mailto:info@watchhill.ca\">info@watchhill.ca</a> or by phone, 1-519-513-9065</p>\n<p style=\"text-align: center;\">Watch Hill Bed &amp; Breakfast</p>\n<p style=\"text-align: center;\">24 South Rankin St, Southampton ON</p>\n<p style=\"text-align: center;\"></p>','Contact','','inherit','closed','closed','','28-autosave-v1','','','2017-03-24 14:24:33','2017-03-24 18:24:33','',28,'https://www.watchhill.ca/2017/03/28-autosave-v1/',0,'revision','',0),(163,3,'2017-03-23 13:20:48','2017-03-23 17:20:48','<span data-reactid=\"27\">Southampton is famous for its incredible sunsets, and long sandy beaches. Watch Hill B&amp;B overlooks Chantry Island; it is just a short walk to the beach from our front steps.</span>\n\n<span data-reactid=\"180\">Marvel at the magnificent sunsets over Chantry Island or watch sailboats ply the beautiful Saugeen River from the Chantry Suite alcove.\n</span>\n<div class=\"simple-format-container\" data-reactid=\"186\">\n<div class=\"simple-format-container\" data-reactid=\"208\">\n<p data-reactid=\"209\"><span data-reactid=\"210\">Watch Hill is truly Southamptonâ€™s Grande Dame, a Beach House home-away-from-home overlooking the mouth of the Saugeen River where it meanders past a working lighthouse and fishing pier toward Chantry Island and on to the sparkling blue Huron Lake.</span><br data-reactid=\"211\" /><span data-reactid=\"212\">Downtown offers no shortage of attractions, boutiques,and various dining establishments.Fun days, adventures and special occasions can be arranged (please ask us about this); explore the beaches, spend a day on the river, bike the trails or hike the paths, massage or yoga on the porch.</span></p>\n<p data-reactid=\"209\"><span data-reactid=\"220\">Steps from the front door: canoe, kayak, swim, fish,golf, hike, bike, x country ski, snowmobile , stroll the walking trail to downtown shops and delis or bike the rail trail for miles into villages â€œdown the wayâ€.</span></p>\n\n</div>\n</div>','About','','inherit','closed','closed','','7-autosave-v1','','','2017-03-23 13:20:48','2017-03-23 17:20:48','',7,'https://www.watchhill.ca/2017/03/7-autosave-v1/',0,'revision','',0),(164,3,'2017-03-21 16:16:10','2017-03-21 20:16:10','','Sue Carruthers and Richard Lee at Watch Hill B&B','Sue & Richard','inherit','closed','closed','','imgp0761','','','2017-03-30 14:26:24','2017-03-30 18:26:24','',13,'https://www.watchhill.ca/wp-content/uploads/2017/03/IMGP0761.jpg',0,'attachment','image/jpeg',0),(166,3,'2017-03-30 11:36:11','2017-03-30 15:36:11','Steps from the front door, canoe, kayak, swim, fish, stroll the walking trail to downtown shops and delis or bike the rail trail for miles into villages â€œdown the wayâ€.Â <span data-reactid=\"180\">Marvel at the magnificent sunsets over Chantry Island or watch boats pass by on the beautiful Saugeen River.</span>\n<p data-reactid=\"209\"><span data-reactid=\"212\">Downtown Southampton offers no shortage of attractions, boutiques and dining establishments. Fun days, adventures and special occasions can be arranged (please ask us about this); explore the beaches, spend time on the river, bike the trails or hike the paths and complete your day with a massage or yoga on the porch.</span></p>\nContact us and we would be more than happy to give you more information, or to arrange activities for you during your stay.\n\n[foogallery id=\"115\"]','The Area','','inherit','closed','closed','','114-autosave-v1','','','2017-03-30 11:36:11','2017-03-30 15:36:11','',114,'https://www.watchhill.ca/2017/03/114-autosave-v1/',0,'revision','',0),(305,3,'2017-03-30 11:37:28','2017-03-30 15:37:28','Steps from the front door, canoe, kayak, swim, fish, stroll the walking trail to downtown shops and delis or bike the rail trail for miles into villages â€œdown the wayâ€.Â <span data-reactid=\"180\">Marvel at the magnificent sunsets over Chantry Island or watch boats pass by on the beautiful Saugeen River.</span>\r\n<p data-reactid=\"209\"><span data-reactid=\"212\">Downtown Southampton offers no shortage of attractions, boutiques and dining establishments. Fun days, adventures and special occasions can be arranged (please ask us about this); explore the beaches, spend time on the river, bike the trails or hike the paths and complete your day with a massage or yoga on the porch.</span></p>\r\nContact us and we would be more than happy to give you more information, or to arrange activities for you during your stay.\r\n\r\n[foogallery id=\"115\"]','The Area','','inherit','closed','closed','','114-revision-v1','','','2017-03-30 11:37:28','2017-03-30 15:37:28','',114,'https://www.watchhill.ca/2017/03/114-revision-v1/',0,'revision','',0),(264,5,'2017-03-29 14:18:28','2017-03-29 18:18:28','Steps from the front door, canoe, kayak, swim, fish, stroll the walking trail to downtown shops and delis or bike the rail trail for miles into villages â€œdown the wayâ€.<span data-reactid=\"180\">Marvel at the magnificent sunsets over Chantry Island or watch sailboats ply the beautiful Saugeen River.</span>\r\n<p data-reactid=\"209\"><span data-reactid=\"212\">Downtown offers no shortage of attractions, boutiques,and various dining establishments.Fun days, adventures and special occasions can be arranged (please ask us about this); explore the beaches, spend a day on the river, bike the trails or hike the paths, massage or yoga on the porch.</span></p>\r\nContact us and we would be more than happy to give you more information, or to arrange activities for you during your stay.\r\n\r\n[foogallery id=\"115\"]','The Area','','inherit','closed','closed','','114-revision-v1','','','2017-03-29 14:18:28','2017-03-29 18:18:28','',114,'https://www.watchhill.ca/2017/03/114-revision-v1/',0,'revision','',0),(167,3,'2017-03-21 16:19:25','2017-03-21 20:19:25','Steps from the front door, canoe, kayak, swim, fish, stroll the walking trail to downtown shops and delis or bike the rail trail for miles into villages â€œdown the wayâ€.<span data-reactid=\"180\">Marvel at the magnificent sunsets over Chantry Island or watch sailboats ply the beautiful Saugeen River.</span>\r\n<p data-reactid=\"209\"><span data-reactid=\"212\">Downtown offers no shortage of attractions, boutiques,and various dining establishments.Fun days, adventures and special occasions can be arranged (please ask us about this); explore the beaches, spend a day on the river, bike the trails or hike the paths, massage or yoga on the porch.</span></p>\r\n<p data-reactid=\"209\"><span data-reactid=\"220\">Steps from the front door: canoe, kayak, swim, fish,golf, hike, bike, x country ski, snowmobile , stroll the walking trail to downtown shops and delis or bike the rail trail for miles into villages â€œdown the wayâ€.</span></p>\r\nContact us and we would be more than happy to give you more information, or to arrange activities for you during your stay.\r\n\r\n[foogallery id=\"115\"]','The Area','','inherit','closed','closed','','114-revision-v1','','','2017-03-21 16:19:25','2017-03-21 20:19:25','',114,'https://www.watchhill.ca/2017/03/114-revision-v1/',0,'revision','',0),(220,3,'2017-03-23 13:21:42','2017-03-23 17:21:42','<span data-reactid=\"27\">Southampton is famous for its incredible sunsets, and long sandy beaches. Watch Hill B&amp;B overlooks Chantry Island; it is just a short walk to the beach from our front steps.</span>\r\n\r\n<span data-reactid=\"180\">Marvel at the magnificent sunsets over Chantry Island or watch sailboats ply the beautiful Saugeen River from the Chantry Suite alcove.\r\n</span>\r\n<div class=\"simple-format-container\" data-reactid=\"186\">\r\n<div class=\"simple-format-container\" data-reactid=\"208\">\r\n<p data-reactid=\"209\"><span data-reactid=\"210\">Watch Hill is truly Southamptonâ€™s Grande Dame, a Beach House home-away-from-home overlooking the mouth of the Saugeen River where it meanders past a working lighthouse and fishing pier toward Chantry Island and on to the sparkling blue Huron Lake.</span><br data-reactid=\"211\" /><span data-reactid=\"212\">Downtown offers no shortage of attractions, boutiques,and various dining establishments.Fun days, adventures and special occasions can be arranged (please ask us about this); explore the beaches, spend a day on the river, bike the trails or hike the paths, massage or yoga on the porch.</span></p>\r\n<p data-reactid=\"209\"><span data-reactid=\"220\">Steps from the front door: canoe, kayak, swim, fish,golf, hike, bike, x country ski, snowmobile , stroll the walking trail to downtown shops and delis or bike the rail trail for miles into villages â€œdown the wayâ€.</span></p>\r\n\r\n</div>\r\n</div>','About','','inherit','closed','closed','','7-revision-v1','','','2017-03-23 13:21:42','2017-03-23 17:21:42','',7,'https://www.watchhill.ca/2017/03/7-revision-v1/',0,'revision','',0),(168,3,'2017-03-21 16:20:04','2017-03-21 20:20:04','<span data-reactid=\"27\">Southampton is famous for its incredible sunsets, and long sandy beaches. Watch Hill B&amp;B overlooks Chantry Island; it is just a short walk to the beach from our front steps.</span>\r\n\r\n<span data-reactid=\"180\">Marvel at the magnificent sunsets over Chantry Island or watch sailboats ply the beautiful Saugeen River from the Chantry Suite alcove. Enjoy a king size bed, fireplace and a three-piece en suite bathroom.</span>\r\n<div class=\"simple-format-container\" data-reactid=\"186\">\r\n<p data-reactid=\"187\"><span data-reactid=\"188\">Watch Hillâ€™s common areas include a spectacular Great room, dining room and a large veranda furnished for enjoying outdoor breakfast or just lazing the day away in one of our comfortable chairs. Alternatively, take your breakfast on our sunny patio, and then work on your tan or finish your novel in one of our colourful Adirondacks. </span><br data-reactid=\"189\" /><span data-reactid=\"190\">Arrangements can be made to watch the latest movies on the 60â€ Apple-TV over the fireplace in the Great room.</span><br data-reactid=\"191\" /><span data-reactid=\"192\">Common areas have tables suitable for working on a laptop.</span><br data-reactid=\"193\" /><span data-reactid=\"194\">We are pleased to offer our guests the use of an electric vehicle charging unit.</span></p>\r\n\r\n<div class=\"simple-format-container\" data-reactid=\"208\">\r\n<p data-reactid=\"209\"><span data-reactid=\"210\">Watch Hill is truly Southamptonâ€™s Grande Dame, a Beach House home-away-from-home overlooking the mouth of the Saugeen River where it meanders past a working lighthouse and fishing peer toward Chantry Island and on to the sparkling blue Huron Lake.</span><br data-reactid=\"211\" /><span data-reactid=\"212\">Downtown offers no shortage of attractions, boutiques,and various dining establishments.Fun days, adventures and special occasions can be arranged (please ask us about this); explore the beaches, spend a day on the river, bike the trails or hike the paths, massage or yoga on the porch.</span></p>\r\n<p data-reactid=\"209\"><span data-reactid=\"220\">Steps from the front door: canoe, kayak, swim, fish,golf, hike, bike, x country ski, snowmobile , stroll the walking trail to downtown shops and delis or bike the rail trail for miles into villages â€œdown the wayâ€.</span></p>\r\n\r\n</div>\r\n</div>','About','','inherit','closed','closed','','7-revision-v1','','','2017-03-21 16:20:04','2017-03-21 20:20:04','',7,'https://www.watchhill.ca/2017/03/7-revision-v1/',0,'revision','',0),(169,3,'2017-03-22 12:45:57','2017-03-22 16:45:57','[caption id=\"attachment_159\" align=\"aligncenter\" width=\"300\"]<img class=\"size-medium wp-image-159\" src=\"https://www.watchhill.ca/wp-content/uploads/2017/03/IMGP0756-300x296.jpg\" alt=\"Sue and Richard\" width=\"300\" height=\"296\" /> Your Hosts, Sue &amp; Richard[/caption]\r\n<p style=\"text-align: center;\">Please contact us to make a booking, or if you have any questions about your stay.</p>\r\n<p style=\"text-align: center;\">We can be reached via email at <a href=\"mailto:info@watchhill.ca\">info@watchhill.ca</a> or by phone, 1-519-513-9065</p>','Contact','','inherit','closed','closed','','28-revision-v1','','','2017-03-22 12:45:57','2017-03-22 16:45:57','',28,'https://www.watchhill.ca/2017/03/28-revision-v1/',0,'revision','',0),(407,4,'2017-06-21 12:24:13','2017-06-21 16:24:13','<h1 style=\"text-align: center;\">A bright and airy, luxurious Bed &amp; Breakfast in Southampton, Ontario.</h1>\r\n<h2 style=\"text-align: center;\">Truly a Beach House.</h2>\r\nWatch Hill is Southamptonâ€™s Grande Dame, a Beach House home-away-from-home overlooking the mouth of the Saugeen River where it meanders past a working lighthouse toward Â sparkling Lake Huron. Marvel at the magnificent sunsets over Chantry Island or watch boats sail by on the beautiful Saugeen River from our veranda.Â The beach is just steps away.\r\n<h2 style=\"text-align: center;\">Featured In Our Homes Magazine</h2>\r\n<p style=\"text-align: center;\"><a href=\"http://www.ourhomes.ca/\" target=\"_blank\" rel=\"noopener noreferrer\">Our Homes Magazine</a> recently featured Watch Hill in theirÂ  <a href=\"http://www.ourhomes.ca/greybruce/archive/591\" target=\"_blank\" rel=\"noopener noreferrer\">Grey/Bruce County Summer 2017 issue.</a>Â Pick upÂ a paper copy, or viewÂ the pdf online <a href=\"http://www.ourhomes.ca/uploads/pdfs/Feature_OH_GreyBruce_2017Summer.pdf\" target=\"_blank\" rel=\"noopener noreferrer\">here</a>, and the flipbook <a href=\"http://digital.lmgroup.com/i/832764-summer-2017\" target=\"_blank\" rel=\"noopener noreferrer\">here.</a>Â See before and after pictures of the 2 year renovation process that brought our Victorian beach house dream to life.</p>','Home','','inherit','closed','closed','','5-revision-v1','','','2017-06-21 12:24:13','2017-06-21 16:24:13','',5,'https://www.watchhill.ca/2017/06/5-revision-v1/',0,'revision','',0),(404,4,'2017-06-21 12:15:00','2017-06-21 16:15:00','<h1 style=\"text-align: center;\">A bright and airy, luxurious Bed &amp; Breakfast in Southampton, Ontario.</h1>\r\n<h2 style=\"text-align: center;\">Truly a Beach House.</h2>\r\nWatch Hill is Southamptonâ€™s Grande Dame, a Beach House home-away-from-home overlooking the mouth of the Saugeen River where it meanders past a working lighthouse toward Â sparkling Lake Huron. Marvel at the magnificent sunsets over Chantry Island or watch boats sail by on the beautiful Saugeen River from our veranda.Â The beach is steps from our front porch.\r\n<h2 style=\"text-align: center;\">Featured In Our Homes Magazine</h2>\r\n<p style=\"text-align: center;\"><a href=\"http://www.ourhomes.ca/\" target=\"_blank\" rel=\"noopener noreferrer\">Our Homes Magazine</a> recently featured Watch Hill in theirÂ  <a href=\"http://www.ourhomes.ca/greybruce/archive/591\" target=\"_blank\" rel=\"noopener noreferrer\">Grey/Bruce County Summer 2017 issue.</a> Find a glossy paper copy, or have a look at the pdf online <a href=\"http://www.ourhomes.ca/uploads/pdfs/Feature_OH_GreyBruce_2017Summer.pdf\" target=\"_blank\" rel=\"noopener noreferrer\">here</a>, and the flipbook <a href=\"http://digital.lmgroup.com/i/832764-summer-2017\" target=\"_blank\" rel=\"noopener noreferrer\">here.</a> ViewÂ  before and after pictures of the 2 year renovation process that brought our Victorian beach house dream, to life.</p>','Home','','inherit','closed','closed','','5-revision-v1','','','2017-06-21 12:15:00','2017-06-21 16:15:00','',5,'https://www.watchhill.ca/2017/06/5-revision-v1/',0,'revision','',0),(403,4,'2017-06-21 12:08:45','2017-06-21 16:08:45','<h1 style=\"text-align: center;\">A bright and airy, luxurious Bed &amp; Breakfast in Southampton, Ontario.</h1>\r\n<h2 style=\"text-align: center;\">Truly a Beach House.</h2>\r\nWatch Hill is Southamptonâ€™s Grande Dame, a Beach House home-away-from-home overlooking the mouth of the Saugeen River where it meanders past a working lighthouse toward Chantry Island in sparkling Lake Huron. The beach is steps from our front porch; Southampton is famous for its sunsets.\r\n<h2 style=\"text-align: center;\">Featured In Our Homes Magazine</h2>\r\n<p style=\"text-align: center;\"><a href=\"http://www.ourhomes.ca/\" target=\"_blank\" rel=\"noopener noreferrer\">Our Homes Magazine</a> recently featured Watch Hill in theirÂ  <a href=\"http://www.ourhomes.ca/greybruce/archive/591\" target=\"_blank\" rel=\"noopener noreferrer\">Grey/Bruce County Summer 2017 issue.</a> Find a glossy paper copy, or have a look at the pdf online <a href=\"http://www.ourhomes.ca/uploads/pdfs/Feature_OH_GreyBruce_2017Summer.pdf\" target=\"_blank\" rel=\"noopener noreferrer\">here</a>, and the flipbook <a href=\"http://digital.lmgroup.com/i/832764-summer-2017\" target=\"_blank\" rel=\"noopener noreferrer\">here.</a> ViewÂ  before and after pictures of the 2 year renovation process that brought our Victorian beach house dream, to life.</p>','Home','','inherit','closed','closed','','5-revision-v1','','','2017-06-21 12:08:45','2017-06-21 16:08:45','',5,'https://www.watchhill.ca/2017/06/5-revision-v1/',0,'revision','',0),(388,4,'2017-06-19 10:54:07','2017-06-19 14:54:07','At Watch Hill we strive to provide a stress free, fun and relaxing B&amp;B experience.\r\n\r\nOur newly renovated Victorian Beach House is non-smoking and we do not allow pets. Â Our Bernese Mountain Dog, Dooley, is on-site, however, and is not allowed inÂ guest areas.\r\n\r\nWatch HillÂ is tailored to adults; please contact us before booking if your reservationÂ includes children.\r\n\r\nThe Chantry and Huron Suites are $210/night, and the Saugeen suite is $180/night. Â These suites are available from June 1st - September 30th.\r\n\r\nThe Loft; a studio apartment with kitchenette and capacity to sleep 6, is available October 1st - May 30th. Â Some exclusions apply. (Thanksgiving and Christmas - please enquire.)\r\n\r\nCancellations require 24-hours notice.\r\n\r\nWe are happy to accommodate your dietary needs. Â Please let us know of any restrictions when you make your booking.\r\n\r\n&nbsp;','Rates & Policies','','inherit','closed','closed','','23-revision-v1','','','2017-06-19 10:54:07','2017-06-19 14:54:07','',23,'https://www.watchhill.ca/2017/06/23-revision-v1/',0,'revision','',0),(401,4,'2017-06-21 12:23:25','2017-06-21 16:23:25','<h1 style=\"text-align: center;\">A bright and airy, luxurious Bed &amp; Breakfast in Southampton, Ontario.</h1>\n<h2 style=\"text-align: center;\">Truly a Beach House.</h2>\nWatch Hill is Southamptonâ€™s Grande Dame, a Beach House home-away-from-home overlooking the mouth of the Saugeen River where it meanders past a working lighthouse toward Â sparkling Lake Huron. Marvel at the magnificent sunsets over Chantry Island or watch boats sail by on the beautiful Saugeen River from our veranda.Â The beach is just steps away.\n<h2 style=\"text-align: center;\">Featured In Our Homes Magazine</h2>\n<p style=\"text-align: center;\"><a href=\"http://www.ourhomes.ca/\" target=\"_blank\" rel=\"noopener noreferrer\">Our Homes Magazine</a> recently featured Watch Hill in theirÂ  <a href=\"http://www.ourhomes.ca/greybruce/archive/591\" target=\"_blank\" rel=\"noopener noreferrer\">Grey/Bruce County Summer 2017 issue.</a>Â Pick upÂ a paper copy, or viewÂ the pdf online <a href=\"http://www.ourhomes.ca/uploads/pdfs/Feature_OH_GreyBruce_2017Summer.pdf\" target=\"_blank\" rel=\"noopener noreferrer\">here</a>, and the flipbook <a href=\"http://digital.lmgroup.com/i/832764-summer-2017\" target=\"_blank\" rel=\"noopener noreferrer\">here.</a>Â See before and after pictures of the 2 year renovation process that brought our Victorian beach house dream to life.</p>','Home','','inherit','closed','closed','','5-autosave-v1','','','2017-06-21 12:23:25','2017-06-21 16:23:25','',5,'https://www.watchhill.ca/2017/06/5-autosave-v1/',0,'revision','',0),(175,3,'2017-03-22 14:02:58','2017-03-22 18:02:58','','huron','','inherit','closed','closed','','huron','','','2017-03-22 14:02:58','2017-03-22 18:02:58','',15,'https://www.watchhill.ca/wp-content/uploads/2017/03/huron.jpg',0,'attachment','image/jpeg',0),(174,3,'2017-03-22 14:02:56','2017-03-22 18:02:56','','chantry','','inherit','closed','closed','','chantry','','','2017-03-22 14:02:56','2017-03-22 18:02:56','',15,'https://www.watchhill.ca/wp-content/uploads/2017/03/chantry.jpg',0,'attachment','image/jpeg',0),(176,3,'2017-03-22 14:03:00','2017-03-22 18:03:00','','saugeen','','inherit','closed','closed','','saugeen','','','2017-03-22 14:03:00','2017-03-22 18:03:00','',15,'https://www.watchhill.ca/wp-content/uploads/2017/03/saugeen.jpg',0,'attachment','image/jpeg',0),(449,3,'2017-09-18 12:49:28','2017-09-18 16:49:28','','4','','inherit','closed','closed','','4','','','2017-09-18 12:49:28','2017-09-18 16:49:28','',0,'https://www.watchhill.ca/wp-content/uploads/2017/09/4.jpg',0,'attachment','image/jpeg',0),(450,3,'2017-09-18 12:51:17','2017-09-18 16:51:17','','Slider 348 - image','','trash','closed','closed','','slider-348-image__trashed','','','2017-10-26 13:05:50','2017-10-26 17:05:50','',0,'https://www.watchhill.ca/?post_type=ml-slide&#038;p=450',0,'ml-slide','',0),(451,3,'2017-09-18 12:51:17','2017-09-18 16:51:17','','Slider 348 - image','','trash','closed','closed','','slider-348-image-2__trashed','','','2017-10-26 13:04:46','2017-10-26 17:04:46','',0,'https://www.watchhill.ca/?post_type=ml-slide&#038;p=451',1,'ml-slide','',0),(492,3,'2017-11-03 10:01:40','2017-11-03 14:01:40','','Huron','','inherit','closed','closed','','huron-2','','','2017-11-03 10:01:40','2017-11-03 14:01:40','',15,'https://www.watchhill.ca/wp-content/uploads/2017/03/Huron.jpg',0,'attachment','image/jpeg',0),(454,3,'2017-09-18 12:54:36','2017-09-18 16:54:36','[metaslider id=348]\n\n<p style=\"text-align: center;\">Coming Fall 2017 is TheÂ Harbour Suite, a studio apartment with kitchenette; comfortably sleeps 4. The Harbour Suite can be booked from October 1st - May 30th, some exclusions apply. This space is on the Beach House property,but not part of the main house.</p>\n<p style=\"text-align: center;\">Please contact us for more information, or to make a booking.</p>\n<p style=\"text-align: center;\">email us at <a href=\"mailto:info@watchhill.ca\">info@watchhill.ca</a> or call us at 1-519-513-9065</p>\n<p style=\"text-align: center;\">[wpsbc id=\"4\" title=\"yes\" legend=\"yes\" dropdown=\"yes\" start=\"1\" display=\"4\" language=\"auto\" month=\"10\" year=\"0\" history=\"1\"]</p>','The Harbour Suite','','inherit','closed','closed','','226-autosave-v1','','','2017-09-18 12:54:36','2017-09-18 16:54:36','',226,'https://www.watchhill.ca/2017/09/226-autosave-v1/',0,'revision','',0),(446,3,'2017-09-18 12:49:19','2017-09-18 16:49:19','','1','','inherit','closed','closed','','1','','','2017-09-18 12:49:19','2017-09-18 16:49:19','',0,'https://www.watchhill.ca/wp-content/uploads/2017/09/1.jpg',0,'attachment','image/jpeg',0),(447,3,'2017-09-18 12:49:22','2017-09-18 16:49:22','','2','','inherit','closed','closed','','2','','','2017-09-18 12:49:22','2017-09-18 16:49:22','',0,'https://www.watchhill.ca/wp-content/uploads/2017/09/2.jpg',0,'attachment','image/jpeg',0),(448,3,'2017-09-18 12:49:25','2017-09-18 16:49:25','','3','','inherit','closed','closed','','3','','','2017-09-18 12:49:25','2017-09-18 16:49:25','',0,'https://www.watchhill.ca/wp-content/uploads/2017/09/3.jpg',0,'attachment','image/jpeg',0),(441,4,'2017-08-29 15:58:17','2017-08-29 19:58:17','[metaslider id=237]\r\n<p style=\"text-align: center;\">Coming Fall 2017 is TheÂ Harbour Suite, a studio apartment with kitchenette; comfortably sleeps 4. The Harbour Suite can be booked from October 1st - May 30th, some exclusions apply. This space is on the Beach House property,but not part of the main house.</p>\r\n<p style=\"text-align: center;\">Please contact us for more information, or to make a booking.</p>\r\n<p style=\"text-align: center;\">email us at <a href=\"mailto:info@watchhill.ca\">info@watchhill.ca</a> or call us at 1-519-513-9065</p>\r\n<p style=\"text-align: center;\">[wpsbc id=\"4\" title=\"yes\" legend=\"yes\" dropdown=\"yes\" start=\"1\" display=\"4\" language=\"auto\" month=\"10\" year=\"0\" history=\"1\"]</p>','The Harbour Suite','','inherit','closed','closed','','226-revision-v1','','','2017-08-29 15:58:17','2017-08-29 19:58:17','',226,'https://www.watchhill.ca/2017/08/226-revision-v1/',0,'revision','',0),(386,3,'2017-06-19 08:35:04','2017-06-19 12:35:04','<h1 style=\"text-align: center;\">A bright and airy, luxurious Bed &amp; Breakfast in Southampton, Ontario.</h1>\r\n<h2 style=\"text-align: center;\">Truly a Beach House.</h2>\r\nWatch Hill is Southamptonâ€™s Grande Dame, a Beach House home-away-from-home overlooking the mouth of the Saugeen River where it meanders past a working lighthouse and fishing pier toward Chantry Island and on to sparkling Lake Huron. The beach is steps from our front porch; Southampton is famous for its sunsets.\r\n<h2 style=\"text-align: center;\">Featured In Our Homes Magazine</h2>\r\n<p style=\"text-align: center;\"><a href=\"http://www.ourhomes.ca/\" target=\"_blank\" rel=\"noopener noreferrer\">Our Homes Magazine</a> recently featured Watch Hill in theirÂ  <a href=\"http://www.ourhomes.ca/greybruce/archive/591\" target=\"_blank\" rel=\"noopener noreferrer\">Grey/Bruce County Summer 2017 issue.</a> Find a glossy paper copy, or have a look at the pdf online <a href=\"http://www.ourhomes.ca/uploads/pdfs/Feature_OH_GreyBruce_2017Summer.pdf\" target=\"_blank\" rel=\"noopener noreferrer\">here</a>, and the flipbook <a href=\"http://digital.lmgroup.com/i/832764-summer-2017\" target=\"_blank\" rel=\"noopener noreferrer\">here.</a> ViewÂ  before and after pictures of the 2 year renovation process that brought our Victorian Beach house dream to life.</p>','Home','','inherit','closed','closed','','5-revision-v1','','','2017-06-19 08:35:04','2017-06-19 12:35:04','',5,'https://www.watchhill.ca/2017/06/5-revision-v1/',0,'revision','',0),(376,3,'2017-05-11 14:14:54','2017-05-11 18:14:54','[metaslider id=137]\r\n<h2>The Suites</h2>\r\nEach suite at Watch Hill features a view of the Saugeen River or Lake Huron and all rooms have a private ensuite bathroom. All bathrooms are equipped with shampoo, hair dryers and an Eminence hostess gift from our local spa.\r\n\r\nOur suites are available for booking from June 1st - September 30th. Coming Fall 2017 The Loft will be available; a studio apartment with kitchenette.\r\n<h2 data-reactid=\"187\">Common Areas</h2>\r\n<p data-reactid=\"187\"><span data-reactid=\"188\">Watch Hillâ€™s common areas include a spectacular Great room, dining room and a large veranda furnished for enjoying outdoor breakfast or just lazing the day away in one of our comfortable chairs. Alternatively, take your breakfast on our sunny patio and then work on your tan or finish your novel in one of our colourful Adirondacks. </span><br data-reactid=\"189\" /><span data-reactid=\"190\">Arrangements can be made to watch the latest movies on the 60â€ Apple-TV over the fireplace in the Great room.</span><br data-reactid=\"191\" /><span data-reactid=\"192\">Common areas have tables suitable for working on a laptop.</span><br data-reactid=\"193\" /><span data-reactid=\"194\">We are pleased to offer our guests the use of an electric vehicle charging unit.</span></p>\r\n\r\n<h2 data-reactid=\"187\">Breakfast</h2>\r\nThe coffee station is available throughout the day with home baked cookies served every afternoon at 3.Â  Breakfasts include continental offerings sourced from local epicures; granola, fresh fruit from the farm, local cheese, jams and maple syrup â€“ and a daily hot entrÃ©e.<span data-reactid=\"225\"> Please contact us if you have any dietary restrictions or concerns</span>; we would be happy to accommodate you.\r\n<h2>Booking</h2>\r\nPlease <a href=\"mailto:info@watchhill.ca\">email</a> or call us at 1-519-513-9065 for more information, or to book a suite.\r\n\r\nVisit the suites\' individual pages to view the calendars for availability.\r\n\r\nIf you prefer, click the images below to book via Airbnb.\r\n<div class=\"one-third first\"><a href=\"https://www.airbnb.ca/rooms/14839468\" target=\"_blank\" rel=\"noopener noreferrer\">\r\n<img class=\"alignnone wp-image-175 size-full\" src=\"https://www.watchhill.ca/wp-content/uploads/2017/03/huron.jpg\" alt=\"\" /></a>\r\n<a href=\"https://www.watchhill.ca/accommodations/the-huron/\"><img class=\"wp-image-184 size-full alignnone\" src=\"https://www.watchhill.ca/wp-content/uploads/2017/03/room-details.jpg\" alt=\"\" /></a>\r\n</div>\r\n\r\n<div class=\"one-third\"><a href=\"https://www.airbnb.ca/rooms/14839417\" target=\"_blank\" rel=\"noopener noreferrer\">\r\n<img class=\"wp-image-174 size-full alignnone\" src=\"https://www.watchhill.ca/wp-content/uploads/2017/03/chantry.jpg\" alt=\"\"  /></a>\r\n<a href=\"https://www.watchhill.ca/accommodations/the-chantry/\"><img class=\"wp-image-184 size-full alignnone\" src=\"https://www.watchhill.ca/wp-content/uploads/2017/03/room-details.jpg\" alt=\"\" /></a>\r\n</div>\r\n\r\n<div class=\"one-third\"><a href=\"https://www.airbnb.ca/rooms/14838721\" target=\"_blank\" rel=\"noopener noreferrer\">\r\n<img class=\"wp-image-176 size-full alignnone\" src=\"https://www.watchhill.ca/wp-content/uploads/2017/03/saugeen.jpg\" alt=\"\"  /></a>\r\n<a href=\"https://www.watchhill.ca/accommodations/the-saugeen/\"><img class=\"wp-image-184 size-full alignnone\" src=\"https://www.watchhill.ca/wp-content/uploads/2017/03/room-details.jpg\" alt=\"\" /></a>\r\n</div>\r\n<div class=\"clearfix\"</div>\r\n','Accommodations','','inherit','closed','closed','','15-revision-v1','','','2017-05-11 14:14:54','2017-05-11 18:14:54','',15,'https://www.watchhill.ca/2017/05/15-revision-v1/',0,'revision','',0),(349,3,'2017-04-26 13:32:36','2017-04-26 17:32:36','[metaslider id=137]\r\n<h2>The Suites</h2>\r\nEach suite at Watch Hill features a view of the Saugeen River or Lake Huron and all rooms have a private ensuite bathroom. All bathrooms are equipped with shampoo, hair dryers and an Eminence hostess gift from our local spa.\r\n\r\nOur suites are available for booking from June 1st - September 30th. Coming Fall 2017 The Loft will be available; a studio apartment with kitchenette.\r\n<h2 data-reactid=\"187\">Common Areas</h2>\r\n<p data-reactid=\"187\"><span data-reactid=\"188\">Watch Hillâ€™s common areas include a spectacular Great room, dining room and a large veranda furnished for enjoying outdoor breakfast or just lazing the day away in one of our comfortable chairs. Alternatively, take your breakfast on our sunny patio and then work on your tan or finish your novel in one of our colourful Adirondacks. </span><br data-reactid=\"189\" /><span data-reactid=\"190\">Arrangements can be made to watch the latest movies on the 60â€ Apple-TV over the fireplace in the Great room.</span><br data-reactid=\"191\" /><span data-reactid=\"192\">Common areas have tables suitable for working on a laptop.</span><br data-reactid=\"193\" /><span data-reactid=\"194\">We are pleased to offer our guests the use of an electric vehicle charging unit.</span></p>\r\n\r\n<h2 data-reactid=\"187\">Breakfast</h2>\r\nThe coffee station is available throughout the day with home baked cookies served every afternoon at 3.Â  Breakfasts include continental offerings sourced from local epicures; granola, fresh fruit from the farm, local cheese, jams and maple syrup â€“ and a daily hot entrÃ©e.<span data-reactid=\"225\"> Please contact us if you have any dietary restrictions or concerns</span>; we would be happy to accommodate you.\r\n<h2>Booking</h2>\r\nPlease <a href=\"mailto:info@watchhill.ca\">email</a> or call us at 1-519-513-9065 for more information, or to book a suite.\r\n\r\nVisit the suites\' individual pages to view the calendars for availability.\r\n\r\nIf you prefer, click the images below to book via Airbnb.\r\n<div class=\"huron\"><a href=\"https://www.airbnb.ca/rooms/14839468\" target=\"_blank\" rel=\"noopener noreferrer\"><img class=\"alignleft wp-image-175 size-full\" src=\"https://www.watchhill.ca/wp-content/uploads/2017/03/huron.jpg\" alt=\"\" width=\"255\" height=\"440\" /></a></div>\r\n<div class=\"chantry\"><a href=\"https://www.airbnb.ca/rooms/14839417\" target=\"_blank\" rel=\"noopener noreferrer\"><img class=\"wp-image-174 size-full alignleft\" src=\"https://www.watchhill.ca/wp-content/uploads/2017/03/chantry.jpg\" alt=\"\" width=\"255\" height=\"440\" /></a></div>\r\n<div class=\"saugeen\"><a href=\"https://www.airbnb.ca/rooms/14838721\" target=\"_blank\" rel=\"noopener noreferrer\"><img class=\"wp-image-176 size-full alignleft\" src=\"https://www.watchhill.ca/wp-content/uploads/2017/03/saugeen.jpg\" alt=\"\" width=\"255\" height=\"440\" /></a></div>\r\n<div class=\"clear\"></div>\r\n<div class=\"details-huron\"><a href=\"https://www.watchhill.ca/accommodations/the-huron/\"><img class=\"wp-image-184 size-full alignleft\" src=\"https://www.watchhill.ca/wp-content/uploads/2017/03/room-details.jpg\" alt=\"\" width=\"255\" height=\"30\" /></a></div>\r\n<div class=\"details-chantry\"><a href=\"https://www.watchhill.ca/accommodations/the-chantry/\"><img class=\"wp-image-184 size-full alignleft\" src=\"https://www.watchhill.ca/wp-content/uploads/2017/03/room-details.jpg\" alt=\"\" width=\"255\" height=\"30\" /></a></div>\r\n<div class=\"details-saugeen\"><a href=\"https://www.watchhill.ca/accommodations/the-saugeen/\"><img class=\"wp-image-184 size-full alignleft\" src=\"https://www.watchhill.ca/wp-content/uploads/2017/03/room-details.jpg\" alt=\"\" width=\"255\" height=\"30\" /></a></div>','Accommodations','','inherit','closed','closed','','15-revision-v1','','','2017-04-26 13:32:36','2017-04-26 17:32:36','',15,'https://www.watchhill.ca/2017/04/15-revision-v1/',0,'revision','',0),(262,5,'2017-03-29 14:55:32','2017-03-29 18:55:32','<h1 style=\"text-align: center;\">A bright and airy, luxurious Bed &amp; Breakfast in Southampton, Ontario.</h1>\n<h2 style=\"text-align: center;\">Truly a Beach House</h2>\nWatch Hill is Southamptonâ€™s Grande Dame, a Beach House home-away-from-home overlooking the mouth of the Saugeen River where it meanders past a working lighthouse and fishing pier toward Chantry Island and on to sparkling Lake Huron. The beach is steps from our front porch; Southampton is famous for its sunsets.\n<div class=\"rooms\"></div>\n<div class=\"BB\"></div>\n<div class=\"hosts\"></div>\n<div class=\"clear\"></div>','Home','','inherit','closed','closed','','5-autosave-v1','','','2017-03-29 14:55:32','2017-03-29 18:55:32','',5,'https://www.watchhill.ca/2017/03/5-autosave-v1/',0,'revision','',0),(184,3,'2017-03-22 14:14:47','2017-03-22 18:14:47','','room-details','','inherit','closed','closed','','room-details','','','2017-03-22 14:14:47','2017-03-22 18:14:47','',15,'https://www.watchhill.ca/wp-content/uploads/2017/03/room-details.jpg',0,'attachment','image/jpeg',0),(472,4,'2017-10-16 18:10:33','2017-10-16 22:10:33','[metaslider id=137]\r\n<h2>The Suites</h2>\r\nEach suite at Watch Hill features a view of the Saugeen River or Lake Huron and all rooms have a private ensuite bathroom. All bathrooms are equipped with shampoo, hair dryers and an Eminence hostess gift from our local spa. The house is equipped with central air conditioning.\r\n\r\nThe Chantry, Huron, and SaugeenÂ suites are available for booking from June 1st - September 30th. The Harbour Suite; a studio apartment with private entrance, king size bed, kitchenette, isÂ  available October 1st through May 31. Breakfast items provided.\r\n<h2 data-reactid=\"187\">Common Areas</h2>\r\n<p data-reactid=\"187\"><span data-reactid=\"188\">Watch Hillâ€™s common areas include a spectacular Great room, dining room and a large veranda furnished for enjoying outdoor breakfast or just lazing the day away in one of our comfortable chairs. Alternatively, take your breakfast on our sunny patio and then work on your tan or finish your novel in one of our colourful Adirondacks. </span><br data-reactid=\"189\" /><span data-reactid=\"190\">Arrangements can be made to watch the latest movies on the 60â€ Apple-TV over the fireplace in the Great room.</span><br data-reactid=\"191\" /><span data-reactid=\"192\">Common areas have tables suitable for working on a laptop.</span><br data-reactid=\"193\" /><span data-reactid=\"194\">We are pleased to offer our guests the use of an electric vehicle charging unit.</span></p>\r\n\r\n<h2 data-reactid=\"187\">Breakfast</h2>\r\nThe coffee station is available throughout the day with home baked cookies served every afternoon at 3.Â  Breakfasts include continental offerings sourced from local epicures; granola, fresh fruit from the farm, local cheese, jams and maple syrup â€“ and a daily hot entrÃ©e.<span data-reactid=\"225\"> Please contact us if you have any dietary restrictions or concerns</span>; we would be happy to accommodate you.\r\n<h2>Booking</h2>\r\nPlease <a href=\"mailto:info@watchhill.ca\">email</a> or call us at 1-519-513-9065 for more information, or to book a suite.\r\n\r\nVisit the suites\' individual pages to view the calendars for availability.\r\n<div class=\"one-third first\"><a href=\"https://www.watchhill.ca/accommodations/the-huron/\">\r\n<img class=\"alignnone wp-image-175 size-full\" src=\"https://www.watchhill.ca/wp-content/uploads/2017/06/Huron-button.jpg\" alt=\"\" /></a></div>\r\n<div class=\"one-third\"><a href=\"https://www.watchhill.ca/accommodations/the-chantry/\">\r\n<img class=\"wp-image-174 size-full alignnone\" src=\"https://www.watchhill.ca/wp-content/uploads/2017/06/Chantry-button.jpg\" alt=\"\" /></a></div>\r\n<div class=\"one-third\"><a href=\"https://www.watchhill.ca/accommodations/the-saugeen/\">\r\n<img class=\"wp-image-176 size-full alignnone\" src=\"https://www.watchhill.ca/wp-content/uploads/2017/06/Saugeen-button.jpg\" alt=\"\" /></a></div>\r\n<div class=\"clearfix\"></div>','Accommodations','','inherit','closed','closed','','15-revision-v1','','','2017-10-16 18:10:33','2017-10-16 22:10:33','',15,'https://www.watchhill.ca/2017/10/15-revision-v1/',0,'revision','',0),(478,4,'2017-10-18 10:29:36','2017-10-18 14:29:36','[metaslider id=348]\r\n<p style=\"text-align: center;\">Â TheÂ Harbour Suite, a studio apartment with private entrance, king size bed , kitchenette; comfortably sleeps 4; available October 1st - May 30th, Breakfast items provided.</p>\r\n<p style=\"text-align: center;\">Price... $150</p>\r\n<p style=\"text-align: center;\">Please contact us for more information, or to make a booking.</p>\r\n<p style=\"text-align: center;\">email us at <a href=\"mailto:info@watchhill.ca\">info@watchhill.ca</a> or call us at 1-519-513-9065</p>\r\n<p style=\"text-align: center;\">[wpsbc id=\"4\" title=\"yes\" legend=\"yes\" dropdown=\"yes\" start=\"1\" display=\"4\" language=\"auto\" month=\"10\" year=\"0\" history=\"1\"]</p>','The Harbour Suite','','inherit','closed','closed','','226-revision-v1','','','2017-10-18 10:29:36','2017-10-18 14:29:36','',226,'https://www.watchhill.ca/2017/10/226-revision-v1/',0,'revision','',0),(291,1,'2017-03-30 10:12:41','2017-03-30 14:12:41','[metaslider id=76]\n<p style=\"text-align: center;\">Inhale the sun washed breeze and listen to the waves from the Huron Suite with its spectacular view of Lake Huron featuring a Queen size bed, fireplace, TV (including Netflix), and a full four-piece en suite bathroom.</p>\n<p style=\"text-align: center;\">Priceâ€¦$210</p>\n<p style=\"text-align: center;\">Please <a href=\"mailto:info@watchhill.ca\">email</a> or call us at 1-519-513-9065 for availability and to book this room, or follow the link below to book via Airbnb.</p>\n<p style=\"text-align: center;\">Book this room <a href=\"https://www.airbnb.ca/rooms/14839468?s=0tR1BQdF\" target=\"_blank\">with Airbnb</a></p>\n','The Huron','','inherit','closed','closed','','17-autosave-v1','','','2017-03-30 10:12:41','2017-03-30 14:12:41','',17,'https://www.watchhill.ca/2017/03/17-autosave-v1/',0,'revision','',0),(292,1,'2017-03-30 10:13:10','2017-03-30 14:13:10','[metaslider id=76]\r\n<p style=\"text-align: center;\">Inhale the sun washed breeze and listen to the waves from the Huron Suite with its spectacular view of Lake Huron featuring a Queen size bed, fireplace, TV (including Netflix), and a full four-piece en suite bathroom.</p>\r\n<p style=\"text-align: center;\">Priceâ€¦$210</p>\r\n<p style=\"text-align: center;\">Please <a href=\"mailto:info@watchhill.ca\">email</a> or call us at 1-519-513-9065 for availability and to book this room, or follow the link below to book via Airbnb.</p>\r\n<p style=\"text-align: center;\">Book this room <a href=\"https://www.airbnb.ca/rooms/14839468?s=0tR1BQdF\" target=\"_blank\">with Airbnb</a></p>\r\n[wpsbc id=\"1\" title=\"no\" legend=\"yes\" dropdown=\"no\" start=\"7\" display=\"4\" language=\"auto\"  month=\"6\" year=\"0\" history=\"1\"]','The Huron','','inherit','closed','closed','','17-revision-v1','','','2017-03-30 10:13:10','2017-03-30 14:13:10','',17,'https://www.watchhill.ca/2017/03/17-revision-v1/',0,'revision','',0),(321,3,'2017-03-30 12:32:30','2017-03-30 16:32:30','[metaslider id=92]\r\n<p style=\"text-align: center;\">The Saugeen Suite features a three-piece ensuite bathroom, fireplace,Queen size bed, TV (including Netflix) and a view of the Saugeen River. Comfy and cozy, this room appeals to those who like to sleep a little later.</p>\r\n<p style=\"text-align: center;\">Priceâ€¦.$180</p>\r\n<p style=\"text-align: center;\">Please view the calendar for availability, and <a href=\"mailto:info@watchhill.ca\">email</a> or call us at 1-519-513-9065 to book this room, or follow the link below to book via Airbnb.</p>\r\n<p style=\"text-align: center;\">[wpsbc id=\"3\" title=\"yes\" legend=\"yes\" dropdown=\"yes\" start=\"7\" display=\"4\" language=\"auto\" month=\"6\" year=\"0\" history=\"1\"]</p>\r\n<p style=\"text-align: left;\">Book this room <a href=\"https://www.airbnb.ca/rooms/14838721?s=0tR1BQdF\" target=\"_blank\">with Airbnb</a></p>','The Saugeen','','inherit','closed','closed','','21-revision-v1','','','2017-03-30 12:32:30','2017-03-30 16:32:30','',21,'https://www.watchhill.ca/2017/03/21-revision-v1/',0,'revision','',0),(192,3,'2017-03-23 11:07:15','2017-03-23 15:07:15','','B&B-Button','','inherit','closed','closed','','bb-button','','','2017-03-23 11:07:15','2017-03-23 15:07:15','',0,'https://www.watchhill.ca/wp-content/uploads/2017/03/BB-Button.jpg',0,'attachment','image/jpeg',0),(193,3,'2017-03-23 11:07:18','2017-03-23 15:07:18','','rooms-button','','inherit','closed','closed','','rooms-button','','','2017-03-23 11:07:18','2017-03-23 15:07:18','',0,'https://www.watchhill.ca/wp-content/uploads/2017/03/rooms-button.jpg',0,'attachment','image/jpeg',0),(194,3,'2017-03-23 11:07:21','2017-03-23 15:07:21','','hosts-button','','inherit','closed','closed','','hosts-button','','','2017-03-23 11:07:21','2017-03-23 15:07:21','',0,'https://www.watchhill.ca/wp-content/uploads/2017/03/hosts-button.jpg',0,'attachment','image/jpeg',0),(387,3,'2017-06-19 08:37:17','2017-06-19 12:37:17','<h1 style=\"text-align: center;\">A bright and airy, luxurious Bed &amp; Breakfast in Southampton, Ontario.</h1>\r\n<h2 style=\"text-align: center;\">Truly a Beach House.</h2>\r\nWatch Hill is Southamptonâ€™s Grande Dame, a Beach House home-away-from-home overlooking the mouth of the Saugeen River where it meanders past a working lighthouse and fishing pier toward Chantry Island and on to sparkling Lake Huron. The beach is steps from our front porch; Southampton is famous for its sunsets.\r\n<h2 style=\"text-align: center;\">Featured In Our Homes Magazine</h2>\r\n<p style=\"text-align: center;\"><a href=\"http://www.ourhomes.ca/\" target=\"_blank\" rel=\"noopener noreferrer\">Our Homes Magazine</a> recently featured Watch Hill in theirÂ  <a href=\"http://www.ourhomes.ca/greybruce/archive/591\" target=\"_blank\" rel=\"noopener noreferrer\">Grey/Bruce County Summer 2017 issue.</a> Find a glossy paper copy, or have a look at the pdf online <a href=\"http://www.ourhomes.ca/uploads/pdfs/Feature_OH_GreyBruce_2017Summer.pdf\" target=\"_blank\" rel=\"noopener noreferrer\">here</a>, and the flipbook <a href=\"http://digital.lmgroup.com/i/832764-summer-2017\" target=\"_blank\" rel=\"noopener noreferrer\">here.</a> ViewÂ  before and after pictures of the 2 year renovation process that brought our Victorian beach house dream, to life.</p>','Home','','inherit','closed','closed','','5-revision-v1','','','2017-06-19 08:37:17','2017-06-19 12:37:17','',5,'https://www.watchhill.ca/2017/06/5-revision-v1/',0,'revision','',0),(411,4,'2017-06-21 12:34:35','2017-06-21 16:34:35','[metaslider id=92]\r\n<p style=\"text-align: center;\">The Saugeen Suite is air conditioned, Â features a three-piece en suite bathroom, Queen size bed, and a view of the Saugeen River. Comfy and cozy, this room appeals to those who like to sleep a little later.</p>\r\n<p style=\"text-align: center;\">Priceâ€¦.$180</p>\r\n<p style=\"text-align: center;\">Please view the calendar for availability, and <a href=\"mailto:info@watchhill.ca\">email</a> or call us at 1-519-513-9065 to book this room.</p>\r\n<p style=\"text-align: center;\">[wpsbc id=\"3\" title=\"yes\" legend=\"yes\" dropdown=\"yes\" start=\"7\" display=\"4\" language=\"auto\" month=\"6\" year=\"0\" history=\"1\"]</p>','The Saugeen','','inherit','closed','closed','','21-revision-v1','','','2017-06-21 12:34:35','2017-06-21 16:34:35','',21,'https://www.watchhill.ca/2017/06/21-revision-v1/',0,'revision','',0),(440,4,'2017-08-29 15:54:06','2017-08-29 19:54:06','[metaslider id=237]\r\n<p style=\"text-align: center;\">Coming Fall 2017 is TheÂ Harbour Suite, a studio apartment with kitchenette, h comfortably sleeps 4. The Harbour Suite can be booked from October 1st - May 30th, some exclusions apply. This space is on the Beach House property,but not part of the main house.</p>\r\n<p style=\"text-align: center;\">Please contact us for more information, or to make a booking.</p>\r\n<p style=\"text-align: center;\">email us at <a href=\"mailto:info@watchhill.ca\">info@watchhill.ca</a> or call us at 1-519-513-9065</p>\r\n<p style=\"text-align: center;\">[wpsbc id=\"4\" title=\"yes\" legend=\"yes\" dropdown=\"yes\" start=\"1\" display=\"4\" language=\"auto\" month=\"10\" year=\"0\" history=\"1\"]</p>','The Harbour Suite','','inherit','closed','closed','','226-revision-v1','','','2017-08-29 15:54:06','2017-08-29 19:54:06','',226,'https://www.watchhill.ca/2017/08/226-revision-v1/',0,'revision','',0),(228,3,'2017-03-23 13:41:22','2017-03-23 17:41:22',' ','','','publish','closed','closed','','228','','','2018-02-22 19:31:06','2018-02-23 00:31:06','',15,'https://www.watchhill.ca/?p=228',10,'nav_menu_item','',0),(237,3,'2017-03-23 14:25:10','2017-03-23 18:25:10','','The Loft','','publish','closed','closed','','new-slider-6','','','2017-03-23 14:26:01','2017-03-23 18:26:01','',0,'https://www.watchhill.ca/?post_type=ml-slider&#038;p=237',0,'ml-slider','',0),(238,3,'2017-03-23 14:25:53','2017-03-23 18:25:53','','Slider 237 - image','','publish','closed','closed','','slider-237-image','','','2017-03-23 14:26:01','2017-03-23 18:26:01','',0,'https://www.watchhill.ca/?post_type=ml-slide&#038;p=238',0,'ml-slide','',0),(439,4,'2018-04-06 14:49:31','2018-04-06 18:49:31','[metaslider id=348]\r\n<p style=\"text-align: center;\">Â TheÂ Harbour Suite, a studio apartment with private entrance, king size bed , kitchenette; comfortably sleeps 4; available October 1st - May 30th, Breakfast items provided.</p>\r\n<p style=\"text-align: center;\">Price... $150</p>\r\n<p style=\"text-align: center;\">Please contact us for more information, or to make a booking.</p>\r\n<p style=\"text-align: center;\">email us at <a href=\"mailto:info@watchhill.ca\">info@watchhill.ca</a> or call us at 1-519-513-9065</p>\r\n<p style=\"text-align: center;\">[wpsbc id=\"4\" title=\"yes\" legend=\"yes\" dropdown=\"yes\" start=\"1\" display=\"4\" language=\"auto\" month=\"10\" year=\"0\" history=\"1\"]</p>','The Harbour Suite','','inherit','closed','closed','','226-autosave-v1','','','2018-04-06 14:49:31','2018-04-06 18:49:31','',226,'https://www.watchhill.ca/2017/08/226-autosave-v1/',0,'revision','',0),(438,4,'2017-08-29 15:44:41','2017-08-29 19:44:41','[metaslider id=237]\r\n<p style=\"text-align: center;\">Coming Fall 2017 is The HarbourÂ Suite,Â a studio apartment with kitchenette, which comfortably sleeps 4. The Harbour Suite can be booked from October 1st - May 30th, some exclusions apply. This space is on the Beach House property,but not part of the main house.</p>\r\n<p style=\"text-align: center;\">Please contact us for more information, or to make a booking.</p>\r\n<p style=\"text-align: center;\">email us at <a href=\"mailto:info@watchhill.ca\">info@watchhill.ca</a> or call us at 1-519-513-9065</p>\r\n<p style=\"text-align: center;\">[wpsbc id=\"4\" title=\"yes\" legend=\"yes\" dropdown=\"yes\" start=\"1\" display=\"4\" language=\"auto\" month=\"10\" year=\"0\" history=\"1\"]</p>','The Harbour Suite','','inherit','closed','closed','','226-revision-v1','','','2017-08-29 15:44:41','2017-08-29 19:44:41','',226,'https://www.watchhill.ca/2017/08/226-revision-v1/',0,'revision','',0),(437,4,'2017-08-29 15:43:17','2017-08-29 19:43:17','[metaslider id=237]\r\n<p style=\"text-align: center;\">Coming Fall 2017 is The HarbourÂ Suite,Â a studio apartment with kitchenette, which comfortably sleeps 4. The Harbour Suite can be booked from October 1st - May 30th, some exclusions apply. This space is on the Beach House property,but not part of the main house.</p>\r\n<p style=\"text-align: center;\">Please contact us for more information, or to make a booking.</p>\r\n<p style=\"text-align: center;\">email us at <a href=\"mailto:info@watchhill.ca\">info@watchhill.ca</a> or call us at 1-519-513-9065</p>\r\n<p style=\"text-align: center;\">[wpsbc id=\"4\" title=\"yes\" legend=\"yes\" dropdown=\"yes\" start=\"1\" display=\"4\" language=\"auto\" month=\"10\" year=\"0\" history=\"1\"]</p>','The Loft','','inherit','closed','closed','','226-revision-v1','','','2017-08-29 15:43:17','2017-08-29 19:43:17','',226,'https://www.watchhill.ca/2017/08/226-revision-v1/',0,'revision','',0),(452,3,'2017-09-18 12:51:17','2017-09-18 16:51:17','','Slider 348 - image','','trash','closed','closed','','slider-348-image-3__trashed','','','2017-10-26 13:07:07','2017-10-26 17:07:07','',0,'https://www.watchhill.ca/?post_type=ml-slide&#038;p=452',3,'ml-slide','',0),(453,3,'2017-09-18 12:51:17','2017-09-18 16:51:17','','Slider 348 - image','','trash','closed','closed','','slider-348-image-4__trashed','','','2017-10-26 13:01:23','2017-10-26 17:01:23','',0,'https://www.watchhill.ca/?post_type=ml-slide&#038;p=453',3,'ml-slide','',0),(455,3,'2017-09-18 12:56:58','2017-09-18 16:56:58','[metaslider id=348]\r\n<p style=\"text-align: center;\">Coming Fall 2017 is TheÂ Harbour Suite, a studio apartment with kitchenette; comfortably sleeps 4. The Harbour Suite can be booked from October 1st - May 30th, some exclusions apply. This space is on the Beach House property,but not part of the main house.</p>\r\n<p style=\"text-align: center;\">Please contact us for more information, or to make a booking.</p>\r\n<p style=\"text-align: center;\">email us at <a href=\"mailto:info@watchhill.ca\">info@watchhill.ca</a> or call us at 1-519-513-9065</p>\r\n<p style=\"text-align: center;\">[wpsbc id=\"4\" title=\"yes\" legend=\"yes\" dropdown=\"yes\" start=\"1\" display=\"4\" language=\"auto\" month=\"10\" year=\"0\" history=\"1\"]</p>','The Harbour Suite','','inherit','closed','closed','','226-revision-v1','','','2017-09-18 12:56:58','2017-09-18 16:56:58','',226,'https://www.watchhill.ca/2017/09/226-revision-v1/',0,'revision','',0),(402,4,'2017-06-21 12:02:17','2017-06-21 16:02:17','<h1 style=\"text-align: center;\">A bright and airy, luxurious Bed &amp; Breakfast in Southampton, Ontario.</h1>\r\n<h2 style=\"text-align: center;\">Truly a Beach House.</h2>\r\nWatch Hill is Southamptonâ€™s Grande Dame, a Beach House home-away-from-home overlooking the mouth of the Saugeen River where it meanders past a working lighthouse and fishing pier toward Chantry Island in sparkling Lake Huron. The beach is steps from our front porch; Southampton is famous for its sunsets.\r\n<h2 style=\"text-align: center;\">Featured In Our Homes Magazine</h2>\r\n<p style=\"text-align: center;\"><a href=\"http://www.ourhomes.ca/\" target=\"_blank\" rel=\"noopener noreferrer\">Our Homes Magazine</a> recently featured Watch Hill in theirÂ  <a href=\"http://www.ourhomes.ca/greybruce/archive/591\" target=\"_blank\" rel=\"noopener noreferrer\">Grey/Bruce County Summer 2017 issue.</a> Find a glossy paper copy, or have a look at the pdf online <a href=\"http://www.ourhomes.ca/uploads/pdfs/Feature_OH_GreyBruce_2017Summer.pdf\" target=\"_blank\" rel=\"noopener noreferrer\">here</a>, and the flipbook <a href=\"http://digital.lmgroup.com/i/832764-summer-2017\" target=\"_blank\" rel=\"noopener noreferrer\">here.</a> ViewÂ  before and after pictures of the 2 year renovation process that brought our Victorian beach house dream, to life.</p>','Home','','inherit','closed','closed','','5-revision-v1','','','2017-06-21 12:02:17','2017-06-21 16:02:17','',5,'https://www.watchhill.ca/2017/06/5-revision-v1/',0,'revision','',0),(405,4,'2017-06-21 12:17:06','2017-06-21 16:17:06','<h1 style=\"text-align: center;\">A bright and airy, luxurious Bed &amp; Breakfast in Southampton, Ontario.</h1>\r\n<h2 style=\"text-align: center;\">Truly a Beach House.</h2>\r\nWatch Hill is Southamptonâ€™s Grande Dame, a Beach House home-away-from-home overlooking the mouth of the Saugeen River where it meanders past a working lighthouse toward Â sparkling Lake Huron. Marvel at the magnificent sunsets over Chantry Island or watch boats sail by on the beautiful Saugeen River from our veranda.Â The beach is steps away.\r\n<h2 style=\"text-align: center;\">Featured In Our Homes Magazine</h2>\r\n<p style=\"text-align: center;\"><a href=\"http://www.ourhomes.ca/\" target=\"_blank\" rel=\"noopener noreferrer\">Our Homes Magazine</a> recently featured Watch Hill in theirÂ  <a href=\"http://www.ourhomes.ca/greybruce/archive/591\" target=\"_blank\" rel=\"noopener noreferrer\">Grey/Bruce County Summer 2017 issue.</a> Find a glossy paper copy, or have a look at the pdf online <a href=\"http://www.ourhomes.ca/uploads/pdfs/Feature_OH_GreyBruce_2017Summer.pdf\" target=\"_blank\" rel=\"noopener noreferrer\">here</a>, and the flipbook <a href=\"http://digital.lmgroup.com/i/832764-summer-2017\" target=\"_blank\" rel=\"noopener noreferrer\">here.</a> ViewÂ  before and after pictures of the 2 year renovation process that brought our Victorian beach house dream, to life.</p>','Home','','inherit','closed','closed','','5-revision-v1','','','2017-06-21 12:17:06','2017-06-21 16:17:06','',5,'https://www.watchhill.ca/2017/06/5-revision-v1/',0,'revision','',0),(395,3,'2017-06-21 08:37:22','2017-06-21 12:37:22','','Huron Button','','inherit','closed','closed','','huron-button','','','2017-06-21 08:37:22','2017-06-21 12:37:22','',0,'https://www.watchhill.ca/wp-content/uploads/2017/06/Huron-button.jpg',0,'attachment','image/jpeg',0),(396,3,'2017-06-21 08:37:25','2017-06-21 12:37:25','','Saugeen Button','','inherit','closed','closed','','saugeen-button','','','2017-06-21 08:37:25','2017-06-21 12:37:25','',0,'https://www.watchhill.ca/wp-content/uploads/2017/06/Saugeen-button.jpg',0,'attachment','image/jpeg',0),(260,3,'2017-03-29 13:12:01','2017-03-29 17:12:01','At Watch Hill Bed &amp; Breakfast We strive to provide you with a stress free, relaxing B&amp;B experience.\r\n\r\nOur newly renovated Victorian Beach House is non-smoking, and we do not allow pets. We do have a dog on-site, however it is not allowed in the guest areas.\r\n\r\nOur B&amp;B is tailored to adults; please contact us before booking if your booking includes children.\r\n\r\nThe Chantry and Huron Suites are $210/night, and the Saugeen suite is $185/night. These suites are available from June 1st - September 30th.\r\n\r\nAvailable Fall 2017 is The Loft; a studio apartment with kitchenette; capacity to sleep 6 people. The Loft may be booked from October 1st - May 30th. Some exclusions apply. (Thanksgiving and Christmas - please enquire)\r\n\r\nWe would appreciate at least 24 hours notice for any cancellations.\r\n\r\nWe are happy to provide accommodate your dietary needs, please let us know of any restrictions when you make your booking.\r\n\r\n&nbsp;','Rates & Policies','','inherit','closed','closed','','23-revision-v1','','','2017-03-29 13:12:01','2017-03-29 17:12:01','',23,'https://www.watchhill.ca/2017/03/23-revision-v1/',0,'revision','',0),(213,3,'2017-03-23 12:58:19','2017-03-23 16:58:19','<div class=\"entry-content\">\r\n\r\nThis privacy policy is intended to inform you how we use information that is collected from you on this website. Please read the privacy policy before using this website or submitting any information through this website.\r\n\r\n<strong>Collection of Information </strong>\r\n\r\n<strong>Personal Information </strong> When you use our online contact forms or email, we require that you provide your name and email address so that we can respond to your specific request. We will never sell, trade or share this information with any third party. Other information you provide, such as location data for rare species sightings, will be shared only with your permission.\r\n\r\n<strong>Cookie/Tracking Technologies </strong> Our website may use cookie and tracking technologies to gather information about your web browser and operating system, to monitor the number and nature of visitors, and to understand how visitors are using the website. Our website may also use cookies for advanced features such as personalization. No personal information is collected via cookies and tracking technology.\r\n\r\n<strong>Information Security </strong> No personal information is stored on this website or is accessible through this website. Feedback submitted through the website may be monitored by our webmaster for the purposes of ensuring proper operation of the website.\r\n\r\nEmail generated through links provided on this site is not secured or encrypted. <strong>Please do not provide any confidential or sensitive information via email.</strong>\r\n\r\n<strong>Privacy Contact Information </strong> If you have any questions, concerns, or comments about this privacy policy, please see our main <a href=\"https://www.watchhill.ca/contact/\">Contact Page.</a>\r\n\r\n<strong>Changes to This Policy </strong> Changes may be made to this privacy policy without notice. However, any changes to this privacy policy will be made available on this page.\r\n\r\n<strong>Privacy Policies on Other Websites </strong> This privacy policy applies only to this website. If you visit other sites from links provided on this website, please ensure that you review the privacy policies posted at those websites.\r\n\r\n</div>','Privacy Policy','','inherit','closed','closed','','55-revision-v1','','','2017-03-23 12:58:19','2017-03-23 16:58:19','',55,'https://www.watchhill.ca/2017/03/55-revision-v1/',0,'revision','',0),(214,3,'2017-03-23 12:59:15','2017-03-23 16:59:15','<div class=\"entry-content\">\r\n\r\nThis privacy policy is intended to inform you how we use information that is collected from you on this website. Please read the privacy policy before using this website or submitting any information through this website.\r\n\r\n<strong>Collection of Information </strong>\r\n\r\n<strong>Personal Information </strong> When you send us an email, we require that you provide your name and email address so that we can respond to your specific request. We will never sell, trade or share this information with any third party. Other information you provide, such as location data for rare species sightings, will be shared only with your permission.\r\n\r\n<strong>Cookie/Tracking Technologies </strong> Our website may use cookie and tracking technologies to gather information about your web browser and operating system, to monitor the number and nature of visitors, and to understand how visitors are using the website. Our website may also use cookies for advanced features such as personalization. No personal information is collected via cookies and tracking technology.\r\n\r\n<strong>Information Security </strong> No personal information is stored on this website or is accessible through this website. Feedback submitted through the website may be monitored by our webmaster for the purposes of ensuring proper operation of the website.\r\n\r\nEmail generated through links provided on this site is not secured or encrypted. <strong>Please do not provide any confidential or sensitive information via email.</strong>\r\n\r\n<strong>Privacy Contact Information </strong> If you have any questions, concerns, or comments about this privacy policy, please see our main <a href=\"https://www.watchhill.ca/contact/\">Contact Page.</a>\r\n\r\n<strong>Changes to This Policy </strong> Changes may be made to this privacy policy without notice. However, any changes to this privacy policy will be made available on this page.\r\n\r\n<strong>Privacy Policies on Other Websites </strong> This privacy policy applies only to this website. If you visit other sites from links provided on this website, please ensure that you review the privacy policies posted at those websites.\r\n\r\n</div>','Privacy Policy','','inherit','closed','closed','','55-revision-v1','','','2017-03-23 12:59:15','2017-03-23 16:59:15','',55,'https://www.watchhill.ca/2017/03/55-revision-v1/',0,'revision','',0),(506,4,'2018-01-15 10:25:16','2018-01-15 15:25:16','At Watch Hill we strive to provide a stress free, fun and relaxing B&amp;B experience.\r\n\r\nOur newly renovated Victorian Beach House is non-smoking and we do not allow pets. Â Our Bernese Mountain Dog, Dooley, is on-site, however, and is not allowed inÂ guest areas.\r\n\r\nWatch HillÂ is tailored to adults; please contact us before booking if your reservationÂ includes children.\r\n\r\nThe Chantry Suite is $225/night, The Huron Suite is $220/night and The Saugeen Suite is $190/night.Â  These suites are available May 11thÂ - October 19th.\r\n\r\nThe HarbourÂ Suite; a studio apartment with a private entrance, kitchenette and capacity to sleep 4, is available October 19thÂ - April 30th. Â Daily rateÂ  $150/night or $600 per week.Â  Breakfast food items are provided.\r\n\r\n<strong>Booking Deposit</strong>\r\n\r\nWe require one nightâ€™s fee if booking 2 or 3 nights or $100 if booking for less than two nights. Guests booking for more than 3 nights will be charged 50% of their booking fee to secure their reservation.\r\n\r\n<strong>Cancellation Policy</strong>\r\n\r\nOur business is seasonal and reservations are usually made well in advance of guest arrival. We rarely get last-minute bookings which means a cancelled room often remains empty. And because we have a limited inventory (three suites) the loss of revenue on one suite is significant.\r\n\r\nWe require 7 nights notice in order to refund your booking deposit and to cancel your booking.Â  A cancellation with less than 48 hours notice will result in a full booking charge.Â  A booking (night) is calculated beginning at the check-in time of 3:00 p.m.\r\n\r\n<strong>Check inâ€¦Check out</strong>\r\n\r\nCheck-in is normally between 3:00 p.m. and 5:00 p.m. unless other arrangements are made.\r\n\r\nCheck out is normally 11:00 a.m. unless other arrangements are made.\r\n\r\nWe are happy to accommodate your dietary needs. Â Please let us know of any restrictions when you make your booking.\r\n\r\n&nbsp;','Rates & Policies','','inherit','closed','closed','','23-revision-v1','','','2018-01-15 10:25:16','2018-01-15 15:25:16','',23,'https://www.watchhill.ca/2018/01/23-revision-v1/',0,'revision','',0),(508,4,'2018-01-17 10:37:15','2018-01-17 15:37:15','[metaslider id=137]\r\n<h2>The Suites</h2>\r\nEach suite at Watch Hill features a view of the Saugeen River or Lake Huron and all rooms have a private ensuite bathroom. All bathrooms are equipped with shampoo, hair dryers and an Eminence hostess gift from our local spa. The house is equipped with central air conditioning.\r\n\r\nThe Chantry, Huron, and SaugeenÂ suites are available for booking from May 11thÂ  - October 15th. The Harbour Suite; a studio apartment with private entrance, king size bed, kitchenette, isÂ  available October 19th through April 29th. Breakfast items provided.\r\n<h2 data-reactid=\"187\">Common Areas</h2>\r\n<p data-reactid=\"187\"><span data-reactid=\"188\">Watch Hillâ€™s common areas include a spectacular Great room, dining room and a large veranda furnished for enjoying outdoor breakfast or just lazing the day away in one of our comfortable chairs. Alternatively, take your breakfast on our sunny patio and then work on your tan or finish your novel in one of our colourful Adirondacks. </span><br data-reactid=\"189\" /><span data-reactid=\"190\">Arrangements can be made to watch the latest movies on the 60â€ Apple-TV over the fireplace in the Great room.</span><br data-reactid=\"191\" /><span data-reactid=\"192\">Common areas have tables suitable for working on a laptop.</span><br data-reactid=\"193\" /><span data-reactid=\"194\">We are pleased to offer our guests the use of an electric vehicle charging unit.</span></p>\r\n\r\n<h2 data-reactid=\"187\">Breakfast</h2>\r\nThe coffee station is available throughout the day with home baked cookies served every afternoon at 3.Â  Breakfasts include continental offerings sourced from local epicures; granola, fresh fruit from the farm, local cheese, jams and maple syrup â€“ and a daily hot entrÃ©e.<span data-reactid=\"225\"> Please contact us if you have any dietary restrictions or concerns</span>; we would be happy to accommodate you.\r\n<h2>Booking</h2>\r\nPlease <a href=\"mailto:info@watchhill.ca\">email</a> or call us at 1-519-513-9065 for more information, or to book a suite.\r\n\r\nVisit the suites\' individual pages to view the calendars for availability.\r\n<div class=\"one-fourth first\"><a href=\"https://www.watchhill.ca/accommodations/the-huron/\">\r\n<img class=\"alignnone wp-image-496 size-medium\" src=\"https://www.watchhill.ca/wp-content/uploads/2017/03/Huron-1-133x300.jpg\" alt=\"\" width=\"195\" height=\"440\" /></a></div>\r\n<div class=\"one-fourth\"><a href=\"https://www.watchhill.ca/accommodations/the-chantry/\">\r\n<img class=\"alignnone wp-image-497 size-medium\" src=\"https://www.watchhill.ca/wp-content/uploads/2017/03/chantry-2-133x300.jpg\" alt=\"\" width=\"195\" height=\"440\" /></a></div>\r\n<div class=\"one-fourth\"><a href=\"https://www.watchhill.ca/accommodations/the-saugeen/\">\r\n<img class=\"alignnone wp-image-494 size-medium\" src=\"https://www.watchhill.ca/wp-content/uploads/2017/03/saugeen-1-133x300.jpg\" alt=\"\" width=\"195\" height=\"440\" /></a></div>\r\n<div class=\"one-fourth\"><a href=\"https://www.watchhill.ca/accommodations/harbour-suite/\">\r\n<img class=\"alignnone wp-image-499 size-medium\" src=\"https://www.watchhill.ca/wp-content/uploads/2017/03/Harbour-1-133x300.jpg\" alt=\"\" width=\"195\" height=\"440\" /></a></div>\r\n<div class=\"clearfix\"></div>','Accommodations','','inherit','closed','closed','','15-revision-v1','','','2018-01-17 10:37:15','2018-01-17 15:37:15','',15,'https://www.watchhill.ca/2018/01/15-revision-v1/',0,'revision','',0),(297,3,'2017-03-30 10:51:01','2017-03-30 14:51:01','[metaslider id=80]\n<p style=\"text-align: center;\">Marvel at the magnificent sunsets over Chantry Island or watch boats sail by on the beautiful Saugeen River from the Chantry Suite alcove. Enjoy a King size bed, fireplace and a three-piece en suite bathroom.</p>\n<p style=\"text-align: center;\">Priceâ€¦.$210</p>\n<p style=\"text-align: center;\">Please <a href=\"mailto:info@watchhill.ca\">email</a> or call us at 1-519-513-9065 for availability and to book this room, or follow the link below to book via Airbnb.</p>\n<p style=\"text-align: center;\">Book this room <a href=\"https://www.airbnb.ca/rooms/14839417?s=0tR1BQdF\" target=\"_blank\">with Airbnb</a></p>\n<p style=\"text-align: center;\"></p>\n<p style=\"text-align: center;\">[wpsbc id=\"2\" title=\"no\" legend=\"yes\" dropdown=\"yes\" start=\"7\" display=\"4\" language=\"auto\" month=\"0\" year=\"0\" history=\"1\"]</p>','The Chantry','','inherit','closed','closed','','19-autosave-v1','','','2017-03-30 10:51:01','2017-03-30 14:51:01','',19,'https://www.watchhill.ca/2017/03/19-autosave-v1/',0,'revision','',0),(300,3,'2017-03-30 11:05:25','2017-03-30 15:05:25','[metaslider id=80]\r\n<p style=\"text-align: center;\">Marvel at the magnificent sunsets over Chantry Island or watch boats sail by on the beautiful Saugeen River from the Chantry Suite alcove. Enjoy a King size bed, fireplace and a three-piece en suite bathroom.</p>\r\n<p style=\"text-align: center;\">Priceâ€¦.$210</p>\r\n<p style=\"text-align: center;\">Please <a href=\"mailto:info@watchhill.ca\">email</a> or call us at 1-519-513-9065 for availability and to book this room, or follow the link below to book via Airbnb.</p>\r\n<p style=\"text-align: center;\">Book this room <a href=\"https://www.airbnb.ca/rooms/14839417?s=0tR1BQdF\" target=\"_blank\">with Airbnb</a></p>\r\n<p style=\"text-align: center;\">[wpsbc id=\"2\" title=\"no\" legend=\"yes\" dropdown=\"yes\" start=\"7\" display=\"4\" language=\"auto\" month=\"6\" year=\"0\" history=\"1\"]</p>','The Chantry','','inherit','closed','closed','','19-revision-v1','','','2017-03-30 11:05:25','2017-03-30 15:05:25','',19,'https://www.watchhill.ca/2017/03/19-revision-v1/',0,'revision','',0),(298,3,'2017-03-30 10:53:40','2017-03-30 14:53:40','[metaslider id=80]\r\n<p style=\"text-align: center;\">Marvel at the magnificent sunsets over Chantry Island or watch boats sail by on the beautiful Saugeen River from the Chantry Suite alcove. Enjoy a King size bed, fireplace and a three-piece en suite bathroom.</p>\r\n<p style=\"text-align: center;\">Priceâ€¦.$210</p>\r\n<p style=\"text-align: center;\">Please <a href=\"mailto:info@watchhill.ca\">email</a> or call us at 1-519-513-9065 for availability and to book this room, or follow the link below to book via Airbnb.</p>\r\n<p style=\"text-align: center;\">Book this room <a href=\"https://www.airbnb.ca/rooms/14839417?s=0tR1BQdF\" target=\"_blank\">with Airbnb</a></p>\r\n<p style=\"text-align: center;\"></p>\r\n<p style=\"text-align: center;\">[wpsbc id=\"2\" title=\"no\" legend=\"yes\" dropdown=\"yes\" start=\"7\" display=\"4\" language=\"auto\" month=\"6\" year=\"0\" history=\"1\"]</p>','The Chantry','','inherit','closed','closed','','19-revision-v1','','','2017-03-30 10:53:40','2017-03-30 14:53:40','',19,'https://www.watchhill.ca/2017/03/19-revision-v1/',0,'revision','',0),(299,3,'2017-03-30 11:00:26','2017-03-30 15:00:26','[metaslider id=76]\r\n<p style=\"text-align: center;\">Inhale the sun washed breeze and listen to the waves from the Huron Suite with its spectacular view of Lake Huron featuring a Queen size bed, fireplace, TV (including Netflix), and a full four-piece en suite bathroom.</p>\r\n<p style=\"text-align: center;\">Priceâ€¦$210</p>\r\n<p style=\"text-align: center;\">Please <a href=\"mailto:info@watchhill.ca\">email</a> or call us at 1-519-513-9065 for availability and to book this room, or follow the link below to book via Airbnb.</p>\r\n<p style=\"text-align: center;\">Book this room <a href=\"https://www.airbnb.ca/rooms/14839468?s=0tR1BQdF\" target=\"_blank\">with Airbnb</a></p>\r\n[wpsbc id=\"1\" title=\"no\" legend=\"yes\" dropdown=\"yes\" start=\"7\" display=\"4\" language=\"auto\" month=\"6\" year=\"0\" history=\"1\"]','The Huron','','inherit','closed','closed','','17-revision-v1','','','2017-03-30 11:00:26','2017-03-30 15:00:26','',17,'https://www.watchhill.ca/2017/03/17-revision-v1/',0,'revision','',0),(476,4,'2017-10-18 10:26:34','2017-10-18 14:26:34','[metaslider id=76]\r\n<p style=\"text-align: center;\">Inhale the sun washed breeze and listen to the waves from the Huron Suite with its spectacular view of Lake Huron featuring a Queen size bed, fireplace, TV (including Netflix), Â air conditioning, and a full four-piece en suite bathroom.</p>\r\n<p style=\"text-align: center;\">Priceâ€¦$220</p>\r\n<p style=\"text-align: center;\">Please view the calendar for availability, and <a href=\"mailto:info@watchhill.ca\">email</a> or call us at 1-519-513-9065 to book this room.</p>\r\n[wpsbc id=\"1\" title=\"yes\" legend=\"yes\" dropdown=\"yes\" start=\"7\" display=\"4\" language=\"auto\" month=\"6\" year=\"0\" history=\"1\"]','The Huron','','inherit','closed','closed','','17-revision-v1','','','2017-10-18 10:26:34','2017-10-18 14:26:34','',17,'https://www.watchhill.ca/2017/10/17-revision-v1/',0,'revision','',0),(474,4,'2017-10-18 10:24:38','2017-10-18 14:24:38','[metaslider id=80]\r\n<p style=\"text-align: center;\">Marvel at the magnificent sunsets over Chantry Island or watch boats sail by on the beautiful Saugeen River from the Chantry Suite alcove. Enjoy Â central air conditioning, a King size bed, fireplace TV (including Netflix) and a three-piece en suite bathroom.</p>\r\n<p style=\"text-align: center;\">Priceâ€¦.$225</p>\r\n<p style=\"text-align: center;\">Please view the calendar for availability,and <a href=\"mailto:info@watchhill.ca\">email</a> or call us at 1-519-513-9065Â  to book this room.</p>\r\n<p style=\"text-align: center;\">[wpsbc id=\"2\" title=\"yes\" legend=\"yes\" dropdown=\"yes\" start=\"7\" display=\"4\" language=\"auto\" month=\"6\" year=\"0\" history=\"1\"]</p>','The Chantry','','inherit','closed','closed','','19-revision-v1','','','2017-10-18 10:24:38','2017-10-18 14:24:38','',19,'https://www.watchhill.ca/2017/10/19-revision-v1/',0,'revision','',0),(319,3,'2017-03-30 12:30:13','2017-03-30 16:30:13','[metaslider id=76]\r\n<p style=\"text-align: center;\">Inhale the sun washed breeze and listen to the waves from the Huron Suite with its spectacular view of Lake Huron featuring a Queen size bed, fireplace, TV (including Netflix), and a full four-piece ensuite bathroom.</p>\r\n<p style=\"text-align: center;\">Priceâ€¦$210</p>\r\n<p style=\"text-align: center;\">Please view the calendar for availability, and <a href=\"mailto:info@watchhill.ca\">email</a> or call us at 1-519-513-9065 to book this room, or follow the link below to book via Airbnb.</p>\r\n[wpsbc id=\"1\" title=\"yes\" legend=\"yes\" dropdown=\"yes\" start=\"7\" display=\"4\" language=\"auto\" month=\"6\" year=\"0\" history=\"1\"]\r\n\r\nBook this room <a href=\"https://www.airbnb.ca/rooms/14839468?s=0tR1BQdF\" target=\"_blank\">with Airbnb</a>','The Huron','','inherit','closed','closed','','17-revision-v1','','','2017-03-30 12:30:13','2017-03-30 16:30:13','',17,'https://www.watchhill.ca/2017/03/17-revision-v1/',0,'revision','',0),(318,3,'2017-03-30 12:28:25','2017-03-30 16:28:25','[metaslider id=76]\r\n<p style=\"text-align: center;\">Inhale the sun washed breeze and listen to the waves from the Huron Suite with its spectacular view of Lake Huron featuring a Queen size bed, fireplace, TV (including Netflix), and a full four-piece ensuite bathroom.</p>\r\n<p style=\"text-align: center;\">Priceâ€¦$210</p>\r\n<p style=\"text-align: center;\">Please view the calendar for availability, and <a href=\"mailto:info@watchhill.ca\">email</a> or call us at 1-519-513-9065 to book this room, or follow the link below to book via Airbnb.</p>\r\n<p style=\"text-align: center;\">Book this room <a href=\"https://www.airbnb.ca/rooms/14839468?s=0tR1BQdF\" target=\"_blank\">with Airbnb</a></p>\r\n[wpsbc id=\"1\" title=\"yes\" legend=\"yes\" dropdown=\"yes\" start=\"7\" display=\"4\" language=\"auto\" month=\"6\" year=\"0\" history=\"1\"]','The Huron','','inherit','closed','closed','','17-revision-v1','','','2017-03-30 12:28:25','2017-03-30 16:28:25','',17,'https://www.watchhill.ca/2017/03/17-revision-v1/',0,'revision','',0),(328,3,'2017-11-03 10:12:41','2017-11-03 14:12:41','[metaslider id=137]\r\n<h2>The Suites</h2>\r\nEach suite at Watch Hill features a view of the Saugeen River or Lake Huron and all rooms have a private ensuite bathroom. All bathrooms are equipped with shampoo, hair dryers and an Eminence hostess gift from our local spa. The house is equipped with central air conditioning.\r\n\r\nThe Chantry, Huron, and SaugeenÂ suites are available for booking from June 1st - September 30th. The Harbour Suite; a studio apartment with private entrance, king size bed, kitchenette, isÂ  available October 1st through May 31. Breakfast items provided.\r\n<h2 data-reactid=\"187\">Common Areas</h2>\r\n<p data-reactid=\"187\"><span data-reactid=\"188\">Watch Hillâ€™s common areas include a spectacular Great room, dining room and a large veranda furnished for enjoying outdoor breakfast or just lazing the day away in one of our comfortable chairs. Alternatively, take your breakfast on our sunny patio and then work on your tan or finish your novel in one of our colourful Adirondacks. </span><br data-reactid=\"189\" /><span data-reactid=\"190\">Arrangements can be made to watch the latest movies on the 60â€ Apple-TV over the fireplace in the Great room.</span><br data-reactid=\"191\" /><span data-reactid=\"192\">Common areas have tables suitable for working on a laptop.</span><br data-reactid=\"193\" /><span data-reactid=\"194\">We are pleased to offer our guests the use of an electric vehicle charging unit.</span></p>\r\n\r\n<h2 data-reactid=\"187\">Breakfast</h2>\r\nThe coffee station is available throughout the day with home baked cookies served every afternoon at 3.Â  Breakfasts include continental offerings sourced from local epicures; granola, fresh fruit from the farm, local cheese, jams and maple syrup â€“ and a daily hot entrÃ©e.<span data-reactid=\"225\"> Please contact us if you have any dietary restrictions or concerns</span>; we would be happy to accommodate you.\r\n<h2>Booking</h2>\r\nPlease <a href=\"mailto:info@watchhill.ca\">email</a> or call us at 1-519-513-9065 for more information, or to book a suite.\r\n\r\nVisit the suites\' individual pages to view the calendars for availability.\r\n<div class=\"one-fourth first\"><a href=\"https://www.watchhill.ca/accommodations/the-huron/\">\r\n<img class=\"alignnone wp-image-496 size-medium\" src=\"https://www.watchhill.ca/wp-content/uploads/2017/03/Huron-1-133x300.jpg\" alt=\"\" width=\"195\" height=\"440\" /></a></div>\r\n<div class=\"one-fourth\"><a href=\"https://www.watchhill.ca/accommodations/the-chantry/\">\r\n<img class=\"alignnone wp-image-497 size-medium\" src=\"https://www.watchhill.ca/wp-content/uploads/2017/03/chantry-2-133x300.jpg\" alt=\"\" width=\"195\" height=\"440\" /></a></div>\r\n<div class=\"one-fourth\"><a href=\"https://www.watchhill.ca/accommodations/the-saugeen/\">\r\n<img class=\"alignnone wp-image-494 size-medium\" src=\"https://www.watchhill.ca/wp-content/uploads/2017/03/saugeen-1-133x300.jpg\" alt=\"\" width=\"195\" height=\"440\" /></a></div>\r\n<div class=\"one-fourth\"><a href=\"https://www.watchhill.ca/accommodations/harbour-suite/\">\r\n<img class=\"alignnone wp-image-499 size-medium\" src=\"https://www.watchhill.ca/wp-content/uploads/2017/03/Harbour-1-133x300.jpg\" alt=\"\" width=\"195\" height=\"440\" /></a></div>\r\n<div class=\"clearfix\"></div>','Accommodations','','inherit','closed','closed','','15-autosave-v1','','','2017-11-03 10:12:41','2017-11-03 14:12:41','',15,'https://www.watchhill.ca/2017/03/15-autosave-v1/',0,'revision','',0),(326,3,'2017-03-30 13:02:47','2017-03-30 17:02:47','[metaslider id=76]\r\n<p style=\"text-align: center;\">Inhale the sun washed breeze and listen to the waves from the Huron Suite with its spectacular view of Lake Huron featuring a Queen size bed, fireplace, TV (including Netflix), and a full four-piece ensuite bathroom.</p>\r\n<p style=\"text-align: center;\">Priceâ€¦$210</p>\r\n<p style=\"text-align: center;\">Please view the calendar for availability, and <a href=\"mailto:info@watchhill.ca\">email</a> or call us at 1-519-513-9065 to book this room, or follow the link below to book via Airbnb.</p>\r\n[wpsbc id=\"1\" title=\"yes\" legend=\"yes\" dropdown=\"yes\" start=\"7\" display=\"4\" language=\"auto\" month=\"5\" year=\"0\" history=\"1\"]\r\n\r\nBook this room <a href=\"https://www.airbnb.ca/rooms/14839468?s=0tR1BQdF\" target=\"_blank\">with Airbnb</a>','The Huron','','inherit','closed','closed','','17-revision-v1','','','2017-03-30 13:02:47','2017-03-30 17:02:47','',17,'https://www.watchhill.ca/2017/03/17-revision-v1/',0,'revision','',0),(473,4,'2017-10-16 18:13:18','2017-10-16 22:13:18','[metaslider id=348]\r\n<p style=\"text-align: center;\">Â TheÂ Harbour Suite, a studio apartment with private entrance, king size bed , kitchenette; comfortably sleeps 4; available October 1st - May 30th, Breakfast items provided.</p>\r\n<p style=\"text-align: center;\">Please contact us for more information, or to make a booking.</p>\r\n<p style=\"text-align: center;\">email us at <a href=\"mailto:info@watchhill.ca\">info@watchhill.ca</a> or call us at 1-519-513-9065</p>\r\n<p style=\"text-align: center;\">[wpsbc id=\"4\" title=\"yes\" legend=\"yes\" dropdown=\"yes\" start=\"1\" display=\"4\" language=\"auto\" month=\"10\" year=\"0\" history=\"1\"]</p>','The Harbour Suite','','inherit','closed','closed','','226-revision-v1','','','2017-10-16 18:13:18','2017-10-16 22:13:18','',226,'https://www.watchhill.ca/2017/10/226-revision-v1/',0,'revision','',0),(487,3,'2017-10-26 13:06:54','2017-10-26 17:06:54','','IMG 0114','','inherit','closed','closed','','img_0114','','','2017-10-26 13:06:54','2017-10-26 17:06:54','',0,'https://www.watchhill.ca/wp-content/uploads/2017/10/IMG_0114.jpg',0,'attachment','image/jpeg',0),(488,3,'2017-10-26 13:07:00','2017-10-26 17:07:00','','Slider 348 - image','','publish','closed','closed','','slider-348-image','','','2017-10-26 13:09:21','2017-10-26 17:09:21','',0,'https://www.watchhill.ca/?post_type=ml-slide&#038;p=488',1,'ml-slide','',0),(511,4,'2018-02-05 15:35:57','2018-02-05 20:35:57','<img class=\"aligncenter wp-image-118 size-large\" src=\"https://www.watchhill.ca/wp-content/uploads/2017/03/7-1024x768.jpg\" alt=\"\" width=\"1024\" height=\"768\" />\r\n<div class=\"simple-format-container\" data-reactid=\"186\">\r\n<div class=\"simple-format-container\" data-reactid=\"208\">\r\n<p data-reactid=\"209\"><span data-reactid=\"210\">Watch Hill is truly Southamptonâ€™s Grande Dame, a Beach House home-away-from-home overlooking the mouth of the Saugeen River where it meanders past a working lighthouse and fishing pier toward Chantry Island and on to sparkling blue Lake Huron.</span></p>\r\n<p data-reactid=\"209\">Steps from the front door canoe, kayak, swim, fish, golf, hike, bike, x country ski, snowmobile, stroll the walking trail to downtown shops and delis or bike the rail-trail for miles into villages \"down the way\".Â <br data-reactid=\"211\" /><span data-reactid=\"212\">Downtown offers no shortage of attractions, boutiques, and dining establishments. Fun days, adventures and special occasions can be arranged (please ask us about this); explore the beaches, spend a day on the river, bike the trails or hike the paths and then enjoy a massage or yoga on the porch.</span></p>\r\n\r\n</div>\r\nOver 1,000 people toured Watch Hill to raise money for the hospital in November 2017. See highlights from the tour in the video below.\r\n\r\nhttps://youtu.be/RUOrc7RLJEY\r\n\r\n</div>','About','','inherit','closed','closed','','7-revision-v1','','','2018-02-05 15:35:57','2018-02-05 20:35:57','',7,'https://www.watchhill.ca/2018/02/7-revision-v1/',0,'revision','',0),(512,4,'2018-02-05 15:37:29','2018-02-05 20:37:29','Watch Hillâ€™s common areas include a spectacular Great room, dining room and a large veranda furnished for enjoying outdoor breakfast or just lazing the day away in one of our comfortable chairs.\r\n\r\n[foogallery id=\"96\"]','Shared Spaces','','inherit','closed','closed','','9-revision-v1','','','2018-02-05 15:37:29','2018-02-05 20:37:29','',9,'https://www.watchhill.ca/2018/02/9-revision-v1/',0,'revision','',0),(513,4,'2018-02-05 15:45:06','2018-02-05 20:45:06','','Santa plays the piano in the Watch Hill Great Room','Santa plays the piano in the Watch Hill Great Room','inherit','closed','closed','','img_0107','','','2018-02-06 01:55:43','2018-02-06 06:55:43','',0,'https://www.watchhill.ca/wp-content/uploads/2018/02/IMG_0107.jpeg',0,'attachment','image/jpeg',0),(514,4,'2018-02-05 15:45:14','2018-02-05 20:45:14','','Snow-layden Christmas tree at Watch Hill','Snow-layden Christmas tree at Watch Hill','inherit','closed','closed','','img_2181','','','2018-02-06 01:54:55','2018-02-06 06:54:55','',0,'https://www.watchhill.ca/wp-content/uploads/2018/02/IMG_2181.jpg',0,'attachment','image/jpeg',0),(515,4,'2018-02-05 15:45:18','2018-02-05 20:45:18','','Dooley on the front porch, waiting for Christmas','Dooley on the front porch, waiting for Christmas','inherit','closed','closed','','img_2184','','','2018-02-06 01:54:15','2018-02-06 06:54:15','',0,'https://www.watchhill.ca/wp-content/uploads/2018/02/IMG_2184.jpg',0,'attachment','image/jpeg',0),(516,4,'2018-02-05 15:45:22','2018-02-05 20:45:22','','Fast Friends','Santa makes a new best friend at Watch Hill','inherit','closed','closed','','img_2193','','','2018-02-06 01:53:32','2018-02-06 06:53:32','',0,'https://www.watchhill.ca/wp-content/uploads/2018/02/IMG_2193.jpg',0,'attachment','image/jpeg',0),(530,6,'2018-02-21 17:15:20','2018-02-21 22:15:20','','Wineglass at fire','Enjoy a beverage by the fire in the evening. Photo credit: Zbigniew Bieleck','inherit','closed','closed','','wineglassatfire','','','2018-02-21 17:17:52','2018-02-21 22:17:52','',0,'https://www.watchhill.ca/wp-content/uploads/2018/02/wineglassatfire.jpg',0,'attachment','image/jpeg',0),(521,4,'2018-02-05 16:55:18','2018-02-05 21:55:18','Watch Hillâ€™s common areas include a spectacular Great room, dining room and a large veranda furnished for enjoying outdoor breakfast or just lazing the day away in one of our comfortable chairs.\r\n\r\n[foogallery id=\"96\"]','Shared Spaces','','inherit','closed','closed','','9-autosave-v1','','','2018-02-05 16:55:18','2018-02-05 21:55:18','',9,'https://www.watchhill.ca/2018/02/9-autosave-v1/',0,'revision','',0),(457,4,'2017-09-18 13:04:20','2017-09-18 17:04:20','[metaslider id=137]\r\n<h2>The Suites</h2>\r\nEach suite at Watch Hill features a view of the Saugeen River or Lake Huron and all rooms have a private ensuite bathroom. All bathrooms are equipped with shampoo, hair dryers and an Eminence hostess gift from our local spa. The house is equipped with central air conditioning.\r\n\r\nOur suites are available for booking from June 1st - September 30th. Â The Harbour Suite; a studio apartment with kitchenette isÂ available October 1st through April 30.\r\n<h2 data-reactid=\"187\">Common Areas</h2>\r\n<p data-reactid=\"187\"><span data-reactid=\"188\">Watch Hillâ€™s common areas include a spectacular Great room, dining room and a large veranda furnished for enjoying outdoor breakfast or just lazing the day away in one of our comfortable chairs. Alternatively, take your breakfast on our sunny patio and then work on your tan or finish your novel in one of our colourful Adirondacks. </span><br data-reactid=\"189\" /><span data-reactid=\"190\">Arrangements can be made to watch the latest movies on the 60â€ Apple-TV over the fireplace in the Great room.</span><br data-reactid=\"191\" /><span data-reactid=\"192\">Common areas have tables suitable for working on a laptop.</span><br data-reactid=\"193\" /><span data-reactid=\"194\">We are pleased to offer our guests the use of an electric vehicle charging unit.</span></p>\r\n\r\n<h2 data-reactid=\"187\">Breakfast</h2>\r\nThe coffee station is available throughout the day with home baked cookies served every afternoon at 3.Â  Breakfasts include continental offerings sourced from local epicures; granola, fresh fruit from the farm, local cheese, jams and maple syrup â€“ and a daily hot entrÃ©e.<span data-reactid=\"225\"> Please contact us if you have any dietary restrictions or concerns</span>; we would be happy to accommodate you.\r\n<h2>Booking</h2>\r\nPlease <a href=\"mailto:info@watchhill.ca\">email</a> or call us at 1-519-513-9065 for more information, or to book a suite.\r\n\r\nVisit the suites\' individual pages to view the calendars for availability.\r\n<div class=\"one-third first\"><a href=\"https://www.watchhill.ca/accommodations/the-huron/\">\r\n<img class=\"alignnone wp-image-175 size-full\" src=\"https://www.watchhill.ca/wp-content/uploads/2017/06/Huron-button.jpg\" alt=\"\" /></a></div>\r\n<div class=\"one-third\"><a href=\"https://www.watchhill.ca/accommodations/the-chantry/\">\r\n<img class=\"wp-image-174 size-full alignnone\" src=\"https://www.watchhill.ca/wp-content/uploads/2017/06/Chantry-button.jpg\" alt=\"\" /></a></div>\r\n<div class=\"one-third\"><a href=\"https://www.watchhill.ca/accommodations/the-saugeen/\">\r\n<img class=\"wp-image-176 size-full alignnone\" src=\"https://www.watchhill.ca/wp-content/uploads/2017/06/Saugeen-button.jpg\" alt=\"\" /></a></div>\r\n<div class=\"clearfix\"></div>','Accommodations','','inherit','closed','closed','','15-revision-v1','','','2017-09-18 13:04:20','2017-09-18 17:04:20','',15,'https://www.watchhill.ca/2017/09/15-revision-v1/',0,'revision','',0),(471,4,'2017-10-16 11:23:09','2017-10-16 15:23:09','[metaslider id=137]\r\n<h2>The Suites</h2>\r\nEach suite at Watch Hill features a view of the Saugeen River or Lake Huron and all rooms have a private ensuite bathroom. All bathrooms are equipped with shampoo, hair dryers and an Eminence hostess gift from our local spa. The house is equipped with central air conditioning.\r\n\r\nThe Chantry, Huron, and SaugeenÂ suites are available for booking from June 1st - September 30th. The Harbour Suite; a studio apartment with private entrance, king size bed, kitchenette, continental breakfast isÂ available October 1st through May 31.\r\n<h2 data-reactid=\"187\">Common Areas</h2>\r\n<p data-reactid=\"187\"><span data-reactid=\"188\">Watch Hillâ€™s common areas include a spectacular Great room, dining room and a large veranda furnished for enjoying outdoor breakfast or just lazing the day away in one of our comfortable chairs. Alternatively, take your breakfast on our sunny patio and then work on your tan or finish your novel in one of our colourful Adirondacks. </span><br data-reactid=\"189\" /><span data-reactid=\"190\">Arrangements can be made to watch the latest movies on the 60â€ Apple-TV over the fireplace in the Great room.</span><br data-reactid=\"191\" /><span data-reactid=\"192\">Common areas have tables suitable for working on a laptop.</span><br data-reactid=\"193\" /><span data-reactid=\"194\">We are pleased to offer our guests the use of an electric vehicle charging unit.</span></p>\r\n\r\n<h2 data-reactid=\"187\">Breakfast</h2>\r\nThe coffee station is available throughout the day with home baked cookies served every afternoon at 3.Â  Breakfasts include continental offerings sourced from local epicures; granola, fresh fruit from the farm, local cheese, jams and maple syrup â€“ and a daily hot entrÃ©e.<span data-reactid=\"225\"> Please contact us if you have any dietary restrictions or concerns</span>; we would be happy to accommodate you.\r\n<h2>Booking</h2>\r\nPlease <a href=\"mailto:info@watchhill.ca\">email</a> or call us at 1-519-513-9065 for more information, or to book a suite.\r\n\r\nVisit the suites\' individual pages to view the calendars for availability.\r\n<div class=\"one-third first\"><a href=\"https://www.watchhill.ca/accommodations/the-huron/\">\r\n<img class=\"alignnone wp-image-175 size-full\" src=\"https://www.watchhill.ca/wp-content/uploads/2017/06/Huron-button.jpg\" alt=\"\" /></a></div>\r\n<div class=\"one-third\"><a href=\"https://www.watchhill.ca/accommodations/the-chantry/\">\r\n<img class=\"wp-image-174 size-full alignnone\" src=\"https://www.watchhill.ca/wp-content/uploads/2017/06/Chantry-button.jpg\" alt=\"\" /></a></div>\r\n<div class=\"one-third\"><a href=\"https://www.watchhill.ca/accommodations/the-saugeen/\">\r\n<img class=\"wp-image-176 size-full alignnone\" src=\"https://www.watchhill.ca/wp-content/uploads/2017/06/Saugeen-button.jpg\" alt=\"\" /></a></div>\r\n<div class=\"clearfix\"></div>','Accommodations','','inherit','closed','closed','','15-revision-v1','','','2017-10-16 11:23:09','2017-10-16 15:23:09','',15,'https://www.watchhill.ca/2017/10/15-revision-v1/',0,'revision','',0),(470,4,'2017-10-16 11:19:34','2017-10-16 15:19:34','[metaslider id=348]\r\n<p style=\"text-align: center;\">Â TheÂ Harbour Suite, a studio apartment with private entrance, king size bed , kitchenette, continental breakfast; comfortably sleeps 4; available October 1st - May 30th,</p>\r\n<p style=\"text-align: center;\">Please contact us for more information, or to make a booking.</p>\r\n<p style=\"text-align: center;\">email us at <a href=\"mailto:info@watchhill.ca\">info@watchhill.ca</a> or call us at 1-519-513-9065</p>\r\n<p style=\"text-align: center;\">[wpsbc id=\"4\" title=\"yes\" legend=\"yes\" dropdown=\"yes\" start=\"1\" display=\"4\" language=\"auto\" month=\"10\" year=\"0\" history=\"1\"]</p>','The Harbour Suite','','inherit','closed','closed','','226-revision-v1','','','2017-10-16 11:19:34','2017-10-16 15:19:34','',226,'https://www.watchhill.ca/2017/10/226-revision-v1/',0,'revision','',0),(253,3,'2017-03-27 09:37:01','2017-03-27 13:37:01','<img class=\"aligncenter wp-image-118 size-large\" src=\"https://www.watchhill.ca/wp-content/uploads/2017/03/7-1024x768.jpg\" alt=\"\" width=\"1024\" height=\"768\" />\r\n\r\n&nbsp;\r\n<div class=\"simple-format-container\" data-reactid=\"186\">\r\n<div class=\"simple-format-container\" data-reactid=\"208\">\r\n<p data-reactid=\"209\"><span data-reactid=\"210\">Watch Hill is truly Southamptonâ€™s Grande Dame, a Beach House home-away-from-home overlooking the mouth of the Saugeen River where it meanders past a working lighthouse and fishing pier toward Chantry Island and on to the sparkling blue Huron Lake.</span><br data-reactid=\"211\" /><span data-reactid=\"212\">Downtown offers no shortage of attractions, boutiques,and various dining establishments.Fun days, adventures and special occasions can be arranged (please ask us about this); explore the beaches, spend a day on the river, bike the trails or hike the paths, massage or yoga on the porch.</span></p>\r\n<p data-reactid=\"209\"><span data-reactid=\"220\">Steps from the front door: canoe, kayak, swim, fish,golf, hike, bike, x country ski, snowmobile , stroll the walking trail to downtown shops and delis or bike the rail trail for miles into villages â€œdown the wayâ€.</span></p>\r\n\r\n</div>\r\n</div>','About','','inherit','closed','closed','','7-revision-v1','','','2017-03-27 09:37:01','2017-03-27 13:37:01','',7,'https://www.watchhill.ca/2017/03/7-revision-v1/',0,'revision','',0),(245,3,'2017-03-24 08:56:02','2017-03-24 12:56:02','<img class=\"aligncenter wp-image-118 size-large\" src=\"https://www.watchhill.ca/wp-content/uploads/2017/03/7-1024x768.jpg\" alt=\"\" width=\"1024\" height=\"768\" />\r\n\r\n<span data-reactid=\"27\">Southampton is famous for its incredible sunsets, and long sandy beaches. Watch Hill B&amp;B overlooks Chantry Island; it is just a short walk to the beach from our front steps.</span>\r\n\r\n<span data-reactid=\"180\">Marvel at the magnificent sunsets over Chantry Island or watch sailboats ply the beautiful Saugeen River from the Chantry Suite alcove.\r\n</span>\r\n<div class=\"simple-format-container\" data-reactid=\"186\">\r\n<div class=\"simple-format-container\" data-reactid=\"208\">\r\n<p data-reactid=\"209\"><span data-reactid=\"210\">Watch Hill is truly Southamptonâ€™s Grande Dame, a Beach House home-away-from-home overlooking the mouth of the Saugeen River where it meanders past a working lighthouse and fishing pier toward Chantry Island and on to the sparkling blue Huron Lake.</span><br data-reactid=\"211\" /><span data-reactid=\"212\">Downtown offers no shortage of attractions, boutiques,and various dining establishments.Fun days, adventures and special occasions can be arranged (please ask us about this); explore the beaches, spend a day on the river, bike the trails or hike the paths, massage or yoga on the porch.</span></p>\r\n<p data-reactid=\"209\"><span data-reactid=\"220\">Steps from the front door: canoe, kayak, swim, fish,golf, hike, bike, x country ski, snowmobile , stroll the walking trail to downtown shops and delis or bike the rail trail for miles into villages â€œdown the wayâ€.</span></p>\r\n\r\n</div>\r\n</div>','About','','inherit','closed','closed','','7-revision-v1','','','2017-03-24 08:56:02','2017-03-24 12:56:02','',7,'https://www.watchhill.ca/2017/03/7-revision-v1/',0,'revision','',0),(246,3,'2017-03-24 13:37:08','2017-03-24 17:37:08','<span class=\"text_5mbkop-o_O-size_reduced_1oti1ib-o_O-inline_g86r3e\" data-reactid=\"369\"><span data-reactid=\"370\">We are retired (this time we mean it) from very rewarding careers. We have spent the last two years remodelling and renovating Watch Hill Bed &amp; Breakfast, a Victorian Beach house and the Grand Dame of Southampton. People who visit us remark on how beautiful our home is, and several have encouraged us to share it with others. So, we are. We are told we are excellent hosts, and hosting is one of our favourite things to do. We have stayed in numerous B&amp;Bs ourselves and believe that it is far superior to renting a hotel room. </span><br data-reactid=\"371\" /><span data-reactid=\"372\">Won\'t you join us?</span></span>\n\n[caption id=\"attachment_164\" align=\"aligncenter\" width=\"219\"]<img class=\"size-medium wp-image-164\" src=\"https://www.watchhill.ca/wp-content/uploads/2017/03/IMGP0761-219x300.jpg\" alt=\"Sue and Richard\" width=\"219\" height=\"300\" /> Sue &amp; Richard[/caption]','Your Hosts','','inherit','closed','closed','','13-autosave-v1','','','2017-03-24 13:37:08','2017-03-24 17:37:08','',13,'https://www.watchhill.ca/2017/03/13-autosave-v1/',0,'revision','',0),(266,5,'2017-03-29 14:28:40','2017-03-29 18:28:40','<span class=\"text_5mbkop-o_O-size_reduced_1oti1ib-o_O-inline_g86r3e\" data-reactid=\"369\"><span data-reactid=\"370\">We are retired (this time we mean it) from very rewarding careers and have spent the last two years remodelling and renovating Watch Hill. Â Friends who visited remarked on theÂ beauty of Watch Hill and its views and several encouraged us to share it. So, here we are. Hosting is one of our favourite things to do. We have stayed in numerous B&amp;Bs ourselves and believe the experience can be far superior to a rentedÂ hotel room. </span><br data-reactid=\"371\" /><span data-reactid=\"372\">Won\'t you join us?</span></span>\r\n\r\n[caption id=\"attachment_164\" align=\"aligncenter\" width=\"219\"]<img class=\"size-medium wp-image-164\" src=\"https://www.watchhill.ca/wp-content/uploads/2017/03/IMGP0761-219x300.jpg\" alt=\"Sue and Richard\" width=\"219\" height=\"300\" /> Sue &amp; Richard[/caption]','Your Hosts','','inherit','closed','closed','','13-revision-v1','','','2017-03-29 14:28:40','2017-03-29 18:28:40','',13,'https://www.watchhill.ca/2017/03/13-revision-v1/',0,'revision','',0),(247,3,'2017-03-24 13:38:10','2017-03-24 17:38:10','<span class=\"text_5mbkop-o_O-size_reduced_1oti1ib-o_O-inline_g86r3e\" data-reactid=\"369\"><span data-reactid=\"370\">We are retired (this time we mean it) from very rewarding careers. We have spent the last two years remodelling and renovating Watch Hill Bed &amp; Breakfast, a Victorian Beach house and the Grand Dame of Southampton. People who visit us remark on how beautiful our home is, and several have encouraged us to share it with others. So, we are. We are told we are excellent hosts, and hosting is one of our favourite things to do. We have stayed in numerous B&amp;Bs ourselves and believe that it is far superior to renting a hotel room. </span><br data-reactid=\"371\" /><span data-reactid=\"372\">Won\'t you join us?</span></span>\r\n\r\n[caption id=\"attachment_164\" align=\"aligncenter\" width=\"219\"]<img class=\"size-medium wp-image-164\" src=\"https://www.watchhill.ca/wp-content/uploads/2017/03/IMGP0761-219x300.jpg\" alt=\"Sue and Richard\" width=\"219\" height=\"300\" /> Sue &amp; Richard[/caption]','Your Hosts','','inherit','closed','closed','','13-revision-v1','','','2017-03-24 13:38:10','2017-03-24 17:38:10','',13,'https://www.watchhill.ca/2017/03/13-revision-v1/',0,'revision','',0),(277,5,'2017-03-29 14:49:58','2017-03-29 18:49:58','At Watch Hill we strive to provide a stress free, fun and relaxing B&amp;B experience.\r\n\r\nOur newly renovated Victorian Beach House is non-smoking and we do not allow pets. Â Our Bernese Mountain Dog, Dooley, is on-site, however, he is not allowed in the guest areas.\r\n\r\nWatch HillÂ is tailored to adults; please contact us before booking if your reservationÂ includes children.\r\n\r\nThe Chantry and Huron Suites are $210/night, and the Saugeen suite is $185/night. Â These suites are available from June 1st - September 30th.\r\n\r\nThe Loft; a studio apartment with kitchenette and capacity to sleep 6, is available October 1st - May 30th. Â Some exclusions apply. (Thanksgiving and Christmas - please enquire.)\r\n\r\nWe requireÂ 24 hours notice for cancellations.\r\n\r\nWe are happy to accommodate your dietary needs. Â Please let us know of any restrictions when you make your booking.\r\n\r\n&nbsp;','Rates & Policies','','inherit','closed','closed','','23-revision-v1','','','2017-03-29 14:49:58','2017-03-29 18:49:58','',23,'https://www.watchhill.ca/2017/03/23-revision-v1/',0,'revision','',0),(248,3,'2017-03-24 14:23:17','2017-03-24 18:23:17','At Watch Hill Bed &amp; Breakfast We strive to provide you with a stress free, relaxing B&amp;B experience.\r\n\r\nOur newly renovated Victorian Beach House is non-smoking, and we do not allow pets. We do have a dog on-site, however it is not allowed in the guest areas.\r\n\r\nOur B&amp;B is tailored to adults; please contact us before booking if your booking includes children.\r\n\r\nThe Chantry and Huron Suites are $210/night, and the Saugeen suite is $185/night. These suites are available from June 1st - September 20th.\r\n\r\nAvailable Fall 2017 is The Loft; a studio apartment with kitchenette; capacity to sleep 6 people. The Loft may be booked from October 1st - May 30th. Some exclusions apply. (Thanksgiving and Christmas - please enquire)\r\n\r\nWe would appreciate at least 24 hours notice for any cancellations.\r\n\r\nWe are happy to provide accommodate your dietary needs, please let us know of any restrictions when you make your booking.\r\n\r\n&nbsp;','Rates & Policies','','inherit','closed','closed','','23-revision-v1','','','2017-03-24 14:23:17','2017-03-24 18:23:17','',23,'https://www.watchhill.ca/2017/03/23-revision-v1/',0,'revision','',0),(249,3,'2017-03-24 14:25:00','2017-03-24 18:25:00','[caption id=\"attachment_159\" align=\"aligncenter\" width=\"300\"]<img class=\"size-medium wp-image-159\" src=\"https://www.watchhill.ca/wp-content/uploads/2017/03/IMGP0756-300x296.jpg\" alt=\"Sue and Richard\" width=\"300\" height=\"296\" /> Your Hosts, Sue &amp; Richard[/caption]\r\n<p style=\"text-align: center;\">Please contact us to make a booking, or if you have any questions about your stay.</p>\r\n<p style=\"text-align: center;\">We can be reached via email at <a href=\"mailto:info@watchhill.ca\">info@watchhill.ca</a> or by phone, 1-519-513-9065</p>\r\n<p style=\"text-align: center;\">Watch Hill Bed &amp; Breakfast</p>\r\n<p style=\"text-align: center;\">24 South Rankin St, Southampton ON</p>\r\n<p style=\"text-align: center;\"></p>','Contact','','inherit','closed','closed','','28-revision-v1','','','2017-03-24 14:25:00','2017-03-24 18:25:00','',28,'https://www.watchhill.ca/2017/03/28-revision-v1/',0,'revision','',0),(250,3,'2017-03-24 16:55:07','2017-03-24 20:55:07','','Watch Hill Bed & Breakfast - a Beach House in Southampton Ontario','','inherit','closed','closed','','1m1a6671','','','2017-03-30 14:26:08','2017-03-30 18:26:08','',0,'https://www.watchhill.ca/wp-content/uploads/2017/03/1M1A6671.jpg',0,'attachment','image/jpeg',0),(251,3,'2017-03-24 16:55:15','2017-03-24 20:55:15','','Slider 137 - image','','publish','closed','closed','','slider-137-image','','','2017-03-24 16:55:29','2017-03-24 20:55:29','',0,'https://www.watchhill.ca/?post_type=ml-slide&#038;p=251',3,'ml-slide','',0),(254,3,'2017-03-27 09:37:27','2017-03-27 13:37:27','<img class=\"aligncenter wp-image-118 size-large\" src=\"https://www.watchhill.ca/wp-content/uploads/2017/03/7-1024x768.jpg\" alt=\"\" width=\"1024\" height=\"768\" />\r\n<div class=\"simple-format-container\" data-reactid=\"186\">\r\n<div class=\"simple-format-container\" data-reactid=\"208\">\r\n<p data-reactid=\"209\"><span data-reactid=\"210\">Watch Hill is truly Southamptonâ€™s Grande Dame, a Beach House home-away-from-home overlooking the mouth of the Saugeen River where it meanders past a working lighthouse and fishing pier toward Chantry Island and on to the sparkling blue Huron Lake.</span><br data-reactid=\"211\" /><span data-reactid=\"212\">Downtown offers no shortage of attractions, boutiques,and various dining establishments.Fun days, adventures and special occasions can be arranged (please ask us about this); explore the beaches, spend a day on the river, bike the trails or hike the paths, massage or yoga on the porch.</span></p>\r\n<p data-reactid=\"209\"><span data-reactid=\"220\">Steps from the front door: canoe, kayak, swim, fish,golf, hike, bike, x country ski, snowmobile , stroll the walking trail to downtown shops and delis or bike the rail trail for miles into villages â€œdown the wayâ€.</span></p>\r\n\r\n</div>\r\n</div>','About','','inherit','closed','closed','','7-revision-v1','','','2017-03-27 09:37:27','2017-03-27 13:37:27','',7,'https://www.watchhill.ca/2017/03/7-revision-v1/',0,'revision','',0),(353,1,'2017-04-27 14:51:54','2017-04-27 18:51:54','<h1 style=\"text-align: center;\">A bright and airy, luxurious Bed &amp; Breakfast in Southampton, Ontario.</h1>\r\n<h2 style=\"text-align: center;\">Truly a Beach House.</h2>\r\nWatch Hill is Southamptonâ€™s Grande Dame, a Beach House home-away-from-home overlooking the mouth of the Saugeen River where it meanders past a working lighthouse and fishing pier toward Chantry Island and on to sparkling Lake Huron. The beach is steps from our front porch; Southampton is famous for its sunsets.\r\n\r\n\r\n','Home','','inherit','closed','closed','','5-revision-v1','','','2017-04-27 14:51:54','2017-04-27 18:51:54','',5,'https://www.watchhill.ca/2017/04/5-revision-v1/',0,'revision','',0),(350,3,'2017-04-26 13:54:07','2017-04-26 17:54:07','<h1 style=\"text-align: center;\">A bright and airy, luxurious Bed &amp; Breakfast in Southampton, Ontario.</h1>\r\n<h2 style=\"text-align: center;\">Truly a Beach House.</h2>\r\nWatch Hill is Southamptonâ€™s Grande Dame, a Beach House home-away-from-home overlooking the mouth of the Saugeen River where it meanders past a working lighthouse and fishing pier toward Chantry Island and on to sparkling Lake Huron. The beach is steps from our front porch; Southampton is famous for its sunsets.\r\n<div class= \"rooms\">\r\n 	<div class=\"rooms\"></div>\r\n<a href=\"https://www.watchhill.ca/accommodations/\"> </a>	 	 \r\n</div>	 	 \r\n<div class= \"BB\">\r\n 	<div class=\"BB\"></div>\r\n<a href=\"https://www.watchhill.ca/about/\"> </a>	 	 \r\n</div>	 	 \r\n<div class= \"hosts\">\r\n 	<div class=\"hosts\"></div>\r\n<a href=\"https://www.watchhill.ca/about/your-hosts/\"> </a>	 	 \r\n</div>	 	 \r\n<div class=\"clear\">\r\n\r\n','Home','','inherit','closed','closed','','5-revision-v1','','','2017-04-26 13:54:07','2017-04-26 17:54:07','',5,'https://www.watchhill.ca/2017/04/5-revision-v1/',0,'revision','',0),(413,4,'2017-06-26 15:08:39','2017-06-26 19:08:39','[caption id=\"attachment_159\" align=\"aligncenter\" width=\"300\"]<img class=\"size-medium wp-image-159\" src=\"https://www.watchhill.ca/wp-content/uploads/2017/03/IMGP0756-300x296.jpg\" alt=\"Sue and Richard\" width=\"300\" height=\"296\" /> Your Hosts, Sue &amp; Richard[/caption]\n<p style=\"text-align: center;\">PleaseÂ email Â <a href=\"mailto:info@watchhill.ca\">info@watchhill.ca</a> orÂ callÂ 1-519-513-9065 to make Â a booking, or if you have any questions about your stay.</p>\n<p style=\"text-align: center;\"></p>\n<p style=\"text-align: center;\">Watch Hill Bed &amp; Breakfast</p>\n<p style=\"text-align: center;\">24 South Rankin St, Southampton ON</p>\n<p style=\"text-align: center;\"></p>','Contact','','inherit','closed','closed','','28-autosave-v1','','','2017-06-26 15:08:39','2017-06-26 19:08:39','',28,'https://www.watchhill.ca/2017/06/28-autosave-v1/',0,'revision','',0),(267,5,'2017-03-29 14:31:39','2017-03-29 18:31:39','Steps from the front door, canoe, kayak, swim, fish, stroll the walking trail to downtown shops and delis or bike the rail trail for miles into villages â€œdown the wayâ€.<span data-reactid=\"180\">Marvel at the magnificent sunsets over Chantry Island or watch boats pass by on the beautiful Saugeen River.</span>\n<p data-reactid=\"209\"><span data-reactid=\"212\">Downtown offers no shortage of attractions, boutiques, and dining establishments. Fun days, adventures and special occasions can be arranged (please ask us about this); explore the beaches, spend a day on the river, bike the trails or hike the paths and Â your day with a massage or yoga on the porch.</span></p>\nContact us and we would be more than happy to give you more information, or to arrange activities for you during your stay.\n\n[foogallery id=\"115\"]','The Area','','inherit','closed','closed','','114-autosave-v1','','','2017-03-29 14:31:39','2017-03-29 18:31:39','',114,'https://www.watchhill.ca/2017/03/114-autosave-v1/',0,'revision','',0),(268,5,'2017-03-29 14:32:32','2017-03-29 18:32:32','Steps from the front door, canoe, kayak, swim, fish, stroll the walking trail to downtown shops and delis or bike the rail trail for miles into villages â€œdown the wayâ€.<span data-reactid=\"180\">Marvel at the magnificent sunsets over Chantry Island or watch boats pass by on the beautiful Saugeen River.</span>\r\n<p data-reactid=\"209\"><span data-reactid=\"212\">Downtown offers no shortage of attractions, boutiques, and dining establishments. Fun days, adventures and special occasions can be arranged (please ask us about this); explore the beaches, spend time on the river, bike the trails or hike the paths and complete your day with a massage or yoga on the porch.</span></p>\r\nContact us and we would be more than happy to give you more information, or to arrange activities for you during your stay.\r\n\r\n[foogallery id=\"115\"]','The Area','','inherit','closed','closed','','114-revision-v1','','','2017-03-29 14:32:32','2017-03-29 18:32:32','',114,'https://www.watchhill.ca/2017/03/114-revision-v1/',0,'revision','',0),(269,5,'2017-03-29 14:33:07','2017-03-29 18:33:07','Steps from the front door, canoe, kayak, swim, fish, stroll the walking trail to downtown shops and delis or bike the rail trail for miles into villages â€œdown the wayâ€.Â <span data-reactid=\"180\">Marvel at the magnificent sunsets over Chantry Island or watch boats pass by on the beautiful Saugeen River.</span>\r\n<p data-reactid=\"209\"><span data-reactid=\"212\">Downtown offers no shortage of attractions, boutiques, and dining establishments. Fun days, adventures and special occasions can be arranged (please ask us about this); explore the beaches, spend time on the river, bike the trails or hike the paths and complete your day with a massage or yoga on the porch.</span></p>\r\nContact us and we would be more than happy to give you more information, or to arrange activities for you during your stay.\r\n\r\n[foogallery id=\"115\"]','The Area','','inherit','closed','closed','','114-revision-v1','','','2017-03-29 14:33:07','2017-03-29 18:33:07','',114,'https://www.watchhill.ca/2017/03/114-revision-v1/',0,'revision','',0),(270,5,'2017-03-29 14:33:54','2017-03-29 18:33:54','Steps from the front door, canoe, kayak, swim, fish, stroll the walking trail to downtown shops and delis or bike the rail trail for miles into villages â€œdown the wayâ€.Â <span data-reactid=\"180\">Marvel at the magnificent sunsets over Chantry Island or watch boats pass by on the beautiful Saugeen River.</span>\r\n<p data-reactid=\"209\"><span data-reactid=\"212\">Downtown offers no shortage of attractions, boutiques and dining establishments. Fun days, adventures and special occasions can be arranged (please ask us about this); explore the beaches, spend time on the river, bike the trails or hike the paths and complete your day with a massage or yoga on the porch.</span></p>\r\nContact us and we would be more than happy to give you more information, or to arrange activities for you during your stay.\r\n\r\n[foogallery id=\"115\"]','The Area','','inherit','closed','closed','','114-revision-v1','','','2017-03-29 14:33:54','2017-03-29 18:33:54','',114,'https://www.watchhill.ca/2017/03/114-revision-v1/',0,'revision','',0),(477,4,'2017-10-18 10:27:10','2017-10-18 14:27:10','[metaslider id=92]\r\n<p style=\"text-align: center;\">The Saugeen Suite is air conditioned, Â features a three-piece en suite bathroom, Queen size bed, and a view of the Saugeen River. Comfy and cozy, this room appeals to those who like to sleep a little later.</p>\r\n<p style=\"text-align: center;\">Priceâ€¦.$190</p>\r\n<p style=\"text-align: center;\">Please view the calendar for availability, and <a href=\"mailto:info@watchhill.ca\">email</a> or call us at 1-519-513-9065 to book this room.</p>\r\n<p style=\"text-align: center;\">[wpsbc id=\"3\" title=\"yes\" legend=\"yes\" dropdown=\"yes\" start=\"7\" display=\"4\" language=\"auto\" month=\"6\" year=\"0\" history=\"1\"]</p>','The Saugeen','','inherit','closed','closed','','21-revision-v1','','','2017-10-18 10:27:10','2017-10-18 14:27:10','',21,'https://www.watchhill.ca/2017/10/21-revision-v1/',0,'revision','',0),(273,5,'2017-03-29 14:37:16','2017-03-29 18:37:16','[metaslider id=80]\r\n<p style=\"text-align: center;\">Marvel at the magnificent sunsets over Chantry Island or watch boats sail by on the beautiful Saugeen River from the Chantry Suite alcove. Enjoy a King size bed, fireplace and a three-piece en suite bathroom.</p>\r\n<p style=\"text-align: center;\">Priceâ€¦.$210</p>\r\n<p style=\"text-align: center;\">Please email or call us at 1-519-513-9065 for availability and to book this room, or follow the link below to book via Airbnb.</p>\r\n<p style=\"text-align: center;\">Book this room <a href=\"https://www.airbnb.ca/rooms/14839417?s=0tR1BQdF\" target=\"_blank\">with Airbnb</a></p>','The Chantry','','inherit','closed','closed','','19-revision-v1','','','2017-03-29 14:37:16','2017-03-29 18:37:16','',19,'https://www.watchhill.ca/2017/03/19-revision-v1/',0,'revision','',0),(274,5,'2017-03-29 14:42:02','2017-03-29 18:42:02','[metaslider id=92]\n<p style=\"text-align: center;\">The Saugeen Suite features a three-piece en suite bathroom, fireplace,Queen size bed, TV (including Netflix) and a view of the Saugeen River. Comfy and cozy, this room appeals to those who like to sleep a little later.</p>\n<p style=\"text-align: center;\">Priceâ€¦.$180</p>\n<p style=\"text-align: center;\">Please email or call us at 1-519-513-9065 for availability and to book this room, or follow the link below to book via Airbnb.</p>\n<p style=\"text-align: center;\">Book this room <a href=\"https://www.airbnb.ca/rooms/14838721?s=0tR1BQdF\" target=\"_blank\">with Airbnb</a></p>','The Saugeen','','inherit','closed','closed','','21-autosave-v1','','','2017-03-29 14:42:02','2017-03-29 18:42:02','',21,'https://www.watchhill.ca/2017/03/21-autosave-v1/',0,'revision','',0),(275,5,'2017-03-29 14:42:10','2017-03-29 18:42:10','[metaslider id=92]\r\n<p style=\"text-align: center;\">The Saugeen Suite features a three-piece en suite bathroom, fireplace,Queen size bed, TV (including Netflix) and a view of the Saugeen River. Comfy and cozy, this room appeals to those who like to sleep a little later.</p>\r\n<p style=\"text-align: center;\">Priceâ€¦.$180</p>\r\n<p style=\"text-align: center;\">Please email or call us at 1-519-513-9065 for availability and to book this room, or follow the link below to book via Airbnb.</p>\r\n<p style=\"text-align: center;\">Book this room <a href=\"https://www.airbnb.ca/rooms/14838721?s=0tR1BQdF\" target=\"_blank\">with Airbnb</a></p>','The Saugeen','','inherit','closed','closed','','21-revision-v1','','','2017-03-29 14:42:10','2017-03-29 18:42:10','',21,'https://www.watchhill.ca/2017/03/21-revision-v1/',0,'revision','',0),(276,5,'2017-03-29 14:49:45','2017-03-29 18:49:45','At Watch Hill we strive to provide a stress free, fun and relaxing B&amp;B experience.\n\nOur newly renovated Victorian Beach House is non-smoking and we do not allow pets. Â Our Bernese Mountain Dog, Dooley, is on-site, however, he is not allowed in the guest areas.\n\nWatch HillÂ is tailored to adults; please contact us before booking if your reservationÂ includes children.\n\nThe Chantry and Huron Suites are $210/night, and the Saugeen suite is $185/night. These suites are available from June 1st - September 30th.\n\nThe Loft; a studio apartment with kitchenette and capacity to sleep 6, is available October 1st - May 30th. Â Some exclusions apply. (Thanksgiving and Christmas - please enquire.)\n\nWe requireÂ 24 hours notice for cancellations.\n\nWe are happy to accommodate your dietary needs. Â Please let us know of any restrictions when you make your booking.\n\n&nbsp;','Rates & Policies','','inherit','closed','closed','','23-autosave-v1','','','2017-03-29 14:49:45','2017-03-29 18:49:45','',23,'https://www.watchhill.ca/2017/03/23-autosave-v1/',0,'revision','',0),(278,5,'2017-03-29 14:51:10','2017-03-29 18:51:10','At Watch Hill we strive to provide a stress free, fun and relaxing B&amp;B experience.\r\n\r\nOur newly renovated Victorian Beach House is non-smoking and we do not allow pets. Â Our Bernese Mountain Dog, Dooley, is on-site, however, and is not allowed inÂ guest areas.\r\n\r\nWatch HillÂ is tailored to adults; please contact us before booking if your reservationÂ includes children.\r\n\r\nThe Chantry and Huron Suites are $210/night, and the Saugeen suite is $185/night. Â These suites are available from June 1st - September 30th.\r\n\r\nThe Loft; a studio apartment with kitchenette and capacity to sleep 6, is available October 1st - May 30th. Â Some exclusions apply. (Thanksgiving and Christmas - please enquire.)\r\n\r\nWe requireÂ 24 hours notice for cancellations.\r\n\r\nWe are happy to accommodate your dietary needs. Â Please let us know of any restrictions when you make your booking.\r\n\r\n&nbsp;','Rates & Policies','','inherit','closed','closed','','23-revision-v1','','','2017-03-29 14:51:10','2017-03-29 18:51:10','',23,'https://www.watchhill.ca/2017/03/23-revision-v1/',0,'revision','',0),(279,5,'2017-03-29 14:52:42','2017-03-29 18:52:42','At Watch Hill we strive to provide a stress free, fun and relaxing B&amp;B experience.\r\n\r\nOur newly renovated Victorian Beach House is non-smoking and we do not allow pets. Â Our Bernese Mountain Dog, Dooley, is on-site, however, and is not allowed inÂ guest areas.\r\n\r\nWatch HillÂ is tailored to adults; please contact us before booking if your reservationÂ includes children.\r\n\r\nThe Chantry and Huron Suites are $210/night, and the Saugeen suite is $185/night. Â These suites are available from June 1st - September 30th.\r\n\r\nThe Loft; a studio apartment with kitchenette and capacity to sleep 6, is available October 1st - May 30th. Â Some exclusions apply. (Thanksgiving and Christmas - please enquire.)\r\n\r\nCancellations require 24-hours notice.\r\n\r\nWe are happy to accommodate your dietary needs. Â Please let us know of any restrictions when you make your booking.\r\n\r\n&nbsp;','Rates & Policies','','inherit','closed','closed','','23-revision-v1','','','2017-03-29 14:52:42','2017-03-29 18:52:42','',23,'https://www.watchhill.ca/2017/03/23-revision-v1/',0,'revision','',0),(406,4,'2017-06-21 12:17:42','2017-06-21 16:17:42','<h1 style=\"text-align: center;\">A bright and airy, luxurious Bed &amp; Breakfast in Southampton, Ontario.</h1>\r\n<h2 style=\"text-align: center;\">Truly a Beach House.</h2>\r\nWatch Hill is Southamptonâ€™s Grande Dame, a Beach House home-away-from-home overlooking the mouth of the Saugeen River where it meanders past a working lighthouse toward Â sparkling Lake Huron. Marvel at the magnificent sunsets over Chantry Island or watch boats sail by on the beautiful Saugeen River from our veranda.Â The beach is just steps away.\r\n<h2 style=\"text-align: center;\">Featured In Our Homes Magazine</h2>\r\n<p style=\"text-align: center;\"><a href=\"http://www.ourhomes.ca/\" target=\"_blank\" rel=\"noopener noreferrer\">Our Homes Magazine</a> recently featured Watch Hill in theirÂ  <a href=\"http://www.ourhomes.ca/greybruce/archive/591\" target=\"_blank\" rel=\"noopener noreferrer\">Grey/Bruce County Summer 2017 issue.</a> Find a glossy paper copy, or have a look at the pdf online <a href=\"http://www.ourhomes.ca/uploads/pdfs/Feature_OH_GreyBruce_2017Summer.pdf\" target=\"_blank\" rel=\"noopener noreferrer\">here</a>, and the flipbook <a href=\"http://digital.lmgroup.com/i/832764-summer-2017\" target=\"_blank\" rel=\"noopener noreferrer\">here.</a> ViewÂ  before and after pictures of the 2 year renovation process that brought our Victorian beach house dream, to life.</p>','Home','','inherit','closed','closed','','5-revision-v1','','','2017-06-21 12:17:42','2017-06-21 16:17:42','',5,'https://www.watchhill.ca/2017/06/5-revision-v1/',0,'revision','',0),(282,3,'2017-03-29 14:58:59','2017-03-29 18:58:59','[metaslider id=76]\r\n<p style=\"text-align: center;\">Inhale the sun washed breeze and listen to the waves from the Huron Suite with its spectacular view of Lake Huron featuring a Queen size bed, fireplace, TV (including Netflix), and a full four-piece en suite bathroom.</p>\r\n<p style=\"text-align: center;\">Priceâ€¦$210</p>\r\n<p style=\"text-align: center;\">Please <a href=\"mailto:info@watchhill.ca\">email</a> or call us at 1-519-513-9065 for availability and to book this room, or follow the link below to book via Airbnb.</p>\r\n<p style=\"text-align: center;\">Book this room <a href=\"https://www.airbnb.ca/rooms/14839468?s=0tR1BQdF\" target=\"_blank\">with Airbnb</a></p>','The Huron','','inherit','closed','closed','','17-revision-v1','','','2017-03-29 14:58:59','2017-03-29 18:58:59','',17,'https://www.watchhill.ca/2017/03/17-revision-v1/',0,'revision','',0),(284,3,'2017-03-29 15:00:33','2017-03-29 19:00:33','[metaslider id=92]\r\n<p style=\"text-align: center;\">The Saugeen Suite features a three-piece en suite bathroom, fireplace,Queen size bed, TV (including Netflix) and a view of the Saugeen River. Comfy and cozy, this room appeals to those who like to sleep a little later.</p>\r\n<p style=\"text-align: center;\">Priceâ€¦.$180</p>\r\n<p style=\"text-align: center;\">Please <a href=\"mailto:info@watchhill.ca\">email</a> or call us at 1-519-513-9065 for availability and to book this room, or follow the link below to book via Airbnb.</p>\r\n<p style=\"text-align: center;\">Book this room <a href=\"https://www.airbnb.ca/rooms/14838721?s=0tR1BQdF\" target=\"_blank\">with Airbnb</a></p>','The Saugeen','','inherit','closed','closed','','21-revision-v1','','','2017-03-29 15:00:33','2017-03-29 19:00:33','',21,'https://www.watchhill.ca/2017/03/21-revision-v1/',0,'revision','',0),(286,5,'2017-03-29 15:03:13','2017-03-29 19:03:13','<img class=\"aligncenter wp-image-118 size-large\" src=\"https://www.watchhill.ca/wp-content/uploads/2017/03/7-1024x768.jpg\" alt=\"\" width=\"1024\" height=\"768\" />\r\n<div class=\"simple-format-container\" data-reactid=\"186\">\r\n<div class=\"simple-format-container\" data-reactid=\"208\">\r\n<p data-reactid=\"209\"><span data-reactid=\"210\">Watch Hill is truly Southamptonâ€™s Grande Dame, a Beach House home-away-from-home overlooking the mouth of the Saugeen River where it meanders past a working lighthouse and fishing pier toward Chantry Island and on to sparkling blue Lake Huron.</span></p>\r\n<p data-reactid=\"209\">Steps from the front door canoe, kayak, swim, fish, golf, hike, bike, x country ski, snowmobile, stroll the walking trail to downtown shops and delis or bike the rail-trail for miles into villages \"down the way\".Â <br data-reactid=\"211\" /><span data-reactid=\"212\">Downtown offers no shortage of attractions, boutiques, and dining establishments. Fun days, adventures and special occasions can be arranged (please ask us about this); explore the beaches, spend a day on the river, bike the trails or hike the paths and then enjoy a massage or yoga on the porch.</span></p>\r\n<p data-reactid=\"209\"></p>\r\n\r\n</div>\r\n</div>','About','','inherit','closed','closed','','7-revision-v1','','','2017-03-29 15:03:13','2017-03-29 19:03:13','',7,'https://www.watchhill.ca/2017/03/7-revision-v1/',0,'revision','',0),(287,5,'2017-03-29 15:07:56','2017-03-29 19:07:56','[metaslider id=137]\n<h2>The Suites</h2>\nEach suite at Watch Hill features a view of the Saugeen River or Lake Huron and all rooms have a private ensuite bathroom. All bathrooms are equipped with shampoo, hair dryers and an Eminence hostess gift from our local spa.\n\nOur suites are available for booking from June 1st - September 30th. Coming in the Fall 2017 The Loft will be available; a studio apartment with kitchenette.\n<h2 data-reactid=\"187\">Common Areas</h2>\n<p data-reactid=\"187\"><span data-reactid=\"188\">Watch Hillâ€™s common areas include a spectacular Great room, dining room and a large veranda furnished for enjoying outdoor breakfast or just lazing the day away in one of our comfortable chairs. Alternatively, take your breakfast on our sunny patio and then work on your tan or finish your novel in one of our colourful Adirondacks. </span><br data-reactid=\"189\" /><span data-reactid=\"190\">Arrangements can be made to watch the latest movies on the 60â€ Apple-TV over the fireplace in the Great room.</span><br data-reactid=\"191\" /><span data-reactid=\"192\">Common areas have tables suitable for working on a laptop.</span><br data-reactid=\"193\" /><span data-reactid=\"194\">We are pleased to offer our guests the use of an electric vehicle charging unit.</span></p>\n\n<h2 data-reactid=\"187\">Breakfast</h2>\nThe coffee station is available throughout the day with home baked cookies served every afternoon at 3.Â  Breakfasts include continental offerings sourced from local epicures; granola, fresh fruit from the farm, local cheese, jams and maple syrup â€“ and a daily hot entrÃ©e.<span data-reactid=\"225\"> Please contact us if you have any dietary restrictions or concerns</span>; we would be happy to accommodate you.\n<h2>Booking</h2>\nPlease email or call us at 1-519-513-9065 for availability, information, or to book a suite\n\nOr, if you prefer, click the images below to book via Airbnb.\n<div class=\"huron\"><a href=\"https://www.airbnb.ca/rooms/14839468\" target=\"_blank\"><img class=\"alignleft wp-image-175 size-full\" src=\"https://www.watchhill.ca/wp-content/uploads/2017/03/huron.jpg\" alt=\"\" width=\"255\" height=\"440\" /></a></div>\n<div class=\"chantry\"><a href=\"https://www.airbnb.ca/rooms/14839417\" target=\"_blank\"><img class=\"wp-image-174 size-full alignleft\" src=\"https://www.watchhill.ca/wp-content/uploads/2017/03/chantry.jpg\" alt=\"\" width=\"255\" height=\"440\" /></a></div>\n<div class=\"saugeen\"><a href=\"https://www.airbnb.ca/rooms/14838721\" target=\"_blank\"><img class=\"wp-image-176 size-full alignleft\" src=\"https://www.watchhill.ca/wp-content/uploads/2017/03/saugeen.jpg\" alt=\"\" width=\"255\" height=\"440\" /></a></div>\n<div class=\"clear\"></div>\n<a href=\"https://www.watchhill.ca/accommodations/the-huron/\"><img class=\"wp-image-184 size-full alignleft\" src=\"https://www.watchhill.ca/wp-content/uploads/2017/03/room-details.jpg\" alt=\"\" width=\"255\" height=\"30\" /></a>\n<a href=\"https://www.watchhill.ca/accommodations/the-chantry/\"><img class=\"wp-image-184 size-full alignleft\" src=\"https://www.watchhill.ca/wp-content/uploads/2017/03/room-details.jpg\" alt=\"\" width=\"255\" height=\"30\" /></a>\n<a href=\"https://www.watchhill.ca/accommodations/the-saugeen/\"><img class=\"wp-image-184 size-full alignleft\" src=\"https://www.watchhill.ca/wp-content/uploads/2017/03/room-details.jpg\" alt=\"\" width=\"255\" height=\"30\" /></a>','Accommodations','','inherit','closed','closed','','15-autosave-v1','','','2017-03-29 15:07:56','2017-03-29 19:07:56','',15,'https://www.watchhill.ca/2017/03/15-autosave-v1/',0,'revision','',0),(301,3,'2017-03-30 11:07:26','2017-03-30 15:07:26','[metaslider id=92]\n<p style=\"text-align: center;\">The Saugeen Suite features a three-piece en suite bathroom, fireplace,Queen size bed, TV (including Netflix) and a view of the Saugeen River. Comfy and cozy, this room appeals to those who like to sleep a little later.</p>\n<p style=\"text-align: center;\">Priceâ€¦.$180</p>\n<p style=\"text-align: center;\">Please <a href=\"mailto:info@watchhill.ca\">email</a> or call us at 1-519-513-9065 for availability and to book this room, or follow the link below to book via Airbnb.</p>\n<p style=\"text-align: center;\">Book this room <a href=\"https://www.airbnb.ca/rooms/14838721?s=0tR1BQdF\" target=\"_blank\">with Airbnb</a></p>\n<p style=\"text-align: center;\"></p>\n<p style=\"text-align: center;\"></p>','The Saugeen','','inherit','closed','closed','','21-autosave-v1','','','2017-03-30 11:07:26','2017-03-30 15:07:26','',21,'https://www.watchhill.ca/2017/03/21-autosave-v1/',0,'revision','',0),(302,3,'2017-03-30 11:07:46','2017-03-30 15:07:46','[metaslider id=92]\r\n<p style=\"text-align: center;\">The Saugeen Suite features a three-piece en suite bathroom, fireplace,Queen size bed, TV (including Netflix) and a view of the Saugeen River. Comfy and cozy, this room appeals to those who like to sleep a little later.</p>\r\n<p style=\"text-align: center;\">Priceâ€¦.$180</p>\r\n<p style=\"text-align: center;\">Please <a href=\"mailto:info@watchhill.ca\">email</a> or call us at 1-519-513-9065 for availability and to book this room, or follow the link below to book via Airbnb.</p>\r\n<p style=\"text-align: center;\">Book this room <a href=\"https://www.airbnb.ca/rooms/14838721?s=0tR1BQdF\" target=\"_blank\">with Airbnb</a></p>\r\n<p style=\"text-align: center;\"></p>\r\n<p style=\"text-align: center;\">[wpsbc id=\"3\" title=\"yes\" legend=\"yes\" dropdown=\"yes\" start=\"1\" display=\"4\" language=\"auto\" month=\"0\" year=\"0\" history=\"1\"]</p>','The Saugeen','','inherit','closed','closed','','21-revision-v1','','','2017-03-30 11:07:46','2017-03-30 15:07:46','',21,'https://www.watchhill.ca/2017/03/21-revision-v1/',0,'revision','',0),(303,3,'2017-03-30 11:08:22','2017-03-30 15:08:22','[metaslider id=76]\r\n<p style=\"text-align: center;\">Inhale the sun washed breeze and listen to the waves from the Huron Suite with its spectacular view of Lake Huron featuring a Queen size bed, fireplace, TV (including Netflix), and a full four-piece en suite bathroom.</p>\r\n<p style=\"text-align: center;\">Priceâ€¦$210</p>\r\n<p style=\"text-align: center;\">Please <a href=\"mailto:info@watchhill.ca\">email</a> or call us at 1-519-513-9065 for availability and to book this room, or follow the link below to book via Airbnb.</p>\r\n<p style=\"text-align: center;\">Book this room <a href=\"https://www.airbnb.ca/rooms/14839468?s=0tR1BQdF\" target=\"_blank\">with Airbnb</a></p>\r\n[wpsbc id=\"1\" title=\"yes\" legend=\"yes\" dropdown=\"yes\" start=\"7\" display=\"4\" language=\"auto\" month=\"6\" year=\"0\" history=\"1\"]','The Huron','','inherit','closed','closed','','17-revision-v1','','','2017-03-30 11:08:22','2017-03-30 15:08:22','',17,'https://www.watchhill.ca/2017/03/17-revision-v1/',0,'revision','',0),(307,3,'2017-03-30 11:50:48','2017-03-30 15:50:48','[metaslider id=76]\r\n<p style=\"text-align: center;\">Inhale the sun washed breeze and listen to the waves from the Huron Suite with its spectacular view of Lake Huron featuring a Queen size bed, fireplace, TV (including Netflix), and a full four-piece ensuite bathroom.</p>\r\n<p style=\"text-align: center;\">Priceâ€¦$210</p>\r\n<p style=\"text-align: center;\">Please <a href=\"mailto:info@watchhill.ca\">email</a> or call us at 1-519-513-9065 for availability and to book this room, or follow the link below to book via Airbnb.</p>\r\n<p style=\"text-align: center;\">Book this room <a href=\"https://www.airbnb.ca/rooms/14839468?s=0tR1BQdF\" target=\"_blank\">with Airbnb</a></p>\r\n[wpsbc id=\"1\" title=\"yes\" legend=\"yes\" dropdown=\"yes\" start=\"7\" display=\"4\" language=\"auto\" month=\"6\" year=\"0\" history=\"1\"]','The Huron','','inherit','closed','closed','','17-revision-v1','','','2017-03-30 11:50:48','2017-03-30 15:50:48','',17,'https://www.watchhill.ca/2017/03/17-revision-v1/',0,'revision','',0),(309,3,'2017-03-30 11:54:16','2017-03-30 15:54:16','[metaslider id=92]\r\n<p style=\"text-align: center;\">The Saugeen Suite features a three-piece ensuite bathroom, fireplace,Queen size bed, TV (including Netflix) and a view of the Saugeen River. Comfy and cozy, this room appeals to those who like to sleep a little later.</p>\r\n<p style=\"text-align: center;\">Priceâ€¦.$180</p>\r\n<p style=\"text-align: center;\">Please <a href=\"mailto:info@watchhill.ca\">email</a> or call us at 1-519-513-9065 for availability and to book this room, or follow the link below to book via Airbnb.</p>\r\n<p style=\"text-align: center;\">Book this room <a href=\"https://www.airbnb.ca/rooms/14838721?s=0tR1BQdF\" target=\"_blank\">with Airbnb</a></p>\r\n<p style=\"text-align: center;\">[wpsbc id=\"3\" title=\"yes\" legend=\"yes\" dropdown=\"yes\" start=\"7\" display=\"4\" language=\"auto\" month=\"0\" year=\"0\" history=\"1\"]</p>','The Saugeen','','inherit','closed','closed','','21-revision-v1','','','2017-03-30 11:54:16','2017-03-30 15:54:16','',21,'https://www.watchhill.ca/2017/03/21-revision-v1/',0,'revision','',0),(310,3,'2017-03-30 11:55:32','2017-03-30 15:55:32','[metaslider id=92]\r\n<p style=\"text-align: center;\">The Saugeen Suite features a three-piece ensuite bathroom, fireplace,Queen size bed, TV (including Netflix) and a view of the Saugeen River. Comfy and cozy, this room appeals to those who like to sleep a little later.</p>\r\n<p style=\"text-align: center;\">Priceâ€¦.$180</p>\r\n<p style=\"text-align: center;\">Please <a href=\"mailto:info@watchhill.ca\">email</a> or call us at 1-519-513-9065 for availability and to book this room, or follow the link below to book via Airbnb.</p>\r\n<p style=\"text-align: center;\">Book this room <a href=\"https://www.airbnb.ca/rooms/14838721?s=0tR1BQdF\" target=\"_blank\">with Airbnb</a></p>\r\n<p style=\"text-align: center;\">[wpsbc id=\"3\" title=\"yes\" legend=\"yes\" dropdown=\"yes\" start=\"7\" display=\"4\" language=\"auto\" month=\"6\" year=\"0\" history=\"1\"]</p>','The Saugeen','','inherit','closed','closed','','21-revision-v1','','','2017-03-30 11:55:32','2017-03-30 15:55:32','',21,'https://www.watchhill.ca/2017/03/21-revision-v1/',0,'revision','',0),(481,3,'2017-10-26 13:00:31','2017-10-26 17:00:31','','IMG 0102','','inherit','closed','closed','','img_0102','','','2017-10-26 13:00:31','2017-10-26 17:00:31','',0,'https://www.watchhill.ca/wp-content/uploads/2017/10/IMG_0102.jpg',0,'attachment','image/jpeg',0),(482,3,'2017-10-26 13:00:41','2017-10-26 17:00:41','','Slider 348 - image','','publish','closed','closed','','slider-348-image-5','','','2017-10-26 13:09:21','2017-10-26 17:09:21','',0,'https://www.watchhill.ca/?post_type=ml-slide&#038;p=482',0,'ml-slide','',0),(483,3,'2017-10-26 13:01:50','2017-10-26 17:01:50','','IMG 0097','','inherit','closed','closed','','img_0097','','','2017-10-26 13:01:50','2017-10-26 17:01:50','',0,'https://www.watchhill.ca/wp-content/uploads/2017/10/IMG_0097.jpg',0,'attachment','image/jpeg',0),(484,3,'2017-10-26 13:01:56','2017-10-26 17:01:56','','Slider 348 - image','','publish','closed','closed','','slider-348-image-4','','','2017-10-26 13:09:21','2017-10-26 17:09:21','',0,'https://www.watchhill.ca/?post_type=ml-slide&#038;p=484',2,'ml-slide','',0),(485,3,'2017-10-26 13:05:34','2017-10-26 17:05:34','','IMG 0115','','inherit','closed','closed','','img_0115','','','2017-10-26 13:05:34','2017-10-26 17:05:34','',0,'https://www.watchhill.ca/wp-content/uploads/2017/10/IMG_0115.jpg',0,'attachment','image/jpeg',0),(312,3,'2017-03-30 12:02:25','2017-03-30 16:02:25','[metaslider id=237]\r\n<p style=\"text-align: center;\">Coming Fall 2017 is The Loft, a studio apartment with kitchenette, which comfortably sleeps 6. The Loft can be booked from October 1st - May 30th, some exclusions apply. This space is on the Beach House property,but not part of the main house.</p>\r\n<p style=\"text-align: center;\">Please contact us for more information, or to make a booking.</p>\r\n<p style=\"text-align: center;\">email us at <a href=\"mailto:info@watchhill.ca\">info@watchhill.ca</a> or call us at 1-519-513-9065</p>\r\n<p style=\"text-align: center;\">[wpsbc id=\"4\" title=\"yes\" legend=\"yes\" dropdown=\"yes\" start=\"1\" display=\"4\" language=\"auto\" month=\"6\" year=\"0\" history=\"1\"]</p>','The Loft','','inherit','closed','closed','','226-revision-v1','','','2017-03-30 12:02:25','2017-03-30 16:02:25','',226,'https://www.watchhill.ca/2017/03/226-revision-v1/',0,'revision','',0),(313,3,'2017-03-30 12:07:33','2017-03-30 16:07:33','[metaslider id=76]\r\n<p style=\"text-align: center;\">Inhale the sun washed breeze and listen to the waves from the Huron Suite with its spectacular view of Lake Huron featuring a Queen size bed, fireplace, TV (including Netflix), and a full four-piece en suite bathroom.</p>\r\n<p style=\"text-align: center;\">Priceâ€¦$210</p>\r\n<p style=\"text-align: center;\">Please <a href=\"mailto:info@watchhill.ca\">email</a> or call us at 1-519-513-9065 for availability and to book this room, or follow the link below to book via Airbnb.</p>\r\n<p style=\"text-align: center;\">Book this room <a href=\"https://www.airbnb.ca/rooms/14839468?s=0tR1BQdF\" target=\"_blank\">with Airbnb</a></p>\r\n[wpsbc id=\"1\" title=\"no\" legend=\"yes\" dropdown=\"yes\" start=\"7\" display=\"4\" language=\"auto\" month=\"6\" year=\"0\" history=\"1\"]','The Huron','','inherit','closed','closed','','17-revision-v1','','','2017-03-30 12:07:33','2017-03-30 16:07:33','',17,'https://www.watchhill.ca/2017/03/17-revision-v1/',0,'revision','',0),(323,3,'2017-03-30 12:33:40','2017-03-30 16:33:40','[metaslider id=237]\r\n<p style=\"text-align: center;\"></p>\r\n<p style=\"text-align: center;\">Coming Fall 2017 is The Loft, a studio apartment with kitchenette, which comfortably sleeps 6. The Loft can be booked from October 1st - May 30th, some exclusions apply. This space is on the Beach House property,but not part of the main house.</p>\r\n<p style=\"text-align: center;\">Please contact us for more information, or to make a booking.</p>\r\n<p style=\"text-align: center;\">email us at <a href=\"mailto:info@watchhill.ca\">info@watchhill.ca</a> or call us at 1-519-513-9065</p>\r\n<p style=\"text-align: center;\">[wpsbc id=\"4\" title=\"yes\" legend=\"yes\" dropdown=\"yes\" start=\"1\" display=\"4\" language=\"auto\" month=\"10\" year=\"0\" history=\"1\"]</p>','The Loft','','inherit','closed','closed','','226-revision-v1','','','2017-03-30 12:33:40','2017-03-30 16:33:40','',226,'https://www.watchhill.ca/2017/03/226-revision-v1/',0,'revision','',0),(463,4,'2017-09-20 12:58:07','2017-09-20 16:58:07','[metaslider id=137]\r\n<h2>The Suites</h2>\r\nEach suite at Watch Hill features a view of the Saugeen River or Lake Huron and all rooms have a private ensuite bathroom. All bathrooms are equipped with shampoo, hair dryers and an Eminence hostess gift from our local spa. The house is equipped with central air conditioning.\r\n\r\nThe Chantry, Huron, and SaugeenÂ suites are available for booking from June 1st - September 30th. The Harbour Suite; a studio apartment with kitchenette isÂ available October 1st through May 31.\r\n<h2 data-reactid=\"187\">Common Areas</h2>\r\n<p data-reactid=\"187\"><span data-reactid=\"188\">Watch Hillâ€™s common areas include a spectacular Great room, dining room and a large veranda furnished for enjoying outdoor breakfast or just lazing the day away in one of our comfortable chairs. Alternatively, take your breakfast on our sunny patio and then work on your tan or finish your novel in one of our colourful Adirondacks. </span><br data-reactid=\"189\" /><span data-reactid=\"190\">Arrangements can be made to watch the latest movies on the 60â€ Apple-TV over the fireplace in the Great room.</span><br data-reactid=\"191\" /><span data-reactid=\"192\">Common areas have tables suitable for working on a laptop.</span><br data-reactid=\"193\" /><span data-reactid=\"194\">We are pleased to offer our guests the use of an electric vehicle charging unit.</span></p>\r\n\r\n<h2 data-reactid=\"187\">Breakfast</h2>\r\nThe coffee station is available throughout the day with home baked cookies served every afternoon at 3.Â  Breakfasts include continental offerings sourced from local epicures; granola, fresh fruit from the farm, local cheese, jams and maple syrup â€“ and a daily hot entrÃ©e.<span data-reactid=\"225\"> Please contact us if you have any dietary restrictions or concerns</span>; we would be happy to accommodate you.\r\n<h2>Booking</h2>\r\nPlease <a href=\"mailto:info@watchhill.ca\">email</a> or call us at 1-519-513-9065 for more information, or to book a suite.\r\n\r\nVisit the suites\' individual pages to view the calendars for availability.\r\n<div class=\"one-third first\"><a href=\"https://www.watchhill.ca/accommodations/the-huron/\">\r\n<img class=\"alignnone wp-image-175 size-full\" src=\"https://www.watchhill.ca/wp-content/uploads/2017/06/Huron-button.jpg\" alt=\"\" /></a></div>\r\n<div class=\"one-third\"><a href=\"https://www.watchhill.ca/accommodations/the-chantry/\">\r\n<img class=\"wp-image-174 size-full alignnone\" src=\"https://www.watchhill.ca/wp-content/uploads/2017/06/Chantry-button.jpg\" alt=\"\" /></a></div>\r\n<div class=\"one-third\"><a href=\"https://www.watchhill.ca/accommodations/the-saugeen/\">\r\n<img class=\"wp-image-176 size-full alignnone\" src=\"https://www.watchhill.ca/wp-content/uploads/2017/06/Saugeen-button.jpg\" alt=\"\" /></a></div>\r\n<div class=\"clearfix\"></div>','Accommodations','','inherit','closed','closed','','15-revision-v1','','','2017-09-20 12:58:07','2017-09-20 16:58:07','',15,'https://www.watchhill.ca/2017/09/15-revision-v1/',0,'revision','',0),(494,3,'2017-11-03 10:02:41','2017-11-03 14:02:41','','Saugeen','','inherit','closed','closed','','saugeen-2','','','2017-11-03 10:02:41','2017-11-03 14:02:41','',15,'https://www.watchhill.ca/wp-content/uploads/2017/03/saugeen-1.jpg',0,'attachment','image/jpeg',0),(495,3,'2017-11-03 10:03:00','2017-11-03 14:03:00','','Harbour','','inherit','closed','closed','','harbour','','','2017-11-03 10:03:00','2017-11-03 14:03:00','',15,'https://www.watchhill.ca/wp-content/uploads/2017/03/Harbour.jpg',0,'attachment','image/jpeg',0),(462,4,'2017-09-20 12:57:01','2017-09-20 16:57:01','[metaslider id=137]\r\n<h2>The Suites</h2>\r\nEach suite at Watch Hill features a view of the Saugeen River or Lake Huron and all rooms have a private ensuite bathroom. All bathrooms are equipped with shampoo, hair dryers and an Eminence hostess gift from our local spa. The house is equipped with central air conditioning.\r\n\r\nOur suites are available for booking from June 1st - September 30th. The Harbour Suite; a studio apartment with kitchenette isÂ available October 1st through May 31.\r\n<h2 data-reactid=\"187\">Common Areas</h2>\r\n<p data-reactid=\"187\"><span data-reactid=\"188\">Watch Hillâ€™s common areas include a spectacular Great room, dining room and a large veranda furnished for enjoying outdoor breakfast or just lazing the day away in one of our comfortable chairs. Alternatively, take your breakfast on our sunny patio and then work on your tan or finish your novel in one of our colourful Adirondacks. </span><br data-reactid=\"189\" /><span data-reactid=\"190\">Arrangements can be made to watch the latest movies on the 60â€ Apple-TV over the fireplace in the Great room.</span><br data-reactid=\"191\" /><span data-reactid=\"192\">Common areas have tables suitable for working on a laptop.</span><br data-reactid=\"193\" /><span data-reactid=\"194\">We are pleased to offer our guests the use of an electric vehicle charging unit.</span></p>\r\n\r\n<h2 data-reactid=\"187\">Breakfast</h2>\r\nThe coffee station is available throughout the day with home baked cookies served every afternoon at 3.Â  Breakfasts include continental offerings sourced from local epicures; granola, fresh fruit from the farm, local cheese, jams and maple syrup â€“ and a daily hot entrÃ©e.<span data-reactid=\"225\"> Please contact us if you have any dietary restrictions or concerns</span>; we would be happy to accommodate you.\r\n<h2>Booking</h2>\r\nPlease <a href=\"mailto:info@watchhill.ca\">email</a> or call us at 1-519-513-9065 for more information, or to book a suite.\r\n\r\nVisit the suites\' individual pages to view the calendars for availability.\r\n<div class=\"one-third first\"><a href=\"https://www.watchhill.ca/accommodations/the-huron/\">\r\n<img class=\"alignnone wp-image-175 size-full\" src=\"https://www.watchhill.ca/wp-content/uploads/2017/06/Huron-button.jpg\" alt=\"\" /></a></div>\r\n<div class=\"one-third\"><a href=\"https://www.watchhill.ca/accommodations/the-chantry/\">\r\n<img class=\"wp-image-174 size-full alignnone\" src=\"https://www.watchhill.ca/wp-content/uploads/2017/06/Chantry-button.jpg\" alt=\"\" /></a></div>\r\n<div class=\"one-third\"><a href=\"https://www.watchhill.ca/accommodations/the-saugeen/\">\r\n<img class=\"wp-image-176 size-full alignnone\" src=\"https://www.watchhill.ca/wp-content/uploads/2017/06/Saugeen-button.jpg\" alt=\"\" /></a></div>\r\n<div class=\"clearfix\"></div>','Accommodations','','inherit','closed','closed','','15-revision-v1','','','2017-09-20 12:57:01','2017-09-20 16:57:01','',15,'https://www.watchhill.ca/2017/09/15-revision-v1/',0,'revision','',0),(496,3,'2017-11-03 10:04:03','2017-11-03 14:04:03','','Huron','','inherit','closed','closed','','huron-3','','','2017-11-03 10:04:03','2017-11-03 14:04:03','',15,'https://www.watchhill.ca/wp-content/uploads/2017/03/Huron-1.jpg',0,'attachment','image/jpeg',0),(497,3,'2017-11-03 10:04:32','2017-11-03 14:04:32','','Chantry','','inherit','closed','closed','','chantry-3','','','2017-11-03 10:04:32','2017-11-03 14:04:32','',15,'https://www.watchhill.ca/wp-content/uploads/2017/03/chantry-2.jpg',0,'attachment','image/jpeg',0),(498,3,'2017-11-03 10:04:53','2017-11-03 14:04:53','','Chantry','','inherit','closed','closed','','chantry-4','','','2017-11-03 10:04:53','2017-11-03 14:04:53','',15,'https://www.watchhill.ca/wp-content/uploads/2017/03/chantry-3.jpg',0,'attachment','image/jpeg',0),(499,3,'2017-11-03 10:05:21','2017-11-03 14:05:21','','Harbour','','inherit','closed','closed','','harbour-2','','','2017-11-03 10:05:21','2017-11-03 14:05:21','',15,'https://www.watchhill.ca/wp-content/uploads/2017/03/Harbour-1.jpg',0,'attachment','image/jpeg',0),(343,3,'2017-04-25 14:24:19','0000-00-00 00:00:00','','The Loft','','draft','closed','closed','','','','','2017-04-25 14:24:19','2017-04-25 18:24:19','',0,'https://www.watchhill.ca/?post_type=foogallery&#038;p=343',0,'foogallery','',0),(381,4,'2017-06-21 12:37:18','2017-06-21 16:37:18','[metaslider id=92]\n<p style=\"text-align: center;\">The Saugeen Suite is air conditioned, features a three-piece en suite bathroom, Queen size bed, and a view of the Saugeen River. Comfy and cozy, this room appeals to those who like to sleep a little later.</p>\n<p style=\"text-align: center;\">Priceâ€¦.$180</p>\n<p style=\"text-align: center;\">Please view the calendar for availability, and <a href=\"mailto:info@watchhill.ca\">email</a> or call us at 1-519-513-9065 to book this room.</p>\n<p style=\"text-align: center;\">[wpsbc id=\"3\" title=\"yes\" legend=\"yes\" dropdown=\"yes\" start=\"7\" display=\"4\" language=\"auto\" month=\"6\" year=\"0\" history=\"1\"]</p>','The Saugeen','','inherit','closed','closed','','21-autosave-v1','','','2017-06-21 12:37:18','2017-06-21 16:37:18','',21,'https://www.watchhill.ca/2017/06/21-autosave-v1/',0,'revision','',0),(394,3,'2017-06-21 08:37:20','2017-06-21 12:37:20','','Chantry Button','','inherit','closed','closed','','chantry-button','','','2017-06-21 08:37:20','2017-06-21 12:37:20','',0,'https://www.watchhill.ca/wp-content/uploads/2017/06/Chantry-button.jpg',0,'attachment','image/jpeg',0),(421,3,'2017-06-27 12:45:58','2017-06-27 16:45:58','','Saugeen OurHomes Feature','','inherit','closed','closed','','saugeen-ourhomes-feature','','','2017-06-27 12:45:58','2017-06-27 16:45:58','',0,'https://www.watchhill.ca/wp-content/uploads/2017/06/Saugeen-OurHomes-Feature.jpg',0,'attachment','image/jpeg',0),(420,3,'2017-06-27 12:43:14','2017-06-27 16:43:14','','Slider 92 - image','','trash','closed','closed','','slider-92-image__trashed-2','','','2017-06-27 12:44:11','2017-06-27 16:44:11','',0,'https://www.watchhill.ca/?post_type=ml-slide&#038;p=420',3,'ml-slide','',0),(418,3,'2017-06-27 12:39:15','2017-06-27 16:39:15','','Slider 92 - image','','trash','closed','closed','','slider-92-image__trashed','','','2017-06-27 12:40:07','2017-06-27 16:40:07','',0,'https://www.watchhill.ca/?post_type=ml-slide&#038;p=418',3,'ml-slide','',0),(422,3,'2017-06-27 12:46:04','2017-06-27 16:46:04','','Slider 92 - image','','publish','closed','closed','','slider-92-image','','','2017-06-27 12:46:10','2017-06-27 16:46:10','',0,'https://www.watchhill.ca/?post_type=ml-slide&#038;p=422',3,'ml-slide','',0),(409,4,'2017-06-21 12:31:24','2017-06-21 16:31:24','[metaslider id=80]\r\n<p style=\"text-align: center;\">Marvel at the magnificent sunsets over Chantry Island or watch boats sail by on the beautiful Saugeen River from the Chantry Suite alcove. Enjoy Â central air conditioning, a King size bed, fireplace TV (including Netflix) and a three-piece en suite bathroom.</p>\r\n<p style=\"text-align: center;\">Priceâ€¦.$210</p>\r\n<p style=\"text-align: center;\">Please view the calendar for availability,and <a href=\"mailto:info@watchhill.ca\">email</a> or call us at 1-519-513-9065Â  to book this room.</p>\r\n<p style=\"text-align: center;\">[wpsbc id=\"2\" title=\"yes\" legend=\"yes\" dropdown=\"yes\" start=\"7\" display=\"4\" language=\"auto\" month=\"6\" year=\"0\" history=\"1\"]</p>','The Chantry','','inherit','closed','closed','','19-revision-v1','','','2017-06-21 12:31:24','2017-06-21 16:31:24','',19,'https://www.watchhill.ca/2017/06/19-revision-v1/',0,'revision','',0),(410,4,'2017-06-21 12:33:09','2017-06-21 16:33:09','[metaslider id=76]\r\n<p style=\"text-align: center;\">Inhale the sun washed breeze and listen to the waves from the Huron Suite with its spectacular view of Lake Huron featuring a Queen size bed, fireplace, TV (including Netflix), Â air conditioning, and a full four-piece en suite bathroom.</p>\r\n<p style=\"text-align: center;\">Priceâ€¦$210</p>\r\n<p style=\"text-align: center;\">Please view the calendar for availability, and <a href=\"mailto:info@watchhill.ca\">email</a> or call us at 1-519-513-9065 to book this room.</p>\r\n[wpsbc id=\"1\" title=\"yes\" legend=\"yes\" dropdown=\"yes\" start=\"7\" display=\"4\" language=\"auto\" month=\"6\" year=\"0\" history=\"1\"]','The Huron','','inherit','closed','closed','','17-revision-v1','','','2017-06-21 12:33:09','2017-06-21 16:33:09','',17,'https://www.watchhill.ca/2017/06/17-revision-v1/',0,'revision','',0),(414,4,'2017-06-26 15:09:13','2017-06-26 19:09:13','[caption id=\"attachment_159\" align=\"aligncenter\" width=\"300\"]<img class=\"size-medium wp-image-159\" src=\"https://www.watchhill.ca/wp-content/uploads/2017/03/IMGP0756-300x296.jpg\" alt=\"Sue and Richard\" width=\"300\" height=\"296\" /> Your Hosts, Sue &amp; Richard[/caption]\r\n<p style=\"text-align: center;\">PleaseÂ email Â <a href=\"mailto:info@watchhill.ca\">info@watchhill.ca</a> orÂ callÂ 1-519-513-9065 to make Â a booking, or if you have any questions about your stay.</p>\r\n<p style=\"text-align: center;\"></p>\r\n<p style=\"text-align: center;\">Watch Hill Bed &amp; Breakfast</p>\r\n<p style=\"text-align: center;\">24 South Rankin St, Southampton ON</p>\r\n<p style=\"text-align: center;\"></p>','Contact','','inherit','closed','closed','','28-revision-v1','','','2017-06-26 15:09:13','2017-06-26 19:09:13','',28,'https://www.watchhill.ca/2017/06/28-revision-v1/',0,'revision','',0),(456,4,'2018-01-17 10:36:25','2018-01-17 15:36:25','[metaslider id=137]\n<h2>The Suites</h2>\nEach suite at Watch Hill features a view of the Saugeen River or Lake Huron and all rooms have a private ensuite bathroom. All bathrooms are equipped with shampoo, hair dryers and an Eminence hostess gift from our local spa. The house is equipped with central air conditioning.\n\nThe Chantry, Huron, and SaugeenÂ suites are available for booking from May 11thÂ  - October 15th. The Harbour Suite; a studio apartment with private entrance, king size bed, kitchenette, isÂ  available October 19st through May 31. Breakfast items provided.\n<h2 data-reactid=\"187\">Common Areas</h2>\n<p data-reactid=\"187\"><span data-reactid=\"188\">Watch Hillâ€™s common areas include a spectacular Great room, dining room and a large veranda furnished for enjoying outdoor breakfast or just lazing the day away in one of our comfortable chairs. Alternatively, take your breakfast on our sunny patio and then work on your tan or finish your novel in one of our colourful Adirondacks. </span><br data-reactid=\"189\" /><span data-reactid=\"190\">Arrangements can be made to watch the latest movies on the 60â€ Apple-TV over the fireplace in the Great room.</span><br data-reactid=\"191\" /><span data-reactid=\"192\">Common areas have tables suitable for working on a laptop.</span><br data-reactid=\"193\" /><span data-reactid=\"194\">We are pleased to offer our guests the use of an electric vehicle charging unit.</span></p>\n\n<h2 data-reactid=\"187\">Breakfast</h2>\nThe coffee station is available throughout the day with home baked cookies served every afternoon at 3.Â  Breakfasts include continental offerings sourced from local epicures; granola, fresh fruit from the farm, local cheese, jams and maple syrup â€“ and a daily hot entrÃ©e.<span data-reactid=\"225\"> Please contact us if you have any dietary restrictions or concerns</span>; we would be happy to accommodate you.\n<h2>Booking</h2>\nPlease <a href=\"mailto:info@watchhill.ca\">email</a> or call us at 1-519-513-9065 for more information, or to book a suite.\n\nVisit the suites\' individual pages to view the calendars for availability.\n<div class=\"one-fourth first\"><a href=\"https://www.watchhill.ca/accommodations/the-huron/\">\n<img class=\"alignnone wp-image-496 size-medium\" src=\"https://www.watchhill.ca/wp-content/uploads/2017/03/Huron-1-133x300.jpg\" alt=\"\" width=\"195\" height=\"440\" /></a></div>\n<div class=\"one-fourth\"><a href=\"https://www.watchhill.ca/accommodations/the-chantry/\">\n<img class=\"alignnone wp-image-497 size-medium\" src=\"https://www.watchhill.ca/wp-content/uploads/2017/03/chantry-2-133x300.jpg\" alt=\"\" width=\"195\" height=\"440\" /></a></div>\n<div class=\"one-fourth\"><a href=\"https://www.watchhill.ca/accommodations/the-saugeen/\">\n<img class=\"alignnone wp-image-494 size-medium\" src=\"https://www.watchhill.ca/wp-content/uploads/2017/03/saugeen-1-133x300.jpg\" alt=\"\" width=\"195\" height=\"440\" /></a></div>\n<div class=\"one-fourth\"><a href=\"https://www.watchhill.ca/accommodations/harbour-suite/\">\n<img class=\"alignnone wp-image-499 size-medium\" src=\"https://www.watchhill.ca/wp-content/uploads/2017/03/Harbour-1-133x300.jpg\" alt=\"\" width=\"195\" height=\"440\" /></a></div>\n<div class=\"clearfix\"></div>','Accommodations','','inherit','closed','closed','','15-autosave-v1','','','2018-01-17 10:36:25','2018-01-17 15:36:25','',15,'https://www.watchhill.ca/2017/09/15-autosave-v1/',0,'revision','',0),(397,3,'2017-06-21 08:46:30','2017-06-21 12:46:30','[metaslider id=137]\r\n<h2>The Suites</h2>\r\nEach suite at Watch Hill features a view of the Saugeen River or Lake Huron and all rooms have a private ensuite bathroom. All bathrooms are equipped with shampoo, hair dryers and an Eminence hostess gift from our local spa. The house is equipped with central air conditioning.\r\n\r\nOur suites are available for booking from June 1st - September 30th. Coming Fall 2017 The Loft will be available; a studio apartment with kitchenette.\r\n<h2 data-reactid=\"187\">Common Areas</h2>\r\n<p data-reactid=\"187\"><span data-reactid=\"188\">Watch Hillâ€™s common areas include a spectacular Great room, dining room and a large veranda furnished for enjoying outdoor breakfast or just lazing the day away in one of our comfortable chairs. Alternatively, take your breakfast on our sunny patio and then work on your tan or finish your novel in one of our colourful Adirondacks. </span><br data-reactid=\"189\" /><span data-reactid=\"190\">Arrangements can be made to watch the latest movies on the 60â€ Apple-TV over the fireplace in the Great room.</span><br data-reactid=\"191\" /><span data-reactid=\"192\">Common areas have tables suitable for working on a laptop.</span><br data-reactid=\"193\" /><span data-reactid=\"194\">We are pleased to offer our guests the use of an electric vehicle charging unit.</span></p>\r\n\r\n<h2 data-reactid=\"187\">Breakfast</h2>\r\nThe coffee station is available throughout the day with home baked cookies served every afternoon at 3.Â  Breakfasts include continental offerings sourced from local epicures; granola, fresh fruit from the farm, local cheese, jams and maple syrup â€“ and a daily hot entrÃ©e.<span data-reactid=\"225\"> Please contact us if you have any dietary restrictions or concerns</span>; we would be happy to accommodate you.\r\n<h2>Booking</h2>\r\nPlease <a href=\"mailto:info@watchhill.ca\">email</a> or call us at 1-519-513-9065 for more information, or to book a suite.\r\n\r\nVisit the suites\' individual pages to view the calendars for availability.\r\n<div class=\"one-third first\"><a href=\"https://www.watchhill.ca/accommodations/the-huron/\" rel=\"noopener noreferrer\">\r\n<img class=\"alignnone wp-image-175 size-full\" src=\"https://www.watchhill.ca/wp-content/uploads/2017/06/Huron-button.jpg\" alt=\"\" /></a>\r\n</div>\r\n<div class=\"one-third\"><a href=\"https://www.watchhill.ca/accommodations/the-chantry/\" rel=\"noopener noreferrer\">\r\n<img class=\"wp-image-174 size-full alignnone\" src=\"https://www.watchhill.ca/wp-content/uploads/2017/06/Chantry-button.jpg\" alt=\"\" /></a>\r\n</div>\r\n<div class=\"one-third\"><a href=\"https://www.watchhill.ca/accommodations/the-saugeen/\">\r\n<img class=\"wp-image-176 size-full alignnone\" src=\"https://www.watchhill.ca/wp-content/uploads/2017/06/Saugeen-button.jpg\" alt=\"\" /></a>\r\n</div>\r\n<div class=\"clearfix\"></div>','Accommodations','','inherit','closed','closed','','15-revision-v1','','','2017-06-21 08:46:30','2017-06-21 12:46:30','',15,'https://www.watchhill.ca/2017/06/15-revision-v1/',0,'revision','',0),(393,4,'2017-06-19 18:05:34','2017-06-19 22:05:34','[metaslider id=137]\r\n<h2>The Suites</h2>\r\nEach suite at Watch Hill features a view of the Saugeen River or Lake Huron and all rooms have a private ensuite bathroom. All bathrooms are equipped with shampoo, hair dryers and an Eminence hostess gift from our local spa. The house is equipped with central air conditioning.\r\n\r\nOur suites are available for booking from June 1st - September 30th. Coming Fall 2017 The Loft will be available; a studio apartment with kitchenette.\r\n<h2 data-reactid=\"187\">Common Areas</h2>\r\n<p data-reactid=\"187\"><span data-reactid=\"188\">Watch Hillâ€™s common areas include a spectacular Great room, dining room and a large veranda furnished for enjoying outdoor breakfast or just lazing the day away in one of our comfortable chairs. Alternatively, take your breakfast on our sunny patio and then work on your tan or finish your novel in one of our colourful Adirondacks. </span><br data-reactid=\"189\" /><span data-reactid=\"190\">Arrangements can be made to watch the latest movies on the 60â€ Apple-TV over the fireplace in the Great room.</span><br data-reactid=\"191\" /><span data-reactid=\"192\">Common areas have tables suitable for working on a laptop.</span><br data-reactid=\"193\" /><span data-reactid=\"194\">We are pleased to offer our guests the use of an electric vehicle charging unit.</span></p>\r\n\r\n<h2 data-reactid=\"187\">Breakfast</h2>\r\nThe coffee station is available throughout the day with home baked cookies served every afternoon at 3.Â  Breakfasts include continental offerings sourced from local epicures; granola, fresh fruit from the farm, local cheese, jams and maple syrup â€“ and a daily hot entrÃ©e.<span data-reactid=\"225\"> Please contact us if you have any dietary restrictions or concerns</span>; we would be happy to accommodate you.\r\n<h2>Booking</h2>\r\nPlease <a href=\"mailto:info@watchhill.ca\">email</a> or call us at 1-519-513-9065 for more information, or to book a suite.\r\n\r\nVisit the suites\' individual pages to view the calendars for availability.\r\n\r\nIf you prefer, click the images below to book via Airbnb.\r\n<div class=\"one-third first\"><a href=\"https://www.airbnb.ca/rooms/14839468\" target=\"_blank\" rel=\"noopener noreferrer\">\r\n<img class=\"alignnone wp-image-175 size-full\" src=\"https://www.watchhill.ca/wp-content/uploads/2017/03/huron.jpg\" alt=\"\" /></a>\r\n<a href=\"https://www.watchhill.ca/accommodations/the-huron/\"><img class=\"wp-image-184 size-full alignnone\" src=\"https://www.watchhill.ca/wp-content/uploads/2017/03/room-details.jpg\" alt=\"\" /></a></div>\r\n<div class=\"one-third\"><a href=\"https://www.airbnb.ca/rooms/14839417\" target=\"_blank\" rel=\"noopener noreferrer\">\r\n<img class=\"wp-image-174 size-full alignnone\" src=\"https://www.watchhill.ca/wp-content/uploads/2017/03/chantry.jpg\" alt=\"\" /></a>\r\n<a href=\"https://www.watchhill.ca/accommodations/the-chantry/\"><img class=\"wp-image-184 size-full alignnone\" src=\"https://www.watchhill.ca/wp-content/uploads/2017/03/room-details.jpg\" alt=\"\" /></a></div>\r\n<div class=\"one-third\"><a href=\"https://www.airbnb.ca/rooms/14838721\" target=\"_blank\" rel=\"noopener noreferrer\">\r\n<img class=\"wp-image-176 size-full alignnone\" src=\"https://www.watchhill.ca/wp-content/uploads/2017/03/saugeen.jpg\" alt=\"\" /></a>\r\n<a href=\"https://www.watchhill.ca/accommodations/the-saugeen/\"><img class=\"wp-image-184 size-full alignnone\" src=\"https://www.watchhill.ca/wp-content/uploads/2017/03/room-details.jpg\" alt=\"\" /></a></div>\r\n<div class=\"clearfix\"></div>','Accommodations','','inherit','closed','closed','','15-revision-v1','','','2017-06-19 18:05:34','2017-06-19 22:05:34','',15,'https://www.watchhill.ca/2017/06/15-revision-v1/',0,'revision','',0),(389,4,'2018-02-05 15:35:00','2018-02-05 20:35:00','<img class=\"aligncenter wp-image-118 size-large\" src=\"https://www.watchhill.ca/wp-content/uploads/2017/03/7-1024x768.jpg\" alt=\"\" width=\"1024\" height=\"768\" />\n<div class=\"simple-format-container\" data-reactid=\"186\">\n<div class=\"simple-format-container\" data-reactid=\"208\">\n<p data-reactid=\"209\"><span data-reactid=\"210\">Watch Hill is truly Southamptonâ€™s Grande Dame, a Beach House home-away-from-home overlooking the mouth of the Saugeen River where it meanders past a working lighthouse and fishing pier toward Chantry Island and on to sparkling blue Lake Huron.</span></p>\n<p data-reactid=\"209\">Steps from the front door canoe, kayak, swim, fish, golf, hike, bike, x country ski, snowmobile, stroll the walking trail to downtown shops and delis or bike the rail-trail for miles into villages \"down the way\".Â <br data-reactid=\"211\" /><span data-reactid=\"212\">Downtown offers no shortage of attractions, boutiques, and dining establishments. Fun days, adventures and special occasions can be arranged (please ask us about this); explore the beaches, spend a day on the river, bike the trails or hike the paths and then enjoy a massage or yoga on the porch.</span></p>\n\n</div>\nOver 1,000 people toured Watch Hill to raise money for the hospital in November 2017.\n\nhttps://youtu.be/RUOrc7RLJEY\n\n</div>','About','','inherit','closed','closed','','7-autosave-v1','','','2018-02-05 15:35:00','2018-02-05 20:35:00','',7,'https://www.watchhill.ca/2017/06/7-autosave-v1/',0,'revision','',0),(391,4,'2017-06-19 18:01:02','2017-06-19 22:01:02','<img class=\"aligncenter wp-image-118 size-large\" src=\"https://www.watchhill.ca/wp-content/uploads/2017/03/7-1024x768.jpg\" alt=\"\" width=\"1024\" height=\"768\" />\r\n<div class=\"simple-format-container\" data-reactid=\"186\">\r\n<div class=\"simple-format-container\" data-reactid=\"208\">\r\n<p data-reactid=\"209\"><span data-reactid=\"210\">Watch Hill is truly Southamptonâ€™s Grande Dame, a Beach House home-away-from-home overlooking the mouth of the Saugeen River where it meanders past a working lighthouse and fishing pier toward Chantry Island and on to sparkling blue Lake Huron.</span></p>\r\n<p data-reactid=\"209\">Steps from the front door canoe, kayak, swim, fish, golf, hike, bike, x country ski, snowmobile, stroll the walking trail to downtown shops and delis or bike the rail-trail for miles into villages \"down the way\".Â <br data-reactid=\"211\" /><span data-reactid=\"212\">Downtown offers no shortage of attractions, boutiques, and dining establishments. Fun days, adventures and special occasions can be arranged (please ask us about this); explore the beaches, spend a day on the river, bike the trails or hike the paths and then enjoy a massage or yoga on the porch.</span></p>\r\n<p data-reactid=\"209\"></p>\r\n<p data-reactid=\"209\"></p>\r\n\r\n</div>\r\n</div>','About','','inherit','closed','closed','','7-revision-v1','','','2017-06-19 18:01:02','2017-06-19 22:01:02','',7,'https://www.watchhill.ca/2017/06/7-revision-v1/',0,'revision','',0),(390,4,'2017-06-19 13:28:42','2017-06-19 17:28:42','<img class=\"aligncenter wp-image-118 size-large\" src=\"https://www.watchhill.ca/wp-content/uploads/2017/03/7-1024x768.jpg\" alt=\"\" width=\"1024\" height=\"768\" />\r\n<div class=\"simple-format-container\" data-reactid=\"186\">\r\n<div class=\"simple-format-container\" data-reactid=\"208\">\r\n<p data-reactid=\"209\"><span data-reactid=\"210\">Watch Hill is truly Southamptonâ€™s Grande Dame, a Beach House home-away-from-home overlooking the mouth of the Saugeen River where it meanders past a working lighthouse and fishing pier toward Chantry Island and on to sparkling blue Lake Huron.</span></p>\r\n<p data-reactid=\"209\">Steps from the front door canoe, kayak, swim, fish, golf, hike, bike, x country ski, snowmobile, stroll the walking trail to downtown shops and delis or bike the rail-trail for miles into villages \"down the way\".Â <br data-reactid=\"211\" /><span data-reactid=\"212\">Downtown offers no shortage of attractions, boutiques, and dining establishments. Fun days, adventures and special occasions can be arranged (please ask us about this); explore the beaches, spend a day on the river, bike the trails or hike the paths and then enjoy a massage or yoga on the porch.</span></p>\r\n<p data-reactid=\"209\">We also have central air conditioning.</p>\r\n<p data-reactid=\"209\"></p>\r\n\r\n</div>\r\n</div>','About','','inherit','closed','closed','','7-revision-v1','','','2017-06-19 13:28:42','2017-06-19 17:28:42','',7,'https://www.watchhill.ca/2017/06/7-revision-v1/',0,'revision','',0),(460,4,'2017-09-20 12:52:16','2017-09-20 16:52:16','At Watch Hill we strive to provide a stress free, fun and relaxing B&amp;B experience.\r\n\r\nOur newly renovated Victorian Beach House is non-smoking and we do not allow pets. Â Our Bernese Mountain Dog, Dooley, is on-site, however, and is not allowed inÂ guest areas.\r\n\r\nWatch HillÂ is tailored to adults; please contact us before booking if your reservationÂ includes children.\r\n\r\nThe Chantry and Huron Suites are $210/night, and the Saugeen suite is $180/night. Â These suites are available from June 1st - September 30th.\r\n\r\nThe HarbourÂ Suite; a studio apartment with kitchenette and capacity to sleep 4, is available October 1st - May 30th. Â Daily rate in October and May,$150. Daily rate November through April $100. Weekly rate $600.\r\n\r\nCancellations require 24-hours notice.\r\n\r\nWe are happy to accommodate your dietary needs. Â Please let us know of any restrictions when you make your booking.\r\n\r\n&nbsp;','Rates & Policies','','inherit','closed','closed','','23-revision-v1','','','2017-09-20 12:52:16','2017-09-20 16:52:16','',23,'https://www.watchhill.ca/2017/09/23-revision-v1/',0,'revision','',0),(500,3,'2017-11-03 10:13:04','2017-11-03 14:13:04','[metaslider id=137]\r\n<h2>The Suites</h2>\r\nEach suite at Watch Hill features a view of the Saugeen River or Lake Huron and all rooms have a private ensuite bathroom. All bathrooms are equipped with shampoo, hair dryers and an Eminence hostess gift from our local spa. The house is equipped with central air conditioning.\r\n\r\nThe Chantry, Huron, and SaugeenÂ suites are available for booking from June 1st - September 30th. The Harbour Suite; a studio apartment with private entrance, king size bed, kitchenette, isÂ  available October 1st through May 31. Breakfast items provided.\r\n<h2 data-reactid=\"187\">Common Areas</h2>\r\n<p data-reactid=\"187\"><span data-reactid=\"188\">Watch Hillâ€™s common areas include a spectacular Great room, dining room and a large veranda furnished for enjoying outdoor breakfast or just lazing the day away in one of our comfortable chairs. Alternatively, take your breakfast on our sunny patio and then work on your tan or finish your novel in one of our colourful Adirondacks. </span><br data-reactid=\"189\" /><span data-reactid=\"190\">Arrangements can be made to watch the latest movies on the 60â€ Apple-TV over the fireplace in the Great room.</span><br data-reactid=\"191\" /><span data-reactid=\"192\">Common areas have tables suitable for working on a laptop.</span><br data-reactid=\"193\" /><span data-reactid=\"194\">We are pleased to offer our guests the use of an electric vehicle charging unit.</span></p>\r\n\r\n<h2 data-reactid=\"187\">Breakfast</h2>\r\nThe coffee station is available throughout the day with home baked cookies served every afternoon at 3.Â  Breakfasts include continental offerings sourced from local epicures; granola, fresh fruit from the farm, local cheese, jams and maple syrup â€“ and a daily hot entrÃ©e.<span data-reactid=\"225\"> Please contact us if you have any dietary restrictions or concerns</span>; we would be happy to accommodate you.\r\n<h2>Booking</h2>\r\nPlease <a href=\"mailto:info@watchhill.ca\">email</a> or call us at 1-519-513-9065 for more information, or to book a suite.\r\n\r\nVisit the suites\' individual pages to view the calendars for availability.\r\n<div class=\"one-fourth first\"><a href=\"https://www.watchhill.ca/accommodations/the-huron/\">\r\n<img class=\"alignnone wp-image-496 size-medium\" src=\"https://www.watchhill.ca/wp-content/uploads/2017/03/Huron-1-133x300.jpg\" alt=\"\" width=\"195\" height=\"440\" /></a></div>\r\n<div class=\"one-fourth\"><a href=\"https://www.watchhill.ca/accommodations/the-chantry/\">\r\n<img class=\"alignnone wp-image-497 size-medium\" src=\"https://www.watchhill.ca/wp-content/uploads/2017/03/chantry-2-133x300.jpg\" alt=\"\" width=\"195\" height=\"440\" /></a></div>\r\n<div class=\"one-fourth\"><a href=\"https://www.watchhill.ca/accommodations/the-saugeen/\">\r\n<img class=\"alignnone wp-image-494 size-medium\" src=\"https://www.watchhill.ca/wp-content/uploads/2017/03/saugeen-1-133x300.jpg\" alt=\"\" width=\"195\" height=\"440\" /></a></div>\r\n<div class=\"one-fourth\"><a href=\"https://www.watchhill.ca/accommodations/harbour-suite/\">\r\n<img class=\"alignnone wp-image-499 size-medium\" src=\"https://www.watchhill.ca/wp-content/uploads/2017/03/Harbour-1-133x300.jpg\" alt=\"\" width=\"195\" height=\"440\" /></a></div>\r\n<div class=\"clearfix\"></div>','Accommodations','','inherit','closed','closed','','15-revision-v1','','','2017-11-03 10:13:04','2017-11-03 14:13:04','',15,'https://www.watchhill.ca/2017/11/15-revision-v1/',0,'revision','',0),(505,4,'2018-01-15 10:20:55','2018-01-15 15:20:55','At Watch Hill we strive to provide a stress free, fun and relaxing B&amp;B experience.\r\n\r\nOur newly renovated Victorian Beach House is non-smoking and we do not allow pets. Â Our Bernese Mountain Dog, Dooley, is on-site, however, and is not allowed inÂ guest areas.\r\n\r\nWatch HillÂ is tailored to adults; please contact us before booking if your reservationÂ includes children.\r\n\r\nThe Chantry Suite is $225/night, The Huron Suite is $220/night and The Saugeen Suite is $190/night.Â  These suites are available from May 11thÂ - October 19th.\r\n\r\nThe HarbourÂ Suite; a studio apartment with a private entrance, kitchenette and capacity to sleep 4, is available November 1st - April 30th. Â Daily rateÂ  $150/night or $600 per week.Â  Breakfast food items are provided.\r\n\r\n<strong>Booking Deposit</strong>\r\n\r\nWe require one nightâ€™s fee if booking 2 or 3 nights or $100 if booking for less than two nights. Guests booking for more than 3 nights will be charged 50% of their booking fee to secure their reservation.\r\n\r\n<strong>Cancellation Policy</strong>\r\n\r\nOur business is seasonal and reservations are usually made well in advance of guest arrival. We rarely get last-minute bookings which means a cancelled room often remains empty. And because we have a limited inventory (three suites) the loss of revenue on one suite is significant.\r\n\r\nWe require 7 nights notice in order to refund your booking deposit and to cancel your booking.Â  A cancellation with less than 48 hours notice will result in a full booking charge.Â  A booking (night) is calculated beginning at the check-in time of 3:00 p.m.\r\n\r\n<strong>Check inâ€¦Check out</strong>\r\n\r\nCheck-in is normally between 3:00 p.m. and 5:00 p.m. unless other arrangements are made.\r\n\r\nCheck out is normally 11:00 a.m. unless other arrangements are made.\r\n\r\nWe are happy to accommodate your dietary needs. Â Please let us know of any restrictions when you make your booking.\r\n\r\n&nbsp;','Rates & Policies','','inherit','closed','closed','','23-revision-v1','','','2018-01-15 10:20:55','2018-01-15 15:20:55','',23,'https://www.watchhill.ca/2018/01/23-revision-v1/',0,'revision','',0),(534,6,'2018-02-21 21:31:32','2018-02-22 02:31:32','<h1><img class=\"wp-image-532 aligncenter\" src=\"https://www.watchhill.ca/wp-content/uploads/2018/02/houseofhistory-300x179.jpg\" alt=\"\" width=\"708\" height=\"422\" /></h1>\r\nWatch Hill was built in 1987 by Matt and Tim Weichel of Southampton as a replica 1920â€™s style beach house and intended to be a dream home for their father who chose its name.Â  For a time it was owned by an American who operated off-track betting from the back office. In later years, filled with antiques, Watch Hill became a Victorian Grande Dame owned by Michelle and Lorin Myers.Â  Now, Watch Hill has shed its Victorian ambiance and taken on the aura of the Hampton\'s Beach House featured in the Jack Nicholson/Diane Keaton movie, <i>Somethingâ€™s Gotta Give</i>.Â  In order to become a working B&amp;B, visited by more than 200 guests during its maiden season (Summer 2017), Carla Pavlov (CR Designs) took on the beach house design challenge.\r\n\r\nCollaborating with many local craftsmen and artisans we tried to maintain the grandeur of Watch Hill and to prepare her for sharing with travellers from as near as down the road to as far away as the Black Forrest of Germany.\r\n\r\nWe hope youâ€™ll visit soon to join us in this new chapter of Watch Hillâ€™s history.','History of Watch Hill','','inherit','closed','closed','','11-autosave-v1','','','2018-02-21 21:31:32','2018-02-22 02:31:32','',11,'https://www.watchhill.ca/2018/02/11-autosave-v1/',0,'revision','',0),(693,6,'2018-03-15 14:01:11','2018-03-15 18:01:11','&nbsp;\r\n<p style=\"text-align: center;\">Marvel at the magnificent sunsets over Chantry Island or watch boats sail by on the beautiful Saugeen River from the Chantry Suite alcove. Enjoy Â central air conditioning, a King size bed, fireplace TV (including Netflix) and a three-piece en suite bathroom.</p>\r\n<p style=\"text-align: center;\">Priceâ€¦.$225</p>\r\n<p style=\"text-align: center;\">Please view the calendar for availability,and <a href=\"mailto:info@watchhill.ca\">email</a> or call us at 1-519-513-9065Â  to book this room.</p>\r\n<p style=\"text-align: center;\">[wpsbc id=\"2\" title=\"yes\" legend=\"yes\" dropdown=\"yes\" start=\"7\" display=\"4\" language=\"auto\" month=\"6\" year=\"0\" history=\"1\"]</p>\r\n[wpsbc id=\"5\" title=\"yes\" legend=\"yes\" dropdown=\"yes\" start=\"7\" display=\"4\" language=\"auto\" month=\"6\" year=\"0\" history=\"1\"][metaslider id=80]','The Chantry','','inherit','closed','closed','','19-revision-v1','','','2018-03-15 14:01:11','2018-03-15 18:01:11','',19,'https://www.watchhill.ca/2018/03/19-revision-v1/',0,'revision','',0),(694,6,'2018-03-15 14:03:36','2018-03-15 18:03:36','[metaslider id=80]\r\n<p style=\"text-align: center;\">Marvel at the magnificent sunsets over Chantry Island or watch boats sail by on the beautiful Saugeen River from the Chantry Suite alcove. Enjoy Â central air conditioning, a King size bed, fireplace TV (including Netflix) and a three-piece en suite bathroom.</p>\r\n<p style=\"text-align: center;\">Priceâ€¦.$225</p>\r\n<p style=\"text-align: center;\">Please view the calendar for availability,and <a href=\"mailto:info@watchhill.ca\">email</a> or call us at 1-519-513-9065Â  to book this room.</p>\r\n[wpsbc id=\"5\" title=\"yes\" legend=\"yes\" dropdown=\"yes\" start=\"7\" display=\"4\" language=\"auto\" month=\"6\" year=\"0\" history=\"1\"]','The Chantry','','inherit','closed','closed','','19-revision-v1','','','2018-03-15 14:03:36','2018-03-15 18:03:36','',19,'https://www.watchhill.ca/2018/03/19-revision-v1/',0,'revision','',0),(692,6,'2018-03-15 13:59:27','2018-03-15 17:59:27','[wpsbc id=\"5\" title=\"yes\" legend=\"yes\" dropdown=\"yes\" start=\"7\" display=\"4\" language=\"auto\" month=\"6\" year=\"0\" history=\"1\"][metaslider id=80]\r\n<p style=\"text-align: center;\">Marvel at the magnificent sunsets over Chantry Island or watch boats sail by on the beautiful Saugeen River from the Chantry Suite alcove. Enjoy Â central air conditioning, a King size bed, fireplace TV (including Netflix) and a three-piece en suite bathroom.</p>\r\n<p style=\"text-align: center;\">Priceâ€¦.$225</p>\r\n<p style=\"text-align: center;\">Please view the calendar for availability,and <a href=\"mailto:info@watchhill.ca\">email</a> or call us at 1-519-513-9065Â  to book this room.</p>\r\n<p style=\"text-align: center;\">[wpsbc id=\"2\" title=\"yes\" legend=\"yes\" dropdown=\"yes\" start=\"7\" display=\"4\" language=\"auto\" month=\"6\" year=\"0\" history=\"1\"]</p>','The Chantry','','inherit','closed','closed','','19-revision-v1','','','2018-03-15 13:59:27','2018-03-15 17:59:27','',19,'https://www.watchhill.ca/2018/03/19-revision-v1/',0,'revision','',0),(532,6,'2018-02-21 21:22:56','2018-02-22 02:22:56','','Houseofhistory','','inherit','closed','closed','','houseofhistory','','','2018-02-21 21:27:49','2018-02-22 02:27:49','',11,'https://www.watchhill.ca/wp-content/uploads/2018/02/houseofhistory.jpg',0,'attachment','image/jpeg',0),(691,6,'2018-03-15 14:03:33','2018-03-15 18:03:33','[metaslider id=80]\n<p style=\"text-align: center;\">Marvel at the magnificent sunsets over Chantry Island or watch boats sail by on the beautiful Saugeen River from the Chantry Suite alcove. Enjoy Â central air conditioning, a King size bed, fireplace TV (including Netflix) and a three-piece en suite bathroom.</p>\n<p style=\"text-align: center;\">Priceâ€¦.$225</p>\n<p style=\"text-align: center;\">Please view the calendar for availability,and <a href=\"mailto:info@watchhill.ca\">email</a> or call us at 1-519-513-9065Â  to book this room.</p>\n<p style=\"text-align: center;\">[wpsbc id=\"2\" title=\"yes\" legend=\"yes\" dropdown=\"yes\" start=\"7\" display=\"4\" language=\"auto\" month=\"6\" year=\"0\" history=\"1\"]</p>\n[wpsbc id=\"5\" title=\"yes\" legend=\"yes\" dropdown=\"yes\" start=\"7\" display=\"4\" language=\"auto\" month=\"6\" year=\"0\" history=\"1\"]','The Chantry','','inherit','closed','closed','','19-autosave-v1','','','2018-03-15 14:03:33','2018-03-15 18:03:33','',19,'https://www.watchhill.ca/2018/03/19-autosave-v1/',0,'revision','',0),(535,6,'2018-02-21 21:31:57','2018-02-22 02:31:57','<h1><img class=\"wp-image-532 aligncenter\" src=\"https://www.watchhill.ca/wp-content/uploads/2018/02/houseofhistory-300x179.jpg\" alt=\"\" width=\"708\" height=\"422\" /></h1>\r\nWatch Hill was built in 1987 by Matt and Tim Weichel of Southampton as a replica 1920â€™s style beach house and intended to be a dream home for their father who chose its name.Â  For a time it was owned by an American who operated off-track betting from the back office. In later years, filled with antiques, Watch Hill became a Victorian Grande Dame owned by Michelle and Lorin Myers.Â  Now, Watch Hill has shed its Victorian ambiance and taken on the aura of the Hampton\'s Beach House featured in the Jack Nicholson/Diane Keaton movie, <i>Somethingâ€™s Gotta Give</i>.Â  In order to become a working B&amp;B, visited by more than 200 guests during its maiden season (Summer 2017), Carla Pavlov (CR Designs) took on the beach house design challenge.\r\n\r\nCollaborating with many local craftsmen and artisans we tried to maintain the grandeur of Watch Hill and to prepare her for sharing with travellers from as near as down the road to as far away as the Black Forrest of Germany.\r\n\r\nWe hope youâ€™ll visit soon to join us in this new chapter of Watch Hillâ€™s history.','History of Watch Hill','','inherit','closed','closed','','11-revision-v1','','','2018-02-21 21:31:57','2018-02-22 02:31:57','',11,'https://www.watchhill.ca/2018/02/11-revision-v1/',0,'revision','',0),(536,6,'2018-02-21 21:34:44','2018-02-22 02:34:44',' ','','','publish','closed','closed','','536','','','2018-02-22 19:31:06','2018-02-23 00:31:06','',7,'https://www.watchhill.ca/?p=536',5,'nav_menu_item','',0),(537,6,'2018-02-22 17:15:09','2018-02-22 22:15:09','<!--more-->\r\n\r\n<h2 style=\"text-align: center;\">Thank you to all our delightful guests\r\nwho have given us 100% 5-Star evaluations.</h2><!--more-->\r\n\r\n<h3>Here is what some of them had to sayâ€¦</h3><!--more-->\r\n\r\n<h4>January 2018</h4>\r\n<blockquote>This place was truly heaven â€“ somewhere we could step back and take a few breaths as we work thru all the details of our house fire.Â  Thanks for making us feel so welcome and cared for.Â  Your place is so very comfortable and beautifully appointed.Â  It felt like â€œhomeâ€ for a little while.Â  Great meeting you both â€“ and Dooley too of course.\r\nK. &amp; S.</blockquote>\r\n<h4>August 2017</h4>\r\n<blockquote>You have created a perfect environment!Â  From the dÃ©cor, design, gardens, warmth of you and staff, colours, bathrooms, it is truly a perfect experience.Â  We will be back ASAP.Â  All the best,\r\nL. &amp; J.</blockquote>\r\n<blockquote>Sadly we must leave this beautiful oasis you have created here at Watch Hill.Â  However, we have already talked about when we will return.Â  Thank you Richard, Sue, Sarah and Dooley for your hospitality.Â  Truly an amazing experience.Â  With Thanks,\r\n<span style=\"text-align: center;\">M. &amp; S.</span></blockquote>\r\n<blockquote>Thank you Sue, Richard and Sarah.Â  We had an absolutely glorious stay to celebrate our 10<sup>th</sup> Anniversary and are looking forward to staying again in the future.\r\nS. &amp; M.</blockquote>\r\n<blockquote>Thank you for the wonderful hospitality, meals and ambience.Â  Your home is far beyond our expectations!Â  We had an extremely enjoyable, relaxing stay and look forward to a return visit.\r\nG. &amp; E.</blockquote>\r\n<blockquote>We enjoyed our stay immensely.Â  Our room was lovely and well equipped.Â  Loved the views over the water!Â  Good breakfast and great hospitality.Â  Will plan to return.Â  Thanks for being super hosts.\r\nM. &amp; J.</blockquote>\r\n<blockquote>We received a full-page note from a family from Germany who took all 3 rooms for 7 nights.Â  It was filled with wonderful remarks and a promise to return in 2 years.Â  Two weeks later another German speaking couple translated this page for us and wrote their own comments in their native language.Â  We love our guests from across the ocean and have learned lots of ways to communicate without English words!\r\nS. &amp; R.</blockquote>\r\n<h4>July 2017</h4>\r\n<blockquote>Fantastic, fun, fabulous!Â  Great time.\r\nJ.&amp;R.</blockquote>\r\n<blockquote>What a great experience this was!Â  Everything from top to bottom.Â  Thank you for having us and hope all goes well.\r\nJ.</blockquote>\r\n<blockquote>So glad we stayed here and got to meet amazing people like Sue, Richard and Sarah (and Dooley).Â  Honestly better than most hotels, 5 Stars!Â  Thanks so much for having us and hope to come back!\r\nB.</blockquote>\r\n<blockquote>Sue, Richard, Sarah &amp; Dooley!Â  A huge THANK YOU for sharing your beautiful home/B&amp;B!Â  Your outstanding hospitality, friendliness and humour has been so appreciated!Â  Your attention to detail, seeing to our every want and need, the fabulous food, comfort and the sweetest doggy ever has us convinced we will be back next year!Â  Our BEST ANNIVERSARY EVER!Â  #13!\r\nW. &amp; A.</blockquote>\r\n<blockquote>If I could give higher than a #5 rating I would!Â  It is absolutely gorgeous!Â  Hosts are spectacular and food was amazing!Â  Quiet, elegant and beautifully located!Â  We will definitely be going back soon!\r\nC.</blockquote>\r\n<blockquote>This has to be one of the best B&amp;Bâ€™s we have stayed in (and we have stayed in many). Â  Next time I will bring my flute and piano music.Â  XO for Dooley.\r\nL. &amp; R.</blockquote>\r\n<blockquote>WOW, for my first experience at a B&amp;B it couldnâ€™t have been better.Â  You have the most amazing home here and that youâ€™ve opened it up for others to enjoy is a wonderful thing.Â  Weâ€™ll be back again and again.Â  Thank you!Â P.S.Â  The food was AMAZING.\r\nS. &amp; M.</blockquote>\r\n<blockquote>Your home is amazing!Â  We loved everything and felt right at home.Â  Thank you for your warm hospitality and yummy breakfasts.Â  This has been our best B&amp;B experience ever.\r\nJ. &amp; L.</blockquote>\r\n<blockquote>An absolute gem!Â  We had a fantastic stay and your hospitality was impeccable.Â  We shall return!Â  All the best to you both.\r\nL. &amp; D.</blockquote>\r\n<h4>June 2017</h4>\r\n<blockquote>Our stay at Watch Hill was wonderful from beginning to end.Â  Sue &amp; Rich were very warm and welcoming, as was the B&amp;B itself.Â  The house was immaculate, open and full of natural light.Â  The view from the Chantry Suite of the Saugeen River and Lake Huron, along with Chantry Island was beautiful.Â  There were several noteworthy amenities including multiple lounge areas both inside and out, both indoor and outdoor fireplaces, a 24-hr snack/espresso bar, and various musical instruments ready to be played in the living room.Â  Also, the breakfast was delicious and served very timely when we arrived in the dining room the following morning.Â  Overall, Watch Hill is the luxurious, bright and beautiful B&amp;B Southampton has been missing until now and we will definitely be returning in the near future!Â  Thanks again for everything Sue &amp; Rich!\r\nB.</blockquote>\r\n<blockquote>This was one of the most beautiful places I have ever stayed.Â  Everything was perfect down to the last detail â€“ colouring books, piano, Netflix, beautiful patio, magazines, etc.Â  Breakfast was delicious and coffee was amazing!Â  Sue and Richard were so friendly and definitely made us feel at home â€“ we area already looking for another date where we can go back â˜º!\r\nC.</blockquote>\r\n<blockquote>If I could give you 25 stars on a 10-star = EXCELLENT scale, I would do so in a flash!!\r\nM. from Los Angeles</blockquote>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Testimonials','','publish','closed','closed','','testimonials','','','2018-02-22 17:15:09','2018-02-22 22:15:09','',0,'https://www.watchhill.ca/?page_id=537',0,'page','',0),(554,6,'2018-02-22 16:55:55','2018-02-22 21:55:55','<h2 style=\"text-align: center;\">Thank you to all our delightful guests\r\nwho have given us 100% 5-Star evaluations.</h2>\r\n&nbsp;\r\n<h3>Here is what some of them had to sayâ€¦</h3>\r\n<h4></h4>\r\n<h4>January 2018</h4>\r\n<blockquote>This place was truly heaven â€“ somewhere we could step back and take a few breaths as we work thru all the details of our house fire.Â  Thanks for making us feel so welcome and cared for.Â  Your place is so very comfortable and beautifully appointed.Â  It felt like â€œhomeâ€ for a little while.Â  Great meeting you both â€“ and Dooley too of course.\r\nK. &amp; S.</blockquote>\r\n<h4>August 2017</h4>\r\n<blockquote>You have created a perfect environment!Â  From the dÃ©cor, design, gardens, warmth of you and staff, colours, bathrooms, it is truly a perfect experience.Â  We will be back ASAP.Â  All the best,Â L. &amp; J.</blockquote>\r\n<blockquote>Sadly we must leave this beautiful oasis you have created here at Watch Hill.Â  However, we have already talked about when we will return.Â  Thank you Richard, Sue, Sarah and Dooley for your hospitality.Â  Truly an amazing experience.Â  With Thanks,<span style=\"text-align: center;\">M. &amp; S.</span></blockquote>\r\n<blockquote>Thank you Sue, Richard and Sarah.Â  We had an absolutely glorious stay to celebrate our 10<sup>th</sup> Anniversary and are looking forward to staying again in the future. S. &amp; M.</blockquote>\r\n<blockquote>Thank you for the wonderful hospitality, meals and ambience.Â  Your home is far beyond our expectations!Â  We had an extremely enjoyable, relaxing stay and look forward to a return visit. G. &amp; E.</blockquote>\r\n<blockquote>We enjoyed our stay immensely.Â  Our room was lovely and well equipped.Â  Loved the views over the water!Â  Good breakfast and great hospitality.Â  Will plan to return.Â  Thanks for being super hosts. M. &amp; J.</blockquote>\r\n<blockquote>We received a full-page note from a family from Germany who took all 3 rooms for 7 nights.Â  It was filled with wonderful remarks and a promise to return in 2 years.Â  Two weeks later another German speaking couple translated this page for us and wrote their own comments in their native language.Â  We love our guests from across the ocean and have learned lots of ways to communicate without English words! S. &amp; R.</blockquote>\r\n<h4>July 2017</h4>\r\n<blockquote>Fantastic, fun, fabulous!Â  Great time. J.&amp;R.</blockquote>\r\n<blockquote>What a great experience this was!Â  Everything from top to bottom.Â  Thank you for having us and hope all goes well. J.</blockquote>\r\n<blockquote>So glad we stayed here and got to meet amazing people like Sue, Richard and Sarah (and Dooley).Â  Honestly better than most hotels, 5 Stars!Â  Thanks so much for having us and hope to come back! B.</blockquote>\r\n&nbsp;\r\n<blockquote>Sue, Richard, Sarah &amp; Dooley!Â  A huge THANK YOU for sharing your beautiful home/B&amp;B!Â  Your outstanding hospitality, friendliness and humour has been so appreciated!Â  Your attention to detail, seeing to our every want and need, the fabulous food, comfort and the sweetest doggy ever has us convinced we will be back next year!Â  Our BEST ANNIVERSARY EVER!Â  #13! W. &amp; A.</blockquote>\r\n<blockquote>If I could give higher than a #5 rating I would!Â  It is absolutely gorgeous!Â  Hosts are spectacular and food was amazing!Â  Quiet, elegant and beautifully located!Â  We will definitely be going back soon! C.</blockquote>\r\n<blockquote>This has to be one of the best B&amp;Bâ€™s we have stayed in (and we have stayed in many). Â  Next time I will bring my flute and piano music.Â  XO for Dooley. L. &amp; R.</blockquote>\r\n<blockquote>WOW, for my first experience at a B&amp;B it couldnâ€™t have been better.Â  You have the most amazing home here and that youâ€™ve opened it up for others to enjoy is a wonderful thing.Â  Weâ€™ll be back again and again.Â  Thank you!Â P.S.Â  The food was AMAZING. S. &amp; M.</blockquote>\r\n<blockquote>Your home is amazing!Â  We loved everything and felt right at home.Â  Thank you for your warm hospitality and yummy breakfasts.Â  This has been our best B&amp;B experience ever. J. &amp; L.</blockquote>\r\n<blockquote>An absolute gem!Â  We had a fantastic stay and your hospitality was impeccable.Â  We shall return!Â  All the best to you both. L. &amp; D.</blockquote>\r\n<h4>June 2017</h4>\r\n<blockquote>Our stay at Watch Hill was wonderful from beginning to end.Â  Sue &amp; Rich were very warm and welcoming, as was the B&amp;B itself.Â  The house was immaculate, open and full of natural light.Â  The view from the Chantry Suite of the Saugeen River and Lake Huron, along with Chantry Island was beautiful.Â  There were several noteworthy amenities including multiple lounge areas both inside and out, both indoor and outdoor fireplaces, a 24-hr snack/espresso bar, and various musical instruments ready to be played in the living room.Â  Also, the breakfast was delicious and served very timely when we arrived in the dining room the following morning.Â  Overall, Watch Hill is the luxurious, bright and beautiful B&amp;B Southampton has been missing until now and we will definitely be returning in the near future!Â  Thanks again for everything Sue &amp; Rich! B.</blockquote>\r\n<blockquote>This was one of the most beautiful places I have ever stayed.Â  Everything was perfect down to the last detail â€“ colouring books, piano, Netflix, beautiful patio, magazines, etc.Â  Breakfast was delicious and coffee was amazing!Â  Sue and Richard were so friendly and definitely made us feel at home â€“ we area already looking for another date where we can go back â˜º! C.</blockquote>\r\n<blockquote>If I could give you 25 stars on a 10-star = EXCELLENT scale, I would do so in a flash!! M. from Los Angeles</blockquote>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Testimonials','','inherit','closed','closed','','537-revision-v1','','','2018-02-22 16:55:55','2018-02-22 21:55:55','',537,'https://www.watchhill.ca/2018/02/537-revision-v1/',0,'revision','',0),(555,6,'2018-02-22 16:58:50','2018-02-22 21:58:50','<h2 style=\"text-align: center;\">Thank you to all our delightful guests\r\nwho have given us 100% 5-Star evaluations.</h2>\r\n&nbsp;\r\n<h3>Here is what some of them had to sayâ€¦</h3>\r\n<h3>January 2018</h3>\r\n<blockquote>This place was truly heaven â€“ somewhere we could step back and take a few breaths as we work thru all the details of our house fire.Â  Thanks for making us feel so welcome and cared for.Â  Your place is so very comfortable and beautifully appointed.Â  It felt like â€œhomeâ€ for a little while.Â  Great meeting you both â€“ and Dooley too of course.\r\nK. &amp; S.</blockquote>\r\n<h4>August 2017</h4>\r\n<blockquote>You have created a perfect environment!Â  From the dÃ©cor, design, gardens, warmth of you and staff, colours, bathrooms, it is truly a perfect experience.Â  We will be back ASAP.Â  All the best,Â L. &amp; J.</blockquote>\r\n<blockquote>Sadly we must leave this beautiful oasis you have created here at Watch Hill.Â  However, we have already talked about when we will return.Â  Thank you Richard, Sue, Sarah and Dooley for your hospitality.Â  Truly an amazing experience.Â  With Thanks,<span style=\"text-align: center;\">M. &amp; S.</span></blockquote>\r\n<blockquote>Thank you Sue, Richard and Sarah.Â  We had an absolutely glorious stay to celebrate our 10<sup>th</sup> Anniversary and are looking forward to staying again in the future. S. &amp; M.</blockquote>\r\n<blockquote>Thank you for the wonderful hospitality, meals and ambience.Â  Your home is far beyond our expectations!Â  We had an extremely enjoyable, relaxing stay and look forward to a return visit. G. &amp; E.</blockquote>\r\n<blockquote>We enjoyed our stay immensely.Â  Our room was lovely and well equipped.Â  Loved the views over the water!Â  Good breakfast and great hospitality.Â  Will plan to return.Â  Thanks for being super hosts. M. &amp; J.</blockquote>\r\n<blockquote>We received a full-page note from a family from Germany who took all 3 rooms for 7 nights.Â  It was filled with wonderful remarks and a promise to return in 2 years.Â  Two weeks later another German speaking couple translated this page for us and wrote their own comments in their native language.Â  We love our guests from across the ocean and have learned lots of ways to communicate without English words! S. &amp; R.</blockquote>\r\n<h4>July 2017</h4>\r\n<blockquote>Fantastic, fun, fabulous!Â  Great time. J.&amp;R.</blockquote>\r\n<blockquote>What a great experience this was!Â  Everything from top to bottom.Â  Thank you for having us and hope all goes well. J.</blockquote>\r\n<blockquote>So glad we stayed here and got to meet amazing people like Sue, Richard and Sarah (and Dooley).Â  Honestly better than most hotels, 5 Stars!Â  Thanks so much for having us and hope to come back! B.</blockquote>\r\n&nbsp;\r\n<blockquote>Sue, Richard, Sarah &amp; Dooley!Â  A huge THANK YOU for sharing your beautiful home/B&amp;B!Â  Your outstanding hospitality, friendliness and humour has been so appreciated!Â  Your attention to detail, seeing to our every want and need, the fabulous food, comfort and the sweetest doggy ever has us convinced we will be back next year!Â  Our BEST ANNIVERSARY EVER!Â  #13! W. &amp; A.</blockquote>\r\n<blockquote>If I could give higher than a #5 rating I would!Â  It is absolutely gorgeous!Â  Hosts are spectacular and food was amazing!Â  Quiet, elegant and beautifully located!Â  We will definitely be going back soon! C.</blockquote>\r\n<blockquote>This has to be one of the best B&amp;Bâ€™s we have stayed in (and we have stayed in many). Â  Next time I will bring my flute and piano music.Â  XO for Dooley. L. &amp; R.</blockquote>\r\n<blockquote>WOW, for my first experience at a B&amp;B it couldnâ€™t have been better.Â  You have the most amazing home here and that youâ€™ve opened it up for others to enjoy is a wonderful thing.Â  Weâ€™ll be back again and again.Â  Thank you!Â P.S.Â  The food was AMAZING. S. &amp; M.</blockquote>\r\n<blockquote>Your home is amazing!Â  We loved everything and felt right at home.Â  Thank you for your warm hospitality and yummy breakfasts.Â  This has been our best B&amp;B experience ever. J. &amp; L.</blockquote>\r\n<blockquote>An absolute gem!Â  We had a fantastic stay and your hospitality was impeccable.Â  We shall return!Â  All the best to you both. L. &amp; D.</blockquote>\r\n<h4>June 2017</h4>\r\n<blockquote>Our stay at Watch Hill was wonderful from beginning to end.Â  Sue &amp; Rich were very warm and welcoming, as was the B&amp;B itself.Â  The house was immaculate, open and full of natural light.Â  The view from the Chantry Suite of the Saugeen River and Lake Huron, along with Chantry Island was beautiful.Â  There were several noteworthy amenities including multiple lounge areas both inside and out, both indoor and outdoor fireplaces, a 24-hr snack/espresso bar, and various musical instruments ready to be played in the living room.Â  Also, the breakfast was delicious and served very timely when we arrived in the dining room the following morning.Â  Overall, Watch Hill is the luxurious, bright and beautiful B&amp;B Southampton has been missing until now and we will definitely be returning in the near future!Â  Thanks again for everything Sue &amp; Rich! B.</blockquote>\r\n<blockquote>This was one of the most beautiful places I have ever stayed.Â  Everything was perfect down to the last detail â€“ colouring books, piano, Netflix, beautiful patio, magazines, etc.Â  Breakfast was delicious and coffee was amazing!Â  Sue and Richard were so friendly and definitely made us feel at home â€“ we area already looking for another date where we can go back â˜º! C.</blockquote>\r\n<blockquote>If I could give you 25 stars on a 10-star = EXCELLENT scale, I would do so in a flash!! M. from Los Angeles</blockquote>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Testimonials','','inherit','closed','closed','','537-revision-v1','','','2018-02-22 16:58:50','2018-02-22 21:58:50','',537,'https://www.watchhill.ca/2018/02/537-revision-v1/',0,'revision','',0),(556,6,'2018-02-22 16:59:27','2018-02-22 21:59:27','<h2 style=\"text-align: center;\">Thank you to all our delightful guests\r\nwho have given us 100% 5-Star evaluations.</h2>\r\n<h3>Here is what some of them had to sayâ€¦</h3>\r\n<h4>January 2018</h4>\r\n<blockquote>This place was truly heaven â€“ somewhere we could step back and take a few breaths as we work thru all the details of our house fire.Â  Thanks for making us feel so welcome and cared for.Â  Your place is so very comfortable and beautifully appointed.Â  It felt like â€œhomeâ€ for a little while.Â  Great meeting you both â€“ and Dooley too of course.\r\nK. &amp; S.</blockquote>\r\n<h4>August 2017</h4>\r\n<blockquote>You have created a perfect environment!Â  From the dÃ©cor, design, gardens, warmth of you and staff, colours, bathrooms, it is truly a perfect experience.Â  We will be back ASAP.Â  All the best,Â L. &amp; J.</blockquote>\r\n<blockquote>Sadly we must leave this beautiful oasis you have created here at Watch Hill.Â  However, we have already talked about when we will return.Â  Thank you Richard, Sue, Sarah and Dooley for your hospitality.Â  Truly an amazing experience.Â  With Thanks,<span style=\"text-align: center;\">M. &amp; S.</span></blockquote>\r\n<blockquote>Thank you Sue, Richard and Sarah.Â  We had an absolutely glorious stay to celebrate our 10<sup>th</sup> Anniversary and are looking forward to staying again in the future. S. &amp; M.</blockquote>\r\n<blockquote>Thank you for the wonderful hospitality, meals and ambience.Â  Your home is far beyond our expectations!Â  We had an extremely enjoyable, relaxing stay and look forward to a return visit. G. &amp; E.</blockquote>\r\n<blockquote>We enjoyed our stay immensely.Â  Our room was lovely and well equipped.Â  Loved the views over the water!Â  Good breakfast and great hospitality.Â  Will plan to return.Â  Thanks for being super hosts. M. &amp; J.</blockquote>\r\n<blockquote>We received a full-page note from a family from Germany who took all 3 rooms for 7 nights.Â  It was filled with wonderful remarks and a promise to return in 2 years.Â  Two weeks later another German speaking couple translated this page for us and wrote their own comments in their native language.Â  We love our guests from across the ocean and have learned lots of ways to communicate without English words! S. &amp; R.</blockquote>\r\n<h4>July 2017</h4>\r\n<blockquote>Fantastic, fun, fabulous!Â  Great time. J.&amp;R.</blockquote>\r\n<blockquote>What a great experience this was!Â  Everything from top to bottom.Â  Thank you for having us and hope all goes well. J.</blockquote>\r\n<blockquote>So glad we stayed here and got to meet amazing people like Sue, Richard and Sarah (and Dooley).Â  Honestly better than most hotels, 5 Stars!Â  Thanks so much for having us and hope to come back! B.</blockquote>\r\n&nbsp;\r\n<blockquote>Sue, Richard, Sarah &amp; Dooley!Â  A huge THANK YOU for sharing your beautiful home/B&amp;B!Â  Your outstanding hospitality, friendliness and humour has been so appreciated!Â  Your attention to detail, seeing to our every want and need, the fabulous food, comfort and the sweetest doggy ever has us convinced we will be back next year!Â  Our BEST ANNIVERSARY EVER!Â  #13! W. &amp; A.</blockquote>\r\n<blockquote>If I could give higher than a #5 rating I would!Â  It is absolutely gorgeous!Â  Hosts are spectacular and food was amazing!Â  Quiet, elegant and beautifully located!Â  We will definitely be going back soon! C.</blockquote>\r\n<blockquote>This has to be one of the best B&amp;Bâ€™s we have stayed in (and we have stayed in many). Â  Next time I will bring my flute and piano music.Â  XO for Dooley. L. &amp; R.</blockquote>\r\n<blockquote>WOW, for my first experience at a B&amp;B it couldnâ€™t have been better.Â  You have the most amazing home here and that youâ€™ve opened it up for others to enjoy is a wonderful thing.Â  Weâ€™ll be back again and again.Â  Thank you!Â P.S.Â  The food was AMAZING. S. &amp; M.</blockquote>\r\n<blockquote>Your home is amazing!Â  We loved everything and felt right at home.Â  Thank you for your warm hospitality and yummy breakfasts.Â  This has been our best B&amp;B experience ever. J. &amp; L.</blockquote>\r\n<blockquote>An absolute gem!Â  We had a fantastic stay and your hospitality was impeccable.Â  We shall return!Â  All the best to you both. L. &amp; D.</blockquote>\r\n<h4>June 2017</h4>\r\n<blockquote>Our stay at Watch Hill was wonderful from beginning to end.Â  Sue &amp; Rich were very warm and welcoming, as was the B&amp;B itself.Â  The house was immaculate, open and full of natural light.Â  The view from the Chantry Suite of the Saugeen River and Lake Huron, along with Chantry Island was beautiful.Â  There were several noteworthy amenities including multiple lounge areas both inside and out, both indoor and outdoor fireplaces, a 24-hr snack/espresso bar, and various musical instruments ready to be played in the living room.Â  Also, the breakfast was delicious and served very timely when we arrived in the dining room the following morning.Â  Overall, Watch Hill is the luxurious, bright and beautiful B&amp;B Southampton has been missing until now and we will definitely be returning in the near future!Â  Thanks again for everything Sue &amp; Rich! B.</blockquote>\r\n<blockquote>This was one of the most beautiful places I have ever stayed.Â  Everything was perfect down to the last detail â€“ colouring books, piano, Netflix, beautiful patio, magazines, etc.Â  Breakfast was delicious and coffee was amazing!Â  Sue and Richard were so friendly and definitely made us feel at home â€“ we area already looking for another date where we can go back â˜º! C.</blockquote>\r\n<blockquote>If I could give you 25 stars on a 10-star = EXCELLENT scale, I would do so in a flash!! M. from Los Angeles</blockquote>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Testimonials','','inherit','closed','closed','','537-revision-v1','','','2018-02-22 16:59:27','2018-02-22 21:59:27','',537,'https://www.watchhill.ca/2018/02/537-revision-v1/',0,'revision','',0),(557,6,'2018-02-22 17:00:03','2018-02-22 22:00:03','<h2 style=\"text-align: center;\">Thank you to all our delightful guests\r\nwho have given us 100% 5-Star evaluations.</h2>\r\n<h3></h3>\r\n<h3>Here is what some of them had to sayâ€¦</h3>\r\n<h4>January 2018</h4>\r\n<blockquote>This place was truly heaven â€“ somewhere we could step back and take a few breaths as we work thru all the details of our house fire.Â  Thanks for making us feel so welcome and cared for.Â  Your place is so very comfortable and beautifully appointed.Â  It felt like â€œhomeâ€ for a little while.Â  Great meeting you both â€“ and Dooley too of course.\r\nK. &amp; S.</blockquote>\r\n<h4>August 2017</h4>\r\n<blockquote>You have created a perfect environment!Â  From the dÃ©cor, design, gardens, warmth of you and staff, colours, bathrooms, it is truly a perfect experience.Â  We will be back ASAP.Â  All the best,Â L. &amp; J.</blockquote>\r\n<blockquote>Sadly we must leave this beautiful oasis you have created here at Watch Hill.Â  However, we have already talked about when we will return.Â  Thank you Richard, Sue, Sarah and Dooley for your hospitality.Â  Truly an amazing experience.Â  With Thanks,<span style=\"text-align: center;\">M. &amp; S.</span></blockquote>\r\n<blockquote>Thank you Sue, Richard and Sarah.Â  We had an absolutely glorious stay to celebrate our 10<sup>th</sup> Anniversary and are looking forward to staying again in the future. S. &amp; M.</blockquote>\r\n<blockquote>Thank you for the wonderful hospitality, meals and ambience.Â  Your home is far beyond our expectations!Â  We had an extremely enjoyable, relaxing stay and look forward to a return visit. G. &amp; E.</blockquote>\r\n<blockquote>We enjoyed our stay immensely.Â  Our room was lovely and well equipped.Â  Loved the views over the water!Â  Good breakfast and great hospitality.Â  Will plan to return.Â  Thanks for being super hosts. M. &amp; J.</blockquote>\r\n<blockquote>We received a full-page note from a family from Germany who took all 3 rooms for 7 nights.Â  It was filled with wonderful remarks and a promise to return in 2 years.Â  Two weeks later another German speaking couple translated this page for us and wrote their own comments in their native language.Â  We love our guests from across the ocean and have learned lots of ways to communicate without English words! S. &amp; R.</blockquote>\r\n<h4>July 2017</h4>\r\n<blockquote>Fantastic, fun, fabulous!Â  Great time. J.&amp;R.</blockquote>\r\n<blockquote>What a great experience this was!Â  Everything from top to bottom.Â  Thank you for having us and hope all goes well. J.</blockquote>\r\n<blockquote>So glad we stayed here and got to meet amazing people like Sue, Richard and Sarah (and Dooley).Â  Honestly better than most hotels, 5 Stars!Â  Thanks so much for having us and hope to come back! B.</blockquote>\r\n&nbsp;\r\n<blockquote>Sue, Richard, Sarah &amp; Dooley!Â  A huge THANK YOU for sharing your beautiful home/B&amp;B!Â  Your outstanding hospitality, friendliness and humour has been so appreciated!Â  Your attention to detail, seeing to our every want and need, the fabulous food, comfort and the sweetest doggy ever has us convinced we will be back next year!Â  Our BEST ANNIVERSARY EVER!Â  #13! W. &amp; A.</blockquote>\r\n<blockquote>If I could give higher than a #5 rating I would!Â  It is absolutely gorgeous!Â  Hosts are spectacular and food was amazing!Â  Quiet, elegant and beautifully located!Â  We will definitely be going back soon! C.</blockquote>\r\n<blockquote>This has to be one of the best B&amp;Bâ€™s we have stayed in (and we have stayed in many). Â  Next time I will bring my flute and piano music.Â  XO for Dooley. L. &amp; R.</blockquote>\r\n<blockquote>WOW, for my first experience at a B&amp;B it couldnâ€™t have been better.Â  You have the most amazing home here and that youâ€™ve opened it up for others to enjoy is a wonderful thing.Â  Weâ€™ll be back again and again.Â  Thank you!Â P.S.Â  The food was AMAZING. S. &amp; M.</blockquote>\r\n<blockquote>Your home is amazing!Â  We loved everything and felt right at home.Â  Thank you for your warm hospitality and yummy breakfasts.Â  This has been our best B&amp;B experience ever. J. &amp; L.</blockquote>\r\n<blockquote>An absolute gem!Â  We had a fantastic stay and your hospitality was impeccable.Â  We shall return!Â  All the best to you both. L. &amp; D.</blockquote>\r\n<h4>June 2017</h4>\r\n<blockquote>Our stay at Watch Hill was wonderful from beginning to end.Â  Sue &amp; Rich were very warm and welcoming, as was the B&amp;B itself.Â  The house was immaculate, open and full of natural light.Â  The view from the Chantry Suite of the Saugeen River and Lake Huron, along with Chantry Island was beautiful.Â  There were several noteworthy amenities including multiple lounge areas both inside and out, both indoor and outdoor fireplaces, a 24-hr snack/espresso bar, and various musical instruments ready to be played in the living room.Â  Also, the breakfast was delicious and served very timely when we arrived in the dining room the following morning.Â  Overall, Watch Hill is the luxurious, bright and beautiful B&amp;B Southampton has been missing until now and we will definitely be returning in the near future!Â  Thanks again for everything Sue &amp; Rich! B.</blockquote>\r\n<blockquote>This was one of the most beautiful places I have ever stayed.Â  Everything was perfect down to the last detail â€“ colouring books, piano, Netflix, beautiful patio, magazines, etc.Â  Breakfast was delicious and coffee was amazing!Â  Sue and Richard were so friendly and definitely made us feel at home â€“ we area already looking for another date where we can go back â˜º! C.</blockquote>\r\n<blockquote>If I could give you 25 stars on a 10-star = EXCELLENT scale, I would do so in a flash!! M. from Los Angeles</blockquote>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Testimonials','','inherit','closed','closed','','537-revision-v1','','','2018-02-22 17:00:03','2018-02-22 22:00:03','',537,'https://www.watchhill.ca/2018/02/537-revision-v1/',0,'revision','',0),(558,6,'2018-02-22 17:06:22','2018-02-22 22:06:22','<h2 style=\"text-align: center;\">Thank you to all our delightful guests\r\nwho have given us 100% 5-Star evaluations.</h2>\r\n<p><h3>Here is what some of them had to sayâ€¦</h3></p>\r\n<h4>January 2018</h4>\r\n<blockquote>This place was truly heaven â€“ somewhere we could step back and take a few breaths as we work thru all the details of our house fire.Â  Thanks for making us feel so welcome and cared for.Â  Your place is so very comfortable and beautifully appointed.Â  It felt like â€œhomeâ€ for a little while.Â  Great meeting you both â€“ and Dooley too of course.\r\nK. &amp; S.</blockquote>\r\n<h4>August 2017</h4>\r\n<blockquote>You have created a perfect environment!Â  From the dÃ©cor, design, gardens, warmth of you and staff, colours, bathrooms, it is truly a perfect experience.Â  We will be back ASAP.Â  All the best,Â L. &amp; J.</blockquote>\r\n<blockquote>Sadly we must leave this beautiful oasis you have created here at Watch Hill.Â  However, we have already talked about when we will return.Â  Thank you Richard, Sue, Sarah and Dooley for your hospitality.Â  Truly an amazing experience.Â  With Thanks,<span style=\"text-align: center;\">M. &amp; S.</span></blockquote>\r\n<blockquote>Thank you Sue, Richard and Sarah.Â  We had an absolutely glorious stay to celebrate our 10<sup>th</sup> Anniversary and are looking forward to staying again in the future. S. &amp; M.</blockquote>\r\n<blockquote>Thank you for the wonderful hospitality, meals and ambience.Â  Your home is far beyond our expectations!Â  We had an extremely enjoyable, relaxing stay and look forward to a return visit. G. &amp; E.</blockquote>\r\n<blockquote>We enjoyed our stay immensely.Â  Our room was lovely and well equipped.Â  Loved the views over the water!Â  Good breakfast and great hospitality.Â  Will plan to return.Â  Thanks for being super hosts. M. &amp; J.</blockquote>\r\n<blockquote>We received a full-page note from a family from Germany who took all 3 rooms for 7 nights.Â  It was filled with wonderful remarks and a promise to return in 2 years.Â  Two weeks later another German speaking couple translated this page for us and wrote their own comments in their native language.Â  We love our guests from across the ocean and have learned lots of ways to communicate without English words! S. &amp; R.</blockquote>\r\n<h4>July 2017</h4>\r\n<blockquote>Fantastic, fun, fabulous!Â  Great time. J.&amp;R.</blockquote>\r\n<blockquote>What a great experience this was!Â  Everything from top to bottom.Â  Thank you for having us and hope all goes well. J.</blockquote>\r\n<blockquote>So glad we stayed here and got to meet amazing people like Sue, Richard and Sarah (and Dooley).Â  Honestly better than most hotels, 5 Stars!Â  Thanks so much for having us and hope to come back! B.</blockquote>\r\n&nbsp;\r\n<blockquote>Sue, Richard, Sarah &amp; Dooley!Â  A huge THANK YOU for sharing your beautiful home/B&amp;B!Â  Your outstanding hospitality, friendliness and humour has been so appreciated!Â  Your attention to detail, seeing to our every want and need, the fabulous food, comfort and the sweetest doggy ever has us convinced we will be back next year!Â  Our BEST ANNIVERSARY EVER!Â  #13! W. &amp; A.</blockquote>\r\n<blockquote>If I could give higher than a #5 rating I would!Â  It is absolutely gorgeous!Â  Hosts are spectacular and food was amazing!Â  Quiet, elegant and beautifully located!Â  We will definitely be going back soon! C.</blockquote>\r\n<blockquote>This has to be one of the best B&amp;Bâ€™s we have stayed in (and we have stayed in many). Â  Next time I will bring my flute and piano music.Â  XO for Dooley. L. &amp; R.</blockquote>\r\n<blockquote>WOW, for my first experience at a B&amp;B it couldnâ€™t have been better.Â  You have the most amazing home here and that youâ€™ve opened it up for others to enjoy is a wonderful thing.Â  Weâ€™ll be back again and again.Â  Thank you!Â P.S.Â  The food was AMAZING. S. &amp; M.</blockquote>\r\n<blockquote>Your home is amazing!Â  We loved everything and felt right at home.Â  Thank you for your warm hospitality and yummy breakfasts.Â  This has been our best B&amp;B experience ever. J. &amp; L.</blockquote>\r\n<blockquote>An absolute gem!Â  We had a fantastic stay and your hospitality was impeccable.Â  We shall return!Â  All the best to you both. L. &amp; D.</blockquote>\r\n<h4>June 2017</h4>\r\n<blockquote>Our stay at Watch Hill was wonderful from beginning to end.Â  Sue &amp; Rich were very warm and welcoming, as was the B&amp;B itself.Â  The house was immaculate, open and full of natural light.Â  The view from the Chantry Suite of the Saugeen River and Lake Huron, along with Chantry Island was beautiful.Â  There were several noteworthy amenities including multiple lounge areas both inside and out, both indoor and outdoor fireplaces, a 24-hr snack/espresso bar, and various musical instruments ready to be played in the living room.Â  Also, the breakfast was delicious and served very timely when we arrived in the dining room the following morning.Â  Overall, Watch Hill is the luxurious, bright and beautiful B&amp;B Southampton has been missing until now and we will definitely be returning in the near future!Â  Thanks again for everything Sue &amp; Rich! B.</blockquote>\r\n<blockquote>This was one of the most beautiful places I have ever stayed.Â  Everything was perfect down to the last detail â€“ colouring books, piano, Netflix, beautiful patio, magazines, etc.Â  Breakfast was delicious and coffee was amazing!Â  Sue and Richard were so friendly and definitely made us feel at home â€“ we area already looking for another date where we can go back â˜º! C.</blockquote>\r\n<blockquote>If I could give you 25 stars on a 10-star = EXCELLENT scale, I would do so in a flash!! M. from Los Angeles</blockquote>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Testimonials','','inherit','closed','closed','','537-revision-v1','','','2018-02-22 17:06:22','2018-02-22 22:06:22','',537,'https://www.watchhill.ca/2018/02/537-revision-v1/',0,'revision','',0),(559,6,'2018-02-22 17:07:03','2018-02-22 22:07:03','<p><h2 style=\"text-align: center;\">Thank you to all our delightful guests\r\nwho have given us 100% 5-Star evaluations.</h2></p>\r\n<p><h3>Here is what some of them had to sayâ€¦</h3></p>\r\n<h4>January 2018</h4>\r\n<blockquote>This place was truly heaven â€“ somewhere we could step back and take a few breaths as we work thru all the details of our house fire.Â  Thanks for making us feel so welcome and cared for.Â  Your place is so very comfortable and beautifully appointed.Â  It felt like â€œhomeâ€ for a little while.Â  Great meeting you both â€“ and Dooley too of course.\r\nK. &amp; S.</blockquote>\r\n<h4>August 2017</h4>\r\n<blockquote>You have created a perfect environment!Â  From the dÃ©cor, design, gardens, warmth of you and staff, colours, bathrooms, it is truly a perfect experience.Â  We will be back ASAP.Â  All the best,Â L. &amp; J.</blockquote>\r\n<blockquote>Sadly we must leave this beautiful oasis you have created here at Watch Hill.Â  However, we have already talked about when we will return.Â  Thank you Richard, Sue, Sarah and Dooley for your hospitality.Â  Truly an amazing experience.Â  With Thanks,<span style=\"text-align: center;\">M. &amp; S.</span></blockquote>\r\n<blockquote>Thank you Sue, Richard and Sarah.Â  We had an absolutely glorious stay to celebrate our 10<sup>th</sup> Anniversary and are looking forward to staying again in the future. S. &amp; M.</blockquote>\r\n<blockquote>Thank you for the wonderful hospitality, meals and ambience.Â  Your home is far beyond our expectations!Â  We had an extremely enjoyable, relaxing stay and look forward to a return visit. G. &amp; E.</blockquote>\r\n<blockquote>We enjoyed our stay immensely.Â  Our room was lovely and well equipped.Â  Loved the views over the water!Â  Good breakfast and great hospitality.Â  Will plan to return.Â  Thanks for being super hosts. M. &amp; J.</blockquote>\r\n<blockquote>We received a full-page note from a family from Germany who took all 3 rooms for 7 nights.Â  It was filled with wonderful remarks and a promise to return in 2 years.Â  Two weeks later another German speaking couple translated this page for us and wrote their own comments in their native language.Â  We love our guests from across the ocean and have learned lots of ways to communicate without English words! S. &amp; R.</blockquote>\r\n<h4>July 2017</h4>\r\n<blockquote>Fantastic, fun, fabulous!Â  Great time. J.&amp;R.</blockquote>\r\n<blockquote>What a great experience this was!Â  Everything from top to bottom.Â  Thank you for having us and hope all goes well. J.</blockquote>\r\n<blockquote>So glad we stayed here and got to meet amazing people like Sue, Richard and Sarah (and Dooley).Â  Honestly better than most hotels, 5 Stars!Â  Thanks so much for having us and hope to come back! B.</blockquote>\r\n&nbsp;\r\n<blockquote>Sue, Richard, Sarah &amp; Dooley!Â  A huge THANK YOU for sharing your beautiful home/B&amp;B!Â  Your outstanding hospitality, friendliness and humour has been so appreciated!Â  Your attention to detail, seeing to our every want and need, the fabulous food, comfort and the sweetest doggy ever has us convinced we will be back next year!Â  Our BEST ANNIVERSARY EVER!Â  #13! W. &amp; A.</blockquote>\r\n<blockquote>If I could give higher than a #5 rating I would!Â  It is absolutely gorgeous!Â  Hosts are spectacular and food was amazing!Â  Quiet, elegant and beautifully located!Â  We will definitely be going back soon! C.</blockquote>\r\n<blockquote>This has to be one of the best B&amp;Bâ€™s we have stayed in (and we have stayed in many). Â  Next time I will bring my flute and piano music.Â  XO for Dooley. L. &amp; R.</blockquote>\r\n<blockquote>WOW, for my first experience at a B&amp;B it couldnâ€™t have been better.Â  You have the most amazing home here and that youâ€™ve opened it up for others to enjoy is a wonderful thing.Â  Weâ€™ll be back again and again.Â  Thank you!Â P.S.Â  The food was AMAZING. S. &amp; M.</blockquote>\r\n<blockquote>Your home is amazing!Â  We loved everything and felt right at home.Â  Thank you for your warm hospitality and yummy breakfasts.Â  This has been our best B&amp;B experience ever. J. &amp; L.</blockquote>\r\n<blockquote>An absolute gem!Â  We had a fantastic stay and your hospitality was impeccable.Â  We shall return!Â  All the best to you both. L. &amp; D.</blockquote>\r\n<h4>June 2017</h4>\r\n<blockquote>Our stay at Watch Hill was wonderful from beginning to end.Â  Sue &amp; Rich were very warm and welcoming, as was the B&amp;B itself.Â  The house was immaculate, open and full of natural light.Â  The view from the Chantry Suite of the Saugeen River and Lake Huron, along with Chantry Island was beautiful.Â  There were several noteworthy amenities including multiple lounge areas both inside and out, both indoor and outdoor fireplaces, a 24-hr snack/espresso bar, and various musical instruments ready to be played in the living room.Â  Also, the breakfast was delicious and served very timely when we arrived in the dining room the following morning.Â  Overall, Watch Hill is the luxurious, bright and beautiful B&amp;B Southampton has been missing until now and we will definitely be returning in the near future!Â  Thanks again for everything Sue &amp; Rich! B.</blockquote>\r\n<blockquote>This was one of the most beautiful places I have ever stayed.Â  Everything was perfect down to the last detail â€“ colouring books, piano, Netflix, beautiful patio, magazines, etc.Â  Breakfast was delicious and coffee was amazing!Â  Sue and Richard were so friendly and definitely made us feel at home â€“ we area already looking for another date where we can go back â˜º! C.</blockquote>\r\n<blockquote>If I could give you 25 stars on a 10-star = EXCELLENT scale, I would do so in a flash!! M. from Los Angeles</blockquote>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Testimonials','','inherit','closed','closed','','537-revision-v1','','','2018-02-22 17:07:03','2018-02-22 22:07:03','',537,'https://www.watchhill.ca/2018/02/537-revision-v1/',0,'revision','',0),(560,6,'2018-02-22 17:08:02','2018-02-22 22:08:02','<h2 style=\"text-align: center;\">Thank you to all our delightful guests\r\nwho have given us 100% 5-Star evaluations.</h2>\r\n<h3>Here is what some of them had to sayâ€¦</h3>\r\n&nbsp;\r\n<h4>January 2018</h4>\r\n<blockquote>This place was truly heaven â€“ somewhere we could step back and take a few breaths as we work thru all the details of our house fire.Â  Thanks for making us feel so welcome and cared for.Â  Your place is so very comfortable and beautifully appointed.Â  It felt like â€œhomeâ€ for a little while.Â  Great meeting you both â€“ and Dooley too of course.\r\nK. &amp; S.</blockquote>\r\n<h4>August 2017</h4>\r\n<blockquote>You have created a perfect environment!Â  From the dÃ©cor, design, gardens, warmth of you and staff, colours, bathrooms, it is truly a perfect experience.Â  We will be back ASAP.Â  All the best,Â L. &amp; J.</blockquote>\r\n<blockquote>Sadly we must leave this beautiful oasis you have created here at Watch Hill.Â  However, we have already talked about when we will return.Â  Thank you Richard, Sue, Sarah and Dooley for your hospitality.Â  Truly an amazing experience.Â  With Thanks,<span style=\"text-align: center;\">M. &amp; S.</span></blockquote>\r\n<blockquote>Thank you Sue, Richard and Sarah.Â  We had an absolutely glorious stay to celebrate our 10<sup>th</sup> Anniversary and are looking forward to staying again in the future. S. &amp; M.</blockquote>\r\n<blockquote>Thank you for the wonderful hospitality, meals and ambience.Â  Your home is far beyond our expectations!Â  We had an extremely enjoyable, relaxing stay and look forward to a return visit. G. &amp; E.</blockquote>\r\n<blockquote>We enjoyed our stay immensely.Â  Our room was lovely and well equipped.Â  Loved the views over the water!Â  Good breakfast and great hospitality.Â  Will plan to return.Â  Thanks for being super hosts. M. &amp; J.</blockquote>\r\n<blockquote>We received a full-page note from a family from Germany who took all 3 rooms for 7 nights.Â  It was filled with wonderful remarks and a promise to return in 2 years.Â  Two weeks later another German speaking couple translated this page for us and wrote their own comments in their native language.Â  We love our guests from across the ocean and have learned lots of ways to communicate without English words! S. &amp; R.</blockquote>\r\n<h4>July 2017</h4>\r\n<blockquote>Fantastic, fun, fabulous!Â  Great time. J.&amp;R.</blockquote>\r\n<blockquote>What a great experience this was!Â  Everything from top to bottom.Â  Thank you for having us and hope all goes well. J.</blockquote>\r\n<blockquote>So glad we stayed here and got to meet amazing people like Sue, Richard and Sarah (and Dooley).Â  Honestly better than most hotels, 5 Stars!Â  Thanks so much for having us and hope to come back! B.</blockquote>\r\n&nbsp;\r\n<blockquote>Sue, Richard, Sarah &amp; Dooley!Â  A huge THANK YOU for sharing your beautiful home/B&amp;B!Â  Your outstanding hospitality, friendliness and humour has been so appreciated!Â  Your attention to detail, seeing to our every want and need, the fabulous food, comfort and the sweetest doggy ever has us convinced we will be back next year!Â  Our BEST ANNIVERSARY EVER!Â  #13! W. &amp; A.</blockquote>\r\n<blockquote>If I could give higher than a #5 rating I would!Â  It is absolutely gorgeous!Â  Hosts are spectacular and food was amazing!Â  Quiet, elegant and beautifully located!Â  We will definitely be going back soon! C.</blockquote>\r\n<blockquote>This has to be one of the best B&amp;Bâ€™s we have stayed in (and we have stayed in many). Â  Next time I will bring my flute and piano music.Â  XO for Dooley. L. &amp; R.</blockquote>\r\n<blockquote>WOW, for my first experience at a B&amp;B it couldnâ€™t have been better.Â  You have the most amazing home here and that youâ€™ve opened it up for others to enjoy is a wonderful thing.Â  Weâ€™ll be back again and again.Â  Thank you!Â P.S.Â  The food was AMAZING. S. &amp; M.</blockquote>\r\n<blockquote>Your home is amazing!Â  We loved everything and felt right at home.Â  Thank you for your warm hospitality and yummy breakfasts.Â  This has been our best B&amp;B experience ever. J. &amp; L.</blockquote>\r\n<blockquote>An absolute gem!Â  We had a fantastic stay and your hospitality was impeccable.Â  We shall return!Â  All the best to you both. L. &amp; D.</blockquote>\r\n<h4>June 2017</h4>\r\n<blockquote>Our stay at Watch Hill was wonderful from beginning to end.Â  Sue &amp; Rich were very warm and welcoming, as was the B&amp;B itself.Â  The house was immaculate, open and full of natural light.Â  The view from the Chantry Suite of the Saugeen River and Lake Huron, along with Chantry Island was beautiful.Â  There were several noteworthy amenities including multiple lounge areas both inside and out, both indoor and outdoor fireplaces, a 24-hr snack/espresso bar, and various musical instruments ready to be played in the living room.Â  Also, the breakfast was delicious and served very timely when we arrived in the dining room the following morning.Â  Overall, Watch Hill is the luxurious, bright and beautiful B&amp;B Southampton has been missing until now and we will definitely be returning in the near future!Â  Thanks again for everything Sue &amp; Rich! B.</blockquote>\r\n<blockquote>This was one of the most beautiful places I have ever stayed.Â  Everything was perfect down to the last detail â€“ colouring books, piano, Netflix, beautiful patio, magazines, etc.Â  Breakfast was delicious and coffee was amazing!Â  Sue and Richard were so friendly and definitely made us feel at home â€“ we area already looking for another date where we can go back â˜º! C.</blockquote>\r\n<blockquote>If I could give you 25 stars on a 10-star = EXCELLENT scale, I would do so in a flash!! M. from Los Angeles</blockquote>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Testimonials','','inherit','closed','closed','','537-revision-v1','','','2018-02-22 17:08:02','2018-02-22 22:08:02','',537,'https://www.watchhill.ca/2018/02/537-revision-v1/',0,'revision','',0),(580,6,'2018-02-22 19:00:11','2018-02-23 00:00:11','','CP 3033','','inherit','closed','closed','','cp-3033','','','2018-02-22 19:00:11','2018-02-23 00:00:11','',574,'https://www.watchhill.ca/wp-content/uploads/2018/02/CP-3033.jpg',0,'attachment','image/jpeg',0),(561,6,'2018-02-22 17:08:59','2018-02-22 22:08:59','<p><h2 style=\"text-align: center;\">Thank you to all our delightful guests\r\nwho have given us 100% 5-Star evaluations.</h2></p>\r\n<p><h3>Here is what some of them had to sayâ€¦</h3></p>\r\n<h4>January 2018</h4>\r\n<blockquote>This place was truly heaven â€“ somewhere we could step back and take a few breaths as we work thru all the details of our house fire.Â  Thanks for making us feel so welcome and cared for.Â  Your place is so very comfortable and beautifully appointed.Â  It felt like â€œhomeâ€ for a little while.Â  Great meeting you both â€“ and Dooley too of course.\r\nK. &amp; S.</blockquote>\r\n<h4>August 2017</h4>\r\n<blockquote>You have created a perfect environment!Â  From the dÃ©cor, design, gardens, warmth of you and staff, colours, bathrooms, it is truly a perfect experience.Â  We will be back ASAP.Â  All the best,Â L. &amp; J.</blockquote>\r\n<blockquote>Sadly we must leave this beautiful oasis you have created here at Watch Hill.Â  However, we have already talked about when we will return.Â  Thank you Richard, Sue, Sarah and Dooley for your hospitality.Â  Truly an amazing experience.Â  With Thanks,<span style=\"text-align: center;\">M. &amp; S.</span></blockquote>\r\n<blockquote>Thank you Sue, Richard and Sarah.Â  We had an absolutely glorious stay to celebrate our 10<sup>th</sup> Anniversary and are looking forward to staying again in the future. S. &amp; M.</blockquote>\r\n<blockquote>Thank you for the wonderful hospitality, meals and ambience.Â  Your home is far beyond our expectations!Â  We had an extremely enjoyable, relaxing stay and look forward to a return visit. G. &amp; E.</blockquote>\r\n<blockquote>We enjoyed our stay immensely.Â  Our room was lovely and well equipped.Â  Loved the views over the water!Â  Good breakfast and great hospitality.Â  Will plan to return.Â  Thanks for being super hosts. M. &amp; J.</blockquote>\r\n<blockquote>We received a full-page note from a family from Germany who took all 3 rooms for 7 nights.Â  It was filled with wonderful remarks and a promise to return in 2 years.Â  Two weeks later another German speaking couple translated this page for us and wrote their own comments in their native language.Â  We love our guests from across the ocean and have learned lots of ways to communicate without English words! S. &amp; R.</blockquote>\r\n<h4>July 2017</h4>\r\n<blockquote>Fantastic, fun, fabulous!Â  Great time. J.&amp;R.</blockquote>\r\n<blockquote>What a great experience this was!Â  Everything from top to bottom.Â  Thank you for having us and hope all goes well. J.</blockquote>\r\n<blockquote>So glad we stayed here and got to meet amazing people like Sue, Richard and Sarah (and Dooley).Â  Honestly better than most hotels, 5 Stars!Â  Thanks so much for having us and hope to come back! B.</blockquote>\r\n&nbsp;\r\n<blockquote>Sue, Richard, Sarah &amp; Dooley!Â  A huge THANK YOU for sharing your beautiful home/B&amp;B!Â  Your outstanding hospitality, friendliness and humour has been so appreciated!Â  Your attention to detail, seeing to our every want and need, the fabulous food, comfort and the sweetest doggy ever has us convinced we will be back next year!Â  Our BEST ANNIVERSARY EVER!Â  #13! W. &amp; A.</blockquote>\r\n<blockquote>If I could give higher than a #5 rating I would!Â  It is absolutely gorgeous!Â  Hosts are spectacular and food was amazing!Â  Quiet, elegant and beautifully located!Â  We will definitely be going back soon! C.</blockquote>\r\n<blockquote>This has to be one of the best B&amp;Bâ€™s we have stayed in (and we have stayed in many). Â  Next time I will bring my flute and piano music.Â  XO for Dooley. L. &amp; R.</blockquote>\r\n<blockquote>WOW, for my first experience at a B&amp;B it couldnâ€™t have been better.Â  You have the most amazing home here and that youâ€™ve opened it up for others to enjoy is a wonderful thing.Â  Weâ€™ll be back again and again.Â  Thank you!Â P.S.Â  The food was AMAZING. S. &amp; M.</blockquote>\r\n<blockquote>Your home is amazing!Â  We loved everything and felt right at home.Â  Thank you for your warm hospitality and yummy breakfasts.Â  This has been our best B&amp;B experience ever. J. &amp; L.</blockquote>\r\n<blockquote>An absolute gem!Â  We had a fantastic stay and your hospitality was impeccable.Â  We shall return!Â  All the best to you both. L. &amp; D.</blockquote>\r\n<h4>June 2017</h4>\r\n<blockquote>Our stay at Watch Hill was wonderful from beginning to end.Â  Sue &amp; Rich were very warm and welcoming, as was the B&amp;B itself.Â  The house was immaculate, open and full of natural light.Â  The view from the Chantry Suite of the Saugeen River and Lake Huron, along with Chantry Island was beautiful.Â  There were several noteworthy amenities including multiple lounge areas both inside and out, both indoor and outdoor fireplaces, a 24-hr snack/espresso bar, and various musical instruments ready to be played in the living room.Â  Also, the breakfast was delicious and served very timely when we arrived in the dining room the following morning.Â  Overall, Watch Hill is the luxurious, bright and beautiful B&amp;B Southampton has been missing until now and we will definitely be returning in the near future!Â  Thanks again for everything Sue &amp; Rich! B.</blockquote>\r\n<blockquote>This was one of the most beautiful places I have ever stayed.Â  Everything was perfect down to the last detail â€“ colouring books, piano, Netflix, beautiful patio, magazines, etc.Â  Breakfast was delicious and coffee was amazing!Â  Sue and Richard were so friendly and definitely made us feel at home â€“ we area already looking for another date where we can go back â˜º! C.</blockquote>\r\n<blockquote>If I could give you 25 stars on a 10-star = EXCELLENT scale, I would do so in a flash!! M. from Los Angeles</blockquote>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Testimonials','','inherit','closed','closed','','537-revision-v1','','','2018-02-22 17:08:59','2018-02-22 22:08:59','',537,'https://www.watchhill.ca/2018/02/537-revision-v1/',0,'revision','',0),(562,6,'2018-02-22 17:10:09','2018-02-22 22:10:09','<h2 style=\"text-align: center;\">Thank you to all our delightful guests\r\nwho have given us 100% 5-Star evaluations.</h2>\r\n<h3>Here is what some of them had to sayâ€¦</h3>\r\n<h4>January 2018</h4>\r\n<blockquote>This place was truly heaven â€“ somewhere we could step back and take a few breaths as we work thru all the details of our house fire.Â  Thanks for making us feel so welcome and cared for.Â  Your place is so very comfortable and beautifully appointed.Â  It felt like â€œhomeâ€ for a little while.Â  Great meeting you both â€“ and Dooley too of course.\r\nK. &amp; S.</blockquote>\r\n<h4>August 2017</h4>\r\n<blockquote>You have created a perfect environment!Â  From the dÃ©cor, design, gardens, warmth of you and staff, colours, bathrooms, it is truly a perfect experience.Â  We will be back ASAP.Â  All the best,\r\nL. &amp; J.</blockquote>\r\n<blockquote>Sadly we must leave this beautiful oasis you have created here at Watch Hill.Â  However, we have already talked about when we will return.Â  Thank you Richard, Sue, Sarah and Dooley for your hospitality.Â  Truly an amazing experience.Â  With Thanks,\r\n<span style=\"text-align: center;\">M. &amp; S.</span></blockquote>\r\n<blockquote>Thank you Sue, Richard and Sarah.Â  We had an absolutely glorious stay to celebrate our 10<sup>th</sup> Anniversary and are looking forward to staying again in the future.\r\nS. &amp; M.</blockquote>\r\n<blockquote>Thank you for the wonderful hospitality, meals and ambience.Â  Your home is far beyond our expectations!Â  We had an extremely enjoyable, relaxing stay and look forward to a return visit.\r\nG. &amp; E.</blockquote>\r\n<blockquote>We enjoyed our stay immensely.Â  Our room was lovely and well equipped.Â  Loved the views over the water!Â  Good breakfast and great hospitality.Â  Will plan to return.Â  Thanks for being super hosts.\r\nM. &amp; J.</blockquote>\r\n<blockquote>We received a full-page note from a family from Germany who took all 3 rooms for 7 nights.Â  It was filled with wonderful remarks and a promise to return in 2 years.Â  Two weeks later another German speaking couple translated this page for us and wrote their own comments in their native language.Â  We love our guests from across the ocean and have learned lots of ways to communicate without English words!\r\nS. &amp; R.</blockquote>\r\n<h4>July 2017</h4>\r\n<blockquote>Fantastic, fun, fabulous!Â  Great time.\r\nJ.&amp;R.</blockquote>\r\n<blockquote>What a great experience this was!Â  Everything from top to bottom.Â  Thank you for having us and hope all goes well.\r\nJ.</blockquote>\r\n<blockquote>So glad we stayed here and got to meet amazing people like Sue, Richard and Sarah (and Dooley).Â  Honestly better than most hotels, 5 Stars!Â  Thanks so much for having us and hope to come back!\r\nB.</blockquote>\r\n<blockquote>Sue, Richard, Sarah &amp; Dooley!Â  A huge THANK YOU for sharing your beautiful home/B&amp;B!Â  Your outstanding hospitality, friendliness and humour has been so appreciated!Â  Your attention to detail, seeing to our every want and need, the fabulous food, comfort and the sweetest doggy ever has us convinced we will be back next year!Â  Our BEST ANNIVERSARY EVER!Â  #13!\r\nW. &amp; A.</blockquote>\r\n<blockquote>If I could give higher than a #5 rating I would!Â  It is absolutely gorgeous!Â  Hosts are spectacular and food was amazing!Â  Quiet, elegant and beautifully located!Â  We will definitely be going back soon!\r\nC.</blockquote>\r\n<blockquote>This has to be one of the best B&amp;Bâ€™s we have stayed in (and we have stayed in many). Â  Next time I will bring my flute and piano music.Â  XO for Dooley.\r\nL. &amp; R.</blockquote>\r\n<blockquote>WOW, for my first experience at a B&amp;B it couldnâ€™t have been better.Â  You have the most amazing home here and that youâ€™ve opened it up for others to enjoy is a wonderful thing.Â  Weâ€™ll be back again and again.Â  Thank you!Â P.S.Â  The food was AMAZING.\r\nS. &amp; M.</blockquote>\r\n<blockquote>Your home is amazing!Â  We loved everything and felt right at home.Â  Thank you for your warm hospitality and yummy breakfasts.Â  This has been our best B&amp;B experience ever.\r\nJ. &amp; L.</blockquote>\r\n<blockquote>An absolute gem!Â  We had a fantastic stay and your hospitality was impeccable.Â  We shall return!Â  All the best to you both.\r\nL. &amp; D.</blockquote>\r\n<h4>June 2017</h4>\r\n<blockquote>Our stay at Watch Hill was wonderful from beginning to end.Â  Sue &amp; Rich were very warm and welcoming, as was the B&amp;B itself.Â  The house was immaculate, open and full of natural light.Â  The view from the Chantry Suite of the Saugeen River and Lake Huron, along with Chantry Island was beautiful.Â  There were several noteworthy amenities including multiple lounge areas both inside and out, both indoor and outdoor fireplaces, a 24-hr snack/espresso bar, and various musical instruments ready to be played in the living room.Â  Also, the breakfast was delicious and served very timely when we arrived in the dining room the following morning.Â  Overall, Watch Hill is the luxurious, bright and beautiful B&amp;B Southampton has been missing until now and we will definitely be returning in the near future!Â  Thanks again for everything Sue &amp; Rich!\r\nB.</blockquote>\r\n<blockquote>This was one of the most beautiful places I have ever stayed.Â  Everything was perfect down to the last detail â€“ colouring books, piano, Netflix, beautiful patio, magazines, etc.Â  Breakfast was delicious and coffee was amazing!Â  Sue and Richard were so friendly and definitely made us feel at home â€“ we area already looking for another date where we can go back â˜º!\r\nC.</blockquote>\r\n<blockquote>If I could give you 25 stars on a 10-star = EXCELLENT scale, I would do so in a flash!!\r\nM. from Los Angeles</blockquote>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Testimonials','','inherit','closed','closed','','537-revision-v1','','','2018-02-22 17:10:09','2018-02-22 22:10:09','',537,'https://www.watchhill.ca/2018/02/537-revision-v1/',0,'revision','',0),(563,6,'2018-02-22 17:11:34','2018-02-22 22:11:34','<h2 style=\"text-align: center;\">Thank you to all our delightful guests\r\nwho have given us 100% 5-Star evaluations.</h2><!--more-->\r\n\r\n\r\n<h3>Here is what some of them had to sayâ€¦</h3>\r\n<h4>January 2018</h4>\r\n<blockquote>This place was truly heaven â€“ somewhere we could step back and take a few breaths as we work thru all the details of our house fire.Â  Thanks for making us feel so welcome and cared for.Â  Your place is so very comfortable and beautifully appointed.Â  It felt like â€œhomeâ€ for a little while.Â  Great meeting you both â€“ and Dooley too of course.\r\nK. &amp; S.</blockquote>\r\n<h4>August 2017</h4>\r\n<blockquote>You have created a perfect environment!Â  From the dÃ©cor, design, gardens, warmth of you and staff, colours, bathrooms, it is truly a perfect experience.Â  We will be back ASAP.Â  All the best,\r\nL. &amp; J.</blockquote>\r\n<blockquote>Sadly we must leave this beautiful oasis you have created here at Watch Hill.Â  However, we have already talked about when we will return.Â  Thank you Richard, Sue, Sarah and Dooley for your hospitality.Â  Truly an amazing experience.Â  With Thanks,\r\n<span style=\"text-align: center;\">M. &amp; S.</span></blockquote>\r\n<blockquote>Thank you Sue, Richard and Sarah.Â  We had an absolutely glorious stay to celebrate our 10<sup>th</sup> Anniversary and are looking forward to staying again in the future.\r\nS. &amp; M.</blockquote>\r\n<blockquote>Thank you for the wonderful hospitality, meals and ambience.Â  Your home is far beyond our expectations!Â  We had an extremely enjoyable, relaxing stay and look forward to a return visit.\r\nG. &amp; E.</blockquote>\r\n<blockquote>We enjoyed our stay immensely.Â  Our room was lovely and well equipped.Â  Loved the views over the water!Â  Good breakfast and great hospitality.Â  Will plan to return.Â  Thanks for being super hosts.\r\nM. &amp; J.</blockquote>\r\n<blockquote>We received a full-page note from a family from Germany who took all 3 rooms for 7 nights.Â  It was filled with wonderful remarks and a promise to return in 2 years.Â  Two weeks later another German speaking couple translated this page for us and wrote their own comments in their native language.Â  We love our guests from across the ocean and have learned lots of ways to communicate without English words!\r\nS. &amp; R.</blockquote>\r\n<h4>July 2017</h4>\r\n<blockquote>Fantastic, fun, fabulous!Â  Great time.\r\nJ.&amp;R.</blockquote>\r\n<blockquote>What a great experience this was!Â  Everything from top to bottom.Â  Thank you for having us and hope all goes well.\r\nJ.</blockquote>\r\n<blockquote>So glad we stayed here and got to meet amazing people like Sue, Richard and Sarah (and Dooley).Â  Honestly better than most hotels, 5 Stars!Â  Thanks so much for having us and hope to come back!\r\nB.</blockquote>\r\n<blockquote>Sue, Richard, Sarah &amp; Dooley!Â  A huge THANK YOU for sharing your beautiful home/B&amp;B!Â  Your outstanding hospitality, friendliness and humour has been so appreciated!Â  Your attention to detail, seeing to our every want and need, the fabulous food, comfort and the sweetest doggy ever has us convinced we will be back next year!Â  Our BEST ANNIVERSARY EVER!Â  #13!\r\nW. &amp; A.</blockquote>\r\n<blockquote>If I could give higher than a #5 rating I would!Â  It is absolutely gorgeous!Â  Hosts are spectacular and food was amazing!Â  Quiet, elegant and beautifully located!Â  We will definitely be going back soon!\r\nC.</blockquote>\r\n<blockquote>This has to be one of the best B&amp;Bâ€™s we have stayed in (and we have stayed in many). Â  Next time I will bring my flute and piano music.Â  XO for Dooley.\r\nL. &amp; R.</blockquote>\r\n<blockquote>WOW, for my first experience at a B&amp;B it couldnâ€™t have been better.Â  You have the most amazing home here and that youâ€™ve opened it up for others to enjoy is a wonderful thing.Â  Weâ€™ll be back again and again.Â  Thank you!Â P.S.Â  The food was AMAZING.\r\nS. &amp; M.</blockquote>\r\n<blockquote>Your home is amazing!Â  We loved everything and felt right at home.Â  Thank you for your warm hospitality and yummy breakfasts.Â  This has been our best B&amp;B experience ever.\r\nJ. &amp; L.</blockquote>\r\n<blockquote>An absolute gem!Â  We had a fantastic stay and your hospitality was impeccable.Â  We shall return!Â  All the best to you both.\r\nL. &amp; D.</blockquote>\r\n<h4>June 2017</h4>\r\n<blockquote>Our stay at Watch Hill was wonderful from beginning to end.Â  Sue &amp; Rich were very warm and welcoming, as was the B&amp;B itself.Â  The house was immaculate, open and full of natural light.Â  The view from the Chantry Suite of the Saugeen River and Lake Huron, along with Chantry Island was beautiful.Â  There were several noteworthy amenities including multiple lounge areas both inside and out, both indoor and outdoor fireplaces, a 24-hr snack/espresso bar, and various musical instruments ready to be played in the living room.Â  Also, the breakfast was delicious and served very timely when we arrived in the dining room the following morning.Â  Overall, Watch Hill is the luxurious, bright and beautiful B&amp;B Southampton has been missing until now and we will definitely be returning in the near future!Â  Thanks again for everything Sue &amp; Rich!\r\nB.</blockquote>\r\n<blockquote>This was one of the most beautiful places I have ever stayed.Â  Everything was perfect down to the last detail â€“ colouring books, piano, Netflix, beautiful patio, magazines, etc.Â  Breakfast was delicious and coffee was amazing!Â  Sue and Richard were so friendly and definitely made us feel at home â€“ we area already looking for another date where we can go back â˜º!\r\nC.</blockquote>\r\n<blockquote>If I could give you 25 stars on a 10-star = EXCELLENT scale, I would do so in a flash!!\r\nM. from Los Angeles</blockquote>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Testimonials','','inherit','closed','closed','','537-revision-v1','','','2018-02-22 17:11:34','2018-02-22 22:11:34','',537,'https://www.watchhill.ca/2018/02/537-revision-v1/',0,'revision','',0),(579,6,'2018-02-22 19:00:09','2018-02-23 00:00:09','','CP 3026','','inherit','closed','closed','','cp-3026','','','2018-02-22 19:00:09','2018-02-23 00:00:09','',574,'https://www.watchhill.ca/wp-content/uploads/2018/02/CP-3026.jpg',0,'attachment','image/jpeg',0),(564,6,'2018-02-22 17:11:59','2018-02-22 22:11:59','<h2 style=\"text-align: center;\">Thank you to all our delightful guests\r\nwho have given us 100% 5-Star evaluations.</h2><!--more-->\r\n\r\n\r\n<h3>Here is what some of them had to sayâ€¦</h3><!--more-->\r\n\r\n\r\n<h4>January 2018</h4>\r\n<blockquote>This place was truly heaven â€“ somewhere we could step back and take a few breaths as we work thru all the details of our house fire.Â  Thanks for making us feel so welcome and cared for.Â  Your place is so very comfortable and beautifully appointed.Â  It felt like â€œhomeâ€ for a little while.Â  Great meeting you both â€“ and Dooley too of course.\r\nK. &amp; S.</blockquote>\r\n<h4>August 2017</h4>\r\n<blockquote>You have created a perfect environment!Â  From the dÃ©cor, design, gardens, warmth of you and staff, colours, bathrooms, it is truly a perfect experience.Â  We will be back ASAP.Â  All the best,\r\nL. &amp; J.</blockquote>\r\n<blockquote>Sadly we must leave this beautiful oasis you have created here at Watch Hill.Â  However, we have already talked about when we will return.Â  Thank you Richard, Sue, Sarah and Dooley for your hospitality.Â  Truly an amazing experience.Â  With Thanks,\r\n<span style=\"text-align: center;\">M. &amp; S.</span></blockquote>\r\n<blockquote>Thank you Sue, Richard and Sarah.Â  We had an absolutely glorious stay to celebrate our 10<sup>th</sup> Anniversary and are looking forward to staying again in the future.\r\nS. &amp; M.</blockquote>\r\n<blockquote>Thank you for the wonderful hospitality, meals and ambience.Â  Your home is far beyond our expectations!Â  We had an extremely enjoyable, relaxing stay and look forward to a return visit.\r\nG. &amp; E.</blockquote>\r\n<blockquote>We enjoyed our stay immensely.Â  Our room was lovely and well equipped.Â  Loved the views over the water!Â  Good breakfast and great hospitality.Â  Will plan to return.Â  Thanks for being super hosts.\r\nM. &amp; J.</blockquote>\r\n<blockquote>We received a full-page note from a family from Germany who took all 3 rooms for 7 nights.Â  It was filled with wonderful remarks and a promise to return in 2 years.Â  Two weeks later another German speaking couple translated this page for us and wrote their own comments in their native language.Â  We love our guests from across the ocean and have learned lots of ways to communicate without English words!\r\nS. &amp; R.</blockquote>\r\n<h4>July 2017</h4>\r\n<blockquote>Fantastic, fun, fabulous!Â  Great time.\r\nJ.&amp;R.</blockquote>\r\n<blockquote>What a great experience this was!Â  Everything from top to bottom.Â  Thank you for having us and hope all goes well.\r\nJ.</blockquote>\r\n<blockquote>So glad we stayed here and got to meet amazing people like Sue, Richard and Sarah (and Dooley).Â  Honestly better than most hotels, 5 Stars!Â  Thanks so much for having us and hope to come back!\r\nB.</blockquote>\r\n<blockquote>Sue, Richard, Sarah &amp; Dooley!Â  A huge THANK YOU for sharing your beautiful home/B&amp;B!Â  Your outstanding hospitality, friendliness and humour has been so appreciated!Â  Your attention to detail, seeing to our every want and need, the fabulous food, comfort and the sweetest doggy ever has us convinced we will be back next year!Â  Our BEST ANNIVERSARY EVER!Â  #13!\r\nW. &amp; A.</blockquote>\r\n<blockquote>If I could give higher than a #5 rating I would!Â  It is absolutely gorgeous!Â  Hosts are spectacular and food was amazing!Â  Quiet, elegant and beautifully located!Â  We will definitely be going back soon!\r\nC.</blockquote>\r\n<blockquote>This has to be one of the best B&amp;Bâ€™s we have stayed in (and we have stayed in many). Â  Next time I will bring my flute and piano music.Â  XO for Dooley.\r\nL. &amp; R.</blockquote>\r\n<blockquote>WOW, for my first experience at a B&amp;B it couldnâ€™t have been better.Â  You have the most amazing home here and that youâ€™ve opened it up for others to enjoy is a wonderful thing.Â  Weâ€™ll be back again and again.Â  Thank you!Â P.S.Â  The food was AMAZING.\r\nS. &amp; M.</blockquote>\r\n<blockquote>Your home is amazing!Â  We loved everything and felt right at home.Â  Thank you for your warm hospitality and yummy breakfasts.Â  This has been our best B&amp;B experience ever.\r\nJ. &amp; L.</blockquote>\r\n<blockquote>An absolute gem!Â  We had a fantastic stay and your hospitality was impeccable.Â  We shall return!Â  All the best to you both.\r\nL. &amp; D.</blockquote>\r\n<h4>June 2017</h4>\r\n<blockquote>Our stay at Watch Hill was wonderful from beginning to end.Â  Sue &amp; Rich were very warm and welcoming, as was the B&amp;B itself.Â  The house was immaculate, open and full of natural light.Â  The view from the Chantry Suite of the Saugeen River and Lake Huron, along with Chantry Island was beautiful.Â  There were several noteworthy amenities including multiple lounge areas both inside and out, both indoor and outdoor fireplaces, a 24-hr snack/espresso bar, and various musical instruments ready to be played in the living room.Â  Also, the breakfast was delicious and served very timely when we arrived in the dining room the following morning.Â  Overall, Watch Hill is the luxurious, bright and beautiful B&amp;B Southampton has been missing until now and we will definitely be returning in the near future!Â  Thanks again for everything Sue &amp; Rich!\r\nB.</blockquote>\r\n<blockquote>This was one of the most beautiful places I have ever stayed.Â  Everything was perfect down to the last detail â€“ colouring books, piano, Netflix, beautiful patio, magazines, etc.Â  Breakfast was delicious and coffee was amazing!Â  Sue and Richard were so friendly and definitely made us feel at home â€“ we area already looking for another date where we can go back â˜º!\r\nC.</blockquote>\r\n<blockquote>If I could give you 25 stars on a 10-star = EXCELLENT scale, I would do so in a flash!!\r\nM. from Los Angeles</blockquote>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Testimonials','','inherit','closed','closed','','537-revision-v1','','','2018-02-22 17:11:59','2018-02-22 22:11:59','',537,'https://www.watchhill.ca/2018/02/537-revision-v1/',0,'revision','',0),(565,6,'2018-02-22 17:12:15','2018-02-22 22:12:15','<!--more-->\r\n\r\n<h2 style=\"text-align: center;\">Thank you to all our delightful guests\r\nwho have given us 100% 5-Star evaluations.</h2><!--more-->\r\n\r\n\r\n<h3>Here is what some of them had to sayâ€¦</h3><!--more-->\r\n\r\n\r\n<h4>January 2018</h4>\r\n<blockquote>This place was truly heaven â€“ somewhere we could step back and take a few breaths as we work thru all the details of our house fire.Â  Thanks for making us feel so welcome and cared for.Â  Your place is so very comfortable and beautifully appointed.Â  It felt like â€œhomeâ€ for a little while.Â  Great meeting you both â€“ and Dooley too of course.\r\nK. &amp; S.</blockquote>\r\n<h4>August 2017</h4>\r\n<blockquote>You have created a perfect environment!Â  From the dÃ©cor, design, gardens, warmth of you and staff, colours, bathrooms, it is truly a perfect experience.Â  We will be back ASAP.Â  All the best,\r\nL. &amp; J.</blockquote>\r\n<blockquote>Sadly we must leave this beautiful oasis you have created here at Watch Hill.Â  However, we have already talked about when we will return.Â  Thank you Richard, Sue, Sarah and Dooley for your hospitality.Â  Truly an amazing experience.Â  With Thanks,\r\n<span style=\"text-align: center;\">M. &amp; S.</span></blockquote>\r\n<blockquote>Thank you Sue, Richard and Sarah.Â  We had an absolutely glorious stay to celebrate our 10<sup>th</sup> Anniversary and are looking forward to staying again in the future.\r\nS. &amp; M.</blockquote>\r\n<blockquote>Thank you for the wonderful hospitality, meals and ambience.Â  Your home is far beyond our expectations!Â  We had an extremely enjoyable, relaxing stay and look forward to a return visit.\r\nG. &amp; E.</blockquote>\r\n<blockquote>We enjoyed our stay immensely.Â  Our room was lovely and well equipped.Â  Loved the views over the water!Â  Good breakfast and great hospitality.Â  Will plan to return.Â  Thanks for being super hosts.\r\nM. &amp; J.</blockquote>\r\n<blockquote>We received a full-page note from a family from Germany who took all 3 rooms for 7 nights.Â  It was filled with wonderful remarks and a promise to return in 2 years.Â  Two weeks later another German speaking couple translated this page for us and wrote their own comments in their native language.Â  We love our guests from across the ocean and have learned lots of ways to communicate without English words!\r\nS. &amp; R.</blockquote>\r\n<h4>July 2017</h4>\r\n<blockquote>Fantastic, fun, fabulous!Â  Great time.\r\nJ.&amp;R.</blockquote>\r\n<blockquote>What a great experience this was!Â  Everything from top to bottom.Â  Thank you for having us and hope all goes well.\r\nJ.</blockquote>\r\n<blockquote>So glad we stayed here and got to meet amazing people like Sue, Richard and Sarah (and Dooley).Â  Honestly better than most hotels, 5 Stars!Â  Thanks so much for having us and hope to come back!\r\nB.</blockquote>\r\n<blockquote>Sue, Richard, Sarah &amp; Dooley!Â  A huge THANK YOU for sharing your beautiful home/B&amp;B!Â  Your outstanding hospitality, friendliness and humour has been so appreciated!Â  Your attention to detail, seeing to our every want and need, the fabulous food, comfort and the sweetest doggy ever has us convinced we will be back next year!Â  Our BEST ANNIVERSARY EVER!Â  #13!\r\nW. &amp; A.</blockquote>\r\n<blockquote>If I could give higher than a #5 rating I would!Â  It is absolutely gorgeous!Â  Hosts are spectacular and food was amazing!Â  Quiet, elegant and beautifully located!Â  We will definitely be going back soon!\r\nC.</blockquote>\r\n<blockquote>This has to be one of the best B&amp;Bâ€™s we have stayed in (and we have stayed in many). Â  Next time I will bring my flute and piano music.Â  XO for Dooley.\r\nL. &amp; R.</blockquote>\r\n<blockquote>WOW, for my first experience at a B&amp;B it couldnâ€™t have been better.Â  You have the most amazing home here and that youâ€™ve opened it up for others to enjoy is a wonderful thing.Â  Weâ€™ll be back again and again.Â  Thank you!Â P.S.Â  The food was AMAZING.\r\nS. &amp; M.</blockquote>\r\n<blockquote>Your home is amazing!Â  We loved everything and felt right at home.Â  Thank you for your warm hospitality and yummy breakfasts.Â  This has been our best B&amp;B experience ever.\r\nJ. &amp; L.</blockquote>\r\n<blockquote>An absolute gem!Â  We had a fantastic stay and your hospitality was impeccable.Â  We shall return!Â  All the best to you both.\r\nL. &amp; D.</blockquote>\r\n<h4>June 2017</h4>\r\n<blockquote>Our stay at Watch Hill was wonderful from beginning to end.Â  Sue &amp; Rich were very warm and welcoming, as was the B&amp;B itself.Â  The house was immaculate, open and full of natural light.Â  The view from the Chantry Suite of the Saugeen River and Lake Huron, along with Chantry Island was beautiful.Â  There were several noteworthy amenities including multiple lounge areas both inside and out, both indoor and outdoor fireplaces, a 24-hr snack/espresso bar, and various musical instruments ready to be played in the living room.Â  Also, the breakfast was delicious and served very timely when we arrived in the dining room the following morning.Â  Overall, Watch Hill is the luxurious, bright and beautiful B&amp;B Southampton has been missing until now and we will definitely be returning in the near future!Â  Thanks again for everything Sue &amp; Rich!\r\nB.</blockquote>\r\n<blockquote>This was one of the most beautiful places I have ever stayed.Â  Everything was perfect down to the last detail â€“ colouring books, piano, Netflix, beautiful patio, magazines, etc.Â  Breakfast was delicious and coffee was amazing!Â  Sue and Richard were so friendly and definitely made us feel at home â€“ we area already looking for another date where we can go back â˜º!\r\nC.</blockquote>\r\n<blockquote>If I could give you 25 stars on a 10-star = EXCELLENT scale, I would do so in a flash!!\r\nM. from Los Angeles</blockquote>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Testimonials','','inherit','closed','closed','','537-revision-v1','','','2018-02-22 17:12:15','2018-02-22 22:12:15','',537,'https://www.watchhill.ca/2018/02/537-revision-v1/',0,'revision','',0),(567,6,'2018-02-22 17:14:07','2018-02-22 22:14:07','<!--more-->\r\n\r\n<h2 style=\"text-align: center;\">Thank you to all our delightful guests\r\nwho have given us 100% 5-Star evaluations.</h2><!--more-->\r\n\r\n<h3>Here is what some of them had to sayâ€¦</h3><!--more-->\r\n\r\n<h4>January 2018</h4>\r\n<blockquote>This place was truly heaven â€“ somewhere we could step back and take a few breaths as we work thru all the details of our house fire.Â  Thanks for making us feel so welcome and cared for.Â  Your place is so very comfortable and beautifully appointed.Â  It felt like â€œhomeâ€ for a little while.Â  Great meeting you both â€“ and Dooley too of course.\r\nK. &amp; S.</blockquote>\r\n<h4>August 2017</h4>\r\n<blockquote>You have created a perfect environment!Â  From the dÃ©cor, design, gardens, warmth of you and staff, colours, bathrooms, it is truly a perfect experience.Â  We will be back ASAP.Â  All the best,\r\nL. &amp; J.</blockquote>\r\n<blockquote>Sadly we must leave this beautiful oasis you have created here at Watch Hill.Â  However, we have already talked about when we will return.Â  Thank you Richard, Sue, Sarah and Dooley for your hospitality.Â  Truly an amazing experience.Â  With Thanks,\r\n<span style=\"text-align: center;\">M. &amp; S.</span></blockquote>\r\n<blockquote>Thank you Sue, Richard and Sarah.Â  We had an absolutely glorious stay to celebrate our 10<sup>th</sup> Anniversary and are looking forward to staying again in the future.\r\nS. &amp; M.</blockquote>\r\n<blockquote>Thank you for the wonderful hospitality, meals and ambience.Â  Your home is far beyond our expectations!Â  We had an extremely enjoyable, relaxing stay and look forward to a return visit.\r\nG. &amp; E.</blockquote>\r\n<blockquote>We enjoyed our stay immensely.Â  Our room was lovely and well equipped.Â  Loved the views over the water!Â  Good breakfast and great hospitality.Â  Will plan to return.Â  Thanks for being super hosts.\r\nM. &amp; J.</blockquote>\r\n<blockquote>We received a full-page note from a family from Germany who took all 3 rooms for 7 nights.Â  It was filled with wonderful remarks and a promise to return in 2 years.Â  Two weeks later another German speaking couple translated this page for us and wrote their own comments in their native language.Â  We love our guests from across the ocean and have learned lots of ways to communicate without English words!\r\nS. &amp; R.</blockquote>\r\n<h4>July 2017</h4>\r\n<blockquote>Fantastic, fun, fabulous!Â  Great time.\r\nJ.&amp;R.</blockquote>\r\n<blockquote>What a great experience this was!Â  Everything from top to bottom.Â  Thank you for having us and hope all goes well.\r\nJ.</blockquote>\r\n<blockquote>So glad we stayed here and got to meet amazing people like Sue, Richard and Sarah (and Dooley).Â  Honestly better than most hotels, 5 Stars!Â  Thanks so much for having us and hope to come back!\r\nB.</blockquote>\r\n<blockquote>Sue, Richard, Sarah &amp; Dooley!Â  A huge THANK YOU for sharing your beautiful home/B&amp;B!Â  Your outstanding hospitality, friendliness and humour has been so appreciated!Â  Your attention to detail, seeing to our every want and need, the fabulous food, comfort and the sweetest doggy ever has us convinced we will be back next year!Â  Our BEST ANNIVERSARY EVER!Â  #13!\r\nW. &amp; A.</blockquote>\r\n<blockquote>If I could give higher than a #5 rating I would!Â  It is absolutely gorgeous!Â  Hosts are spectacular and food was amazing!Â  Quiet, elegant and beautifully located!Â  We will definitely be going back soon!\r\nC.</blockquote>\r\n<blockquote>This has to be one of the best B&amp;Bâ€™s we have stayed in (and we have stayed in many). Â  Next time I will bring my flute and piano music.Â  XO for Dooley.\r\nL. &amp; R.</blockquote>\r\n<blockquote>WOW, for my first experience at a B&amp;B it couldnâ€™t have been better.Â  You have the most amazing home here and that youâ€™ve opened it up for others to enjoy is a wonderful thing.Â  Weâ€™ll be back again and again.Â  Thank you!Â P.S.Â  The food was AMAZING.\r\nS. &amp; M.</blockquote>\r\n<blockquote>Your home is amazing!Â  We loved everything and felt right at home.Â  Thank you for your warm hospitality and yummy breakfasts.Â  This has been our best B&amp;B experience ever.\r\nJ. &amp; L.</blockquote>\r\n<blockquote>An absolute gem!Â  We had a fantastic stay and your hospitality was impeccable.Â  We shall return!Â  All the best to you both.\r\nL. &amp; D.</blockquote>\r\n<h4>June 2017</h4>\r\n<blockquote>Our stay at Watch Hill was wonderful from beginning to end.Â  Sue &amp; Rich were very warm and welcoming, as was the B&amp;B itself.Â  The house was immaculate, open and full of natural light.Â  The view from the Chantry Suite of the Saugeen River and Lake Huron, along with Chantry Island was beautiful.Â  There were several noteworthy amenities including multiple lounge areas both inside and out, both indoor and outdoor fireplaces, a 24-hr snack/espresso bar, and various musical instruments ready to be played in the living room.Â  Also, the breakfast was delicious and served very timely when we arrived in the dining room the following morning.Â  Overall, Watch Hill is the luxurious, bright and beautiful B&amp;B Southampton has been missing until now and we will definitely be returning in the near future!Â  Thanks again for everything Sue &amp; Rich!\r\nB.</blockquote>\r\n<blockquote>This was one of the most beautiful places I have ever stayed.Â  Everything was perfect down to the last detail â€“ colouring books, piano, Netflix, beautiful patio, magazines, etc.Â  Breakfast was delicious and coffee was amazing!Â  Sue and Richard were so friendly and definitely made us feel at home â€“ we area already looking for another date where we can go back â˜º!\r\nC.</blockquote>\r\n<blockquote>If I could give you 25 stars on a 10-star = EXCELLENT scale, I would do so in a flash!!\r\nM. from Los Angeles</blockquote>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Testimonials','','inherit','closed','closed','','537-revision-v1','','','2018-02-22 17:14:07','2018-02-22 22:14:07','',537,'https://www.watchhill.ca/2018/02/537-revision-v1/',0,'revision','',0),(566,6,'2018-02-22 17:13:32','2018-02-22 22:13:32','<!--more-->\r\n\r\n<h2 style=\"text-align: center;\">Thank you to all our delightful guests\r\nwho have given us 100% 5-Star evaluations.</h2><!--more--><!--more-->\r\n\r\n\r\n\r\n\r\n<h3>Here is what some of them had to sayâ€¦</h3><!--more-->\r\n\r\n\r\n<h4>January 2018</h4>\r\n<blockquote>This place was truly heaven â€“ somewhere we could step back and take a few breaths as we work thru all the details of our house fire.Â  Thanks for making us feel so welcome and cared for.Â  Your place is so very comfortable and beautifully appointed.Â  It felt like â€œhomeâ€ for a little while.Â  Great meeting you both â€“ and Dooley too of course.\r\nK. &amp; S.</blockquote>\r\n<h4>August 2017</h4>\r\n<blockquote>You have created a perfect environment!Â  From the dÃ©cor, design, gardens, warmth of you and staff, colours, bathrooms, it is truly a perfect experience.Â  We will be back ASAP.Â  All the best,\r\nL. &amp; J.</blockquote>\r\n<blockquote>Sadly we must leave this beautiful oasis you have created here at Watch Hill.Â  However, we have already talked about when we will return.Â  Thank you Richard, Sue, Sarah and Dooley for your hospitality.Â  Truly an amazing experience.Â  With Thanks,\r\n<span style=\"text-align: center;\">M. &amp; S.</span></blockquote>\r\n<blockquote>Thank you Sue, Richard and Sarah.Â  We had an absolutely glorious stay to celebrate our 10<sup>th</sup> Anniversary and are looking forward to staying again in the future.\r\nS. &amp; M.</blockquote>\r\n<blockquote>Thank you for the wonderful hospitality, meals and ambience.Â  Your home is far beyond our expectations!Â  We had an extremely enjoyable, relaxing stay and look forward to a return visit.\r\nG. &amp; E.</blockquote>\r\n<blockquote>We enjoyed our stay immensely.Â  Our room was lovely and well equipped.Â  Loved the views over the water!Â  Good breakfast and great hospitality.Â  Will plan to return.Â  Thanks for being super hosts.\r\nM. &amp; J.</blockquote>\r\n<blockquote>We received a full-page note from a family from Germany who took all 3 rooms for 7 nights.Â  It was filled with wonderful remarks and a promise to return in 2 years.Â  Two weeks later another German speaking couple translated this page for us and wrote their own comments in their native language.Â  We love our guests from across the ocean and have learned lots of ways to communicate without English words!\r\nS. &amp; R.</blockquote>\r\n<h4>July 2017</h4>\r\n<blockquote>Fantastic, fun, fabulous!Â  Great time.\r\nJ.&amp;R.</blockquote>\r\n<blockquote>What a great experience this was!Â  Everything from top to bottom.Â  Thank you for having us and hope all goes well.\r\nJ.</blockquote>\r\n<blockquote>So glad we stayed here and got to meet amazing people like Sue, Richard and Sarah (and Dooley).Â  Honestly better than most hotels, 5 Stars!Â  Thanks so much for having us and hope to come back!\r\nB.</blockquote>\r\n<blockquote>Sue, Richard, Sarah &amp; Dooley!Â  A huge THANK YOU for sharing your beautiful home/B&amp;B!Â  Your outstanding hospitality, friendliness and humour has been so appreciated!Â  Your attention to detail, seeing to our every want and need, the fabulous food, comfort and the sweetest doggy ever has us convinced we will be back next year!Â  Our BEST ANNIVERSARY EVER!Â  #13!\r\nW. &amp; A.</blockquote>\r\n<blockquote>If I could give higher than a #5 rating I would!Â  It is absolutely gorgeous!Â  Hosts are spectacular and food was amazing!Â  Quiet, elegant and beautifully located!Â  We will definitely be going back soon!\r\nC.</blockquote>\r\n<blockquote>This has to be one of the best B&amp;Bâ€™s we have stayed in (and we have stayed in many). Â  Next time I will bring my flute and piano music.Â  XO for Dooley.\r\nL. &amp; R.</blockquote>\r\n<blockquote>WOW, for my first experience at a B&amp;B it couldnâ€™t have been better.Â  You have the most amazing home here and that youâ€™ve opened it up for others to enjoy is a wonderful thing.Â  Weâ€™ll be back again and again.Â  Thank you!Â P.S.Â  The food was AMAZING.\r\nS. &amp; M.</blockquote>\r\n<blockquote>Your home is amazing!Â  We loved everything and felt right at home.Â  Thank you for your warm hospitality and yummy breakfasts.Â  This has been our best B&amp;B experience ever.\r\nJ. &amp; L.</blockquote>\r\n<blockquote>An absolute gem!Â  We had a fantastic stay and your hospitality was impeccable.Â  We shall return!Â  All the best to you both.\r\nL. &amp; D.</blockquote>\r\n<h4>June 2017</h4>\r\n<blockquote>Our stay at Watch Hill was wonderful from beginning to end.Â  Sue &amp; Rich were very warm and welcoming, as was the B&amp;B itself.Â  The house was immaculate, open and full of natural light.Â  The view from the Chantry Suite of the Saugeen River and Lake Huron, along with Chantry Island was beautiful.Â  There were several noteworthy amenities including multiple lounge areas both inside and out, both indoor and outdoor fireplaces, a 24-hr snack/espresso bar, and various musical instruments ready to be played in the living room.Â  Also, the breakfast was delicious and served very timely when we arrived in the dining room the following morning.Â  Overall, Watch Hill is the luxurious, bright and beautiful B&amp;B Southampton has been missing until now and we will definitely be returning in the near future!Â  Thanks again for everything Sue &amp; Rich!\r\nB.</blockquote>\r\n<blockquote>This was one of the most beautiful places I have ever stayed.Â  Everything was perfect down to the last detail â€“ colouring books, piano, Netflix, beautiful patio, magazines, etc.Â  Breakfast was delicious and coffee was amazing!Â  Sue and Richard were so friendly and definitely made us feel at home â€“ we area already looking for another date where we can go back â˜º!\r\nC.</blockquote>\r\n<blockquote>If I could give you 25 stars on a 10-star = EXCELLENT scale, I would do so in a flash!!\r\nM. from Los Angeles</blockquote>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Testimonials','','inherit','closed','closed','','537-revision-v1','','','2018-02-22 17:13:32','2018-02-22 22:13:32','',537,'https://www.watchhill.ca/2018/02/537-revision-v1/',0,'revision','',0),(553,6,'2018-02-22 16:54:19','2018-02-22 21:54:19','<h2 style=\"text-align: center;\">Thank you to all our delightful guests</h2>\r\n<h2 style=\"text-align: center;\">who have given us 100% 5-Star evaluations.</h2>\r\n<h3>Here is what some of them had to sayâ€¦</h3>\r\n<h4>January 2018</h4>\r\n<blockquote>This place was truly heaven â€“ somewhere we could step back and take a few breaths as we work thru all the details of our house fire.Â  Thanks for making us feel so welcome and cared for.Â  Your place is so very comfortable and beautifully appointed.Â  It felt like â€œhomeâ€ for a little while.Â  Great meeting you both â€“ and Dooley too of course.\r\nK. &amp; S.</blockquote>\r\n<h4>August 2017</h4>\r\n<blockquote>You have created a perfect environment!Â  From the dÃ©cor, design, gardens, warmth of you and staff, colours, bathrooms, it is truly a perfect experience.Â  We will be back ASAP.Â  All the best,Â L. &amp; J.</blockquote>\r\n<blockquote>Sadly we must leave this beautiful oasis you have created here at Watch Hill.Â  However, we have already talked about when we will return.Â  Thank you Richard, Sue, Sarah and Dooley for your hospitality.Â  Truly an amazing experience.Â  With Thanks,<span style=\"text-align: center;\">M. &amp; S.</span></blockquote>\r\n<blockquote>Thank you Sue, Richard and Sarah.Â  We had an absolutely glorious stay to celebrate our 10<sup>th</sup> Anniversary and are looking forward to staying again in the future. S. &amp; M.</blockquote>\r\n<blockquote>Thank you for the wonderful hospitality, meals and ambience.Â  Your home is far beyond our expectations!Â  We had an extremely enjoyable, relaxing stay and look forward to a return visit. G. &amp; E.</blockquote>\r\n<blockquote>We enjoyed our stay immensely.Â  Our room was lovely and well equipped.Â  Loved the views over the water!Â  Good breakfast and great hospitality.Â  Will plan to return.Â  Thanks for being super hosts. M. &amp; J.</blockquote>\r\n<blockquote>We received a full-page note from a family from Germany who took all 3 rooms for 7 nights.Â  It was filled with wonderful remarks and a promise to return in 2 years.Â  Two weeks later another German speaking couple translated this page for us and wrote their own comments in their native language.Â  We love our guests from across the ocean and have learned lots of ways to communicate without English words! S. &amp; R.</blockquote>\r\n<h4>July 2017</h4>\r\n<blockquote>Fantastic, fun, fabulous!Â  Great time. J.&amp;R.</blockquote>\r\n<blockquote>What a great experience this was!Â  Everything from top to bottom.Â  Thank you for having us and hope all goes well. J.</blockquote>\r\n<blockquote>So glad we stayed here and got to meet amazing people like Sue, Richard and Sarah (and Dooley).Â  Honestly better than most hotels, 5 Stars!Â  Thanks so much for having us and hope to come back! B.</blockquote>\r\n&nbsp;\r\n<blockquote>Sue, Richard, Sarah &amp; Dooley!Â  A huge THANK YOU for sharing your beautiful home/B&amp;B!Â  Your outstanding hospitality, friendliness and humour has been so appreciated!Â  Your attention to detail, seeing to our every want and need, the fabulous food, comfort and the sweetest doggy ever has us convinced we will be back next year!Â  Our BEST ANNIVERSARY EVER!Â  #13! W. &amp; A.</blockquote>\r\n<blockquote>If I could give higher than a #5 rating I would!Â  It is absolutely gorgeous!Â  Hosts are spectacular and food was amazing!Â  Quiet, elegant and beautifully located!Â  We will definitely be going back soon! C.</blockquote>\r\n<blockquote>This has to be one of the best B&amp;Bâ€™s we have stayed in (and we have stayed in many). Â  Next time I will bring my flute and piano music.Â  XO for Dooley. L. &amp; R.</blockquote>\r\n<blockquote>WOW, for my first experience at a B&amp;B it couldnâ€™t have been better.Â  You have the most amazing home here and that youâ€™ve opened it up for others to enjoy is a wonderful thing.Â  Weâ€™ll be back again and again.Â  Thank you!Â P.S.Â  The food was AMAZING. S. &amp; M.</blockquote>\r\n<blockquote>Your home is amazing!Â  We loved everything and felt right at home.Â  Thank you for your warm hospitality and yummy breakfasts.Â  This has been our best B&amp;B experience ever. J. &amp; L.</blockquote>\r\n<blockquote>An absolute gem!Â  We had a fantastic stay and your hospitality was impeccable.Â  We shall return!Â  All the best to you both. L. &amp; D.</blockquote>\r\n<h4>June 2017</h4>\r\n<blockquote>Our stay at Watch Hill was wonderful from beginning to end.Â  Sue &amp; Rich were very warm and welcoming, as was the B&amp;B itself.Â  The house was immaculate, open and full of natural light.Â  The view from the Chantry Suite of the Saugeen River and Lake Huron, along with Chantry Island was beautiful.Â  There were several noteworthy amenities including multiple lounge areas both inside and out, both indoor and outdoor fireplaces, a 24-hr snack/espresso bar, and various musical instruments ready to be played in the living room.Â  Also, the breakfast was delicious and served very timely when we arrived in the dining room the following morning.Â  Overall, Watch Hill is the luxurious, bright and beautiful B&amp;B Southampton has been missing until now and we will definitely be returning in the near future!Â  Thanks again for everything Sue &amp; Rich! B.</blockquote>\r\n<blockquote>This was one of the most beautiful places I have ever stayed.Â  Everything was perfect down to the last detail â€“ colouring books, piano, Netflix, beautiful patio, magazines, etc.Â  Breakfast was delicious and coffee was amazing!Â  Sue and Richard were so friendly and definitely made us feel at home â€“ we area already looking for another date where we can go back â˜º! C.</blockquote>\r\n<blockquote>If I could give you 25 stars on a 10-star = EXCELLENT scale, I would do so in a flash!! M. from Los Angeles</blockquote>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Testimonials','','inherit','closed','closed','','537-revision-v1','','','2018-02-22 16:54:19','2018-02-22 21:54:19','',537,'https://www.watchhill.ca/2018/02/537-revision-v1/',0,'revision','',0),(568,6,'2018-02-22 17:16:36','2018-02-22 22:16:36',' ','','','publish','closed','closed','','568','','','2018-02-22 19:31:06','2018-02-23 00:31:06','',0,'https://www.watchhill.ca/?p=568',12,'nav_menu_item','',0),(569,6,'2018-02-22 17:20:17','2018-02-22 22:20:17','<h1 style=\"text-align: center;\">A bright and airy, luxurious Bed &amp; Breakfast in Southampton, Ontario.</h1><!--more-->\r\n\r\n\r\n<h2 style=\"text-align: center;\">Truly a Beach House.</h2>\r\nWatch Hill is Southamptonâ€™s Grande Dame, a Beach House home-away-from-home overlooking the mouth of the Saugeen River where it meanders past a working lighthouse toward Â sparkling Lake Huron. Marvel at the magnificent sunsets over Chantry Island or watch boats sail by on the beautiful Saugeen River from our veranda.Â The beach is just steps away.\r\n<h2 style=\"text-align: center;\">Featured In Our Homes Magazine</h2>\r\n<p style=\"text-align: center;\"><a href=\"http://www.ourhomes.ca/\" target=\"_blank\" rel=\"noopener noreferrer\">Our Homes Magazine</a> recently featured Watch Hill in theirÂ  <a href=\"http://www.ourhomes.ca/greybruce/archive/591\" target=\"_blank\" rel=\"noopener noreferrer\">Grey/Bruce County Summer 2017 issue.</a>Â Pick upÂ a paper copy, or viewÂ the pdf online <a href=\"http://www.ourhomes.ca/uploads/pdfs/Feature_OH_GreyBruce_2017Summer.pdf\" target=\"_blank\" rel=\"noopener noreferrer\">here</a>, and the flipbook <a href=\"http://digital.lmgroup.com/i/832764-summer-2017\" target=\"_blank\" rel=\"noopener noreferrer\">here.</a>Â See before and after pictures of the 2 year renovation process that brought our Victorian beach house dream to life.</p>','Home','','inherit','closed','closed','','5-autosave-v1','','','2018-02-22 17:20:17','2018-02-22 22:20:17','',5,'https://www.watchhill.ca/2018/02/5-autosave-v1/',0,'revision','',0),(570,6,'2018-02-22 17:20:39','2018-02-22 22:20:39','<h1 style=\"text-align: center;\">A bright and airy, luxurious Bed &amp; Breakfast in Southampton, Ontario.</h1><!--more-->\r\n\r\n\r\n<h2 style=\"text-align: center;\">Truly a Beach House.</h2>\r\nWatch Hill is Southamptonâ€™s Grande Dame, a Beach House home-away-from-home overlooking the mouth of the Saugeen River where it meanders past a working lighthouse toward Â sparkling Lake Huron. Marvel at the magnificent sunsets over Chantry Island or watch boats sail by on the beautiful Saugeen River from our veranda.Â The beach is just steps away.\r\n<h2 style=\"text-align: center;\">Featured In Our Homes Magazine</h2>\r\n<p style=\"text-align: center;\"><a href=\"http://www.ourhomes.ca/\" target=\"_blank\" rel=\"noopener noreferrer\">Our Homes Magazine</a> recently featured Watch Hill in theirÂ  <a href=\"http://www.ourhomes.ca/greybruce/archive/591\" target=\"_blank\" rel=\"noopener noreferrer\">Grey/Bruce County Summer 2017 issue.</a>Â Pick upÂ a paper copy, or viewÂ the pdf online <a href=\"http://www.ourhomes.ca/uploads/pdfs/Feature_OH_GreyBruce_2017Summer.pdf\" target=\"_blank\" rel=\"noopener noreferrer\">here</a>, and the flipbook <a href=\"http://digital.lmgroup.com/i/832764-summer-2017\" target=\"_blank\" rel=\"noopener noreferrer\">here.</a>Â See before and after pictures of the 2 year renovation process that brought our Victorian beach house dream to life.</p>','Home','','inherit','closed','closed','','5-revision-v1','','','2018-02-22 17:20:39','2018-02-22 22:20:39','',5,'https://www.watchhill.ca/2018/02/5-revision-v1/',0,'revision','',0),(573,6,'2018-02-22 17:27:31','2018-02-22 22:27:31','[caption id=\"attachment_164\" align=\"alignright\" width=\"219\"]<img class=\"size-medium wp-image-164\" src=\"https://www.watchhill.ca/wp-content/uploads/2017/03/IMGP0761-219x300.jpg\" alt=\"Sue and Richard\" width=\"219\" height=\"300\" /> Sue &amp; Richard[/caption]\r\n\r\n<span class=\"text_5mbkop-o_O-size_reduced_1oti1ib-o_O-inline_g86r3e\" data-reactid=\"369\"><span data-reactid=\"370\">We are retired (this time we mean it) from very rewarding careers and have spent the last two years remodelling and renovating Watch Hill. Friends who visited remarked on theÂ beauty of Watch Hill and its views and several encouraged us to share it. So, here we are. Hosting is one of our favourite things to do. We have stayed in numerous B&amp;Bs ourselves and believe the experience can be far superior to a rentedÂ hotel room. </span></span>\r\n\r\n<span class=\"text_5mbkop-o_O-size_reduced_1oti1ib-o_O-inline_g86r3e\" data-reactid=\"369\"><span data-reactid=\"372\">Won\'t you join us?</span></span>','Your Hosts','','inherit','closed','closed','','13-revision-v1','','','2018-02-22 17:27:31','2018-02-22 22:27:31','',13,'https://www.watchhill.ca/2018/02/13-revision-v1/',0,'revision','',0),(574,6,'2018-02-22 19:13:22','2018-02-23 00:13:22','','Christmas Home Tour','','publish','closed','closed','','christmas-home-tour','','','2018-02-22 19:13:22','2018-02-23 00:13:22','',0,'https://www.watchhill.ca/?post_type=foogallery&#038;p=574',0,'foogallery','',0),(575,6,'2018-02-22 18:59:54','2018-02-22 23:59:54','','CP 2999','','inherit','closed','closed','','cp-2999','','','2018-02-22 18:59:54','2018-02-22 23:59:54','',574,'https://www.watchhill.ca/wp-content/uploads/2018/02/CP-2999.jpg',0,'attachment','image/jpeg',0),(576,6,'2018-02-22 19:00:01','2018-02-23 00:00:01','','CP 3012','','inherit','closed','closed','','cp-3012','','','2018-02-22 19:00:01','2018-02-23 00:00:01','',574,'https://www.watchhill.ca/wp-content/uploads/2018/02/CP-3012.jpg',0,'attachment','image/jpeg',0),(577,6,'2018-02-22 19:00:04','2018-02-23 00:00:04','','CP 3015','','inherit','closed','closed','','cp-3015','','','2018-02-22 19:00:04','2018-02-23 00:00:04','',574,'https://www.watchhill.ca/wp-content/uploads/2018/02/CP-3015.jpg',0,'attachment','image/jpeg',0),(578,6,'2018-02-22 19:00:07','2018-02-23 00:00:07','','CP 3023','','inherit','closed','closed','','cp-3023','','','2018-02-22 19:00:07','2018-02-23 00:00:07','',574,'https://www.watchhill.ca/wp-content/uploads/2018/02/CP-3023.jpg',0,'attachment','image/jpeg',0),(581,6,'2018-02-22 19:00:14','2018-02-23 00:00:14','','CP 3045','','inherit','closed','closed','','cp-3045','','','2018-02-22 19:00:14','2018-02-23 00:00:14','',574,'https://www.watchhill.ca/wp-content/uploads/2018/02/CP-3045.jpg',0,'attachment','image/jpeg',0),(582,6,'2018-02-22 19:00:17','2018-02-23 00:00:17','','CP 3064','','inherit','closed','closed','','cp-3064','','','2018-02-22 19:00:17','2018-02-23 00:00:17','',574,'https://www.watchhill.ca/wp-content/uploads/2018/02/CP-3064.jpg',0,'attachment','image/jpeg',0),(583,6,'2018-02-22 19:00:20','2018-02-23 00:00:20','','CP 3072','','inherit','closed','closed','','cp-3072','','','2018-02-22 19:00:20','2018-02-23 00:00:20','',574,'https://www.watchhill.ca/wp-content/uploads/2018/02/CP-3072.jpg',0,'attachment','image/jpeg',0),(584,6,'2018-02-22 19:00:22','2018-02-23 00:00:22','','CP 3083','','inherit','closed','closed','','cp-3083','','','2018-02-22 19:00:22','2018-02-23 00:00:22','',574,'https://www.watchhill.ca/wp-content/uploads/2018/02/CP-3083.jpg',0,'attachment','image/jpeg',0),(585,6,'2018-02-22 19:00:25','2018-02-23 00:00:25','','CP 3098','','inherit','closed','closed','','cp-3098','','','2018-02-22 19:00:25','2018-02-23 00:00:25','',574,'https://www.watchhill.ca/wp-content/uploads/2018/02/CP-3098.jpg',0,'attachment','image/jpeg',0),(586,6,'2018-02-22 19:00:27','2018-02-23 00:00:27','','CP 3101','','inherit','closed','closed','','cp-3101','','','2018-02-22 19:00:27','2018-02-23 00:00:27','',574,'https://www.watchhill.ca/wp-content/uploads/2018/02/CP-3101.jpg',0,'attachment','image/jpeg',0),(587,6,'2018-02-22 19:00:30','2018-02-23 00:00:30','','CP 3103','','inherit','closed','closed','','cp-3103','','','2018-02-22 19:00:30','2018-02-23 00:00:30','',574,'https://www.watchhill.ca/wp-content/uploads/2018/02/CP-3103.jpg',0,'attachment','image/jpeg',0),(588,6,'2018-02-22 19:00:33','2018-02-23 00:00:33','','CP 3108','','inherit','closed','closed','','cp-3108','','','2018-02-22 19:00:33','2018-02-23 00:00:33','',574,'https://www.watchhill.ca/wp-content/uploads/2018/02/CP-3108.jpg',0,'attachment','image/jpeg',0),(589,6,'2018-02-22 19:00:35','2018-02-23 00:00:35','','CP 3113','','inherit','closed','closed','','cp-3113','','','2018-02-22 19:00:35','2018-02-23 00:00:35','',574,'https://www.watchhill.ca/wp-content/uploads/2018/02/CP-3113.jpg',0,'attachment','image/jpeg',0),(590,6,'2018-02-22 19:11:18','2018-02-23 00:11:18','<img class=\"aligncenter wp-image-118 size-large\" src=\"https://www.watchhill.ca/wp-content/uploads/2017/03/7-1024x768.jpg\" alt=\"\" width=\"1024\" height=\"768\" />\n<div class=\"simple-format-container\" data-reactid=\"186\">\n<div class=\"simple-format-container\" data-reactid=\"208\">\n<p data-reactid=\"209\"><span data-reactid=\"210\">Watch Hill is truly Southamptonâ€™s Grande Dame, a Beach House home-away-from-home overlooking the mouth of the Saugeen River where it meanders past a working lighthouse and fishing pier toward Chantry Island and on to sparkling blue Lake Huron.</span></p>\n<p data-reactid=\"209\">Steps from the front door canoe, kayak, swim, fish, golf, hike, bike, x country ski, snowmobile, stroll the walking trail to downtown shops and delis or bike the rail-trail for miles into villages \"down the way\".Â <br data-reactid=\"211\" /><span data-reactid=\"212\">Downtown offers no shortage of attractions, boutiques, and dining establishments. Fun days, adventures and special occasions can be arranged (please ask us about this); explore the beaches, spend a day on the river, bike the trails or hike the paths and then enjoy a massage or yoga on the porch.</span></p>\n\n</div>\nOver 1,000 people toured Watch Hill to raise money for the hospital in November 2017. See highlights from the tour in the video below.\n\nhttps://youtu.be/RUOrc7RLJEY\n\nThanks toÂ Candra Schank Photography for these photos of the Christmas Home Tour at Watch Hill\n\n[foogallery id=\"574\"]\n\n</div>','About','','inherit','closed','closed','','7-autosave-v1','','','2018-02-22 19:11:18','2018-02-23 00:11:18','',7,'https://www.watchhill.ca/2018/02/7-autosave-v1/',0,'revision','',0),(591,6,'2018-02-22 19:00:37','2018-02-23 00:00:37','','CP 3115','','inherit','closed','closed','','cp-3115','','','2018-02-22 19:00:37','2018-02-23 00:00:37','',574,'https://www.watchhill.ca/wp-content/uploads/2018/02/CP-3115.jpg',0,'attachment','image/jpeg',0),(592,6,'2018-02-22 19:00:39','2018-02-23 00:00:39','','CP 3124','','inherit','closed','closed','','cp-3124','','','2018-02-22 19:00:39','2018-02-23 00:00:39','',574,'https://www.watchhill.ca/wp-content/uploads/2018/02/CP-3124.jpg',0,'attachment','image/jpeg',0),(593,6,'2018-02-22 19:00:42','2018-02-23 00:00:42','','CP 3128','','inherit','closed','closed','','cp-3128','','','2018-02-22 19:00:42','2018-02-23 00:00:42','',574,'https://www.watchhill.ca/wp-content/uploads/2018/02/CP-3128.jpg',0,'attachment','image/jpeg',0),(594,6,'2018-02-22 19:00:44','2018-02-23 00:00:44','','CP 3137','','inherit','closed','closed','','cp-3137','','','2018-02-22 19:00:44','2018-02-23 00:00:44','',574,'https://www.watchhill.ca/wp-content/uploads/2018/02/CP-3137.jpg',0,'attachment','image/jpeg',0),(595,6,'2018-02-22 19:00:47','2018-02-23 00:00:47','','CP 3144','','inherit','closed','closed','','cp-3144','','','2018-02-22 19:00:47','2018-02-23 00:00:47','',574,'https://www.watchhill.ca/wp-content/uploads/2018/02/CP-3144.jpg',0,'attachment','image/jpeg',0),(596,6,'2018-02-22 19:00:49','2018-02-23 00:00:49','','CP 3148','','inherit','closed','closed','','cp-3148','','','2018-02-22 19:00:49','2018-02-23 00:00:49','',574,'https://www.watchhill.ca/wp-content/uploads/2018/02/CP-3148.jpg',0,'attachment','image/jpeg',0),(597,6,'2018-02-22 19:00:51','2018-02-23 00:00:51','','CP 3154','','inherit','closed','closed','','cp-3154','','','2018-02-22 19:00:51','2018-02-23 00:00:51','',574,'https://www.watchhill.ca/wp-content/uploads/2018/02/CP-3154.jpg',0,'attachment','image/jpeg',0),(598,6,'2018-02-22 19:00:54','2018-02-23 00:00:54','','CP 3158','','inherit','closed','closed','','cp-3158','','','2018-02-22 19:00:54','2018-02-23 00:00:54','',574,'https://www.watchhill.ca/wp-content/uploads/2018/02/CP-3158.jpg',0,'attachment','image/jpeg',0),(599,6,'2018-02-22 19:00:56','2018-02-23 00:00:56','','CP 3163','','inherit','closed','closed','','cp-3163','','','2018-02-22 19:00:56','2018-02-23 00:00:56','',574,'https://www.watchhill.ca/wp-content/uploads/2018/02/CP-3163.jpg',0,'attachment','image/jpeg',0),(600,6,'2018-02-22 19:00:59','2018-02-23 00:00:59','','CP 3177','','inherit','closed','closed','','cp-3177','','','2018-02-22 19:00:59','2018-02-23 00:00:59','',574,'https://www.watchhill.ca/wp-content/uploads/2018/02/CP-3177.jpg',0,'attachment','image/jpeg',0),(601,6,'2018-02-22 19:01:01','2018-02-23 00:01:01','','CP 3206','','inherit','closed','closed','','cp-3206','','','2018-02-22 19:01:01','2018-02-23 00:01:01','',574,'https://www.watchhill.ca/wp-content/uploads/2018/02/CP-3206.jpg',0,'attachment','image/jpeg',0),(602,6,'2018-02-22 19:01:03','2018-02-23 00:01:03','','CP 3221','','inherit','closed','closed','','cp-3221','','','2018-02-22 19:01:03','2018-02-23 00:01:03','',574,'https://www.watchhill.ca/wp-content/uploads/2018/02/CP-3221.jpg',0,'attachment','image/jpeg',0),(603,6,'2018-02-22 19:01:06','2018-02-23 00:01:06','','CP 3228','','inherit','closed','closed','','cp-3228','','','2018-02-22 19:01:06','2018-02-23 00:01:06','',574,'https://www.watchhill.ca/wp-content/uploads/2018/02/CP-3228.jpg',0,'attachment','image/jpeg',0),(604,6,'2018-02-22 19:01:08','2018-02-23 00:01:08','','CP 3229','','inherit','closed','closed','','cp-3229','','','2018-02-22 19:01:08','2018-02-23 00:01:08','',574,'https://www.watchhill.ca/wp-content/uploads/2018/02/CP-3229.jpg',0,'attachment','image/jpeg',0),(605,6,'2018-02-22 19:01:11','2018-02-23 00:01:11','','CP 3232','','inherit','closed','closed','','cp-3232','','','2018-02-22 19:01:11','2018-02-23 00:01:11','',574,'https://www.watchhill.ca/wp-content/uploads/2018/02/CP-3232.jpg',0,'attachment','image/jpeg',0),(606,6,'2018-02-22 19:01:13','2018-02-23 00:01:13','','CP 3250','','inherit','closed','closed','','cp-3250','','','2018-02-22 19:01:13','2018-02-23 00:01:13','',574,'https://www.watchhill.ca/wp-content/uploads/2018/02/CP-3250.jpg',0,'attachment','image/jpeg',0),(607,6,'2018-02-22 19:01:16','2018-02-23 00:01:16','','CP 3254','','inherit','closed','closed','','cp-3254','','','2018-02-22 19:01:16','2018-02-23 00:01:16','',574,'https://www.watchhill.ca/wp-content/uploads/2018/02/CP-3254.jpg',0,'attachment','image/jpeg',0),(608,6,'2018-02-22 19:01:18','2018-02-23 00:01:18','','CP 3268','','inherit','closed','closed','','cp-3268','','','2018-02-22 19:01:18','2018-02-23 00:01:18','',574,'https://www.watchhill.ca/wp-content/uploads/2018/02/CP-3268.jpg',0,'attachment','image/jpeg',0),(609,6,'2018-02-22 19:01:21','2018-02-23 00:01:21','','CP 3272','','inherit','closed','closed','','cp-3272','','','2018-02-22 19:01:21','2018-02-23 00:01:21','',574,'https://www.watchhill.ca/wp-content/uploads/2018/02/CP-3272.jpg',0,'attachment','image/jpeg',0),(610,6,'2018-02-22 19:01:23','2018-02-23 00:01:23','','CP 3277','','inherit','closed','closed','','cp-3277','','','2018-02-22 19:01:23','2018-02-23 00:01:23','',574,'https://www.watchhill.ca/wp-content/uploads/2018/02/CP-3277.jpg',0,'attachment','image/jpeg',0),(611,6,'2018-02-22 19:01:27','2018-02-23 00:01:27','','CP 3289','','inherit','closed','closed','','cp-3289','','','2018-02-22 19:01:27','2018-02-23 00:01:27','',574,'https://www.watchhill.ca/wp-content/uploads/2018/02/CP-3289.jpg',0,'attachment','image/jpeg',0),(612,6,'2018-02-22 19:01:30','2018-02-23 00:01:30','','CP 3293','','inherit','closed','closed','','cp-3293','','','2018-02-22 19:01:30','2018-02-23 00:01:30','',574,'https://www.watchhill.ca/wp-content/uploads/2018/02/CP-3293.jpg',0,'attachment','image/jpeg',0),(613,6,'2018-02-22 19:01:33','2018-02-23 00:01:33','','CP 3301','','inherit','closed','closed','','cp-3301','','','2018-02-22 19:01:33','2018-02-23 00:01:33','',574,'https://www.watchhill.ca/wp-content/uploads/2018/02/CP-3301.jpg',0,'attachment','image/jpeg',0),(614,6,'2018-02-22 19:01:36','2018-02-23 00:01:36','','CP 3306','','inherit','closed','closed','','cp-3306','','','2018-02-22 19:01:36','2018-02-23 00:01:36','',574,'https://www.watchhill.ca/wp-content/uploads/2018/02/CP-3306.jpg',0,'attachment','image/jpeg',0),(615,6,'2018-02-22 19:01:38','2018-02-23 00:01:38','','CP 3310','','inherit','closed','closed','','cp-3310','','','2018-02-22 19:01:38','2018-02-23 00:01:38','',574,'https://www.watchhill.ca/wp-content/uploads/2018/02/CP-3310.jpg',0,'attachment','image/jpeg',0),(616,6,'2018-02-22 19:01:40','2018-02-23 00:01:40','','CP 3312','','inherit','closed','closed','','cp-3312','','','2018-02-22 19:01:40','2018-02-23 00:01:40','',574,'https://www.watchhill.ca/wp-content/uploads/2018/02/CP-3312.jpg',0,'attachment','image/jpeg',0),(617,6,'2018-02-22 19:01:43','2018-02-23 00:01:43','','CP 3315 Edit','','inherit','closed','closed','','cp-3315-edit','','','2018-02-22 19:01:43','2018-02-23 00:01:43','',574,'https://www.watchhill.ca/wp-content/uploads/2018/02/CP-3315-Edit.jpg',0,'attachment','image/jpeg',0),(618,6,'2018-02-22 19:01:46','2018-02-23 00:01:46','','CP 3323','','inherit','closed','closed','','cp-3323','','','2018-02-22 19:01:46','2018-02-23 00:01:46','',574,'https://www.watchhill.ca/wp-content/uploads/2018/02/CP-3323.jpg',0,'attachment','image/jpeg',0),(619,6,'2018-02-22 19:01:49','2018-02-23 00:01:49','','CP 3356','','inherit','closed','closed','','cp-3356','','','2018-02-22 19:01:49','2018-02-23 00:01:49','',574,'https://www.watchhill.ca/wp-content/uploads/2018/02/CP-3356.jpg',0,'attachment','image/jpeg',0),(620,6,'2018-02-22 19:01:52','2018-02-23 00:01:52','','CP 3358','','inherit','closed','closed','','cp-3358','','','2018-02-22 19:01:52','2018-02-23 00:01:52','',574,'https://www.watchhill.ca/wp-content/uploads/2018/02/CP-3358.jpg',0,'attachment','image/jpeg',0),(621,6,'2018-02-22 19:01:54','2018-02-23 00:01:54','','CP 3399','','inherit','closed','closed','','cp-3399','','','2018-02-22 19:01:54','2018-02-23 00:01:54','',574,'https://www.watchhill.ca/wp-content/uploads/2018/02/CP-3399.jpg',0,'attachment','image/jpeg',0),(622,6,'2018-02-22 19:01:57','2018-02-23 00:01:57','','CP 3405','','inherit','closed','closed','','cp-3405','','','2018-02-22 19:01:57','2018-02-23 00:01:57','',574,'https://www.watchhill.ca/wp-content/uploads/2018/02/CP-3405.jpg',0,'attachment','image/jpeg',0),(623,6,'2018-02-22 19:02:00','2018-02-23 00:02:00','','CP 3418','','inherit','closed','closed','','cp-3418','','','2018-02-22 19:02:00','2018-02-23 00:02:00','',574,'https://www.watchhill.ca/wp-content/uploads/2018/02/CP-3418.jpg',0,'attachment','image/jpeg',0),(624,6,'2018-02-22 19:02:03','2018-02-23 00:02:03','','CP 3439','','inherit','closed','closed','','cp-3439','','','2018-02-22 19:02:03','2018-02-23 00:02:03','',574,'https://www.watchhill.ca/wp-content/uploads/2018/02/CP-3439.jpg',0,'attachment','image/jpeg',0),(625,6,'2018-02-22 19:02:06','2018-02-23 00:02:06','','CP 3451','','inherit','closed','closed','','cp-3451','','','2018-02-22 19:02:06','2018-02-23 00:02:06','',574,'https://www.watchhill.ca/wp-content/uploads/2018/02/CP-3451.jpg',0,'attachment','image/jpeg',0),(626,6,'2018-02-22 19:02:10','2018-02-23 00:02:10','','CP 3455','','inherit','closed','closed','','cp-3455','','','2018-02-22 19:02:10','2018-02-23 00:02:10','',574,'https://www.watchhill.ca/wp-content/uploads/2018/02/CP-3455.jpg',0,'attachment','image/jpeg',0),(627,6,'2018-02-22 19:02:12','2018-02-23 00:02:12','','CP 3464','','inherit','closed','closed','','cp-3464','','','2018-02-22 19:02:12','2018-02-23 00:02:12','',574,'https://www.watchhill.ca/wp-content/uploads/2018/02/CP-3464.jpg',0,'attachment','image/jpeg',0),(628,6,'2018-02-22 19:02:14','2018-02-23 00:02:14','','CP 3466','','inherit','closed','closed','','cp-3466','','','2018-02-22 19:02:14','2018-02-23 00:02:14','',574,'https://www.watchhill.ca/wp-content/uploads/2018/02/CP-3466.jpg',0,'attachment','image/jpeg',0),(629,6,'2018-02-22 19:02:18','2018-02-23 00:02:18','','CP 3475','','inherit','closed','closed','','cp-3475','','','2018-02-22 19:02:18','2018-02-23 00:02:18','',574,'https://www.watchhill.ca/wp-content/uploads/2018/02/CP-3475.jpg',0,'attachment','image/jpeg',0),(630,6,'2018-02-22 19:02:20','2018-02-23 00:02:20','','CP 3477','','inherit','closed','closed','','cp-3477','','','2018-02-22 19:02:20','2018-02-23 00:02:20','',574,'https://www.watchhill.ca/wp-content/uploads/2018/02/CP-3477.jpg',0,'attachment','image/jpeg',0),(631,6,'2018-02-22 19:02:24','2018-02-23 00:02:24','','CP 3479','','inherit','closed','closed','','cp-3479','','','2018-02-22 19:02:24','2018-02-23 00:02:24','',574,'https://www.watchhill.ca/wp-content/uploads/2018/02/CP-3479.jpg',0,'attachment','image/jpeg',0),(632,6,'2018-02-22 19:02:28','2018-02-23 00:02:28','','CP 3494','','inherit','closed','closed','','cp-3494','','','2018-02-22 19:02:28','2018-02-23 00:02:28','',574,'https://www.watchhill.ca/wp-content/uploads/2018/02/CP-3494.jpg',0,'attachment','image/jpeg',0),(633,6,'2018-02-22 19:02:31','2018-02-23 00:02:31','','CP 3496','','inherit','closed','closed','','cp-3496','','','2018-02-22 19:02:31','2018-02-23 00:02:31','',574,'https://www.watchhill.ca/wp-content/uploads/2018/02/CP-3496.jpg',0,'attachment','image/jpeg',0),(634,6,'2018-02-22 19:02:33','2018-02-23 00:02:33','','CP 3503','','inherit','closed','closed','','cp-3503','','','2018-02-22 19:02:33','2018-02-23 00:02:33','',574,'https://www.watchhill.ca/wp-content/uploads/2018/02/CP-3503.jpg',0,'attachment','image/jpeg',0),(635,6,'2018-02-22 19:02:36','2018-02-23 00:02:36','','CP 3508','','inherit','closed','closed','','cp-3508','','','2018-02-22 19:02:36','2018-02-23 00:02:36','',574,'https://www.watchhill.ca/wp-content/uploads/2018/02/CP-3508.jpg',0,'attachment','image/jpeg',0),(636,6,'2018-02-22 19:02:39','2018-02-23 00:02:39','','CP 3524','','inherit','closed','closed','','cp-3524','','','2018-02-22 19:02:39','2018-02-23 00:02:39','',574,'https://www.watchhill.ca/wp-content/uploads/2018/02/CP-3524.jpg',0,'attachment','image/jpeg',0),(637,6,'2018-02-22 19:02:41','2018-02-23 00:02:41','','CP 3532','','inherit','closed','closed','','cp-3532','','','2018-02-22 19:02:41','2018-02-23 00:02:41','',574,'https://www.watchhill.ca/wp-content/uploads/2018/02/CP-3532.jpg',0,'attachment','image/jpeg',0),(638,6,'2018-02-22 19:02:44','2018-02-23 00:02:44','','CP 3533','','inherit','closed','closed','','cp-3533','','','2018-02-22 19:02:44','2018-02-23 00:02:44','',574,'https://www.watchhill.ca/wp-content/uploads/2018/02/CP-3533.jpg',0,'attachment','image/jpeg',0),(639,6,'2018-02-22 19:02:46','2018-02-23 00:02:46','','CP 3555','','inherit','closed','closed','','cp-3555','','','2018-02-22 19:02:46','2018-02-23 00:02:46','',574,'https://www.watchhill.ca/wp-content/uploads/2018/02/CP-3555.jpg',0,'attachment','image/jpeg',0),(640,6,'2018-02-22 19:02:49','2018-02-23 00:02:49','','CP 3557','','inherit','closed','closed','','cp-3557','','','2018-02-22 19:02:49','2018-02-23 00:02:49','',574,'https://www.watchhill.ca/wp-content/uploads/2018/02/CP-3557.jpg',0,'attachment','image/jpeg',0),(641,6,'2018-02-22 19:02:51','2018-02-23 00:02:51','','CP 3576','','inherit','closed','closed','','cp-3576','','','2018-02-22 19:02:51','2018-02-23 00:02:51','',574,'https://www.watchhill.ca/wp-content/uploads/2018/02/CP-3576.jpg',0,'attachment','image/jpeg',0),(642,6,'2018-02-22 19:02:54','2018-02-23 00:02:54','','CP 3580','','inherit','closed','closed','','cp-3580','','','2018-02-22 19:02:54','2018-02-23 00:02:54','',574,'https://www.watchhill.ca/wp-content/uploads/2018/02/CP-3580.jpg',0,'attachment','image/jpeg',0),(643,6,'2018-02-22 19:03:03','2018-02-23 00:03:03','','CP 3581','','inherit','closed','closed','','cp-3581','','','2018-02-22 19:03:03','2018-02-23 00:03:03','',574,'https://www.watchhill.ca/wp-content/uploads/2018/02/CP-3581.jpg',0,'attachment','image/jpeg',0),(644,6,'2018-02-22 19:03:05','2018-02-23 00:03:05','','CP 3584','','inherit','closed','closed','','cp-3584','','','2018-02-22 19:03:05','2018-02-23 00:03:05','',574,'https://www.watchhill.ca/wp-content/uploads/2018/02/CP-3584.jpg',0,'attachment','image/jpeg',0),(645,6,'2018-02-22 19:03:08','2018-02-23 00:03:08','','CP 3591','','inherit','closed','closed','','cp-3591','','','2018-02-22 19:03:08','2018-02-23 00:03:08','',574,'https://www.watchhill.ca/wp-content/uploads/2018/02/CP-3591.jpg',0,'attachment','image/jpeg',0),(646,6,'2018-02-22 19:03:10','2018-02-23 00:03:10','','CP 3597','','inherit','closed','closed','','cp-3597','','','2018-02-22 19:03:10','2018-02-23 00:03:10','',574,'https://www.watchhill.ca/wp-content/uploads/2018/02/CP-3597.jpg',0,'attachment','image/jpeg',0),(647,6,'2018-02-22 19:03:13','2018-02-23 00:03:13','','CP 3614','','inherit','closed','closed','','cp-3614','','','2018-02-22 19:03:13','2018-02-23 00:03:13','',574,'https://www.watchhill.ca/wp-content/uploads/2018/02/CP-3614.jpg',0,'attachment','image/jpeg',0),(648,6,'2018-02-22 19:03:16','2018-02-23 00:03:16','','CP 3615','','inherit','closed','closed','','cp-3615','','','2018-02-22 19:03:16','2018-02-23 00:03:16','',574,'https://www.watchhill.ca/wp-content/uploads/2018/02/CP-3615.jpg',0,'attachment','image/jpeg',0),(649,6,'2018-02-22 19:03:18','2018-02-23 00:03:18','','CP 3620','','inherit','closed','closed','','cp-3620','','','2018-02-22 19:03:18','2018-02-23 00:03:18','',574,'https://www.watchhill.ca/wp-content/uploads/2018/02/CP-3620.jpg',0,'attachment','image/jpeg',0),(650,6,'2018-02-22 19:03:21','2018-02-23 00:03:21','','CP 3622','','inherit','closed','closed','','cp-3622','','','2018-02-22 19:03:21','2018-02-23 00:03:21','',574,'https://www.watchhill.ca/wp-content/uploads/2018/02/CP-3622.jpg',0,'attachment','image/jpeg',0),(651,6,'2018-02-22 19:03:24','2018-02-23 00:03:24','','CP 3644','','inherit','closed','closed','','cp-3644','','','2018-02-22 19:03:24','2018-02-23 00:03:24','',574,'https://www.watchhill.ca/wp-content/uploads/2018/02/CP-3644.jpg',0,'attachment','image/jpeg',0),(652,6,'2018-02-22 19:03:27','2018-02-23 00:03:27','','CP 3654','','inherit','closed','closed','','cp-3654','','','2018-02-22 19:03:27','2018-02-23 00:03:27','',574,'https://www.watchhill.ca/wp-content/uploads/2018/02/CP-3654.jpg',0,'attachment','image/jpeg',0),(653,6,'2018-02-22 19:03:30','2018-02-23 00:03:30','','CP 3663','','inherit','closed','closed','','cp-3663','','','2018-02-22 19:03:30','2018-02-23 00:03:30','',574,'https://www.watchhill.ca/wp-content/uploads/2018/02/CP-3663.jpg',0,'attachment','image/jpeg',0),(654,6,'2018-02-22 19:03:33','2018-02-23 00:03:33','','CP 3664','','inherit','closed','closed','','cp-3664','','','2018-02-22 19:03:33','2018-02-23 00:03:33','',574,'https://www.watchhill.ca/wp-content/uploads/2018/02/CP-3664.jpg',0,'attachment','image/jpeg',0),(655,6,'2018-02-22 19:03:36','2018-02-23 00:03:36','','CP 3667','','inherit','closed','closed','','cp-3667','','','2018-02-22 19:03:36','2018-02-23 00:03:36','',574,'https://www.watchhill.ca/wp-content/uploads/2018/02/CP-3667.jpg',0,'attachment','image/jpeg',0),(656,6,'2018-02-22 19:03:38','2018-02-23 00:03:38','','IMG 0107','','inherit','closed','closed','','img_0107-2','','','2018-02-22 19:03:38','2018-02-23 00:03:38','',574,'https://www.watchhill.ca/wp-content/uploads/2018/02/IMG_0107-1.jpeg',0,'attachment','image/jpeg',0),(657,6,'2018-02-22 19:03:40','2018-02-23 00:03:40','','IMG 0108','','inherit','closed','closed','','img_0108','','','2018-02-22 19:03:40','2018-02-23 00:03:40','',574,'https://www.watchhill.ca/wp-content/uploads/2018/02/IMG_0108.jpeg',0,'attachment','image/jpeg',0),(658,6,'2018-02-22 19:03:42','2018-02-23 00:03:42','','IMG 2181','','inherit','closed','closed','','img_2181-2','','','2018-02-22 19:03:42','2018-02-23 00:03:42','',574,'https://www.watchhill.ca/wp-content/uploads/2018/02/IMG_2181-1.jpg',0,'attachment','image/jpeg',0),(659,6,'2018-02-22 19:03:44','2018-02-23 00:03:44','','IMG 2184','','inherit','closed','closed','','img_2184-2','','','2018-02-22 19:03:44','2018-02-23 00:03:44','',574,'https://www.watchhill.ca/wp-content/uploads/2018/02/IMG_2184-1.jpg',0,'attachment','image/jpeg',0),(660,6,'2018-02-22 19:03:46','2018-02-23 00:03:46','','IMG 2193','','inherit','closed','closed','','img_2193-2','','','2018-02-22 19:04:30','2018-02-23 00:04:30','',574,'https://www.watchhill.ca/wp-content/uploads/2018/02/IMG_2193-1.jpg',0,'attachment','image/jpeg',0),(661,6,'2018-02-22 19:11:34','2018-02-23 00:11:34','<img class=\"aligncenter wp-image-118 size-large\" src=\"https://www.watchhill.ca/wp-content/uploads/2017/03/7-1024x768.jpg\" alt=\"\" width=\"1024\" height=\"768\" />\r\n<div class=\"simple-format-container\" data-reactid=\"186\">\r\n<div class=\"simple-format-container\" data-reactid=\"208\">\r\n<p data-reactid=\"209\"><span data-reactid=\"210\">Watch Hill is truly Southamptonâ€™s Grande Dame, a Beach House home-away-from-home overlooking the mouth of the Saugeen River where it meanders past a working lighthouse and fishing pier toward Chantry Island and on to sparkling blue Lake Huron.</span></p>\r\n<p data-reactid=\"209\">Steps from the front door canoe, kayak, swim, fish, golf, hike, bike, x country ski, snowmobile, stroll the walking trail to downtown shops and delis or bike the rail-trail for miles into villages \"down the way\".Â <br data-reactid=\"211\" /><span data-reactid=\"212\">Downtown offers no shortage of attractions, boutiques, and dining establishments. Fun days, adventures and special occasions can be arranged (please ask us about this); explore the beaches, spend a day on the river, bike the trails or hike the paths and then enjoy a massage or yoga on the porch.</span></p>\r\n\r\n</div>\r\nOver 1,000 people toured Watch Hill to raise money for the hospital in November 2017. See highlights from the tour in the video below.\r\n\r\nhttps://youtu.be/RUOrc7RLJEY\r\n<h3>Thanks toÂ Candra Schank Photography for these photos of the Christmas Home Tour at Watch Hill.</h3>\r\n[foogallery id=\"574\"]\r\n\r\n</div>','About','','inherit','closed','closed','','7-revision-v1','','','2018-02-22 19:11:34','2018-02-23 00:11:34','',7,'https://www.watchhill.ca/2018/02/7-revision-v1/',0,'revision','',0),(662,6,'2018-02-22 19:14:44','2018-02-23 00:14:44','<img class=\"aligncenter wp-image-118 size-large\" src=\"https://www.watchhill.ca/wp-content/uploads/2017/03/7-1024x768.jpg\" alt=\"\" width=\"1024\" height=\"768\" />\r\n<div class=\"simple-format-container\" data-reactid=\"186\">\r\n<div class=\"simple-format-container\" data-reactid=\"208\">\r\n<p data-reactid=\"209\"><span data-reactid=\"210\">Watch Hill is truly Southamptonâ€™s Grande Dame, a Beach House home-away-from-home overlooking the mouth of the Saugeen River where it meanders past a working lighthouse and fishing pier toward Chantry Island and on to sparkling blue Lake Huron.</span></p>\r\n<p data-reactid=\"209\">Steps from the front door canoe, kayak, swim, fish, golf, hike, bike, x country ski, snowmobile, stroll the walking trail to downtown shops and delis or bike the rail-trail for miles into villages \"down the way\".Â <br data-reactid=\"211\" /><span data-reactid=\"212\">Downtown offers no shortage of attractions, boutiques, and dining establishments. Fun days, adventures and special occasions can be arranged (please ask us about this); explore the beaches, spend a day on the river, bike the trails or hike the paths and then enjoy a massage or yoga on the porch.</span></p>\r\n\r\n</div>\r\n<h4>Over 1,000 people toured Watch Hill to raise money for the hospital in November 2017. See highlights from the tour in the video below.</h4>\r\nhttps://youtu.be/RUOrc7RLJEY\r\n<!--more-->\r\n\r\n<h4>Thanks toÂ Candra Schank Photography for these photos of the Christmas Home Tour at Watch Hill.</h4>\r\n[foogallery id=\"574\"]\r\n\r\n</div>','About','','inherit','closed','closed','','7-revision-v1','','','2018-02-22 19:14:44','2018-02-23 00:14:44','',7,'https://www.watchhill.ca/2018/02/7-revision-v1/',0,'revision','',0),(669,6,'2018-02-22 19:22:44','2018-02-23 00:22:44','Fishing under a summer rainbow','Fishing under a summer rainbow','Fishing under a summer rainbow','inherit','closed','closed','','fb_img_1517939589806','','','2018-02-22 19:48:24','2018-02-23 00:48:24','',115,'https://www.watchhill.ca/wp-content/uploads/2017/03/FB_IMG_1517939589806.jpg',0,'attachment','image/jpeg',0),(670,6,'2018-02-22 19:22:47','2018-02-23 00:22:47','','FB IMG 1517939602269','','inherit','closed','closed','','fb_img_1517939602269','','','2018-02-22 19:22:47','2018-02-23 00:22:47','',115,'https://www.watchhill.ca/wp-content/uploads/2017/03/FB_IMG_1517939602269.jpg',0,'attachment','image/jpeg',0),(671,6,'2018-02-22 19:22:48','2018-02-23 00:22:48','','FB IMG 1517939664874','','inherit','closed','closed','','fb_img_1517939664874','','','2018-02-22 19:22:48','2018-02-23 00:22:48','',115,'https://www.watchhill.ca/wp-content/uploads/2017/03/FB_IMG_1517939664874.jpg',0,'attachment','image/jpeg',0),(672,6,'2018-02-22 19:22:51','2018-02-23 00:22:51','See Watch Hill peeking through the trees (upper right)','See Watch Hill peeking through the trees (upper right)','See Watch Hill peeking through the trees (upper right)','inherit','closed','closed','','fb_img_1517939724561','','','2018-02-22 19:39:06','2018-02-23 00:39:06','',115,'https://www.watchhill.ca/wp-content/uploads/2017/03/FB_IMG_1517939724561.jpg',0,'attachment','image/jpeg',0),(673,6,'2018-02-22 19:22:53','2018-02-23 00:22:53','','FB IMG 1517939744243','','inherit','closed','closed','','fb_img_1517939744243','','','2018-02-22 19:22:53','2018-02-23 00:22:53','',115,'https://www.watchhill.ca/wp-content/uploads/2017/03/FB_IMG_1517939744243.jpg',0,'attachment','image/jpeg',0),(674,6,'2018-02-22 19:22:56','2018-02-23 00:22:56','Boarding to shore at end of day','Boarding to shore at end of day','Boarding to shore at end of day','inherit','closed','closed','','fb_img_1517939788079','','','2018-02-22 19:38:47','2018-02-23 00:38:47','',115,'https://www.watchhill.ca/wp-content/uploads/2017/03/FB_IMG_1517939788079.jpg',0,'attachment','image/jpeg',0),(675,6,'2018-02-22 19:22:58','2018-02-23 00:22:58','See this from the veranda - if you use binoculars.','See this from the veranda - if you use binoculars.','See this from the veranda - if you use binoculars.','inherit','closed','closed','','fb_img_1517939808879','','','2018-02-22 19:53:30','2018-02-23 00:53:30','',115,'https://www.watchhill.ca/wp-content/uploads/2017/03/FB_IMG_1517939808879.jpg',0,'attachment','image/jpeg',0),(676,6,'2018-02-22 19:23:00','2018-02-23 00:23:00','Stormy day','Stormy day','Stormy day','inherit','closed','closed','','fb_img_1517941199470','','','2018-02-22 19:37:46','2018-02-23 00:37:46','',115,'https://www.watchhill.ca/wp-content/uploads/2017/03/FB_IMG_1517941199470.jpg',0,'attachment','image/jpeg',0),(677,6,'2018-02-22 19:23:03','2018-02-23 00:23:03','Art classes at Scubbyâ€™s point, just across the street','Art classes at Scubbyâ€™s point, just across the street','Art classes at Scubbyâ€™s point, just across the street','inherit','closed','closed','','fb_img_1517942120013','','','2018-02-22 19:36:59','2018-02-23 00:36:59','',115,'https://www.watchhill.ca/wp-content/uploads/2017/03/FB_IMG_1517942120013.jpg',0,'attachment','image/jpeg',0),(678,6,'2018-02-22 19:27:12','2018-02-23 00:27:12','Steps from the front door, canoe, kayak, swim, fish, stroll the walking trail to downtown shops and delis or bike the rail trail for miles into villages â€œdown the wayâ€.Â <span data-reactid=\"180\">Marvel at the magnificent sunsets over Chantry Island or watch boats pass by on the beautiful Saugeen River.</span>\n<p data-reactid=\"209\"><span data-reactid=\"212\">Downtown Southampton offers no shortage of attractions, boutiques and dining establishments. Fun days, adventures and special occasions can be arranged (please ask us about this); explore the beaches, spend time on the river, bike the trails or hike the paths and complete your day with a massage or yoga on the porch.</span></p>\nContact us and we would be more than happy to give you more information, or to arrange activities for you during your stay.\n\nSummer Activities\n\n[foogallery id=\"115\"]\n\n[foogallery id=\"663\"]','The Area','','inherit','closed','closed','','114-autosave-v1','','','2018-02-22 19:27:12','2018-02-23 00:27:12','',114,'https://www.watchhill.ca/2018/02/114-autosave-v1/',0,'revision','',0),(679,6,'2018-02-22 19:27:47','2018-02-23 00:27:47','Steps from the front door, canoe, kayak, swim, fish, stroll the walking trail to downtown shops and delis or bike the rail trail for miles into villages â€œdown the wayâ€.Â <span data-reactid=\"180\">Marvel at the magnificent sunsets over Chantry Island or watch boats pass by on the beautiful Saugeen River.</span>\r\n<p data-reactid=\"209\"><span data-reactid=\"212\">Downtown Southampton offers no shortage of attractions, boutiques and dining establishments. Fun days, adventures and special occasions can be arranged (please ask us about this); explore the beaches, spend time on the river, bike the trails or hike the paths and complete your day with a massage or yoga on the porch.</span></p>\r\nContact us and we would be more than happy to give you more information, or to arrange activities for you during your stay.\r\n<h3>Summer Activities</h3>\r\n[foogallery id=\"115\"]\r\n\r\n&nbsp;\r\n<h3>Winter Activities</h3>\r\n[foogallery id=\"663\"]','The Area','','inherit','closed','closed','','114-revision-v1','','','2018-02-22 19:27:47','2018-02-23 00:27:47','',114,'https://www.watchhill.ca/2018/02/114-revision-v1/',0,'revision','',0),(680,6,'2018-02-22 19:49:50','2018-02-23 00:49:50','Colour the day away or make music as you wish','Colour the day away or make music as you wish','Colour the day away or make music as you wish','inherit','closed','closed','','fb_img_1517939681694','','','2018-02-22 19:52:38','2018-02-23 00:52:38','',0,'https://www.watchhill.ca/wp-content/uploads/2018/02/FB_IMG_1517939681694.jpg',0,'attachment','image/jpeg',0),(681,6,'2018-02-22 19:50:11','2018-02-23 00:50:11','Sunshine on the breakfast table','Sunshine on the breakfast table','Sunshine on the breakfast table','inherit','closed','closed','','fb_img_1517939757588','','','2018-02-22 19:52:15','2018-02-23 00:52:15','',0,'https://www.watchhill.ca/wp-content/uploads/2018/02/FB_IMG_1517939757588.jpg',0,'attachment','image/jpeg',0),(682,6,'2018-02-22 19:50:17','2018-02-23 00:50:17','Spectacular garden bloom','Spectacular garden bloom','Spectacular garden bloom','inherit','closed','closed','','fb_img_1517939571158','','','2018-02-22 19:51:57','2018-02-23 00:51:57','',0,'https://www.watchhill.ca/wp-content/uploads/2018/02/FB_IMG_1517939571158.jpg',0,'attachment','image/jpeg',0),(683,6,'2018-02-22 19:50:35','2018-02-23 00:50:35','Canada Day Breakfast.  Letâ€™s celebrate!','Canada Day Breakfast.  Letâ€™s celebrate!','Canada Day Breakfast.  Letâ€™s celebrate!','inherit','closed','closed','','fb_img_1517939633705','','','2018-02-22 19:51:36','2018-02-23 00:51:36','',0,'https://www.watchhill.ca/wp-content/uploads/2018/02/FB_IMG_1517939633705.jpg',0,'attachment','image/jpeg',0),(684,6,'2018-02-22 19:50:40','2018-02-23 00:50:40','Baked daily for guests and served at the coffee station','Baked daily for guests and served at the coffee station','Baked daily for guests and served at the coffee station','inherit','closed','closed','','fb_img_1517939657486','','','2018-02-22 19:51:14','2018-02-23 00:51:14','',0,'https://www.watchhill.ca/wp-content/uploads/2018/02/FB_IMG_1517939657486.jpg',0,'attachment','image/jpeg',0),(685,6,'2018-02-22 19:56:09','2018-02-23 00:56:09','Steps from the front door, canoe, kayak, swim, fish, stroll the walking trail to downtown shops and delis or bike the rail trail for miles into villages â€œdown the wayâ€.Â <span data-reactid=\"180\">Marvel at the magnificent sunsets over Chantry Island or watch boats pass by on the beautiful Saugeen River.</span>\r\n<p data-reactid=\"209\"><span data-reactid=\"212\">Downtown Southampton offers no shortage of attractions, boutiques and dining establishments. Fun days, adventures and special occasions can be arranged (please ask us about this); explore the beaches, spend time on the river, bike the trails or hike the paths and complete your day with a massage or yoga on the porch.</span></p>\r\nContact us and we would be more than happy to give you more information, or to arrange activities for you during your stay.\r\n<h3 style=\"text-align: center;\">Summer Activities</h3>\r\n[foogallery id=\"115\"]\r\n\r\n&nbsp;\r\n<h3 style=\"text-align: center;\">Winter Activities</h3>\r\n[foogallery id=\"663\"]','The Area','','inherit','closed','closed','','114-revision-v1','','','2018-02-22 19:56:09','2018-02-23 00:56:09','',114,'https://www.watchhill.ca/2018/02/114-revision-v1/',0,'revision','',0),(688,0,'2018-04-06 18:49:22','0000-00-00 00:00:00','PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPCEtLWdlbmVyYXRvcj0namV0cGFjay01LjknLS0+Cjw/eG1sLXN0eWxlc2hlZXQgdHlwZT0idGV4dC94c2wiIGhyZWY9Imh0dHBzOi8vd3d3LndhdGNoaGlsbC5jYS9zaXRlbWFwLnhzbCI/Pgo8dXJsc2V0IHhtbG5zPSJodHRwOi8vd3d3LnNpdGVtYXBzLm9yZy9zY2hlbWFzL3NpdGVtYXAvMC45IiB4bWxuczp4c2k9Imh0dHA6Ly93d3cudzMub3JnLzIwMDEvWE1MU2NoZW1hLWluc3RhbmNlIiB4c2k6c2NoZW1hTG9jYXRpb249Imh0dHA6Ly93d3cuc2l0ZW1hcHMub3JnL3NjaGVtYXMvc2l0ZW1hcC8wLjkgaHR0cDovL3d3dy5zaXRlbWFwcy5vcmcvc2NoZW1hcy9zaXRlbWFwLzAuOS9zaXRlbWFwLnhzZCI+PHVybD48bG9jPmh0dHBzOi8vd3d3LndhdGNoaGlsbC5jYTwvbG9jPjwvdXJsPjx1cmw+PGxvYz5odHRwczovL3d3dy53YXRjaGhpbGwuY2EvMjAxNy8wMy9oZWxsby13b3JsZC88L2xvYz48bGFzdG1vZD4yMDE3LTAzLTA2VDExOjQyOjMyWjwvbGFzdG1vZD48L3VybD48dXJsPjxsb2M+aHR0cHM6Ly93d3cud2F0Y2hoaWxsLmNhLzwvbG9jPjxsYXN0bW9kPjIwMTgtMDItMjJUMjI6MjA6MzlaPC9sYXN0bW9kPjwvdXJsPjx1cmw+PGxvYz5odHRwczovL3d3dy53YXRjaGhpbGwuY2EvYWJvdXQvPC9sb2M+PGxhc3Rtb2Q+MjAxOC0wMi0yM1QwMDoxNDo0NFo8L2xhc3Rtb2Q+PC91cmw+PHVybD48bG9jPmh0dHBzOi8vd3d3LndhdGNoaGlsbC5jYS9hYm91dC9nYWxsZXJ5LzwvbG9jPjxsYXN0bW9kPjIwMTgtMDItMDVUMjE6NTU6MzJaPC9sYXN0bW9kPjwvdXJsPjx1cmw+PGxvYz5odHRwczovL3d3dy53YXRjaGhpbGwuY2EvYWJvdXQvaGlzdG9yeS1vZi13YXRjaC1oaWxsLzwvbG9jPjxsYXN0bW9kPjIwMTgtMDItMjJUMDI6MzE6NTdaPC9sYXN0bW9kPjwvdXJsPjx1cmw+PGxvYz5odHRwczovL3d3dy53YXRjaGhpbGwuY2EvYWJvdXQveW91ci1ob3N0cy88L2xvYz48bGFzdG1vZD4yMDE4LTAyLTIyVDIyOjI3OjMxWjwvbGFzdG1vZD48L3VybD48dXJsPjxsb2M+aHR0cHM6Ly93d3cud2F0Y2hoaWxsLmNhL2FjY29tbW9kYXRpb25zLzwvbG9jPjxsYXN0bW9kPjIwMTgtMDEtMTdUMTU6Mzc6MTVaPC9sYXN0bW9kPjwvdXJsPjx1cmw+PGxvYz5odHRwczovL3d3dy53YXRjaGhpbGwuY2EvYWNjb21tb2RhdGlvbnMvdGhlLWh1cm9uLzwvbG9jPjxsYXN0bW9kPjIwMTctMTAtMThUMTQ6MjY6MzRaPC9sYXN0bW9kPjwvdXJsPjx1cmw+PGxvYz5odHRwczovL3d3dy53YXRjaGhpbGwuY2EvYWNjb21tb2RhdGlvbnMvdGhlLWNoYW50cnkvPC9sb2M+PGxhc3Rtb2Q+MjAxOC0wMy0xNVQxODowMzozNlo8L2xhc3Rtb2Q+PC91cmw+PHVybD48bG9jPmh0dHBzOi8vd3d3LndhdGNoaGlsbC5jYS9hY2NvbW1vZGF0aW9ucy90aGUtc2F1Z2Vlbi88L2xvYz48bGFzdG1vZD4yMDE3LTEwLTE4VDE0OjI3OjEwWjwvbGFzdG1vZD48L3VybD48dXJsPjxsb2M+aHR0cHM6Ly93d3cud2F0Y2hoaWxsLmNhL3JhdGVzLXBvbGljaWVzLzwvbG9jPjxsYXN0bW9kPjIwMTgtMDEtMTVUMTU6MjU6MTZaPC9sYXN0bW9kPjwvdXJsPjx1cmw+PGxvYz5odHRwczovL3d3dy53YXRjaGhpbGwuY2EvY29udGFjdC88L2xvYz48bGFzdG1vZD4yMDE3LTA2LTI2VDE5OjEwOjEwWjwvbGFzdG1vZD48L3VybD48dXJsPjxsb2M+aHR0cHM6Ly93d3cud2F0Y2hoaWxsLmNhL3ByaXZhY3ktcG9saWN5LzwvbG9jPjxsYXN0bW9kPjIwMTctMDMtMjRUMTg6MzA6NDFaPC9sYXN0bW9kPjwvdXJsPjx1cmw+PGxvYz5odHRwczovL3d3dy53YXRjaGhpbGwuY2EvYWJvdXQvdGhlLWFyZWEvPC9sb2M+PGxhc3Rtb2Q+MjAxOC0wMi0yM1QwMDo1NjowOVo8L2xhc3Rtb2Q+PC91cmw+PHVybD48bG9jPmh0dHBzOi8vd3d3LndhdGNoaGlsbC5jYS9hY2NvbW1vZGF0aW9ucy9oYXJib3VyLXN1aXRlLzwvbG9jPjxsYXN0bW9kPjIwMTgtMDQtMDZUMTg6NDk6MjJaPC9sYXN0bW9kPjwvdXJsPjx1cmw+PGxvYz5odHRwczovL3d3dy53YXRjaGhpbGwuY2EvdGVzdGltb25pYWxzLzwvbG9jPjxsYXN0bW9kPjIwMTgtMDItMjJUMjI6MTU6MDlaPC9sYXN0bW9kPjwvdXJsPjwvdXJsc2V0Pgo=','sitemap-1.xml','','draft','closed','closed','','','','','2018-05-08 13:23:25','2018-05-08 17:23:25','',0,'https://www.watchhill.ca/?p=688',0,'jp_sitemap','',0),(689,0,'2018-02-23 01:01:06','0000-00-00 00:00:00','PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPCEtLWdlbmVyYXRvcj0namV0cGFjay01LjknLS0+Cjw/eG1sLXN0eWxlc2hlZXQgdHlwZT0idGV4dC94c2wiIGhyZWY9Imh0dHBzOi8vd3d3LndhdGNoaGlsbC5jYS9pbWFnZS1zaXRlbWFwLnhzbCI/Pgo8dXJsc2V0IHhtbG5zPSJodHRwOi8vd3d3LnNpdGVtYXBzLm9yZy9zY2hlbWFzL3NpdGVtYXAvMC45IiB4bWxuczp4c2k9Imh0dHA6Ly93d3cudzMub3JnLzIwMDEvWE1MU2NoZW1hLWluc3RhbmNlIiB4c2k6c2NoZW1hTG9jYXRpb249Imh0dHA6Ly93d3cuc2l0ZW1hcHMub3JnL3NjaGVtYXMvc2l0ZW1hcC8wLjkgaHR0cDovL3d3dy5zaXRlbWFwcy5vcmcvc2NoZW1hcy9zaXRlbWFwLzAuOS9zaXRlbWFwLnhzZCIgeG1sbnM6aW1hZ2U9Imh0dHA6Ly93d3cuZ29vZ2xlLmNvbS9zY2hlbWFzL3NpdGVtYXAtaW1hZ2UvMS4xIj48dXJsPjxsb2M+aHR0cHM6Ly93d3cud2F0Y2hoaWxsLmNhL2JnLzwvbG9jPjxsYXN0bW9kPjIwMTctMDMtMDZUMTM6MzA6MzRaPC9sYXN0bW9kPjxpbWFnZTppbWFnZT48aW1hZ2U6bG9jPmh0dHBzOi8vd3d3LndhdGNoaGlsbC5jYS93cC1jb250ZW50L3VwbG9hZHMvMjAxNy8wMy9iZy5wbmc8L2ltYWdlOmxvYz48aW1hZ2U6dGl0bGU+Ymc8L2ltYWdlOnRpdGxlPjxpbWFnZTpjYXB0aW9uPjwvaW1hZ2U6Y2FwdGlvbj48L2ltYWdlOmltYWdlPjwvdXJsPjx1cmw+PGxvYz5odHRwczovL3d3dy53YXRjaGhpbGwuY2Evd2F0Y2gtaGlsbC1mYXZpY29uLzwvbG9jPjxsYXN0bW9kPjIwMTctMDMtMDdUMTQ6NTc6MzVaPC9sYXN0bW9kPjxpbWFnZTppbWFnZT48aW1hZ2U6bG9jPmh0dHBzOi8vd3d3LndhdGNoaGlsbC5jYS93cC1jb250ZW50L3VwbG9hZHMvMjAxNy8wMy93YXRjaC1oaWxsLWZhdmljb24ucG5nPC9pbWFnZTpsb2M+PGltYWdlOnRpdGxlPndhdGNoLWhpbGwtZmF2aWNvbjwvaW1hZ2U6dGl0bGU+PGltYWdlOmNhcHRpb24+PC9pbWFnZTpjYXB0aW9uPjwvaW1hZ2U6aW1hZ2U+PC91cmw+PHVybD48bG9jPmh0dHBzOi8vd3d3LndhdGNoaGlsbC5jYS9jcm9wcGVkLXdhdGNoLWhpbGwtZmF2aWNvbi1wbmcvPC9sb2M+PGxhc3Rtb2Q+MjAxNy0wMy0wN1QxNDo1NzozOFo8L2xhc3Rtb2Q+PGltYWdlOmltYWdlPjxpbWFnZTpsb2M+aHR0cHM6Ly93d3cud2F0Y2hoaWxsLmNhL3dwLWNvbnRlbnQvdXBsb2Fkcy8yMDE3LzAzL2Nyb3BwZWQtd2F0Y2gtaGlsbC1mYXZpY29uLnBuZzwvaW1hZ2U6bG9jPjxpbWFnZTp0aXRsZT5jcm9wcGVkLXdhdGNoLWhpbGwtZmF2aWNvbi5wbmc8L2ltYWdlOnRpdGxlPjxpbWFnZTpjYXB0aW9uPjwvaW1hZ2U6Y2FwdGlvbj48L2ltYWdlOmltYWdlPjwvdXJsPjx1cmw+PGxvYz5odHRwczovL3d3dy53YXRjaGhpbGwuY2EvY3JvcHBlZC13YXRjaC1oaWxsLWZhdmljb24tMS1wbmcvPC9sb2M+PGxhc3Rtb2Q+MjAxNy0wMy0wN1QxNDo1ODowNlo8L2xhc3Rtb2Q+PGltYWdlOmltYWdlPjxpbWFnZTpsb2M+aHR0cHM6Ly93d3cud2F0Y2hoaWxsLmNhL3dwLWNvbnRlbnQvdXBsb2Fkcy8yMDE3LzAzL2Nyb3BwZWQtd2F0Y2gtaGlsbC1mYXZpY29uLTEucG5nPC9pbWFnZTpsb2M+PGltYWdlOnRpdGxlPmNyb3BwZWQtd2F0Y2gtaGlsbC1mYXZpY29uLTEucG5nPC9pbWFnZTp0aXRsZT48aW1hZ2U6Y2FwdGlvbj48L2ltYWdlOmNhcHRpb24+PC9pbWFnZTppbWFnZT48L3VybD48dXJsPjxsb2M+aHR0cHM6Ly93d3cud2F0Y2hoaWxsLmNhL2xvZ28vPC9sb2M+PGxhc3Rtb2Q+MjAxNy0wMy0wN1QxOTo0MDo1N1o8L2xhc3Rtb2Q+PGltYWdlOmltYWdlPjxpbWFnZTpsb2M+aHR0cHM6Ly93d3cud2F0Y2hoaWxsLmNhL3dwLWNvbnRlbnQvdXBsb2Fkcy8yMDE3LzAzL2xvZ28uanBnPC9pbWFnZTpsb2M+PGltYWdlOnRpdGxlPldhdGNoIEhpbGwgQmVkICZhbXA7IEJyZWFrZmFzdCAtIExvZ28gSW1hZ2U8L2ltYWdlOnRpdGxlPjxpbWFnZTpjYXB0aW9uPjwvaW1hZ2U6Y2FwdGlvbj48L2ltYWdlOmltYWdlPjwvdXJsPjx1cmw+PGxvYz5odHRwczovL3d3dy53YXRjaGhpbGwuY2EvaG9tZS1zbGlkZS0xLzwvbG9jPjxsYXN0bW9kPjIwMTctMDMtMzBUMTU6MDQ6NDdaPC9sYXN0bW9kPjxpbWFnZTppbWFnZT48aW1hZ2U6bG9jPmh0dHBzOi8vd3d3LndhdGNoaGlsbC5jYS93cC1jb250ZW50L3VwbG9hZHMvMjAxNy8wMy9ob21lLXNsaWRlLTEuanBnPC9pbWFnZTpsb2M+PGltYWdlOnRpdGxlPmhvbWUtc2xpZGUtMTwvaW1hZ2U6dGl0bGU+PGltYWdlOmNhcHRpb24+V2VsY29tZSB0byBXYXRjaCBIaWxsPC9pbWFnZTpjYXB0aW9uPjwvaW1hZ2U6aW1hZ2U+PC91cmw+PHVybD48bG9jPmh0dHBzOi8vd3d3LndhdGNoaGlsbC5jYS9ob21lLXNsaWRlLTIvPC9sb2M+PGxhc3Rtb2Q+MjAxNy0wMy0zMFQxNTowNDo0N1o8L2xhc3Rtb2Q+PGltYWdlOmltYWdlPjxpbWFnZTpsb2M+aHR0cHM6Ly93d3cud2F0Y2hoaWxsLmNhL3dwLWNvbnRlbnQvdXBsb2Fkcy8yMDE3LzAzL2hvbWUtc2xpZGUtMi5qcGc8L2ltYWdlOmxvYz48aW1hZ2U6dGl0bGU+aG9tZS1zbGlkZS0yPC9pbWFnZTp0aXRsZT48aW1hZ2U6Y2FwdGlvbj5XZWxjb21lIHRvIFdhdGNoIEhpbGw8L2ltYWdlOmNhcHRpb24+PC9pbWFnZTppbWFnZT48L3VybD48dXJsPjxsb2M+aHR0cHM6Ly93d3cud2F0Y2hoaWxsLmNhL2hvbWUtc2xpZGUtMy88L2xvYz48bGFzdG1vZD4yMDE3LTAzLTMwVDE1OjA0OjQ3WjwvbGFzdG1vZD48aW1hZ2U6aW1hZ2U+PGltYWdlOmxvYz5odHRwczovL3d3dy53YXRjaGhpbGwuY2Evd3AtY29udGVudC91cGxvYWRzLzIwMTcvMDMvaG9tZS1zbGlkZS0zLmpwZzwvaW1hZ2U6bG9jPjxpbWFnZTp0aXRsZT5ob21lLXNsaWRlLTM8L2ltYWdlOnRpdGxlPjxpbWFnZTpjYXB0aW9uPjwvaW1hZ2U6Y2FwdGlvbj48L2ltYWdlOmltYWdlPjwvdXJsPjx1cmw+PGxvYz5odHRwczovL3d3dy53YXRjaGhpbGwuY2EvaG9tZS1zbGlkZS00LzwvbG9jPjxsYXN0bW9kPjIwMTgtMDItMjNUMDE6MDE6MDZaPC9sYXN0bW9kPjxpbWFnZTppbWFnZT48aW1hZ2U6bG9jPmh0dHBzOi8vd3d3LndhdGNoaGlsbC5jYS93cC1jb250ZW50L3VwbG9hZHMvMjAxNy8wMy9ob21lLXNsaWRlLTQuanBnPC9pbWFnZTpsb2M+PGltYWdlOnRpdGxlPldhdGNoIEhpbGwgYnkgbmlnaHQ8L2ltYWdlOnRpdGxlPjxpbWFnZTpjYXB0aW9uPldhdGNoIEhpbGwgYnkgbmlnaHQ8L2ltYWdlOmNhcHRpb24+PC9pbWFnZTppbWFnZT48L3VybD48dXJsPjxsb2M+aHR0cHM6Ly93d3cud2F0Y2hoaWxsLmNhLz9mb29nYWxsZXJ5PWh1cm9uLXN1aXRlPC9sb2M+PGxhc3Rtb2Q+MjAxNy0wNC0yNlQxNzowNzo0Nlo8L2xhc3Rtb2Q+PGltYWdlOmltYWdlPjxpbWFnZTpsb2M+aHR0cHM6Ly93d3cud2F0Y2hoaWxsLmNhL3dwLWNvbnRlbnQvdXBsb2Fkcy8yMDE3LzAzL0h1cm9uLVN1aXRlLmpwZzwvaW1hZ2U6bG9jPjxpbWFnZTp0aXRsZT5IdXJvbi1TdWl0ZTwvaW1hZ2U6dGl0bGU+PGltYWdlOmNhcHRpb24+PC9pbWFnZTpjYXB0aW9uPjwvaW1hZ2U6aW1hZ2U+PC91cmw+PHVybD48bG9jPmh0dHBzOi8vd3d3LndhdGNoaGlsbC5jYS8/Zm9vZ2FsbGVyeT1odXJvbi1zdWl0ZTwvbG9jPjxsYXN0bW9kPjIwMTctMDQtMjZUMTc6MDc6NDZaPC9sYXN0bW9kPjxpbWFnZTppbWFnZT48aW1hZ2U6bG9jPmh0dHBzOi8vd3d3LndhdGNoaGlsbC5jYS93cC1jb250ZW50L3VwbG9hZHMvMjAxNy8wMy9lbnN1aXRlMS5qcGc8L2ltYWdlOmxvYz48aW1hZ2U6dGl0bGU+ZW5zdWl0ZTE8L2ltYWdlOnRpdGxlPjxpbWFnZTpjYXB0aW9uPjwvaW1hZ2U6Y2FwdGlvbj48L2ltYWdlOmltYWdlPjwvdXJsPjx1cmw+PGxvYz5odHRwczovL3d3dy53YXRjaGhpbGwuY2EvP2Zvb2dhbGxlcnk9aHVyb24tc3VpdGU8L2xvYz48bGFzdG1vZD4yMDE3LTAzLTE1VDE5OjA0OjMxWjwvbGFzdG1vZD48aW1hZ2U6aW1hZ2U+PGltYWdlOmxvYz5odHRwczovL3d3dy53YXRjaGhpbGwuY2Evd3AtY29udGVudC91cGxvYWRzLzIwMTcvMDMvMU0xQTE1NDAuanBnPC9pbWFnZTpsb2M+PGltYWdlOnRpdGxlPjFNMUExNTQwPC9pbWFnZTp0aXRsZT48aW1hZ2U6Y2FwdGlvbj48L2ltYWdlOmNhcHRpb24+PC9pbWFnZTppbWFnZT48L3VybD48dXJsPjxsb2M+aHR0cHM6Ly93d3cud2F0Y2hoaWxsLmNhLz9mb29nYWxsZXJ5PWh1cm9uLXN1aXRlPC9sb2M+PGxhc3Rtb2Q+MjAxNy0wNC0yNlQxNzowNzo0Nlo8L2xhc3Rtb2Q+PGltYWdlOmltYWdlPjxpbWFnZTpsb2M+aHR0cHM6Ly93d3cud2F0Y2hoaWxsLmNhL3dwLWNvbnRlbnQvdXBsb2Fkcy8yMDE3LzAzLzFNMUExMjg2X2IuanBnPC9pbWFnZTpsb2M+PGltYWdlOnRpdGxlPjFNMUExMjg2X2I8L2ltYWdlOnRpdGxlPjxpbWFnZTpjYXB0aW9uPjwvaW1hZ2U6Y2FwdGlvbj48L2ltYWdlOmltYWdlPjwvdXJsPjx1cmw+PGxvYz5odHRwczovL3d3dy53YXRjaGhpbGwuY2EvP2Zvb2dhbGxlcnk9aHVyb24tc3VpdGU8L2xvYz48bGFzdG1vZD4yMDE3LTA0LTI2VDE3OjA3OjQ2WjwvbGFzdG1vZD48aW1hZ2U6aW1hZ2U+PGltYWdlOmxvYz5odHRwczovL3d3dy53YXRjaGhpbGwuY2Evd3AtY29udGVudC91cGxvYWRzLzIwMTcvMDMvMU0xQTEyMDdfYi5qcGc8L2ltYWdlOmxvYz48aW1hZ2U6dGl0bGU+MU0xQTEyMDdfYjwvaW1hZ2U6dGl0bGU+PGltYWdlOmNhcHRpb24+PC9pbWFnZTpjYXB0aW9uPjwvaW1hZ2U6aW1hZ2U+PC91cmw+PHVybD48bG9jPmh0dHBzOi8vd3d3LndhdGNoaGlsbC5jYS9jaGFudHJ5LXN1aXRlLzwvbG9jPjxsYXN0bW9kPjIwMTctMDMtMTVUMTQ6NDY6MDdaPC9sYXN0bW9kPjxpbWFnZTppbWFnZT48aW1hZ2U6bG9jPmh0dHBzOi8vd3d3LndhdGNoaGlsbC5jYS93cC1jb250ZW50L3VwbG9hZHMvMjAxNy8wMy9DaGFudHJ5LVN1aXRlLmpwZzwvaW1hZ2U6bG9jPjxpbWFnZTp0aXRsZT5DaGFudHJ5LVN1aXRlPC9pbWFnZTp0aXRsZT48aW1hZ2U6Y2FwdGlvbj48L2ltYWdlOmNhcHRpb24+PC9pbWFnZTppbWFnZT48L3VybD48dXJsPjxsb2M+aHR0cHM6Ly93d3cud2F0Y2hoaWxsLmNhLzFtMWExNTU0LzwvbG9jPjxsYXN0bW9kPjIwMTctMDMtMTVUMTk6MTU6NTlaPC9sYXN0bW9kPjxpbWFnZTppbWFnZT48aW1hZ2U6bG9jPmh0dHBzOi8vd3d3LndhdGNoaGlsbC5jYS93cC1jb250ZW50L3VwbG9hZHMvMjAxNy8wMy8xTTFBMTU1NC5qcGc8L2ltYWdlOmxvYz48aW1hZ2U6dGl0bGU+MU0xQTE1NTQ8L2ltYWdlOnRpdGxlPjxpbWFnZTpjYXB0aW9uPjwvaW1hZ2U6Y2FwdGlvbj48L2ltYWdlOmltYWdlPjwvdXJsPjx1cmw+PGxvYz5odHRwczovL3d3dy53YXRjaGhpbGwuY2EvMW0xYTE1NzIvPC9sb2M+PGxhc3Rtb2Q+MjAxNy0wMy0xNVQxOToxNTo1OVo8L2xhc3Rtb2Q+PGltYWdlOmltYWdlPjxpbWFnZTpsb2M+aHR0cHM6Ly93d3cud2F0Y2hoaWxsLmNhL3dwLWNvbnRlbnQvdXBsb2Fkcy8yMDE3LzAzLzFNMUExNTcyLmpwZzwvaW1hZ2U6bG9jPjxpbWFnZTp0aXRsZT4xTTFBMTU3MjwvaW1hZ2U6dGl0bGU+PGltYWdlOmNhcHRpb24+PC9pbWFnZTpjYXB0aW9uPjwvaW1hZ2U6aW1hZ2U+PC91cmw+PHVybD48bG9jPmh0dHBzOi8vd3d3LndhdGNoaGlsbC5jYS8xbTFhMTU4Ni88L2xvYz48bGFzdG1vZD4yMDE3LTAzLTE1VDE5OjE1OjU5WjwvbGFzdG1vZD48aW1hZ2U6aW1hZ2U+PGltYWdlOmxvYz5odHRwczovL3d3dy53YXRjaGhpbGwuY2Evd3AtY29udGVudC91cGxvYWRzLzIwMTcvMDMvMU0xQTE1ODYuanBnPC9pbWFnZTpsb2M+PGltYWdlOnRpdGxlPjFNMUExNTg2PC9pbWFnZTp0aXRsZT48aW1hZ2U6Y2FwdGlvbj48L2ltYWdlOmNhcHRpb24+PC9pbWFnZTppbWFnZT48L3VybD48dXJsPjxsb2M+aHR0cHM6Ly93d3cud2F0Y2hoaWxsLmNhLzFtMWExNTgwLzwvbG9jPjxsYXN0bW9kPjIwMTctMDMtMTVUMTk6MTU6NTlaPC9sYXN0bW9kPjxpbWFnZTppbWFnZT48aW1hZ2U6bG9jPmh0dHBzOi8vd3d3LndhdGNoaGlsbC5jYS93cC1jb250ZW50L3VwbG9hZHMvMjAxNy8wMy8xTTFBMTU4MC5qcGc8L2ltYWdlOmxvYz48aW1hZ2U6dGl0bGU+MU0xQTE1ODA8L2ltYWdlOnRpdGxlPjxpbWFnZTpjYXB0aW9uPjwvaW1hZ2U6Y2FwdGlvbj48L2ltYWdlOmltYWdlPjwvdXJsPjx1cmw+PGxvYz5odHRwczovL3d3dy53YXRjaGhpbGwuY2EvMW0xYTE1OTkvPC9sb2M+PGxhc3Rtb2Q+MjAxNy0wMy0xNVQxOToxNTo1OVo8L2xhc3Rtb2Q+PGltYWdlOmltYWdlPjxpbWFnZTpsb2M+aHR0cHM6Ly93d3cud2F0Y2hoaWxsLmNhL3dwLWNvbnRlbnQvdXBsb2Fkcy8yMDE3LzAzLzFNMUExNTk5LmpwZzwvaW1hZ2U6bG9jPjxpbWFnZTp0aXRsZT4xTTFBMTU5OTwvaW1hZ2U6dGl0bGU+PGltYWdlOmNhcHRpb24+PC9pbWFnZTpjYXB0aW9uPjwvaW1hZ2U6aW1hZ2U+PC91cmw+PHVybD48bG9jPmh0dHBzOi8vd3d3LndhdGNoaGlsbC5jYS8xbTFhMTYwNi88L2xvYz48bGFzdG1vZD4yMDE3LTAzLTE1VDE5OjE1OjU5WjwvbGFzdG1vZD48aW1hZ2U6aW1hZ2U+PGltYWdlOmxvYz5odHRwczovL3d3dy53YXRjaGhpbGwuY2Evd3AtY29udGVudC91cGxvYWRzLzIwMTcvMDMvMU0xQTE2MDYuanBnPC9pbWFnZTpsb2M+PGltYWdlOnRpdGxlPjFNMUExNjA2PC9pbWFnZTp0aXRsZT48aW1hZ2U6Y2FwdGlvbj48L2ltYWdlOmNhcHRpb24+PC9pbWFnZTppbWFnZT48L3VybD48dXJsPjxsb2M+aHR0cHM6Ly93d3cud2F0Y2hoaWxsLmNhLzFtMWExNjA4LzwvbG9jPjxsYXN0bW9kPjIwMTctMDMtMTVUMTk6MTU6NTlaPC9sYXN0bW9kPjxpbWFnZTppbWFnZT48aW1hZ2U6bG9jPmh0dHBzOi8vd3d3LndhdGNoaGlsbC5jYS93cC1jb250ZW50L3VwbG9hZHMvMjAxNy8wMy8xTTFBMTYwOC5qcGc8L2ltYWdlOmxvYz48aW1hZ2U6dGl0bGU+MU0xQTE2MDg8L2ltYWdlOnRpdGxlPjxpbWFnZTpjYXB0aW9uPjwvaW1hZ2U6Y2FwdGlvbj48L2ltYWdlOmltYWdlPjwvdXJsPjx1cmw+PGxvYz5odHRwczovL3d3dy53YXRjaGhpbGwuY2EvMW0xYTExMjAvPC9sb2M+PGxhc3Rtb2Q+MjAxNy0wNi0yN1QxNjo0NjoxMFo8L2xhc3Rtb2Q+PGltYWdlOmltYWdlPjxpbWFnZTpsb2M+aHR0cHM6Ly93d3cud2F0Y2hoaWxsLmNhL3dwLWNvbnRlbnQvdXBsb2Fkcy8yMDE3LzAzLzFNMUExMTIwLmpwZzwvaW1hZ2U6bG9jPjxpbWFnZTp0aXRsZT4xTTFBMTEyMDwvaW1hZ2U6dGl0bGU+PGltYWdlOmNhcHRpb24+PC9pbWFnZTpjYXB0aW9uPjwvaW1hZ2U6aW1hZ2U+PC91cmw+PHVybD48bG9jPmh0dHBzOi8vd3d3LndhdGNoaGlsbC5jYS8xbTFhMTE4NS88L2xvYz48bGFzdG1vZD4yMDE3LTA2LTI3VDE2OjQ2OjEwWjwvbGFzdG1vZD48aW1hZ2U6aW1hZ2U+PGltYWdlOmxvYz5odHRwczovL3d3dy53YXRjaGhpbGwuY2Evd3AtY29udGVudC91cGxvYWRzLzIwMTcvMDMvMU0xQTExODUuanBnPC9pbWFnZTpsb2M+PGltYWdlOnRpdGxlPjFNMUExMTg1PC9pbWFnZTp0aXRsZT48aW1hZ2U6Y2FwdGlvbj48L2ltYWdlOmNhcHRpb24+PC9pbWFnZTppbWFnZT48L3VybD48dXJsPjxsb2M+aHR0cHM6Ly93d3cud2F0Y2hoaWxsLmNhLz9mb29nYWxsZXJ5PXNoYXJlZC1zcGFjZXM8L2xvYz48bGFzdG1vZD4yMDE3LTAzLTMwVDE4OjIzOjI5WjwvbGFzdG1vZD48aW1hZ2U6aW1hZ2U+PGltYWdlOmxvYz5odHRwczovL3d3dy53YXRjaGhpbGwuY2Evd3AtY29udGVudC91cGxvYWRzLzIwMTcvMDMvMU0xQTA3OTAuanBnPC9pbWFnZTpsb2M+PGltYWdlOnRpdGxlPkZyb250IFBvcmNoIC0gV2F0Y2ggSGlsbCBCZWQgJmFtcDsgQnJlYWtmYXN0PC9pbWFnZTp0aXRsZT48aW1hZ2U6Y2FwdGlvbj48L2ltYWdlOmNhcHRpb24+PC9pbWFnZTppbWFnZT48L3VybD48dXJsPjxsb2M+aHR0cHM6Ly93d3cud2F0Y2hoaWxsLmNhLz9mb29nYWxsZXJ5PXNoYXJlZC1zcGFjZXM8L2xvYz48bGFzdG1vZD4yMDE3LTAzLTMwVDE4OjIzOjI3WjwvbGFzdG1vZD48aW1hZ2U6aW1hZ2U+PGltYWdlOmxvYz5odHRwczovL3d3dy53YXRjaGhpbGwuY2Evd3AtY29udGVudC91cGxvYWRzLzIwMTcvMDMvMU0xQTA3OTEuanBnPC9pbWFnZTpsb2M+PGltYWdlOnRpdGxlPkZyb250IFBvcmNoIERpbmluZyBBcmVhLSBXYXRjaCBIaWxsIEJlZCAmYW1wOyBCcmVha2Zhc3Q8L2ltYWdlOnRpdGxlPjxpbWFnZTpjYXB0aW9uPjwvaW1hZ2U6Y2FwdGlvbj48L2ltYWdlOmltYWdlPjwvdXJsPjx1cmw+PGxvYz5odHRwczovL3d3dy53YXRjaGhpbGwuY2EvP2Zvb2dhbGxlcnk9c2hhcmVkLXNwYWNlczwvbG9jPjxsYXN0bW9kPjIwMTctMDMtMzBUMTg6MjM6MjVaPC9sYXN0bW9kPjxpbWFnZTppbWFnZT48aW1hZ2U6bG9jPmh0dHBzOi8vd3d3LndhdGNoaGlsbC5jYS93cC1jb250ZW50L3VwbG9hZHMvMjAxNy8wMy8xTTFBMDgyMS5qcGc8L2ltYWdlOmxvYz48aW1hZ2U6dGl0bGU+RnJvbnQgUG9yY2ggLSBXYXRjaCBIaWxsIEJlZCAmYW1wOyBCcmVha2Zhc3Q8L2ltYWdlOnRpdGxlPjxpbWFnZTpjYXB0aW9uPjwvaW1hZ2U6Y2FwdGlvbj48L2ltYWdlOmltYWdlPjwvdXJsPjx1cmw+PGxvYz5odHRwczovL3d3dy53YXRjaGhpbGwuY2EvP2Zvb2dhbGxlcnk9c2hhcmVkLXNwYWNlczwvbG9jPjxsYXN0bW9kPjIwMTctMDMtMzBUMTg6MjM6MjJaPC9sYXN0bW9kPjxpbWFnZTppbWFnZT48aW1hZ2U6bG9jPmh0dHBzOi8vd3d3LndhdGNoaGlsbC5jYS93cC1jb250ZW50L3VwbG9hZHMvMjAxNy8wMy8xTTFBMDg5MC5qcGc8L2ltYWdlOmxvYz48aW1hZ2U6dGl0bGU+UGF0aW8gYXQgV2F0Y2ggSGlsbCBCJmFtcDtCPC9pbWFnZTp0aXRsZT48aW1hZ2U6Y2FwdGlvbj48L2ltYWdlOmNhcHRpb24+PC9pbWFnZTppbWFnZT48L3VybD48dXJsPjxsb2M+aHR0cHM6Ly93d3cud2F0Y2hoaWxsLmNhLz9mb29nYWxsZXJ5PXNoYXJlZC1zcGFjZXM8L2xvYz48bGFzdG1vZD4yMDE3LTAzLTMwVDE4OjIzOjIwWjwvbGFzdG1vZD48aW1hZ2U6aW1hZ2U+PGltYWdlOmxvYz5odHRwczovL3d3dy53YXRjaGhpbGwuY2Evd3AtY29udGVudC91cGxvYWRzLzIwMTcvMDMvMU0xQTA5MTQuanBnPC9pbWFnZTpsb2M+PGltYWdlOnRpdGxlPlBhdGlvIGF0IFdhdGNoIEhpbGwgQiZhbXA7QjwvaW1hZ2U6dGl0bGU+PGltYWdlOmNhcHRpb24+PC9pbWFnZTpjYXB0aW9uPjwvaW1hZ2U6aW1hZ2U+PC91cmw+PHVybD48bG9jPmh0dHBzOi8vd3d3LndhdGNoaGlsbC5jYS8/Zm9vZ2FsbGVyeT1zaGFyZWQtc3BhY2VzPC9sb2M+PGxhc3Rtb2Q+MjAxNy0wMy0zMFQxODoyMzoxOFo8L2xhc3Rtb2Q+PGltYWdlOmltYWdlPjxpbWFnZTpsb2M+aHR0cHM6Ly93d3cud2F0Y2hoaWxsLmNhL3dwLWNvbnRlbnQvdXBsb2Fkcy8yMDE3LzAzLzFNMUExMzU1LmpwZzwvaW1hZ2U6bG9jPjxpbWFnZTp0aXRsZT5UaGUgR3JlYXQgUm9vbTwvaW1hZ2U6dGl0bGU+PGltYWdlOmNhcHRpb24+PC9pbWFnZTpjYXB0aW9uPjwvaW1hZ2U6aW1hZ2U+PC91cmw+PHVybD48bG9jPmh0dHBzOi8vd3d3LndhdGNoaGlsbC5jYS8/Zm9vZ2FsbGVyeT1zaGFyZWQtc3BhY2VzPC9sb2M+PGxhc3Rtb2Q+MjAxNy0wMy0zMFQxODoyNDo1MVo8L2xhc3Rtb2Q+PGltYWdlOmltYWdlPjxpbWFnZTpsb2M+aHR0cHM6Ly93d3cud2F0Y2hoaWxsLmNhL3dwLWNvbnRlbnQvdXBsb2Fkcy8yMDE3LzAzLzFNMUExMzc5LmpwZzwvaW1hZ2U6bG9jPjxpbWFnZTp0aXRsZT5XYXRjaCBOZXRmbGl4IG9uIHRoZSA2MCIgQXBwbGUgVFY8L2ltYWdlOnRpdGxlPjxpbWFnZTpjYXB0aW9uPjwvaW1hZ2U6Y2FwdGlvbj48L2ltYWdlOmltYWdlPjwvdXJsPjx1cmw+PGxvYz5odHRwczovL3d3dy53YXRjaGhpbGwuY2EvP2Zvb2dhbGxlcnk9c2hhcmVkLXNwYWNlczwvbG9jPjxsYXN0bW9kPjIwMTctMDMtMzBUMTg6MjM6MTRaPC9sYXN0bW9kPjxpbWFnZTppbWFnZT48aW1hZ2U6bG9jPmh0dHBzOi8vd3d3LndhdGNoaGlsbC5jYS93cC1jb250ZW50L3VwbG9hZHMvMjAxNy8wMy8xTTFBMTM4My5qcGc8L2ltYWdlOmxvYz48aW1hZ2U6dGl0bGU+VGhlIEdyZWF0IFJvb208L2ltYWdlOnRpdGxlPjxpbWFnZTpjYXB0aW9uPjwvaW1hZ2U6Y2FwdGlvbj48L2ltYWdlOmltYWdlPjwvdXJsPjx1cmw+PGxvYz5odHRwczovL3d3dy53YXRjaGhpbGwuY2EvP2Zvb2dhbGxlcnk9c2hhcmVkLXNwYWNlczwvbG9jPjxsYXN0bW9kPjIwMTctMDMtMzBUMTg6MjM6MTJaPC9sYXN0bW9kPjxpbWFnZTppbWFnZT48aW1hZ2U6bG9jPmh0dHBzOi8vd3d3LndhdGNoaGlsbC5jYS93cC1jb250ZW50L3VwbG9hZHMvMjAxNy8wMy8xTTFBMTM4OC5qcGc8L2ltYWdlOmxvYz48aW1hZ2U6dGl0bGU+VGhlIEdyZWF0IFJvb208L2ltYWdlOnRpdGxlPjxpbWFnZTpjYXB0aW9uPjwvaW1hZ2U6Y2FwdGlvbj48L2ltYWdlOmltYWdlPjwvdXJsPjx1cmw+PGxvYz5odHRwczovL3d3dy53YXRjaGhpbGwuY2EvP2Zvb2dhbGxlcnk9c2hhcmVkLXNwYWNlczwvbG9jPjxsYXN0bW9kPjIwMTctMDMtMzBUMTg6MjM6MTFaPC9sYXN0bW9kPjxpbWFnZTppbWFnZT48aW1hZ2U6bG9jPmh0dHBzOi8vd3d3LndhdGNoaGlsbC5jYS93cC1jb250ZW50L3VwbG9hZHMvMjAxNy8wMy8xTTFBMTM3OS0xLmpwZzwvaW1hZ2U6bG9jPjxpbWFnZTp0aXRsZT5UaGUgR3JlYXQgUm9vbTwvaW1hZ2U6dGl0bGU+PGltYWdlOmNhcHRpb24+PC9pbWFnZTpjYXB0aW9uPjwvaW1hZ2U6aW1hZ2U+PC91cmw+PHVybD48bG9jPmh0dHBzOi8vd3d3LndhdGNoaGlsbC5jYS8/Zm9vZ2FsbGVyeT1zaGFyZWQtc3BhY2VzPC9sb2M+PGxhc3Rtb2Q+MjAxNy0wMy0zMFQxODoyMzowOVo8L2xhc3Rtb2Q+PGltYWdlOmltYWdlPjxpbWFnZTpsb2M+aHR0cHM6Ly93d3cud2F0Y2hoaWxsLmNhL3dwLWNvbnRlbnQvdXBsb2Fkcy8yMDE3LzAzLzFNMUExMzgzLTEuanBnPC9pbWFnZTpsb2M+PGltYWdlOnRpdGxlPlRoZSBHcmVhdCBSb29tPC9pbWFnZTp0aXRsZT48aW1hZ2U6Y2FwdGlvbj48L2ltYWdlOmNhcHRpb24+PC9pbWFnZTppbWFnZT48L3VybD48dXJsPjxsb2M+aHR0cHM6Ly93d3cud2F0Y2hoaWxsLmNhLz9mb29nYWxsZXJ5PXNoYXJlZC1zcGFjZXM8L2xvYz48bGFzdG1vZD4yMDE3LTAzLTMwVDE4OjIzOjA3WjwvbGFzdG1vZD48aW1hZ2U6aW1hZ2U+PGltYWdlOmxvYz5odHRwczovL3d3dy53YXRjaGhpbGwuY2Evd3AtY29udGVudC91cGxvYWRzLzIwMTcvMDMvMU0xQTEzODgtMS5qcGc8L2ltYWdlOmxvYz48aW1hZ2U6dGl0bGU+VGhlIEdyZWF0IFJvb208L2ltYWdlOnRpdGxlPjxpbWFnZTpjYXB0aW9uPjwvaW1hZ2U6Y2FwdGlvbj48L2ltYWdlOmltYWdlPjwvdXJsPjx1cmw+PGxvYz5odHRwczovL3d3dy53YXRjaGhpbGwuY2EvP2Zvb2dhbGxlcnk9c2hhcmVkLXNwYWNlczwvbG9jPjxsYXN0bW9kPjIwMTctMDMtMzBUMTg6MjM6MDVaPC9sYXN0bW9kPjxpbWFnZTppbWFnZT48aW1hZ2U6bG9jPmh0dHBzOi8vd3d3LndhdGNoaGlsbC5jYS93cC1jb250ZW50L3VwbG9hZHMvMjAxNy8wMy8xTTFBMTM2My5qcGc8L2ltYWdlOmxvYz48aW1hZ2U6dGl0bGU+R3JhbmQgUGlhbm8gaW4gdGhlIEdyZWF0IFJvb208L2ltYWdlOnRpdGxlPjxpbWFnZTpjYXB0aW9uPjwvaW1hZ2U6Y2FwdGlvbj48L2ltYWdlOmltYWdlPjwvdXJsPjx1cmw+PGxvYz5odHRwczovL3d3dy53YXRjaGhpbGwuY2EvP2Zvb2dhbGxlcnk9c2hhcmVkLXNwYWNlczwvbG9jPjxsYXN0bW9kPjIwMTctMDMtMzBUMTg6MjM6MDRaPC9sYXN0bW9kPjxpbWFnZTppbWFnZT48aW1hZ2U6bG9jPmh0dHBzOi8vd3d3LndhdGNoaGlsbC5jYS93cC1jb250ZW50L3VwbG9hZHMvMjAxNy8wMy8xTTFBMTYyM19iLmpwZzwvaW1hZ2U6bG9jPjxpbWFnZTp0aXRsZT5EaW5pbmcgUm9vbTwvaW1hZ2U6dGl0bGU+PGltYWdlOmNhcHRpb24+PC9pbWFnZTpjYXB0aW9uPjwvaW1hZ2U6aW1hZ2U+PC91cmw+PHVybD48bG9jPmh0dHBzOi8vd3d3LndhdGNoaGlsbC5jYS8/Zm9vZ2FsbGVyeT1zaGFyZWQtc3BhY2VzPC9sb2M+PGxhc3Rtb2Q+MjAxNy0wMy0zMFQxODoyMzowMlo8L2xhc3Rtb2Q+PGltYWdlOmltYWdlPjxpbWFnZTpsb2M+aHR0cHM6Ly93d3cud2F0Y2hoaWxsLmNhL3dwLWNvbnRlbnQvdXBsb2Fkcy8yMDE3LzAzLzFNMUExNjQwLmpwZzwvaW1hZ2U6bG9jPjxpbWFnZTp0aXRsZT5EaW5pbmcgUm9vbTwvaW1hZ2U6dGl0bGU+PGltYWdlOmNhcHRpb24+PC9pbWFnZTpjYXB0aW9uPjwvaW1hZ2U6aW1hZ2U+PC91cmw+PHVybD48bG9jPmh0dHBzOi8vd3d3LndhdGNoaGlsbC5jYS8/Zm9vZ2FsbGVyeT1hY3Rpdml0aWVzPC9sb2M+PGxhc3Rtb2Q+MjAxNy0wMy0yOVQxNjo1MzozOVo8L2xhc3Rtb2Q+PGltYWdlOmltYWdlPjxpbWFnZTpsb2M+aHR0cHM6Ly93d3cud2F0Y2hoaWxsLmNhL3dwLWNvbnRlbnQvdXBsb2Fkcy8yMDE3LzAzLzJGNDRDMzI1LS5qcGc8L2ltYWdlOmxvYz48aW1hZ2U6dGl0bGU+U3dpbW1pbmcgaW4gTGFrZSBIdXJvbjwvaW1hZ2U6dGl0bGU+PGltYWdlOmNhcHRpb24+U3dpbW1pbmcgaW4gTGFrZSBIdXJvbjwvaW1hZ2U6Y2FwdGlvbj48L2ltYWdlOmltYWdlPjwvdXJsPjx1cmw+PGxvYz5odHRwczovL3d3dy53YXRjaGhpbGwuY2EvP2Zvb2dhbGxlcnk9YWN0aXZpdGllczwvbG9jPjxsYXN0bW9kPjIwMTgtMDItMjNUMDA6NDY6MTlaPC9sYXN0bW9kPjxpbWFnZTppbWFnZT48aW1hZ2U6bG9jPmh0dHBzOi8vd3d3LndhdGNoaGlsbC5jYS93cC1jb250ZW50L3VwbG9hZHMvMjAxNy8wMy81LnBuZzwvaW1hZ2U6bG9jPjxpbWFnZTp0aXRsZT5JZiB5b3UgY2Fub2UgZG93biB0aGUgcml2ZXIuLi48L2ltYWdlOnRpdGxlPjxpbWFnZTpjYXB0aW9uPklmIHlvdSBjYW5vZSBkb3duIHRoZSByaXZlci4uLjwvaW1hZ2U6Y2FwdGlvbj48L2ltYWdlOmltYWdlPjwvdXJsPjx1cmw+PGxvYz5odHRwczovL3d3dy53YXRjaGhpbGwuY2EvP2Zvb2dhbGxlcnk9YWN0aXZpdGllczwvbG9jPjxsYXN0bW9kPjIwMTctMDMtMzBUMTg6MzA6NDJaPC9sYXN0bW9kPjxpbWFnZTppbWFnZT48aW1hZ2U6bG9jPmh0dHBzOi8vd3d3LndhdGNoaGlsbC5jYS93cC1jb250ZW50L3VwbG9hZHMvMjAxNy8wMy83LmpwZzwvaW1hZ2U6bG9jPjxpbWFnZTp0aXRsZT5MaWdodGhvdXNlIGF0IFN1bnNldDwvaW1hZ2U6dGl0bGU+PGltYWdlOmNhcHRpb24+TGlnaHRob3VzZSBhdCBTdW5zZXQsIENoYW50cnkgSXNsYW5kIGFuZCBMYWtlIEh1cm9uPC9pbWFnZTpjYXB0aW9uPjwvaW1hZ2U6aW1hZ2U+PC91cmw+PHVybD48bG9jPmh0dHBzOi8vd3d3LndhdGNoaGlsbC5jYS8/Zm9vZ2FsbGVyeT1hY3Rpdml0aWVzPC9sb2M+PGxhc3Rtb2Q+MjAxNy0wMy0yOVQxNjo1MzowM1o8L2xhc3Rtb2Q+PGltYWdlOmltYWdlPjxpbWFnZTpsb2M+aHR0cHM6Ly93d3cud2F0Y2hoaWxsLmNhL3dwLWNvbnRlbnQvdXBsb2Fkcy8yMDE3LzAzLzgucG5nPC9pbWFnZTpsb2M+PGltYWdlOnRpdGxlPkdvbGZpbmc8L2ltYWdlOnRpdGxlPjxpbWFnZTpjYXB0aW9uPkdvbGZpbmc8L2ltYWdlOmNhcHRpb24+PC9pbWFnZTppbWFnZT48L3VybD48dXJsPjxsb2M+aHR0cHM6Ly93d3cud2F0Y2hoaWxsLmNhLz9mb29nYWxsZXJ5PWFjdGl2aXRpZXM8L2xvYz48bGFzdG1vZD4yMDE3LTAzLTI5VDE2OjUyOjUxWjwvbGFzdG1vZD48aW1hZ2U6aW1hZ2U+PGltYWdlOmxvYz5odHRwczovL3d3dy53YXRjaGhpbGwuY2Evd3AtY29udGVudC91cGxvYWRzLzIwMTcvMDMvOS5wbmc8L2ltYWdlOmxvYz48aW1hZ2U6dGl0bGU+S2F5YWtpbmc8L2ltYWdlOnRpdGxlPjxpbWFnZTpjYXB0aW9uPktheWFraW5nPC9pbWFnZTpjYXB0aW9uPjwvaW1hZ2U6aW1hZ2U+PC91cmw+PHVybD48bG9jPmh0dHBzOi8vd3d3LndhdGNoaGlsbC5jYS8/Zm9vZ2FsbGVyeT1hY3Rpdml0aWVzPC9sb2M+PGxhc3Rtb2Q+MjAxNy0wMy0yOVQxNjo1MjozOVo8L2xhc3Rtb2Q+PGltYWdlOmltYWdlPjxpbWFnZTpsb2M+aHR0cHM6Ly93d3cud2F0Y2hoaWxsLmNhL3dwLWNvbnRlbnQvdXBsb2Fkcy8yMDE3LzAzLzEwLnBuZzwvaW1hZ2U6bG9jPjxpbWFnZTp0aXRsZT5TYWlsYm9hdHMgb24gTGFrZSBIdXJvbjwvaW1hZ2U6dGl0bGU+PGltYWdlOmNhcHRpb24+U2FpbGJvYXRzIG9uIExha2UgSHVyb248L2ltYWdlOmNhcHRpb24+PC9pbWFnZTppbWFnZT48L3VybD48dXJsPjxsb2M+aHR0cHM6Ly93d3cud2F0Y2hoaWxsLmNhLz9mb29nYWxsZXJ5PWFjdGl2aXRpZXM8L2xvYz48bGFzdG1vZD4yMDE3LTAzLTI5VDE2OjUyOjE4WjwvbGFzdG1vZD48aW1hZ2U6aW1hZ2U+PGltYWdlOmxvYz5odHRwczovL3d3dy53YXRjaGhpbGwuY2Evd3AtY29udGVudC91cGxvYWRzLzIwMTcvMDMvMTEuanBnPC9pbWFnZTpsb2M+PGltYWdlOnRpdGxlPlNvdXRoYW1wdG9uIEFydHMgQ2VudHJlIEFydCBTY2hvb2w8L2ltYWdlOnRpdGxlPjxpbWFnZTpjYXB0aW9uPlNvdXRoYW1wdG9uIEFydHMgQ2VudHJlIEFydCBTY2hvb2w8L2ltYWdlOmNhcHRpb24+PC9pbWFnZTppbWFnZT48L3VybD48dXJsPjxsb2M+aHR0cHM6Ly93d3cud2F0Y2hoaWxsLmNhLz9mb29nYWxsZXJ5PWFjdGl2aXRpZXM8L2xvYz48bGFzdG1vZD4yMDE3LTAzLTI5VDE2OjU1OjUyWjwvbGFzdG1vZD48aW1hZ2U6aW1hZ2U+PGltYWdlOmxvYz5odHRwczovL3d3dy53YXRjaGhpbGwuY2Evd3AtY29udGVudC91cGxvYWRzLzIwMTcvMDMvMTIuanBnPC9pbWFnZTpsb2M+PGltYWdlOnRpdGxlPlNvdXRoYW1wdG9uIFN1bW1lciBNdXNpYyBDYW1wPC9pbWFnZTp0aXRsZT48aW1hZ2U6Y2FwdGlvbj5Tb3V0aGFtcHRvbiBTdW1tZXIgTXVzaWMgQ2FtcDwvaW1hZ2U6Y2FwdGlvbj48L2ltYWdlOmltYWdlPjwvdXJsPjx1cmw+PGxvYz5odHRwczovL3d3dy53YXRjaGhpbGwuY2EvP2Zvb2dhbGxlcnk9YWN0aXZpdGllczwvbG9jPjxsYXN0bW9kPjIwMTctMDMtMjlUMTY6NTU6MjRaPC9sYXN0bW9kPjxpbWFnZTppbWFnZT48aW1hZ2U6bG9jPmh0dHBzOi8vd3d3LndhdGNoaGlsbC5jYS93cC1jb250ZW50L3VwbG9hZHMvMjAxNy8wMy8yMDE2MTAwNV8xOTAyMjgtZTE0ODk1OTA5Nzg1MDUuanBnPC9pbWFnZTpsb2M+PGltYWdlOnRpdGxlPkxha2UgSHVyb248L2ltYWdlOnRpdGxlPjxpbWFnZTpjYXB0aW9uPkxha2UgSHVyb24gPC9pbWFnZTpjYXB0aW9uPjwvaW1hZ2U6aW1hZ2U+PC91cmw+PHVybD48bG9jPmh0dHBzOi8vd3d3LndhdGNoaGlsbC5jYS8/Zm9vZ2FsbGVyeT1hY3Rpdml0aWVzPC9sb2M+PGxhc3Rtb2Q+MjAxOC0wMi0wNlQwNjo0NjoyM1o8L2xhc3Rtb2Q+PGltYWdlOmltYWdlPjxpbWFnZTpsb2M+aHR0cHM6Ly93d3cud2F0Y2hoaWxsLmNhL3dwLWNvbnRlbnQvdXBsb2Fkcy8yMDE3LzAzL0JFQkQ5NjQ2LS5qcGc8L2ltYWdlOmxvYz48aW1hZ2U6dGl0bGU+c3RlcHMgZnJvbSB0aGUgYmVhY2g8L2ltYWdlOnRpdGxlPjxpbWFnZTpjYXB0aW9uPnN0ZXBzIGZyb20gdGhlIGJlYWNoPC9pbWFnZTpjYXB0aW9uPjwvaW1hZ2U6aW1hZ2U+PC91cmw+PHVybD48bG9jPmh0dHBzOi8vd3d3LndhdGNoaGlsbC5jYS8/Zm9vZ2FsbGVyeT1hY3Rpdml0aWVzPC9sb2M+PGxhc3Rtb2Q+MjAxNy0wMy0yOVQxNjo1NTowOFo8L2xhc3Rtb2Q+PGltYWdlOmltYWdlPjxpbWFnZTpsb2M+aHR0cHM6Ly93d3cud2F0Y2hoaWxsLmNhL3dwLWNvbnRlbnQvdXBsb2Fkcy8yMDE3LzAzL2V4dGVyaW9yLmpwZzwvaW1hZ2U6bG9jPjxpbWFnZTp0aXRsZT5XYXRjaCBIaWxsIEImYW1wO0I8L2ltYWdlOnRpdGxlPjxpbWFnZTpjYXB0aW9uPldhdGNoIEhpbGwgQiZhbXA7QjwvaW1hZ2U6Y2FwdGlvbj48L2ltYWdlOmltYWdlPjwvdXJsPjx1cmw+PGxvYz5odHRwczovL3d3dy53YXRjaGhpbGwuY2EvP2Zvb2dhbGxlcnk9YWN0aXZpdGllczwvbG9jPjxsYXN0bW9kPjIwMTctMDMtMzBUMTg6Mjk6MjhaPC9sYXN0bW9kPjxpbWFnZTppbWFnZT48aW1hZ2U6bG9jPmh0dHBzOi8vd3d3LndhdGNoaGlsbC5jYS93cC1jb250ZW50L3VwbG9hZHMvMjAxNy8wMy9mcm9tLW91ci12ZXJhbmRhLmpwZzwvaW1hZ2U6bG9jPjxpbWFnZTp0aXRsZT5TdW5zZXQgb3ZlciBMYWtlIEh1cm9uIGFuZCB0aGUgU2F1Z2VlbiBSaXZlciBmcm9tIG91ciB2ZXJhbmRhIGF0IFdhdGNoIEhpbGwsIFNvdXRoYW1wdG9uLCBPbnRhcmlvPC9pbWFnZTp0aXRsZT48aW1hZ2U6Y2FwdGlvbj5mcm9tIG91ciB2ZXJhbmRhPC9pbWFnZTpjYXB0aW9uPjwvaW1hZ2U6aW1hZ2U+PC91cmw+PHVybD48bG9jPmh0dHBzOi8vd3d3LndhdGNoaGlsbC5jYS8/Zm9vZ2FsbGVyeT1hY3Rpdml0aWVzPC9sb2M+PGxhc3Rtb2Q+MjAxNy0wMy0zMFQxODoyODoyOVo8L2xhc3Rtb2Q+PGltYWdlOmltYWdlPjxpbWFnZTpsb2M+aHR0cHM6Ly93d3cud2F0Y2hoaWxsLmNhL3dwLWNvbnRlbnQvdXBsb2Fkcy8yMDE3LzAzL1Jlc2l6ZWRfMjAxNjEwMDhfMTgzODAyLmpwZzwvaW1hZ2U6bG9jPjxpbWFnZTp0aXRsZT5MaWdodGhvdXNlIG9uIExha2UgSHVyb24gbmVhciBDaGFudHJ5IElzbGFuZCwgU291dGhhbXB0b24gT250YXJpbzwvaW1hZ2U6dGl0bGU+PGltYWdlOmNhcHRpb24+TGlnaHRob3VzZTwvaW1hZ2U6Y2FwdGlvbj48L2ltYWdlOmltYWdlPjwvdXJsPjx1cmw+PGxvYz5odHRwczovL3d3dy53YXRjaGhpbGwuY2EvP2Zvb2dhbGxlcnk9YWN0aXZpdGllczwvbG9jPjxsYXN0bW9kPjIwMTctMDMtMzBUMTg6Mjc6NDJaPC9sYXN0bW9kPjxpbWFnZTppbWFnZT48aW1hZ2U6bG9jPmh0dHBzOi8vd3d3LndhdGNoaGlsbC5jYS93cC1jb250ZW50L3VwbG9hZHMvMjAxNy8wMy9yaXZlci1lMTQ4OTU5MTAzMzU4NS5qcGc8L2ltYWdlOmxvYz48aW1hZ2U6dGl0bGU+U2F1Z2VlbiBSaXZlciBTdW5zZXQgU291dGhhbXB0b24gT250YXJpbzwvaW1hZ2U6dGl0bGU+PGltYWdlOmNhcHRpb24+U2F1Z2VlbiBSaXZlciBTdW5zZXQ8L2ltYWdlOmNhcHRpb24+PC9pbWFnZTppbWFnZT48L3VybD48dXJsPjxsb2M+aHR0cHM6Ly93d3cud2F0Y2hoaWxsLmNhLz9mb29nYWxsZXJ5PWFjdGl2aXRpZXM8L2xvYz48bGFzdG1vZD4yMDE4LTAyLTA2VDA2OjQ5OjIyWjwvbGFzdG1vZD48aW1hZ2U6aW1hZ2U+PGltYWdlOmxvYz5odHRwczovL3d3dy53YXRjaGhpbGwuY2Evd3AtY29udGVudC91cGxvYWRzLzIwMTcvMDMvc3VucmlzZS5qcGc8L2ltYWdlOmxvYz48aW1hZ2U6dGl0bGU+U3VucmlzZSBmcm9tIFdhdGNoIEhpbGwgQiZhbXA7QjwvaW1hZ2U6dGl0bGU+PGltYWdlOmNhcHRpb24+U3VucmlzZSBmcm9tIFdhdGNoIEhpbGwgQiZhbXA7QjwvaW1hZ2U6Y2FwdGlvbj48L2ltYWdlOmltYWdlPjwvdXJsPjx1cmw+PGxvYz5odHRwczovL3d3dy53YXRjaGhpbGwuY2EvMW0xYTEyNjZfYi88L2xvYz48bGFzdG1vZD4yMDE3LTA0LTI2VDE3OjA3OjQ2WjwvbGFzdG1vZD48aW1hZ2U6aW1hZ2U+PGltYWdlOmxvYz5odHRwczovL3d3dy53YXRjaGhpbGwuY2Evd3AtY29udGVudC91cGxvYWRzLzIwMTcvMDMvMU0xQTEyNjZfYi5qcGc8L2ltYWdlOmxvYz48aW1hZ2U6dGl0bGU+MU0xQTEyNjZfYjwvaW1hZ2U6dGl0bGU+PGltYWdlOmNhcHRpb24+PC9pbWFnZTpjYXB0aW9uPjwvaW1hZ2U6aW1hZ2U+PC91cmw+PHVybD48bG9jPmh0dHBzOi8vd3d3LndhdGNoaGlsbC5jYS8xbTFhMTU3NS88L2xvYz48bGFzdG1vZD4yMDE3LTAzLTE1VDE5OjE1OjU5WjwvbGFzdG1vZD48aW1hZ2U6aW1hZ2U+PGltYWdlOmxvYz5odHRwczovL3d3dy53YXRjaGhpbGwuY2Evd3AtY29udGVudC91cGxvYWRzLzIwMTcvMDMvMU0xQTE1NzUuanBnPC9pbWFnZTpsb2M+PGltYWdlOnRpdGxlPjFNMUExNTc1PC9pbWFnZTp0aXRsZT48aW1hZ2U6Y2FwdGlvbj48L2ltYWdlOmNhcHRpb24+PC9pbWFnZTppbWFnZT48L3VybD48dXJsPjxsb2M+aHR0cHM6Ly93d3cud2F0Y2hoaWxsLmNhLzFtMWExMTc1LzwvbG9jPjxsYXN0bW9kPjIwMTctMDYtMjdUMTY6NDY6MTBaPC9sYXN0bW9kPjxpbWFnZTppbWFnZT48aW1hZ2U6bG9jPmh0dHBzOi8vd3d3LndhdGNoaGlsbC5jYS93cC1jb250ZW50L3VwbG9hZHMvMjAxNy8wMy8xTTFBMTE3NS5qcGc8L2ltYWdlOmxvYz48aW1hZ2U6dGl0bGU+MU0xQTExNzU8L2ltYWdlOnRpdGxlPjxpbWFnZTpjYXB0aW9uPjwvaW1hZ2U6Y2FwdGlvbj48L2ltYWdlOmltYWdlPjwvdXJsPjx1cmw+PGxvYz5odHRwczovL3d3dy53YXRjaGhpbGwuY2EvMW0xYTE0OTIvPC9sb2M+PGxhc3Rtb2Q+MjAxNy0wNC0yNlQxNzowNzo0Nlo8L2xhc3Rtb2Q+PGltYWdlOmltYWdlPjxpbWFnZTpsb2M+aHR0cHM6Ly93d3cud2F0Y2hoaWxsLmNhL3dwLWNvbnRlbnQvdXBsb2Fkcy8yMDE3LzAzLzFNMUExNDkyLmpwZzwvaW1hZ2U6bG9jPjxpbWFnZTp0aXRsZT4xTTFBMTQ5MjwvaW1hZ2U6dGl0bGU+PGltYWdlOmNhcHRpb24+PC9pbWFnZTpjYXB0aW9uPjwvaW1hZ2U6aW1hZ2U+PC91cmw+PHVybD48bG9jPmh0dHBzOi8vd3d3LndhdGNoaGlsbC5jYS8xbTFhMTUwMC88L2xvYz48bGFzdG1vZD4yMDE3LTA0LTI2VDE3OjA3OjQ2WjwvbGFzdG1vZD48aW1hZ2U6aW1hZ2U+PGltYWdlOmxvYz5odHRwczovL3d3dy53YXRjaGhpbGwuY2Evd3AtY29udGVudC91cGxvYWRzLzIwMTcvMDMvMU0xQTE1MDAuanBnPC9pbWFnZTpsb2M+PGltYWdlOnRpdGxlPjFNMUExNTAwPC9pbWFnZTp0aXRsZT48aW1hZ2U6Y2FwdGlvbj48L2ltYWdlOmNhcHRpb24+PC9pbWFnZTppbWFnZT48L3VybD48dXJsPjxsb2M+aHR0cHM6Ly93d3cud2F0Y2hoaWxsLmNhLzFtMWExNTQ5LzwvbG9jPjxsYXN0bW9kPjIwMTctMDQtMjZUMTc6MDc6NDZaPC9sYXN0bW9kPjxpbWFnZTppbWFnZT48aW1hZ2U6bG9jPmh0dHBzOi8vd3d3LndhdGNoaGlsbC5jYS93cC1jb250ZW50L3VwbG9hZHMvMjAxNy8wMy8xTTFBMTU0OS5qcGc8L2ltYWdlOmxvYz48aW1hZ2U6dGl0bGU+MU0xQTE1NDk8L2ltYWdlOnRpdGxlPjxpbWFnZTpjYXB0aW9uPjwvaW1hZ2U6Y2FwdGlvbj48L2ltYWdlOmltYWdlPjwvdXJsPjx1cmw+PGxvYz5odHRwczovL3d3dy53YXRjaGhpbGwuY2EvP2Zvb2dhbGxlcnk9c2hhcmVkLXNwYWNlczwvbG9jPjxsYXN0bW9kPjIwMTctMDMtMzBUMTg6Mjc6MDhaPC9sYXN0bW9kPjxpbWFnZTppbWFnZT48aW1hZ2U6bG9jPmh0dHBzOi8vd3d3LndhdGNoaGlsbC5jYS93cC1jb250ZW50L3VwbG9hZHMvMjAxNy8wMy8xTTFBMDc5OF9iLmpwZzwvaW1hZ2U6bG9jPjxpbWFnZTp0aXRsZT5XYXRjaCBIaWxsIEJlZCAmYW1wOyBCcmVha2Zhc3Qgb3Zlcmxvb2tzIENoYW50cnkgSXNsYW5kIG9uIExha2UgSHVyb24sIFNvdXRoYW1wdG9uIE9udGFyaW88L2ltYWdlOnRpdGxlPjxpbWFnZTpjYXB0aW9uPjwvaW1hZ2U6Y2FwdGlvbj48L2ltYWdlOmltYWdlPjwvdXJsPjx1cmw+PGxvYz5odHRwczovL3d3dy53YXRjaGhpbGwuY2EvY29udGFjdC88L2xvYz48bGFzdG1vZD4yMDE3LTAzLTMwVDE4OjI2OjM0WjwvbGFzdG1vZD48aW1hZ2U6aW1hZ2U+PGltYWdlOmxvYz5odHRwczovL3d3dy53YXRjaGhpbGwuY2Evd3AtY29udGVudC91cGxvYWRzLzIwMTcvMDMvSU1HUDA3NTYuanBnPC9pbWFnZTpsb2M+PGltYWdlOnRpdGxlPlN1ZSBDYXJydXRoZXJzIGFuZCBSaWNoYXJkIExlZSBhdCBXYXRjaCBIaWxsIEImYW1wO0I8L2ltYWdlOnRpdGxlPjxpbWFnZTpjYXB0aW9uPllvdXIgSG9zdHMsIFN1ZSAmYW1wOyBSaWNoYXJkPC9pbWFnZTpjYXB0aW9uPjwvaW1hZ2U6aW1hZ2U+PC91cmw+PHVybD48bG9jPmh0dHBzOi8vd3d3LndhdGNoaGlsbC5jYS9hYm91dC95b3VyLWhvc3RzLzwvbG9jPjxsYXN0bW9kPjIwMTctMDMtMzBUMTg6MjY6MjRaPC9sYXN0bW9kPjxpbWFnZTppbWFnZT48aW1hZ2U6bG9jPmh0dHBzOi8vd3d3LndhdGNoaGlsbC5jYS93cC1jb250ZW50L3VwbG9hZHMvMjAxNy8wMy9JTUdQMDc2MS5qcGc8L2ltYWdlOmxvYz48aW1hZ2U6dGl0bGU+U3VlIENhcnJ1dGhlcnMgYW5kIFJpY2hhcmQgTGVlIGF0IFdhdGNoIEhpbGwgQiZhbXA7QjwvaW1hZ2U6dGl0bGU+PGltYWdlOmNhcHRpb24+U3VlICZhbXA7IFJpY2hhcmQ8L2ltYWdlOmNhcHRpb24+PC9pbWFnZTppbWFnZT48L3VybD48dXJsPjxsb2M+aHR0cHM6Ly93d3cud2F0Y2hoaWxsLmNhL2FjY29tbW9kYXRpb25zLzwvbG9jPjxsYXN0bW9kPjIwMTctMDMtMjJUMTg6MDI6NTZaPC9sYXN0bW9kPjxpbWFnZTppbWFnZT48aW1hZ2U6bG9jPmh0dHBzOi8vd3d3LndhdGNoaGlsbC5jYS93cC1jb250ZW50L3VwbG9hZHMvMjAxNy8wMy9jaGFudHJ5LmpwZzwvaW1hZ2U6bG9jPjxpbWFnZTp0aXRsZT5jaGFudHJ5PC9pbWFnZTp0aXRsZT48aW1hZ2U6Y2FwdGlvbj48L2ltYWdlOmNhcHRpb24+PC9pbWFnZTppbWFnZT48L3VybD48dXJsPjxsb2M+aHR0cHM6Ly93d3cud2F0Y2hoaWxsLmNhL2FjY29tbW9kYXRpb25zLzwvbG9jPjxsYXN0bW9kPjIwMTctMDMtMjJUMTg6MDI6NThaPC9sYXN0bW9kPjxpbWFnZTppbWFnZT48aW1hZ2U6bG9jPmh0dHBzOi8vd3d3LndhdGNoaGlsbC5jYS93cC1jb250ZW50L3VwbG9hZHMvMjAxNy8wMy9odXJvbi5qcGc8L2ltYWdlOmxvYz48aW1hZ2U6dGl0bGU+aHVyb248L2ltYWdlOnRpdGxlPjxpbWFnZTpjYXB0aW9uPjwvaW1hZ2U6Y2FwdGlvbj48L2ltYWdlOmltYWdlPjwvdXJsPjx1cmw+PGxvYz5odHRwczovL3d3dy53YXRjaGhpbGwuY2EvYWNjb21tb2RhdGlvbnMvPC9sb2M+PGxhc3Rtb2Q+MjAxNy0wMy0yMlQxODowMzowMFo8L2xhc3Rtb2Q+PGltYWdlOmltYWdlPjxpbWFnZTpsb2M+aHR0cHM6Ly93d3cud2F0Y2hoaWxsLmNhL3dwLWNvbnRlbnQvdXBsb2Fkcy8yMDE3LzAzL3NhdWdlZW4uanBnPC9pbWFnZTpsb2M+PGltYWdlOnRpdGxlPnNhdWdlZW48L2ltYWdlOnRpdGxlPjxpbWFnZTpjYXB0aW9uPjwvaW1hZ2U6Y2FwdGlvbj48L2ltYWdlOmltYWdlPjwvdXJsPjx1cmw+PGxvYz5odHRwczovL3d3dy53YXRjaGhpbGwuY2EvYWNjb21tb2RhdGlvbnMvPC9sb2M+PGxhc3Rtb2Q+MjAxNy0wMy0yMlQxODoxNDo0N1o8L2xhc3Rtb2Q+PGltYWdlOmltYWdlPjxpbWFnZTpsb2M+aHR0cHM6Ly93d3cud2F0Y2hoaWxsLmNhL3dwLWNvbnRlbnQvdXBsb2Fkcy8yMDE3LzAzL3Jvb20tZGV0YWlscy5qcGc8L2ltYWdlOmxvYz48aW1hZ2U6dGl0bGU+cm9vbS1kZXRhaWxzPC9pbWFnZTp0aXRsZT48aW1hZ2U6Y2FwdGlvbj48L2ltYWdlOmNhcHRpb24+PC9pbWFnZTppbWFnZT48L3VybD48dXJsPjxsb2M+aHR0cHM6Ly93d3cud2F0Y2hoaWxsLmNhL2JiLWJ1dHRvbi88L2xvYz48bGFzdG1vZD4yMDE3LTAzLTIzVDE1OjA3OjE1WjwvbGFzdG1vZD48aW1hZ2U6aW1hZ2U+PGltYWdlOmxvYz5odHRwczovL3d3dy53YXRjaGhpbGwuY2Evd3AtY29udGVudC91cGxvYWRzLzIwMTcvMDMvQkItQnV0dG9uLmpwZzwvaW1hZ2U6bG9jPjxpbWFnZTp0aXRsZT5CJmFtcDtCLUJ1dHRvbjwvaW1hZ2U6dGl0bGU+PGltYWdlOmNhcHRpb24+PC9pbWFnZTpjYXB0aW9uPjwvaW1hZ2U6aW1hZ2U+PC91cmw+PHVybD48bG9jPmh0dHBzOi8vd3d3LndhdGNoaGlsbC5jYS9yb29tcy1idXR0b24vPC9sb2M+PGxhc3Rtb2Q+MjAxNy0wMy0yM1QxNTowNzoxOFo8L2xhc3Rtb2Q+PGltYWdlOmltYWdlPjxpbWFnZTpsb2M+aHR0cHM6Ly93d3cud2F0Y2hoaWxsLmNhL3dwLWNvbnRlbnQvdXBsb2Fkcy8yMDE3LzAzL3Jvb21zLWJ1dHRvbi5qcGc8L2ltYWdlOmxvYz48aW1hZ2U6dGl0bGU+cm9vbXMtYnV0dG9uPC9pbWFnZTp0aXRsZT48aW1hZ2U6Y2FwdGlvbj48L2ltYWdlOmNhcHRpb24+PC9pbWFnZTppbWFnZT48L3VybD48dXJsPjxsb2M+aHR0cHM6Ly93d3cud2F0Y2hoaWxsLmNhL2hvc3RzLWJ1dHRvbi88L2xvYz48bGFzdG1vZD4yMDE3LTAzLTIzVDE1OjA3OjIxWjwvbGFzdG1vZD48aW1hZ2U6aW1hZ2U+PGltYWdlOmxvYz5odHRwczovL3d3dy53YXRjaGhpbGwuY2Evd3AtY29udGVudC91cGxvYWRzLzIwMTcvMDMvaG9zdHMtYnV0dG9uLmpwZzwvaW1hZ2U6bG9jPjxpbWFnZTp0aXRsZT5ob3N0cy1idXR0b248L2ltYWdlOnRpdGxlPjxpbWFnZTpjYXB0aW9uPjwvaW1hZ2U6Y2FwdGlvbj48L2ltYWdlOmltYWdlPjwvdXJsPjx1cmw+PGxvYz5odHRwczovL3d3dy53YXRjaGhpbGwuY2EvMW0xYTY2NzEvPC9sb2M+PGxhc3Rtb2Q+MjAxNy0wMy0zMFQxODoyNjowOFo8L2xhc3Rtb2Q+PGltYWdlOmltYWdlPjxpbWFnZTpsb2M+aHR0cHM6Ly93d3cud2F0Y2hoaWxsLmNhL3dwLWNvbnRlbnQvdXBsb2Fkcy8yMDE3LzAzLzFNMUE2NjcxLmpwZzwvaW1hZ2U6bG9jPjxpbWFnZTp0aXRsZT5XYXRjaCBIaWxsIEJlZCAmYW1wOyBCcmVha2Zhc3QgLSBhIEJlYWNoIEhvdXNlIGluIFNvdXRoYW1wdG9uIE9udGFyaW88L2ltYWdlOnRpdGxlPjxpbWFnZTpjYXB0aW9uPjwvaW1hZ2U6Y2FwdGlvbj48L2ltYWdlOmltYWdlPjwvdXJsPjx1cmw+PGxvYz5odHRwczovL3d3dy53YXRjaGhpbGwuY2EvY2hhbnRyeS1idXR0b24vPC9sb2M+PGxhc3Rtb2Q+MjAxNy0wNi0yMVQxMjozNzoyMFo8L2xhc3Rtb2Q+PGltYWdlOmltYWdlPjxpbWFnZTpsb2M+aHR0cHM6Ly93d3cud2F0Y2hoaWxsLmNhL3dwLWNvbnRlbnQvdXBsb2Fkcy8yMDE3LzA2L0NoYW50cnktYnV0dG9uLmpwZzwvaW1hZ2U6bG9jPjxpbWFnZTp0aXRsZT5DaGFudHJ5IEJ1dHRvbjwvaW1hZ2U6dGl0bGU+PGltYWdlOmNhcHRpb24+PC9pbWFnZTpjYXB0aW9uPjwvaW1hZ2U6aW1hZ2U+PC91cmw+PHVybD48bG9jPmh0dHBzOi8vd3d3LndhdGNoaGlsbC5jYS9odXJvbi1idXR0b24vPC9sb2M+PGxhc3Rtb2Q+MjAxNy0wNi0yMVQxMjozNzoyMlo8L2xhc3Rtb2Q+PGltYWdlOmltYWdlPjxpbWFnZTpsb2M+aHR0cHM6Ly93d3cud2F0Y2hoaWxsLmNhL3dwLWNvbnRlbnQvdXBsb2Fkcy8yMDE3LzA2L0h1cm9uLWJ1dHRvbi5qcGc8L2ltYWdlOmxvYz48aW1hZ2U6dGl0bGU+SHVyb24gQnV0dG9uPC9pbWFnZTp0aXRsZT48aW1hZ2U6Y2FwdGlvbj48L2ltYWdlOmNhcHRpb24+PC9pbWFnZTppbWFnZT48L3VybD48dXJsPjxsb2M+aHR0cHM6Ly93d3cud2F0Y2hoaWxsLmNhL3NhdWdlZW4tYnV0dG9uLzwvbG9jPjxsYXN0bW9kPjIwMTctMDYtMjFUMTI6Mzc6MjVaPC9sYXN0bW9kPjxpbWFnZTppbWFnZT48aW1hZ2U6bG9jPmh0dHBzOi8vd3d3LndhdGNoaGlsbC5jYS93cC1jb250ZW50L3VwbG9hZHMvMjAxNy8wNi9TYXVnZWVuLWJ1dHRvbi5qcGc8L2ltYWdlOmxvYz48aW1hZ2U6dGl0bGU+U2F1Z2VlbiBCdXR0b248L2ltYWdlOnRpdGxlPjxpbWFnZTpjYXB0aW9uPjwvaW1hZ2U6Y2FwdGlvbj48L2ltYWdlOmltYWdlPjwvdXJsPjx1cmw+PGxvYz5odHRwczovL3d3dy53YXRjaGhpbGwuY2Evc2F1Z2Vlbi1vdXJob21lcy1mZWF0dXJlLzwvbG9jPjxsYXN0bW9kPjIwMTctMDYtMjdUMTY6NDU6NThaPC9sYXN0bW9kPjxpbWFnZTppbWFnZT48aW1hZ2U6bG9jPmh0dHBzOi8vd3d3LndhdGNoaGlsbC5jYS93cC1jb250ZW50L3VwbG9hZHMvMjAxNy8wNi9TYXVnZWVuLU91ckhvbWVzLUZlYXR1cmUuanBnPC9pbWFnZTpsb2M+PGltYWdlOnRpdGxlPlNhdWdlZW4gT3VySG9tZXMgRmVhdHVyZTwvaW1hZ2U6dGl0bGU+PGltYWdlOmNhcHRpb24+PC9pbWFnZTpjYXB0aW9uPjwvaW1hZ2U6aW1hZ2U+PC91cmw+PHVybD48bG9jPmh0dHBzOi8vd3d3LndhdGNoaGlsbC5jYS8xLzwvbG9jPjxsYXN0bW9kPjIwMTctMDktMThUMTY6NDk6MTlaPC9sYXN0bW9kPjxpbWFnZTppbWFnZT48aW1hZ2U6bG9jPmh0dHBzOi8vd3d3LndhdGNoaGlsbC5jYS93cC1jb250ZW50L3VwbG9hZHMvMjAxNy8wOS8xLWUxNTA1NzUzNDYzODc5LmpwZzwvaW1hZ2U6bG9jPjxpbWFnZTp0aXRsZT4xPC9pbWFnZTp0aXRsZT48aW1hZ2U6Y2FwdGlvbj48L2ltYWdlOmNhcHRpb24+PC9pbWFnZTppbWFnZT48L3VybD48dXJsPjxsb2M+aHR0cHM6Ly93d3cud2F0Y2hoaWxsLmNhLzIvPC9sb2M+PGxhc3Rtb2Q+MjAxNy0wOS0xOFQxNjo0OToyMlo8L2xhc3Rtb2Q+PGltYWdlOmltYWdlPjxpbWFnZTpsb2M+aHR0cHM6Ly93d3cud2F0Y2hoaWxsLmNhL3dwLWNvbnRlbnQvdXBsb2Fkcy8yMDE3LzA5LzItZTE1MDU3NTM0NTE1MDcuanBnPC9pbWFnZTpsb2M+PGltYWdlOnRpdGxlPjI8L2ltYWdlOnRpdGxlPjxpbWFnZTpjYXB0aW9uPjwvaW1hZ2U6Y2FwdGlvbj48L2ltYWdlOmltYWdlPjwvdXJsPjx1cmw+PGxvYz5odHRwczovL3d3dy53YXRjaGhpbGwuY2EvMy88L2xvYz48bGFzdG1vZD4yMDE3LTA5LTE4VDE2OjQ5OjI1WjwvbGFzdG1vZD48aW1hZ2U6aW1hZ2U+PGltYWdlOmxvYz5odHRwczovL3d3dy53YXRjaGhpbGwuY2Evd3AtY29udGVudC91cGxvYWRzLzIwMTcvMDkvMy1lMTUwNTc1MzQzOTczNi5qcGc8L2ltYWdlOmxvYz48aW1hZ2U6dGl0bGU+MzwvaW1hZ2U6dGl0bGU+PGltYWdlOmNhcHRpb24+PC9pbWFnZTpjYXB0aW9uPjwvaW1hZ2U6aW1hZ2U+PC91cmw+PHVybD48bG9jPmh0dHBzOi8vd3d3LndhdGNoaGlsbC5jYS80LzwvbG9jPjxsYXN0bW9kPjIwMTctMDktMThUMTY6NDk6MjhaPC9sYXN0bW9kPjxpbWFnZTppbWFnZT48aW1hZ2U6bG9jPmh0dHBzOi8vd3d3LndhdGNoaGlsbC5jYS93cC1jb250ZW50L3VwbG9hZHMvMjAxNy8wOS80LWUxNTA1NzUzNDI2MTg5LmpwZzwvaW1hZ2U6bG9jPjxpbWFnZTp0aXRsZT40PC9pbWFnZTp0aXRsZT48aW1hZ2U6Y2FwdGlvbj48L2ltYWdlOmNhcHRpb24+PC9pbWFnZTppbWFnZT48L3VybD48dXJsPjxsb2M+aHR0cHM6Ly93d3cud2F0Y2hoaWxsLmNhL2ltZ18wMTAyLzwvbG9jPjxsYXN0bW9kPjIwMTctMTAtMjZUMTc6MDA6MzFaPC9sYXN0bW9kPjxpbWFnZTppbWFnZT48aW1hZ2U6bG9jPmh0dHBzOi8vd3d3LndhdGNoaGlsbC5jYS93cC1jb250ZW50L3VwbG9hZHMvMjAxNy8xMC9JTUdfMDEwMi5qcGc8L2ltYWdlOmxvYz48aW1hZ2U6dGl0bGU+SU1HIDAxMDI8L2ltYWdlOnRpdGxlPjxpbWFnZTpjYXB0aW9uPjwvaW1hZ2U6Y2FwdGlvbj48L2ltYWdlOmltYWdlPjwvdXJsPjx1cmw+PGxvYz5odHRwczovL3d3dy53YXRjaGhpbGwuY2EvaW1nXzAwOTcvPC9sb2M+PGxhc3Rtb2Q+MjAxNy0xMC0yNlQxNzowMTo1MFo8L2xhc3Rtb2Q+PGltYWdlOmltYWdlPjxpbWFnZTpsb2M+aHR0cHM6Ly93d3cud2F0Y2hoaWxsLmNhL3dwLWNvbnRlbnQvdXBsb2Fkcy8yMDE3LzEwL0lNR18wMDk3LmpwZzwvaW1hZ2U6bG9jPjxpbWFnZTp0aXRsZT5JTUcgMDA5NzwvaW1hZ2U6dGl0bGU+PGltYWdlOmNhcHRpb24+PC9pbWFnZTpjYXB0aW9uPjwvaW1hZ2U6aW1hZ2U+PC91cmw+PHVybD48bG9jPmh0dHBzOi8vd3d3LndhdGNoaGlsbC5jYS9pbWdfMDExNS88L2xvYz48bGFzdG1vZD4yMDE3LTEwLTI2VDE3OjA1OjM0WjwvbGFzdG1vZD48aW1hZ2U6aW1hZ2U+PGltYWdlOmxvYz5odHRwczovL3d3dy53YXRjaGhpbGwuY2Evd3AtY29udGVudC91cGxvYWRzLzIwMTcvMTAvSU1HXzAxMTUuanBnPC9pbWFnZTpsb2M+PGltYWdlOnRpdGxlPklNRyAwMTE1PC9pbWFnZTp0aXRsZT48aW1hZ2U6Y2FwdGlvbj48L2ltYWdlOmNhcHRpb24+PC9pbWFnZTppbWFnZT48L3VybD48dXJsPjxsb2M+aHR0cHM6Ly93d3cud2F0Y2hoaWxsLmNhL2ltZ18wMTE0LzwvbG9jPjxsYXN0bW9kPjIwMTctMTAtMjZUMTc6MDY6NTRaPC9sYXN0bW9kPjxpbWFnZTppbWFnZT48aW1hZ2U6bG9jPmh0dHBzOi8vd3d3LndhdGNoaGlsbC5jYS93cC1jb250ZW50L3VwbG9hZHMvMjAxNy8xMC9JTUdfMDExNC5qcGc8L2ltYWdlOmxvYz48aW1hZ2U6dGl0bGU+SU1HIDAxMTQ8L2ltYWdlOnRpdGxlPjxpbWFnZTpjYXB0aW9uPjwvaW1hZ2U6Y2FwdGlvbj48L2ltYWdlOmltYWdlPjwvdXJsPjx1cmw+PGxvYz5odHRwczovL3d3dy53YXRjaGhpbGwuY2EvYWNjb21tb2RhdGlvbnMvPC9sb2M+PGxhc3Rtb2Q+MjAxNy0xMS0wM1QxNDowMTo0MFo8L2xhc3Rtb2Q+PGltYWdlOmltYWdlPjxpbWFnZTpsb2M+aHR0cHM6Ly93d3cud2F0Y2hoaWxsLmNhL3dwLWNvbnRlbnQvdXBsb2Fkcy8yMDE3LzAzL0h1cm9uLmpwZzwvaW1hZ2U6bG9jPjxpbWFnZTp0aXRsZT5IdXJvbjwvaW1hZ2U6dGl0bGU+PGltYWdlOmNhcHRpb24+PC9pbWFnZTpjYXB0aW9uPjwvaW1hZ2U6aW1hZ2U+PC91cmw+PHVybD48bG9jPmh0dHBzOi8vd3d3LndhdGNoaGlsbC5jYS9hY2NvbW1vZGF0aW9ucy88L2xvYz48bGFzdG1vZD4yMDE3LTExLTAzVDE0OjAyOjExWjwvbGFzdG1vZD48aW1hZ2U6aW1hZ2U+PGltYWdlOmxvYz5odHRwczovL3d3dy53YXRjaGhpbGwuY2Evd3AtY29udGVudC91cGxvYWRzLzIwMTcvMDMvY2hhbnRyeS0xLmpwZzwvaW1hZ2U6bG9jPjxpbWFnZTp0aXRsZT5DaGFudHJ5PC9pbWFnZTp0aXRsZT48aW1hZ2U6Y2FwdGlvbj48L2ltYWdlOmNhcHRpb24+PC9pbWFnZTppbWFnZT48L3VybD48dXJsPjxsb2M+aHR0cHM6Ly93d3cud2F0Y2hoaWxsLmNhL2FjY29tbW9kYXRpb25zLzwvbG9jPjxsYXN0bW9kPjIwMTctMTEtMDNUMTQ6MDI6NDFaPC9sYXN0bW9kPjxpbWFnZTppbWFnZT48aW1hZ2U6bG9jPmh0dHBzOi8vd3d3LndhdGNoaGlsbC5jYS93cC1jb250ZW50L3VwbG9hZHMvMjAxNy8wMy9zYXVnZWVuLTEuanBnPC9pbWFnZTpsb2M+PGltYWdlOnRpdGxlPlNhdWdlZW48L2ltYWdlOnRpdGxlPjxpbWFnZTpjYXB0aW9uPjwvaW1hZ2U6Y2FwdGlvbj48L2ltYWdlOmltYWdlPjwvdXJsPjx1cmw+PGxvYz5odHRwczovL3d3dy53YXRjaGhpbGwuY2EvYWNjb21tb2RhdGlvbnMvPC9sb2M+PGxhc3Rtb2Q+MjAxNy0xMS0wM1QxNDowMzowMFo8L2xhc3Rtb2Q+PGltYWdlOmltYWdlPjxpbWFnZTpsb2M+aHR0cHM6Ly93d3cud2F0Y2hoaWxsLmNhL3dwLWNvbnRlbnQvdXBsb2Fkcy8yMDE3LzAzL0hhcmJvdXIuanBnPC9pbWFnZTpsb2M+PGltYWdlOnRpdGxlPkhhcmJvdXI8L2ltYWdlOnRpdGxlPjxpbWFnZTpjYXB0aW9uPjwvaW1hZ2U6Y2FwdGlvbj48L2ltYWdlOmltYWdlPjwvdXJsPjx1cmw+PGxvYz5odHRwczovL3d3dy53YXRjaGhpbGwuY2EvYWNjb21tb2RhdGlvbnMvPC9sb2M+PGxhc3Rtb2Q+MjAxNy0xMS0wM1QxNDowNDowM1o8L2xhc3Rtb2Q+PGltYWdlOmltYWdlPjxpbWFnZTpsb2M+aHR0cHM6Ly93d3cud2F0Y2hoaWxsLmNhL3dwLWNvbnRlbnQvdXBsb2Fkcy8yMDE3LzAzL0h1cm9uLTEuanBnPC9pbWFnZTpsb2M+PGltYWdlOnRpdGxlPkh1cm9uPC9pbWFnZTp0aXRsZT48aW1hZ2U6Y2FwdGlvbj48L2ltYWdlOmNhcHRpb24+PC9pbWFnZTppbWFnZT48L3VybD48dXJsPjxsb2M+aHR0cHM6Ly93d3cud2F0Y2hoaWxsLmNhL2FjY29tbW9kYXRpb25zLzwvbG9jPjxsYXN0bW9kPjIwMTctMTEtMDNUMTQ6MDQ6MzJaPC9sYXN0bW9kPjxpbWFnZTppbWFnZT48aW1hZ2U6bG9jPmh0dHBzOi8vd3d3LndhdGNoaGlsbC5jYS93cC1jb250ZW50L3VwbG9hZHMvMjAxNy8wMy9jaGFudHJ5LTIuanBnPC9pbWFnZTpsb2M+PGltYWdlOnRpdGxlPkNoYW50cnk8L2ltYWdlOnRpdGxlPjxpbWFnZTpjYXB0aW9uPjwvaW1hZ2U6Y2FwdGlvbj48L2ltYWdlOmltYWdlPjwvdXJsPjx1cmw+PGxvYz5odHRwczovL3d3dy53YXRjaGhpbGwuY2EvYWNjb21tb2RhdGlvbnMvPC9sb2M+PGxhc3Rtb2Q+MjAxNy0xMS0wM1QxNDowNDo1M1o8L2xhc3Rtb2Q+PGltYWdlOmltYWdlPjxpbWFnZTpsb2M+aHR0cHM6Ly93d3cud2F0Y2hoaWxsLmNhL3dwLWNvbnRlbnQvdXBsb2Fkcy8yMDE3LzAzL2NoYW50cnktMy5qcGc8L2ltYWdlOmxvYz48aW1hZ2U6dGl0bGU+Q2hhbnRyeTwvaW1hZ2U6dGl0bGU+PGltYWdlOmNhcHRpb24+PC9pbWFnZTpjYXB0aW9uPjwvaW1hZ2U6aW1hZ2U+PC91cmw+PHVybD48bG9jPmh0dHBzOi8vd3d3LndhdGNoaGlsbC5jYS9hY2NvbW1vZGF0aW9ucy88L2xvYz48bGFzdG1vZD4yMDE3LTExLTAzVDE0OjA1OjIxWjwvbGFzdG1vZD48aW1hZ2U6aW1hZ2U+PGltYWdlOmxvYz5odHRwczovL3d3dy53YXRjaGhpbGwuY2Evd3AtY29udGVudC91cGxvYWRzLzIwMTcvMDMvSGFyYm91ci0xLmpwZzwvaW1hZ2U6bG9jPjxpbWFnZTp0aXRsZT5IYXJib3VyPC9pbWFnZTp0aXRsZT48aW1hZ2U6Y2FwdGlvbj48L2ltYWdlOmNhcHRpb24+PC9pbWFnZTppbWFnZT48L3VybD48dXJsPjxsb2M+aHR0cHM6Ly93d3cud2F0Y2hoaWxsLmNhL2ltZ18wMTA3LzwvbG9jPjxsYXN0bW9kPjIwMTgtMDItMDZUMDY6NTU6NDNaPC9sYXN0bW9kPjxpbWFnZTppbWFnZT48aW1hZ2U6bG9jPmh0dHBzOi8vd3d3LndhdGNoaGlsbC5jYS93cC1jb250ZW50L3VwbG9hZHMvMjAxOC8wMi9JTUdfMDEwNy5qcGVnPC9pbWFnZTpsb2M+PGltYWdlOnRpdGxlPlNhbnRhIHBsYXlzIHRoZSBwaWFubyBpbiB0aGUgV2F0Y2ggSGlsbCBHcmVhdCBSb29tPC9pbWFnZTp0aXRsZT48aW1hZ2U6Y2FwdGlvbj5TYW50YSBwbGF5cyB0aGUgcGlhbm8gaW4gdGhlIFdhdGNoIEhpbGwgR3JlYXQgUm9vbTwvaW1hZ2U6Y2FwdGlvbj48L2ltYWdlOmltYWdlPjwvdXJsPjx1cmw+PGxvYz5odHRwczovL3d3dy53YXRjaGhpbGwuY2EvaW1nXzIxODEvPC9sb2M+PGxhc3Rtb2Q+MjAxOC0wMi0wNlQwNjo1NDo1NVo8L2xhc3Rtb2Q+PGltYWdlOmltYWdlPjxpbWFnZTpsb2M+aHR0cHM6Ly93d3cud2F0Y2hoaWxsLmNhL3dwLWNvbnRlbnQvdXBsb2Fkcy8yMDE4LzAyL0lNR18yMTgxLWUxNTE3ODk4Njk0ODU2LmpwZzwvaW1hZ2U6bG9jPjxpbWFnZTp0aXRsZT5Tbm93LWxheWRlbiBDaHJpc3RtYXMgdHJlZSBhdCBXYXRjaCBIaWxsPC9pbWFnZTp0aXRsZT48aW1hZ2U6Y2FwdGlvbj5Tbm93LWxheWRlbiBDaHJpc3RtYXMgdHJlZSBhdCBXYXRjaCBIaWxsPC9pbWFnZTpjYXB0aW9uPjwvaW1hZ2U6aW1hZ2U+PC91cmw+PHVybD48bG9jPmh0dHBzOi8vd3d3LndhdGNoaGlsbC5jYS9pbWdfMjE4NC88L2xvYz48bGFzdG1vZD4yMDE4LTAyLTA2VDA2OjU0OjE1WjwvbGFzdG1vZD48aW1hZ2U6aW1hZ2U+PGltYWdlOmxvYz5odHRwczovL3d3dy53YXRjaGhpbGwuY2Evd3AtY29udGVudC91cGxvYWRzLzIwMTgvMDIvSU1HXzIxODQtZTE1MTc4OTg1NTE4NDEuanBnPC9pbWFnZTpsb2M+PGltYWdlOnRpdGxlPkRvb2xleSBvbiB0aGUgZnJvbnQgcG9yY2gsIHdhaXRpbmcgZm9yIENocmlzdG1hczwvaW1hZ2U6dGl0bGU+PGltYWdlOmNhcHRpb24+RG9vbGV5IG9uIHRoZSBmcm9udCBwb3JjaCwgd2FpdGluZyBmb3IgQ2hyaXN0bWFzPC9pbWFnZTpjYXB0aW9uPjwvaW1hZ2U6aW1hZ2U+PC91cmw+PHVybD48bG9jPmh0dHBzOi8vd3d3LndhdGNoaGlsbC5jYS9pbWdfMjE5My88L2xvYz48bGFzdG1vZD4yMDE4LTAyLTA2VDA2OjUzOjMyWjwvbGFzdG1vZD48aW1hZ2U6aW1hZ2U+PGltYWdlOmxvYz5odHRwczovL3d3dy53YXRjaGhpbGwuY2Evd3AtY29udGVudC91cGxvYWRzLzIwMTgvMDIvSU1HXzIxOTMtZTE1MTc4OTg0NjM2NjcuanBnPC9pbWFnZTpsb2M+PGltYWdlOnRpdGxlPkZhc3QgRnJpZW5kczwvaW1hZ2U6dGl0bGU+PGltYWdlOmNhcHRpb24+U2FudGEgbWFrZXMgYSBuZXcgYmVzdCBmcmllbmQgYXQgV2F0Y2ggSGlsbDwvaW1hZ2U6Y2FwdGlvbj48L2ltYWdlOmltYWdlPjwvdXJsPjx1cmw+PGxvYz5odHRwczovL3d3dy53YXRjaGhpbGwuY2Evd2luZWdsYXNzYXRmaXJlLzwvbG9jPjxsYXN0bW9kPjIwMTgtMDItMjFUMjI6MTc6NTJaPC9sYXN0bW9kPjxpbWFnZTppbWFnZT48aW1hZ2U6bG9jPmh0dHBzOi8vd3d3LndhdGNoaGlsbC5jYS93cC1jb250ZW50L3VwbG9hZHMvMjAxOC8wMi93aW5lZ2xhc3NhdGZpcmUuanBnPC9pbWFnZTpsb2M+PGltYWdlOnRpdGxlPldpbmVnbGFzcyBhdCBmaXJlPC9pbWFnZTp0aXRsZT48aW1hZ2U6Y2FwdGlvbj5FbmpveSBhIGJldmVyYWdlIGJ5IHRoZSBmaXJlIGluIHRoZSBldmVuaW5nLiBQaG90byBjcmVkaXQ6IFpiaWduaWV3IEJpZWxlY2s8L2ltYWdlOmNhcHRpb24+PC9pbWFnZTppbWFnZT48L3VybD48dXJsPjxsb2M+aHR0cHM6Ly93d3cud2F0Y2hoaWxsLmNhL2Fib3V0L2hpc3Rvcnktb2Ytd2F0Y2gtaGlsbC88L2xvYz48bGFzdG1vZD4yMDE4LTAyLTIyVDAyOjI3OjQ5WjwvbGFzdG1vZD48aW1hZ2U6aW1hZ2U+PGltYWdlOmxvYz5odHRwczovL3d3dy53YXRjaGhpbGwuY2Evd3AtY29udGVudC91cGxvYWRzLzIwMTgvMDIvaG91c2VvZmhpc3RvcnkuanBnPC9pbWFnZTpsb2M+PGltYWdlOnRpdGxlPkhvdXNlb2ZoaXN0b3J5PC9pbWFnZTp0aXRsZT48aW1hZ2U6Y2FwdGlvbj48L2ltYWdlOmNhcHRpb24+PC9pbWFnZTppbWFnZT48L3VybD48dXJsPjxsb2M+aHR0cHM6Ly93d3cud2F0Y2hoaWxsLmNhLz9mb29nYWxsZXJ5PWNocmlzdG1hcy1ob21lLXRvdXI8L2xvYz48bGFzdG1vZD4yMDE4LTAyLTIyVDIzOjU5OjU0WjwvbGFzdG1vZD48aW1hZ2U6aW1hZ2U+PGltYWdlOmxvYz5odHRwczovL3d3dy53YXRjaGhpbGwuY2Evd3AtY29udGVudC91cGxvYWRzLzIwMTgvMDIvQ1AtMjk5OS5qcGc8L2ltYWdlOmxvYz48aW1hZ2U6dGl0bGU+Q1AgMjk5OTwvaW1hZ2U6dGl0bGU+PGltYWdlOmNhcHRpb24+PC9pbWFnZTpjYXB0aW9uPjwvaW1hZ2U6aW1hZ2U+PC91cmw+PHVybD48bG9jPmh0dHBzOi8vd3d3LndhdGNoaGlsbC5jYS8/Zm9vZ2FsbGVyeT1jaHJpc3RtYXMtaG9tZS10b3VyPC9sb2M+PGxhc3Rtb2Q+MjAxOC0wMi0yM1QwMDowMDowMVo8L2xhc3Rtb2Q+PGltYWdlOmltYWdlPjxpbWFnZTpsb2M+aHR0cHM6Ly93d3cud2F0Y2hoaWxsLmNhL3dwLWNvbnRlbnQvdXBsb2Fkcy8yMDE4LzAyL0NQLTMwMTIuanBnPC9pbWFnZTpsb2M+PGltYWdlOnRpdGxlPkNQIDMwMTI8L2ltYWdlOnRpdGxlPjxpbWFnZTpjYXB0aW9uPjwvaW1hZ2U6Y2FwdGlvbj48L2ltYWdlOmltYWdlPjwvdXJsPjx1cmw+PGxvYz5odHRwczovL3d3dy53YXRjaGhpbGwuY2EvP2Zvb2dhbGxlcnk9Y2hyaXN0bWFzLWhvbWUtdG91cjwvbG9jPjxsYXN0bW9kPjIwMTgtMDItMjNUMDA6MDA6MDRaPC9sYXN0bW9kPjxpbWFnZTppbWFnZT48aW1hZ2U6bG9jPmh0dHBzOi8vd3d3LndhdGNoaGlsbC5jYS93cC1jb250ZW50L3VwbG9hZHMvMjAxOC8wMi9DUC0zMDE1LmpwZzwvaW1hZ2U6bG9jPjxpbWFnZTp0aXRsZT5DUCAzMDE1PC9pbWFnZTp0aXRsZT48aW1hZ2U6Y2FwdGlvbj48L2ltYWdlOmNhcHRpb24+PC9pbWFnZTppbWFnZT48L3VybD48dXJsPjxsb2M+aHR0cHM6Ly93d3cud2F0Y2hoaWxsLmNhLz9mb29nYWxsZXJ5PWNocmlzdG1hcy1ob21lLXRvdXI8L2xvYz48bGFzdG1vZD4yMDE4LTAyLTIzVDAwOjAwOjA3WjwvbGFzdG1vZD48aW1hZ2U6aW1hZ2U+PGltYWdlOmxvYz5odHRwczovL3d3dy53YXRjaGhpbGwuY2Evd3AtY29udGVudC91cGxvYWRzLzIwMTgvMDIvQ1AtMzAyMy5qcGc8L2ltYWdlOmxvYz48aW1hZ2U6dGl0bGU+Q1AgMzAyMzwvaW1hZ2U6dGl0bGU+PGltYWdlOmNhcHRpb24+PC9pbWFnZTpjYXB0aW9uPjwvaW1hZ2U6aW1hZ2U+PC91cmw+PHVybD48bG9jPmh0dHBzOi8vd3d3LndhdGNoaGlsbC5jYS8/Zm9vZ2FsbGVyeT1jaHJpc3RtYXMtaG9tZS10b3VyPC9sb2M+PGxhc3Rtb2Q+MjAxOC0wMi0yM1QwMDowMDowOVo8L2xhc3Rtb2Q+PGltYWdlOmltYWdlPjxpbWFnZTpsb2M+aHR0cHM6Ly93d3cud2F0Y2hoaWxsLmNhL3dwLWNvbnRlbnQvdXBsb2Fkcy8yMDE4LzAyL0NQLTMwMjYuanBnPC9pbWFnZTpsb2M+PGltYWdlOnRpdGxlPkNQIDMwMjY8L2ltYWdlOnRpdGxlPjxpbWFnZTpjYXB0aW9uPjwvaW1hZ2U6Y2FwdGlvbj48L2ltYWdlOmltYWdlPjwvdXJsPjx1cmw+PGxvYz5odHRwczovL3d3dy53YXRjaGhpbGwuY2EvP2Zvb2dhbGxlcnk9Y2hyaXN0bWFzLWhvbWUtdG91cjwvbG9jPjxsYXN0bW9kPjIwMTgtMDItMjNUMDA6MDA6MTFaPC9sYXN0bW9kPjxpbWFnZTppbWFnZT48aW1hZ2U6bG9jPmh0dHBzOi8vd3d3LndhdGNoaGlsbC5jYS93cC1jb250ZW50L3VwbG9hZHMvMjAxOC8wMi9DUC0zMDMzLmpwZzwvaW1hZ2U6bG9jPjxpbWFnZTp0aXRsZT5DUCAzMDMzPC9pbWFnZTp0aXRsZT48aW1hZ2U6Y2FwdGlvbj48L2ltYWdlOmNhcHRpb24+PC9pbWFnZTppbWFnZT48L3VybD48dXJsPjxsb2M+aHR0cHM6Ly93d3cud2F0Y2hoaWxsLmNhLz9mb29nYWxsZXJ5PWNocmlzdG1hcy1ob21lLXRvdXI8L2xvYz48bGFzdG1vZD4yMDE4LTAyLTIzVDAwOjAwOjE0WjwvbGFzdG1vZD48aW1hZ2U6aW1hZ2U+PGltYWdlOmxvYz5odHRwczovL3d3dy53YXRjaGhpbGwuY2Evd3AtY29udGVudC91cGxvYWRzLzIwMTgvMDIvQ1AtMzA0NS5qcGc8L2ltYWdlOmxvYz48aW1hZ2U6dGl0bGU+Q1AgMzA0NTwvaW1hZ2U6dGl0bGU+PGltYWdlOmNhcHRpb24+PC9pbWFnZTpjYXB0aW9uPjwvaW1hZ2U6aW1hZ2U+PC91cmw+PHVybD48bG9jPmh0dHBzOi8vd3d3LndhdGNoaGlsbC5jYS8/Zm9vZ2FsbGVyeT1jaHJpc3RtYXMtaG9tZS10b3VyPC9sb2M+PGxhc3Rtb2Q+MjAxOC0wMi0yM1QwMDowMDoxN1o8L2xhc3Rtb2Q+PGltYWdlOmltYWdlPjxpbWFnZTpsb2M+aHR0cHM6Ly93d3cud2F0Y2hoaWxsLmNhL3dwLWNvbnRlbnQvdXBsb2Fkcy8yMDE4LzAyL0NQLTMwNjQuanBnPC9pbWFnZTpsb2M+PGltYWdlOnRpdGxlPkNQIDMwNjQ8L2ltYWdlOnRpdGxlPjxpbWFnZTpjYXB0aW9uPjwvaW1hZ2U6Y2FwdGlvbj48L2ltYWdlOmltYWdlPjwvdXJsPjx1cmw+PGxvYz5odHRwczovL3d3dy53YXRjaGhpbGwuY2EvP2Zvb2dhbGxlcnk9Y2hyaXN0bWFzLWhvbWUtdG91cjwvbG9jPjxsYXN0bW9kPjIwMTgtMDItMjNUMDA6MDA6MjBaPC9sYXN0bW9kPjxpbWFnZTppbWFnZT48aW1hZ2U6bG9jPmh0dHBzOi8vd3d3LndhdGNoaGlsbC5jYS93cC1jb250ZW50L3VwbG9hZHMvMjAxOC8wMi9DUC0zMDcyLmpwZzwvaW1hZ2U6bG9jPjxpbWFnZTp0aXRsZT5DUCAzMDcyPC9pbWFnZTp0aXRsZT48aW1hZ2U6Y2FwdGlvbj48L2ltYWdlOmNhcHRpb24+PC9pbWFnZTppbWFnZT48L3VybD48dXJsPjxsb2M+aHR0cHM6Ly93d3cud2F0Y2hoaWxsLmNhLz9mb29nYWxsZXJ5PWNocmlzdG1hcy1ob21lLXRvdXI8L2xvYz48bGFzdG1vZD4yMDE4LTAyLTIzVDAwOjAwOjIyWjwvbGFzdG1vZD48aW1hZ2U6aW1hZ2U+PGltYWdlOmxvYz5odHRwczovL3d3dy53YXRjaGhpbGwuY2Evd3AtY29udGVudC91cGxvYWRzLzIwMTgvMDIvQ1AtMzA4My5qcGc8L2ltYWdlOmxvYz48aW1hZ2U6dGl0bGU+Q1AgMzA4MzwvaW1hZ2U6dGl0bGU+PGltYWdlOmNhcHRpb24+PC9pbWFnZTpjYXB0aW9uPjwvaW1hZ2U6aW1hZ2U+PC91cmw+PHVybD48bG9jPmh0dHBzOi8vd3d3LndhdGNoaGlsbC5jYS8/Zm9vZ2FsbGVyeT1jaHJpc3RtYXMtaG9tZS10b3VyPC9sb2M+PGxhc3Rtb2Q+MjAxOC0wMi0yM1QwMDowMDoyNVo8L2xhc3Rtb2Q+PGltYWdlOmltYWdlPjxpbWFnZTpsb2M+aHR0cHM6Ly93d3cud2F0Y2hoaWxsLmNhL3dwLWNvbnRlbnQvdXBsb2Fkcy8yMDE4LzAyL0NQLTMwOTguanBnPC9pbWFnZTpsb2M+PGltYWdlOnRpdGxlPkNQIDMwOTg8L2ltYWdlOnRpdGxlPjxpbWFnZTpjYXB0aW9uPjwvaW1hZ2U6Y2FwdGlvbj48L2ltYWdlOmltYWdlPjwvdXJsPjx1cmw+PGxvYz5odHRwczovL3d3dy53YXRjaGhpbGwuY2EvP2Zvb2dhbGxlcnk9Y2hyaXN0bWFzLWhvbWUtdG91cjwvbG9jPjxsYXN0bW9kPjIwMTgtMDItMjNUMDA6MDA6MjdaPC9sYXN0bW9kPjxpbWFnZTppbWFnZT48aW1hZ2U6bG9jPmh0dHBzOi8vd3d3LndhdGNoaGlsbC5jYS93cC1jb250ZW50L3VwbG9hZHMvMjAxOC8wMi9DUC0zMTAxLmpwZzwvaW1hZ2U6bG9jPjxpbWFnZTp0aXRsZT5DUCAzMTAxPC9pbWFnZTp0aXRsZT48aW1hZ2U6Y2FwdGlvbj48L2ltYWdlOmNhcHRpb24+PC9pbWFnZTppbWFnZT48L3VybD48dXJsPjxsb2M+aHR0cHM6Ly93d3cud2F0Y2hoaWxsLmNhLz9mb29nYWxsZXJ5PWNocmlzdG1hcy1ob21lLXRvdXI8L2xvYz48bGFzdG1vZD4yMDE4LTAyLTIzVDAwOjAwOjMwWjwvbGFzdG1vZD48aW1hZ2U6aW1hZ2U+PGltYWdlOmxvYz5odHRwczovL3d3dy53YXRjaGhpbGwuY2Evd3AtY29udGVudC91cGxvYWRzLzIwMTgvMDIvQ1AtMzEwMy5qcGc8L2ltYWdlOmxvYz48aW1hZ2U6dGl0bGU+Q1AgMzEwMzwvaW1hZ2U6dGl0bGU+PGltYWdlOmNhcHRpb24+PC9pbWFnZTpjYXB0aW9uPjwvaW1hZ2U6aW1hZ2U+PC91cmw+PHVybD48bG9jPmh0dHBzOi8vd3d3LndhdGNoaGlsbC5jYS8/Zm9vZ2FsbGVyeT1jaHJpc3RtYXMtaG9tZS10b3VyPC9sb2M+PGxhc3Rtb2Q+MjAxOC0wMi0yM1QwMDowMDozM1o8L2xhc3Rtb2Q+PGltYWdlOmltYWdlPjxpbWFnZTpsb2M+aHR0cHM6Ly93d3cud2F0Y2hoaWxsLmNhL3dwLWNvbnRlbnQvdXBsb2Fkcy8yMDE4LzAyL0NQLTMxMDguanBnPC9pbWFnZTpsb2M+PGltYWdlOnRpdGxlPkNQIDMxMDg8L2ltYWdlOnRpdGxlPjxpbWFnZTpjYXB0aW9uPjwvaW1hZ2U6Y2FwdGlvbj48L2ltYWdlOmltYWdlPjwvdXJsPjx1cmw+PGxvYz5odHRwczovL3d3dy53YXRjaGhpbGwuY2EvP2Zvb2dhbGxlcnk9Y2hyaXN0bWFzLWhvbWUtdG91cjwvbG9jPjxsYXN0bW9kPjIwMTgtMDItMjNUMDA6MDA6MzVaPC9sYXN0bW9kPjxpbWFnZTppbWFnZT48aW1hZ2U6bG9jPmh0dHBzOi8vd3d3LndhdGNoaGlsbC5jYS93cC1jb250ZW50L3VwbG9hZHMvMjAxOC8wMi9DUC0zMTEzLmpwZzwvaW1hZ2U6bG9jPjxpbWFnZTp0aXRsZT5DUCAzMTEzPC9pbWFnZTp0aXRsZT48aW1hZ2U6Y2FwdGlvbj48L2ltYWdlOmNhcHRpb24+PC9pbWFnZTppbWFnZT48L3VybD48dXJsPjxsb2M+aHR0cHM6Ly93d3cud2F0Y2hoaWxsLmNhLz9mb29nYWxsZXJ5PWNocmlzdG1hcy1ob21lLXRvdXI8L2xvYz48bGFzdG1vZD4yMDE4LTAyLTIzVDAwOjAwOjM3WjwvbGFzdG1vZD48aW1hZ2U6aW1hZ2U+PGltYWdlOmxvYz5odHRwczovL3d3dy53YXRjaGhpbGwuY2Evd3AtY29udGVudC91cGxvYWRzLzIwMTgvMDIvQ1AtMzExNS5qcGc8L2ltYWdlOmxvYz48aW1hZ2U6dGl0bGU+Q1AgMzExNTwvaW1hZ2U6dGl0bGU+PGltYWdlOmNhcHRpb24+PC9pbWFnZTpjYXB0aW9uPjwvaW1hZ2U6aW1hZ2U+PC91cmw+PHVybD48bG9jPmh0dHBzOi8vd3d3LndhdGNoaGlsbC5jYS8/Zm9vZ2FsbGVyeT1jaHJpc3RtYXMtaG9tZS10b3VyPC9sb2M+PGxhc3Rtb2Q+MjAxOC0wMi0yM1QwMDowMDozOVo8L2xhc3Rtb2Q+PGltYWdlOmltYWdlPjxpbWFnZTpsb2M+aHR0cHM6Ly93d3cud2F0Y2hoaWxsLmNhL3dwLWNvbnRlbnQvdXBsb2Fkcy8yMDE4LzAyL0NQLTMxMjQuanBnPC9pbWFnZTpsb2M+PGltYWdlOnRpdGxlPkNQIDMxMjQ8L2ltYWdlOnRpdGxlPjxpbWFnZTpjYXB0aW9uPjwvaW1hZ2U6Y2FwdGlvbj48L2ltYWdlOmltYWdlPjwvdXJsPjx1cmw+PGxvYz5odHRwczovL3d3dy53YXRjaGhpbGwuY2EvP2Zvb2dhbGxlcnk9Y2hyaXN0bWFzLWhvbWUtdG91cjwvbG9jPjxsYXN0bW9kPjIwMTgtMDItMjNUMDA6MDA6NDJaPC9sYXN0bW9kPjxpbWFnZTppbWFnZT48aW1hZ2U6bG9jPmh0dHBzOi8vd3d3LndhdGNoaGlsbC5jYS93cC1jb250ZW50L3VwbG9hZHMvMjAxOC8wMi9DUC0zMTI4LmpwZzwvaW1hZ2U6bG9jPjxpbWFnZTp0aXRsZT5DUCAzMTI4PC9pbWFnZTp0aXRsZT48aW1hZ2U6Y2FwdGlvbj48L2ltYWdlOmNhcHRpb24+PC9pbWFnZTppbWFnZT48L3VybD48dXJsPjxsb2M+aHR0cHM6Ly93d3cud2F0Y2hoaWxsLmNhLz9mb29nYWxsZXJ5PWNocmlzdG1hcy1ob21lLXRvdXI8L2xvYz48bGFzdG1vZD4yMDE4LTAyLTIzVDAwOjAwOjQ0WjwvbGFzdG1vZD48aW1hZ2U6aW1hZ2U+PGltYWdlOmxvYz5odHRwczovL3d3dy53YXRjaGhpbGwuY2Evd3AtY29udGVudC91cGxvYWRzLzIwMTgvMDIvQ1AtMzEzNy5qcGc8L2ltYWdlOmxvYz48aW1hZ2U6dGl0bGU+Q1AgMzEzNzwvaW1hZ2U6dGl0bGU+PGltYWdlOmNhcHRpb24+PC9pbWFnZTpjYXB0aW9uPjwvaW1hZ2U6aW1hZ2U+PC91cmw+PHVybD48bG9jPmh0dHBzOi8vd3d3LndhdGNoaGlsbC5jYS8/Zm9vZ2FsbGVyeT1jaHJpc3RtYXMtaG9tZS10b3VyPC9sb2M+PGxhc3Rtb2Q+MjAxOC0wMi0yM1QwMDowMDo0N1o8L2xhc3Rtb2Q+PGltYWdlOmltYWdlPjxpbWFnZTpsb2M+aHR0cHM6Ly93d3cud2F0Y2hoaWxsLmNhL3dwLWNvbnRlbnQvdXBsb2Fkcy8yMDE4LzAyL0NQLTMxNDQuanBnPC9pbWFnZTpsb2M+PGltYWdlOnRpdGxlPkNQIDMxNDQ8L2ltYWdlOnRpdGxlPjxpbWFnZTpjYXB0aW9uPjwvaW1hZ2U6Y2FwdGlvbj48L2ltYWdlOmltYWdlPjwvdXJsPjx1cmw+PGxvYz5odHRwczovL3d3dy53YXRjaGhpbGwuY2EvP2Zvb2dhbGxlcnk9Y2hyaXN0bWFzLWhvbWUtdG91cjwvbG9jPjxsYXN0bW9kPjIwMTgtMDItMjNUMDA6MDA6NDlaPC9sYXN0bW9kPjxpbWFnZTppbWFnZT48aW1hZ2U6bG9jPmh0dHBzOi8vd3d3LndhdGNoaGlsbC5jYS93cC1jb250ZW50L3VwbG9hZHMvMjAxOC8wMi9DUC0zMTQ4LmpwZzwvaW1hZ2U6bG9jPjxpbWFnZTp0aXRsZT5DUCAzMTQ4PC9pbWFnZTp0aXRsZT48aW1hZ2U6Y2FwdGlvbj48L2ltYWdlOmNhcHRpb24+PC9pbWFnZTppbWFnZT48L3VybD48dXJsPjxsb2M+aHR0cHM6Ly93d3cud2F0Y2hoaWxsLmNhLz9mb29nYWxsZXJ5PWNocmlzdG1hcy1ob21lLXRvdXI8L2xvYz48bGFzdG1vZD4yMDE4LTAyLTIzVDAwOjAwOjUxWjwvbGFzdG1vZD48aW1hZ2U6aW1hZ2U+PGltYWdlOmxvYz5odHRwczovL3d3dy53YXRjaGhpbGwuY2Evd3AtY29udGVudC91cGxvYWRzLzIwMTgvMDIvQ1AtMzE1NC5qcGc8L2ltYWdlOmxvYz48aW1hZ2U6dGl0bGU+Q1AgMzE1NDwvaW1hZ2U6dGl0bGU+PGltYWdlOmNhcHRpb24+PC9pbWFnZTpjYXB0aW9uPjwvaW1hZ2U6aW1hZ2U+PC91cmw+PHVybD48bG9jPmh0dHBzOi8vd3d3LndhdGNoaGlsbC5jYS8/Zm9vZ2FsbGVyeT1jaHJpc3RtYXMtaG9tZS10b3VyPC9sb2M+PGxhc3Rtb2Q+MjAxOC0wMi0yM1QwMDowMDo1NFo8L2xhc3Rtb2Q+PGltYWdlOmltYWdlPjxpbWFnZTpsb2M+aHR0cHM6Ly93d3cud2F0Y2hoaWxsLmNhL3dwLWNvbnRlbnQvdXBsb2Fkcy8yMDE4LzAyL0NQLTMxNTguanBnPC9pbWFnZTpsb2M+PGltYWdlOnRpdGxlPkNQIDMxNTg8L2ltYWdlOnRpdGxlPjxpbWFnZTpjYXB0aW9uPjwvaW1hZ2U6Y2FwdGlvbj48L2ltYWdlOmltYWdlPjwvdXJsPjx1cmw+PGxvYz5odHRwczovL3d3dy53YXRjaGhpbGwuY2EvP2Zvb2dhbGxlcnk9Y2hyaXN0bWFzLWhvbWUtdG91cjwvbG9jPjxsYXN0bW9kPjIwMTgtMDItMjNUMDA6MDA6NTZaPC9sYXN0bW9kPjxpbWFnZTppbWFnZT48aW1hZ2U6bG9jPmh0dHBzOi8vd3d3LndhdGNoaGlsbC5jYS93cC1jb250ZW50L3VwbG9hZHMvMjAxOC8wMi9DUC0zMTYzLmpwZzwvaW1hZ2U6bG9jPjxpbWFnZTp0aXRsZT5DUCAzMTYzPC9pbWFnZTp0aXRsZT48aW1hZ2U6Y2FwdGlvbj48L2ltYWdlOmNhcHRpb24+PC9pbWFnZTppbWFnZT48L3VybD48dXJsPjxsb2M+aHR0cHM6Ly93d3cud2F0Y2hoaWxsLmNhLz9mb29nYWxsZXJ5PWNocmlzdG1hcy1ob21lLXRvdXI8L2xvYz48bGFzdG1vZD4yMDE4LTAyLTIzVDAwOjAwOjU5WjwvbGFzdG1vZD48aW1hZ2U6aW1hZ2U+PGltYWdlOmxvYz5odHRwczovL3d3dy53YXRjaGhpbGwuY2Evd3AtY29udGVudC91cGxvYWRzLzIwMTgvMDIvQ1AtMzE3Ny5qcGc8L2ltYWdlOmxvYz48aW1hZ2U6dGl0bGU+Q1AgMzE3NzwvaW1hZ2U6dGl0bGU+PGltYWdlOmNhcHRpb24+PC9pbWFnZTpjYXB0aW9uPjwvaW1hZ2U6aW1hZ2U+PC91cmw+PHVybD48bG9jPmh0dHBzOi8vd3d3LndhdGNoaGlsbC5jYS8/Zm9vZ2FsbGVyeT1jaHJpc3RtYXMtaG9tZS10b3VyPC9sb2M+PGxhc3Rtb2Q+MjAxOC0wMi0yM1QwMDowMTowMVo8L2xhc3Rtb2Q+PGltYWdlOmltYWdlPjxpbWFnZTpsb2M+aHR0cHM6Ly93d3cud2F0Y2hoaWxsLmNhL3dwLWNvbnRlbnQvdXBsb2Fkcy8yMDE4LzAyL0NQLTMyMDYuanBnPC9pbWFnZTpsb2M+PGltYWdlOnRpdGxlPkNQIDMyMDY8L2ltYWdlOnRpdGxlPjxpbWFnZTpjYXB0aW9uPjwvaW1hZ2U6Y2FwdGlvbj48L2ltYWdlOmltYWdlPjwvdXJsPjx1cmw+PGxvYz5odHRwczovL3d3dy53YXRjaGhpbGwuY2EvP2Zvb2dhbGxlcnk9Y2hyaXN0bWFzLWhvbWUtdG91cjwvbG9jPjxsYXN0bW9kPjIwMTgtMDItMjNUMDA6MDE6MDNaPC9sYXN0bW9kPjxpbWFnZTppbWFnZT48aW1hZ2U6bG9jPmh0dHBzOi8vd3d3LndhdGNoaGlsbC5jYS93cC1jb250ZW50L3VwbG9hZHMvMjAxOC8wMi9DUC0zMjIxLmpwZzwvaW1hZ2U6bG9jPjxpbWFnZTp0aXRsZT5DUCAzMjIxPC9pbWFnZTp0aXRsZT48aW1hZ2U6Y2FwdGlvbj48L2ltYWdlOmNhcHRpb24+PC9pbWFnZTppbWFnZT48L3VybD48dXJsPjxsb2M+aHR0cHM6Ly93d3cud2F0Y2hoaWxsLmNhLz9mb29nYWxsZXJ5PWNocmlzdG1hcy1ob21lLXRvdXI8L2xvYz48bGFzdG1vZD4yMDE4LTAyLTIzVDAwOjAxOjA2WjwvbGFzdG1vZD48aW1hZ2U6aW1hZ2U+PGltYWdlOmxvYz5odHRwczovL3d3dy53YXRjaGhpbGwuY2Evd3AtY29udGVudC91cGxvYWRzLzIwMTgvMDIvQ1AtMzIyOC5qcGc8L2ltYWdlOmxvYz48aW1hZ2U6dGl0bGU+Q1AgMzIyODwvaW1hZ2U6dGl0bGU+PGltYWdlOmNhcHRpb24+PC9pbWFnZTpjYXB0aW9uPjwvaW1hZ2U6aW1hZ2U+PC91cmw+PHVybD48bG9jPmh0dHBzOi8vd3d3LndhdGNoaGlsbC5jYS8/Zm9vZ2FsbGVyeT1jaHJpc3RtYXMtaG9tZS10b3VyPC9sb2M+PGxhc3Rtb2Q+MjAxOC0wMi0yM1QwMDowMTowOFo8L2xhc3Rtb2Q+PGltYWdlOmltYWdlPjxpbWFnZTpsb2M+aHR0cHM6Ly93d3cud2F0Y2hoaWxsLmNhL3dwLWNvbnRlbnQvdXBsb2Fkcy8yMDE4LzAyL0NQLTMyMjkuanBnPC9pbWFnZTpsb2M+PGltYWdlOnRpdGxlPkNQIDMyMjk8L2ltYWdlOnRpdGxlPjxpbWFnZTpjYXB0aW9uPjwvaW1hZ2U6Y2FwdGlvbj48L2ltYWdlOmltYWdlPjwvdXJsPjx1cmw+PGxvYz5odHRwczovL3d3dy53YXRjaGhpbGwuY2EvP2Zvb2dhbGxlcnk9Y2hyaXN0bWFzLWhvbWUtdG91cjwvbG9jPjxsYXN0bW9kPjIwMTgtMDItMjNUMDA6MDE6MTFaPC9sYXN0bW9kPjxpbWFnZTppbWFnZT48aW1hZ2U6bG9jPmh0dHBzOi8vd3d3LndhdGNoaGlsbC5jYS93cC1jb250ZW50L3VwbG9hZHMvMjAxOC8wMi9DUC0zMjMyLmpwZzwvaW1hZ2U6bG9jPjxpbWFnZTp0aXRsZT5DUCAzMjMyPC9pbWFnZTp0aXRsZT48aW1hZ2U6Y2FwdGlvbj48L2ltYWdlOmNhcHRpb24+PC9pbWFnZTppbWFnZT48L3VybD48dXJsPjxsb2M+aHR0cHM6Ly93d3cud2F0Y2hoaWxsLmNhLz9mb29nYWxsZXJ5PWNocmlzdG1hcy1ob21lLXRvdXI8L2xvYz48bGFzdG1vZD4yMDE4LTAyLTIzVDAwOjAxOjEzWjwvbGFzdG1vZD48aW1hZ2U6aW1hZ2U+PGltYWdlOmxvYz5odHRwczovL3d3dy53YXRjaGhpbGwuY2Evd3AtY29udGVudC91cGxvYWRzLzIwMTgvMDIvQ1AtMzI1MC5qcGc8L2ltYWdlOmxvYz48aW1hZ2U6dGl0bGU+Q1AgMzI1MDwvaW1hZ2U6dGl0bGU+PGltYWdlOmNhcHRpb24+PC9pbWFnZTpjYXB0aW9uPjwvaW1hZ2U6aW1hZ2U+PC91cmw+PHVybD48bG9jPmh0dHBzOi8vd3d3LndhdGNoaGlsbC5jYS8/Zm9vZ2FsbGVyeT1jaHJpc3RtYXMtaG9tZS10b3VyPC9sb2M+PGxhc3Rtb2Q+MjAxOC0wMi0yM1QwMDowMToxNlo8L2xhc3Rtb2Q+PGltYWdlOmltYWdlPjxpbWFnZTpsb2M+aHR0cHM6Ly93d3cud2F0Y2hoaWxsLmNhL3dwLWNvbnRlbnQvdXBsb2Fkcy8yMDE4LzAyL0NQLTMyNTQuanBnPC9pbWFnZTpsb2M+PGltYWdlOnRpdGxlPkNQIDMyNTQ8L2ltYWdlOnRpdGxlPjxpbWFnZTpjYXB0aW9uPjwvaW1hZ2U6Y2FwdGlvbj48L2ltYWdlOmltYWdlPjwvdXJsPjx1cmw+PGxvYz5odHRwczovL3d3dy53YXRjaGhpbGwuY2EvP2Zvb2dhbGxlcnk9Y2hyaXN0bWFzLWhvbWUtdG91cjwvbG9jPjxsYXN0bW9kPjIwMTgtMDItMjNUMDA6MDE6MThaPC9sYXN0bW9kPjxpbWFnZTppbWFnZT48aW1hZ2U6bG9jPmh0dHBzOi8vd3d3LndhdGNoaGlsbC5jYS93cC1jb250ZW50L3VwbG9hZHMvMjAxOC8wMi9DUC0zMjY4LmpwZzwvaW1hZ2U6bG9jPjxpbWFnZTp0aXRsZT5DUCAzMjY4PC9pbWFnZTp0aXRsZT48aW1hZ2U6Y2FwdGlvbj48L2ltYWdlOmNhcHRpb24+PC9pbWFnZTppbWFnZT48L3VybD48dXJsPjxsb2M+aHR0cHM6Ly93d3cud2F0Y2hoaWxsLmNhLz9mb29nYWxsZXJ5PWNocmlzdG1hcy1ob21lLXRvdXI8L2xvYz48bGFzdG1vZD4yMDE4LTAyLTIzVDAwOjAxOjIxWjwvbGFzdG1vZD48aW1hZ2U6aW1hZ2U+PGltYWdlOmxvYz5odHRwczovL3d3dy53YXRjaGhpbGwuY2Evd3AtY29udGVudC91cGxvYWRzLzIwMTgvMDIvQ1AtMzI3Mi5qcGc8L2ltYWdlOmxvYz48aW1hZ2U6dGl0bGU+Q1AgMzI3MjwvaW1hZ2U6dGl0bGU+PGltYWdlOmNhcHRpb24+PC9pbWFnZTpjYXB0aW9uPjwvaW1hZ2U6aW1hZ2U+PC91cmw+PHVybD48bG9jPmh0dHBzOi8vd3d3LndhdGNoaGlsbC5jYS8/Zm9vZ2FsbGVyeT1jaHJpc3RtYXMtaG9tZS10b3VyPC9sb2M+PGxhc3Rtb2Q+MjAxOC0wMi0yM1QwMDowMToyM1o8L2xhc3Rtb2Q+PGltYWdlOmltYWdlPjxpbWFnZTpsb2M+aHR0cHM6Ly93d3cud2F0Y2hoaWxsLmNhL3dwLWNvbnRlbnQvdXBsb2Fkcy8yMDE4LzAyL0NQLTMyNzcuanBnPC9pbWFnZTpsb2M+PGltYWdlOnRpdGxlPkNQIDMyNzc8L2ltYWdlOnRpdGxlPjxpbWFnZTpjYXB0aW9uPjwvaW1hZ2U6Y2FwdGlvbj48L2ltYWdlOmltYWdlPjwvdXJsPjx1cmw+PGxvYz5odHRwczovL3d3dy53YXRjaGhpbGwuY2EvP2Zvb2dhbGxlcnk9Y2hyaXN0bWFzLWhvbWUtdG91cjwvbG9jPjxsYXN0bW9kPjIwMTgtMDItMjNUMDA6MDE6MjdaPC9sYXN0bW9kPjxpbWFnZTppbWFnZT48aW1hZ2U6bG9jPmh0dHBzOi8vd3d3LndhdGNoaGlsbC5jYS93cC1jb250ZW50L3VwbG9hZHMvMjAxOC8wMi9DUC0zMjg5LmpwZzwvaW1hZ2U6bG9jPjxpbWFnZTp0aXRsZT5DUCAzMjg5PC9pbWFnZTp0aXRsZT48aW1hZ2U6Y2FwdGlvbj48L2ltYWdlOmNhcHRpb24+PC9pbWFnZTppbWFnZT48L3VybD48dXJsPjxsb2M+aHR0cHM6Ly93d3cud2F0Y2hoaWxsLmNhLz9mb29nYWxsZXJ5PWNocmlzdG1hcy1ob21lLXRvdXI8L2xvYz48bGFzdG1vZD4yMDE4LTAyLTIzVDAwOjAxOjMwWjwvbGFzdG1vZD48aW1hZ2U6aW1hZ2U+PGltYWdlOmxvYz5odHRwczovL3d3dy53YXRjaGhpbGwuY2Evd3AtY29udGVudC91cGxvYWRzLzIwMTgvMDIvQ1AtMzI5My5qcGc8L2ltYWdlOmxvYz48aW1hZ2U6dGl0bGU+Q1AgMzI5MzwvaW1hZ2U6dGl0bGU+PGltYWdlOmNhcHRpb24+PC9pbWFnZTpjYXB0aW9uPjwvaW1hZ2U6aW1hZ2U+PC91cmw+PHVybD48bG9jPmh0dHBzOi8vd3d3LndhdGNoaGlsbC5jYS8/Zm9vZ2FsbGVyeT1jaHJpc3RtYXMtaG9tZS10b3VyPC9sb2M+PGxhc3Rtb2Q+MjAxOC0wMi0yM1QwMDowMTozM1o8L2xhc3Rtb2Q+PGltYWdlOmltYWdlPjxpbWFnZTpsb2M+aHR0cHM6Ly93d3cud2F0Y2hoaWxsLmNhL3dwLWNvbnRlbnQvdXBsb2Fkcy8yMDE4LzAyL0NQLTMzMDEuanBnPC9pbWFnZTpsb2M+PGltYWdlOnRpdGxlPkNQIDMzMDE8L2ltYWdlOnRpdGxlPjxpbWFnZTpjYXB0aW9uPjwvaW1hZ2U6Y2FwdGlvbj48L2ltYWdlOmltYWdlPjwvdXJsPjx1cmw+PGxvYz5odHRwczovL3d3dy53YXRjaGhpbGwuY2EvP2Zvb2dhbGxlcnk9Y2hyaXN0bWFzLWhvbWUtdG91cjwvbG9jPjxsYXN0bW9kPjIwMTgtMDItMjNUMDA6MDE6MzZaPC9sYXN0bW9kPjxpbWFnZTppbWFnZT48aW1hZ2U6bG9jPmh0dHBzOi8vd3d3LndhdGNoaGlsbC5jYS93cC1jb250ZW50L3VwbG9hZHMvMjAxOC8wMi9DUC0zMzA2LmpwZzwvaW1hZ2U6bG9jPjxpbWFnZTp0aXRsZT5DUCAzMzA2PC9pbWFnZTp0aXRsZT48aW1hZ2U6Y2FwdGlvbj48L2ltYWdlOmNhcHRpb24+PC9pbWFnZTppbWFnZT48L3VybD48dXJsPjxsb2M+aHR0cHM6Ly93d3cud2F0Y2hoaWxsLmNhLz9mb29nYWxsZXJ5PWNocmlzdG1hcy1ob21lLXRvdXI8L2xvYz48bGFzdG1vZD4yMDE4LTAyLTIzVDAwOjAxOjM4WjwvbGFzdG1vZD48aW1hZ2U6aW1hZ2U+PGltYWdlOmxvYz5odHRwczovL3d3dy53YXRjaGhpbGwuY2Evd3AtY29udGVudC91cGxvYWRzLzIwMTgvMDIvQ1AtMzMxMC5qcGc8L2ltYWdlOmxvYz48aW1hZ2U6dGl0bGU+Q1AgMzMxMDwvaW1hZ2U6dGl0bGU+PGltYWdlOmNhcHRpb24+PC9pbWFnZTpjYXB0aW9uPjwvaW1hZ2U6aW1hZ2U+PC91cmw+PHVybD48bG9jPmh0dHBzOi8vd3d3LndhdGNoaGlsbC5jYS8/Zm9vZ2FsbGVyeT1jaHJpc3RtYXMtaG9tZS10b3VyPC9sb2M+PGxhc3Rtb2Q+MjAxOC0wMi0yM1QwMDowMTo0MFo8L2xhc3Rtb2Q+PGltYWdlOmltYWdlPjxpbWFnZTpsb2M+aHR0cHM6Ly93d3cud2F0Y2hoaWxsLmNhL3dwLWNvbnRlbnQvdXBsb2Fkcy8yMDE4LzAyL0NQLTMzMTIuanBnPC9pbWFnZTpsb2M+PGltYWdlOnRpdGxlPkNQIDMzMTI8L2ltYWdlOnRpdGxlPjxpbWFnZTpjYXB0aW9uPjwvaW1hZ2U6Y2FwdGlvbj48L2ltYWdlOmltYWdlPjwvdXJsPjx1cmw+PGxvYz5odHRwczovL3d3dy53YXRjaGhpbGwuY2EvP2Zvb2dhbGxlcnk9Y2hyaXN0bWFzLWhvbWUtdG91cjwvbG9jPjxsYXN0bW9kPjIwMTgtMDItMjNUMDA6MDE6NDNaPC9sYXN0bW9kPjxpbWFnZTppbWFnZT48aW1hZ2U6bG9jPmh0dHBzOi8vd3d3LndhdGNoaGlsbC5jYS93cC1jb250ZW50L3VwbG9hZHMvMjAxOC8wMi9DUC0zMzE1LUVkaXQuanBnPC9pbWFnZTpsb2M+PGltYWdlOnRpdGxlPkNQIDMzMTUgRWRpdDwvaW1hZ2U6dGl0bGU+PGltYWdlOmNhcHRpb24+PC9pbWFnZTpjYXB0aW9uPjwvaW1hZ2U6aW1hZ2U+PC91cmw+PHVybD48bG9jPmh0dHBzOi8vd3d3LndhdGNoaGlsbC5jYS8/Zm9vZ2FsbGVyeT1jaHJpc3RtYXMtaG9tZS10b3VyPC9sb2M+PGxhc3Rtb2Q+MjAxOC0wMi0yM1QwMDowMTo0Nlo8L2xhc3Rtb2Q+PGltYWdlOmltYWdlPjxpbWFnZTpsb2M+aHR0cHM6Ly93d3cud2F0Y2hoaWxsLmNhL3dwLWNvbnRlbnQvdXBsb2Fkcy8yMDE4LzAyL0NQLTMzMjMuanBnPC9pbWFnZTpsb2M+PGltYWdlOnRpdGxlPkNQIDMzMjM8L2ltYWdlOnRpdGxlPjxpbWFnZTpjYXB0aW9uPjwvaW1hZ2U6Y2FwdGlvbj48L2ltYWdlOmltYWdlPjwvdXJsPjx1cmw+PGxvYz5odHRwczovL3d3dy53YXRjaGhpbGwuY2EvP2Zvb2dhbGxlcnk9Y2hyaXN0bWFzLWhvbWUtdG91cjwvbG9jPjxsYXN0bW9kPjIwMTgtMDItMjNUMDA6MDE6NDlaPC9sYXN0bW9kPjxpbWFnZTppbWFnZT48aW1hZ2U6bG9jPmh0dHBzOi8vd3d3LndhdGNoaGlsbC5jYS93cC1jb250ZW50L3VwbG9hZHMvMjAxOC8wMi9DUC0zMzU2LmpwZzwvaW1hZ2U6bG9jPjxpbWFnZTp0aXRsZT5DUCAzMzU2PC9pbWFnZTp0aXRsZT48aW1hZ2U6Y2FwdGlvbj48L2ltYWdlOmNhcHRpb24+PC9pbWFnZTppbWFnZT48L3VybD48dXJsPjxsb2M+aHR0cHM6Ly93d3cud2F0Y2hoaWxsLmNhLz9mb29nYWxsZXJ5PWNocmlzdG1hcy1ob21lLXRvdXI8L2xvYz48bGFzdG1vZD4yMDE4LTAyLTIzVDAwOjAxOjUyWjwvbGFzdG1vZD48aW1hZ2U6aW1hZ2U+PGltYWdlOmxvYz5odHRwczovL3d3dy53YXRjaGhpbGwuY2Evd3AtY29udGVudC91cGxvYWRzLzIwMTgvMDIvQ1AtMzM1OC5qcGc8L2ltYWdlOmxvYz48aW1hZ2U6dGl0bGU+Q1AgMzM1ODwvaW1hZ2U6dGl0bGU+PGltYWdlOmNhcHRpb24+PC9pbWFnZTpjYXB0aW9uPjwvaW1hZ2U6aW1hZ2U+PC91cmw+PHVybD48bG9jPmh0dHBzOi8vd3d3LndhdGNoaGlsbC5jYS8/Zm9vZ2FsbGVyeT1jaHJpc3RtYXMtaG9tZS10b3VyPC9sb2M+PGxhc3Rtb2Q+MjAxOC0wMi0yM1QwMDowMTo1NFo8L2xhc3Rtb2Q+PGltYWdlOmltYWdlPjxpbWFnZTpsb2M+aHR0cHM6Ly93d3cud2F0Y2hoaWxsLmNhL3dwLWNvbnRlbnQvdXBsb2Fkcy8yMDE4LzAyL0NQLTMzOTkuanBnPC9pbWFnZTpsb2M+PGltYWdlOnRpdGxlPkNQIDMzOTk8L2ltYWdlOnRpdGxlPjxpbWFnZTpjYXB0aW9uPjwvaW1hZ2U6Y2FwdGlvbj48L2ltYWdlOmltYWdlPjwvdXJsPjx1cmw+PGxvYz5odHRwczovL3d3dy53YXRjaGhpbGwuY2EvP2Zvb2dhbGxlcnk9Y2hyaXN0bWFzLWhvbWUtdG91cjwvbG9jPjxsYXN0bW9kPjIwMTgtMDItMjNUMDA6MDE6NTdaPC9sYXN0bW9kPjxpbWFnZTppbWFnZT48aW1hZ2U6bG9jPmh0dHBzOi8vd3d3LndhdGNoaGlsbC5jYS93cC1jb250ZW50L3VwbG9hZHMvMjAxOC8wMi9DUC0zNDA1LmpwZzwvaW1hZ2U6bG9jPjxpbWFnZTp0aXRsZT5DUCAzNDA1PC9pbWFnZTp0aXRsZT48aW1hZ2U6Y2FwdGlvbj48L2ltYWdlOmNhcHRpb24+PC9pbWFnZTppbWFnZT48L3VybD48dXJsPjxsb2M+aHR0cHM6Ly93d3cud2F0Y2hoaWxsLmNhLz9mb29nYWxsZXJ5PWNocmlzdG1hcy1ob21lLXRvdXI8L2xvYz48bGFzdG1vZD4yMDE4LTAyLTIzVDAwOjAyOjAwWjwvbGFzdG1vZD48aW1hZ2U6aW1hZ2U+PGltYWdlOmxvYz5odHRwczovL3d3dy53YXRjaGhpbGwuY2Evd3AtY29udGVudC91cGxvYWRzLzIwMTgvMDIvQ1AtMzQxOC5qcGc8L2ltYWdlOmxvYz48aW1hZ2U6dGl0bGU+Q1AgMzQxODwvaW1hZ2U6dGl0bGU+PGltYWdlOmNhcHRpb24+PC9pbWFnZTpjYXB0aW9uPjwvaW1hZ2U6aW1hZ2U+PC91cmw+PHVybD48bG9jPmh0dHBzOi8vd3d3LndhdGNoaGlsbC5jYS8/Zm9vZ2FsbGVyeT1jaHJpc3RtYXMtaG9tZS10b3VyPC9sb2M+PGxhc3Rtb2Q+MjAxOC0wMi0yM1QwMDowMjowM1o8L2xhc3Rtb2Q+PGltYWdlOmltYWdlPjxpbWFnZTpsb2M+aHR0cHM6Ly93d3cud2F0Y2hoaWxsLmNhL3dwLWNvbnRlbnQvdXBsb2Fkcy8yMDE4LzAyL0NQLTM0MzkuanBnPC9pbWFnZTpsb2M+PGltYWdlOnRpdGxlPkNQIDM0Mzk8L2ltYWdlOnRpdGxlPjxpbWFnZTpjYXB0aW9uPjwvaW1hZ2U6Y2FwdGlvbj48L2ltYWdlOmltYWdlPjwvdXJsPjx1cmw+PGxvYz5odHRwczovL3d3dy53YXRjaGhpbGwuY2EvP2Zvb2dhbGxlcnk9Y2hyaXN0bWFzLWhvbWUtdG91cjwvbG9jPjxsYXN0bW9kPjIwMTgtMDItMjNUMDA6MDI6MDZaPC9sYXN0bW9kPjxpbWFnZTppbWFnZT48aW1hZ2U6bG9jPmh0dHBzOi8vd3d3LndhdGNoaGlsbC5jYS93cC1jb250ZW50L3VwbG9hZHMvMjAxOC8wMi9DUC0zNDUxLmpwZzwvaW1hZ2U6bG9jPjxpbWFnZTp0aXRsZT5DUCAzNDUxPC9pbWFnZTp0aXRsZT48aW1hZ2U6Y2FwdGlvbj48L2ltYWdlOmNhcHRpb24+PC9pbWFnZTppbWFnZT48L3VybD48dXJsPjxsb2M+aHR0cHM6Ly93d3cud2F0Y2hoaWxsLmNhLz9mb29nYWxsZXJ5PWNocmlzdG1hcy1ob21lLXRvdXI8L2xvYz48bGFzdG1vZD4yMDE4LTAyLTIzVDAwOjAyOjEwWjwvbGFzdG1vZD48aW1hZ2U6aW1hZ2U+PGltYWdlOmxvYz5odHRwczovL3d3dy53YXRjaGhpbGwuY2Evd3AtY29udGVudC91cGxvYWRzLzIwMTgvMDIvQ1AtMzQ1NS5qcGc8L2ltYWdlOmxvYz48aW1hZ2U6dGl0bGU+Q1AgMzQ1NTwvaW1hZ2U6dGl0bGU+PGltYWdlOmNhcHRpb24+PC9pbWFnZTpjYXB0aW9uPjwvaW1hZ2U6aW1hZ2U+PC91cmw+PHVybD48bG9jPmh0dHBzOi8vd3d3LndhdGNoaGlsbC5jYS8/Zm9vZ2FsbGVyeT1jaHJpc3RtYXMtaG9tZS10b3VyPC9sb2M+PGxhc3Rtb2Q+MjAxOC0wMi0yM1QwMDowMjoxMlo8L2xhc3Rtb2Q+PGltYWdlOmltYWdlPjxpbWFnZTpsb2M+aHR0cHM6Ly93d3cud2F0Y2hoaWxsLmNhL3dwLWNvbnRlbnQvdXBsb2Fkcy8yMDE4LzAyL0NQLTM0NjQuanBnPC9pbWFnZTpsb2M+PGltYWdlOnRpdGxlPkNQIDM0NjQ8L2ltYWdlOnRpdGxlPjxpbWFnZTpjYXB0aW9uPjwvaW1hZ2U6Y2FwdGlvbj48L2ltYWdlOmltYWdlPjwvdXJsPjx1cmw+PGxvYz5odHRwczovL3d3dy53YXRjaGhpbGwuY2EvP2Zvb2dhbGxlcnk9Y2hyaXN0bWFzLWhvbWUtdG91cjwvbG9jPjxsYXN0bW9kPjIwMTgtMDItMjNUMDA6MDI6MTRaPC9sYXN0bW9kPjxpbWFnZTppbWFnZT48aW1hZ2U6bG9jPmh0dHBzOi8vd3d3LndhdGNoaGlsbC5jYS93cC1jb250ZW50L3VwbG9hZHMvMjAxOC8wMi9DUC0zNDY2LmpwZzwvaW1hZ2U6bG9jPjxpbWFnZTp0aXRsZT5DUCAzNDY2PC9pbWFnZTp0aXRsZT48aW1hZ2U6Y2FwdGlvbj48L2ltYWdlOmNhcHRpb24+PC9pbWFnZTppbWFnZT48L3VybD48dXJsPjxsb2M+aHR0cHM6Ly93d3cud2F0Y2hoaWxsLmNhLz9mb29nYWxsZXJ5PWNocmlzdG1hcy1ob21lLXRvdXI8L2xvYz48bGFzdG1vZD4yMDE4LTAyLTIzVDAwOjAyOjE4WjwvbGFzdG1vZD48aW1hZ2U6aW1hZ2U+PGltYWdlOmxvYz5odHRwczovL3d3dy53YXRjaGhpbGwuY2Evd3AtY29udGVudC91cGxvYWRzLzIwMTgvMDIvQ1AtMzQ3NS5qcGc8L2ltYWdlOmxvYz48aW1hZ2U6dGl0bGU+Q1AgMzQ3NTwvaW1hZ2U6dGl0bGU+PGltYWdlOmNhcHRpb24+PC9pbWFnZTpjYXB0aW9uPjwvaW1hZ2U6aW1hZ2U+PC91cmw+PHVybD48bG9jPmh0dHBzOi8vd3d3LndhdGNoaGlsbC5jYS8/Zm9vZ2FsbGVyeT1jaHJpc3RtYXMtaG9tZS10b3VyPC9sb2M+PGxhc3Rtb2Q+MjAxOC0wMi0yM1QwMDowMjoyMFo8L2xhc3Rtb2Q+PGltYWdlOmltYWdlPjxpbWFnZTpsb2M+aHR0cHM6Ly93d3cud2F0Y2hoaWxsLmNhL3dwLWNvbnRlbnQvdXBsb2Fkcy8yMDE4LzAyL0NQLTM0NzcuanBnPC9pbWFnZTpsb2M+PGltYWdlOnRpdGxlPkNQIDM0Nzc8L2ltYWdlOnRpdGxlPjxpbWFnZTpjYXB0aW9uPjwvaW1hZ2U6Y2FwdGlvbj48L2ltYWdlOmltYWdlPjwvdXJsPjx1cmw+PGxvYz5odHRwczovL3d3dy53YXRjaGhpbGwuY2EvP2Zvb2dhbGxlcnk9Y2hyaXN0bWFzLWhvbWUtdG91cjwvbG9jPjxsYXN0bW9kPjIwMTgtMDItMjNUMDA6MDI6MjRaPC9sYXN0bW9kPjxpbWFnZTppbWFnZT48aW1hZ2U6bG9jPmh0dHBzOi8vd3d3LndhdGNoaGlsbC5jYS93cC1jb250ZW50L3VwbG9hZHMvMjAxOC8wMi9DUC0zNDc5LmpwZzwvaW1hZ2U6bG9jPjxpbWFnZTp0aXRsZT5DUCAzNDc5PC9pbWFnZTp0aXRsZT48aW1hZ2U6Y2FwdGlvbj48L2ltYWdlOmNhcHRpb24+PC9pbWFnZTppbWFnZT48L3VybD48dXJsPjxsb2M+aHR0cHM6Ly93d3cud2F0Y2hoaWxsLmNhLz9mb29nYWxsZXJ5PWNocmlzdG1hcy1ob21lLXRvdXI8L2xvYz48bGFzdG1vZD4yMDE4LTAyLTIzVDAwOjAyOjI4WjwvbGFzdG1vZD48aW1hZ2U6aW1hZ2U+PGltYWdlOmxvYz5odHRwczovL3d3dy53YXRjaGhpbGwuY2Evd3AtY29udGVudC91cGxvYWRzLzIwMTgvMDIvQ1AtMzQ5NC5qcGc8L2ltYWdlOmxvYz48aW1hZ2U6dGl0bGU+Q1AgMzQ5NDwvaW1hZ2U6dGl0bGU+PGltYWdlOmNhcHRpb24+PC9pbWFnZTpjYXB0aW9uPjwvaW1hZ2U6aW1hZ2U+PC91cmw+PHVybD48bG9jPmh0dHBzOi8vd3d3LndhdGNoaGlsbC5jYS8/Zm9vZ2FsbGVyeT1jaHJpc3RtYXMtaG9tZS10b3VyPC9sb2M+PGxhc3Rtb2Q+MjAxOC0wMi0yM1QwMDowMjozMVo8L2xhc3Rtb2Q+PGltYWdlOmltYWdlPjxpbWFnZTpsb2M+aHR0cHM6Ly93d3cud2F0Y2hoaWxsLmNhL3dwLWNvbnRlbnQvdXBsb2Fkcy8yMDE4LzAyL0NQLTM0OTYuanBnPC9pbWFnZTpsb2M+PGltYWdlOnRpdGxlPkNQIDM0OTY8L2ltYWdlOnRpdGxlPjxpbWFnZTpjYXB0aW9uPjwvaW1hZ2U6Y2FwdGlvbj48L2ltYWdlOmltYWdlPjwvdXJsPjx1cmw+PGxvYz5odHRwczovL3d3dy53YXRjaGhpbGwuY2EvP2Zvb2dhbGxlcnk9Y2hyaXN0bWFzLWhvbWUtdG91cjwvbG9jPjxsYXN0bW9kPjIwMTgtMDItMjNUMDA6MDI6MzNaPC9sYXN0bW9kPjxpbWFnZTppbWFnZT48aW1hZ2U6bG9jPmh0dHBzOi8vd3d3LndhdGNoaGlsbC5jYS93cC1jb250ZW50L3VwbG9hZHMvMjAxOC8wMi9DUC0zNTAzLmpwZzwvaW1hZ2U6bG9jPjxpbWFnZTp0aXRsZT5DUCAzNTAzPC9pbWFnZTp0aXRsZT48aW1hZ2U6Y2FwdGlvbj48L2ltYWdlOmNhcHRpb24+PC9pbWFnZTppbWFnZT48L3VybD48dXJsPjxsb2M+aHR0cHM6Ly93d3cud2F0Y2hoaWxsLmNhLz9mb29nYWxsZXJ5PWNocmlzdG1hcy1ob21lLXRvdXI8L2xvYz48bGFzdG1vZD4yMDE4LTAyLTIzVDAwOjAyOjM2WjwvbGFzdG1vZD48aW1hZ2U6aW1hZ2U+PGltYWdlOmxvYz5odHRwczovL3d3dy53YXRjaGhpbGwuY2Evd3AtY29udGVudC91cGxvYWRzLzIwMTgvMDIvQ1AtMzUwOC5qcGc8L2ltYWdlOmxvYz48aW1hZ2U6dGl0bGU+Q1AgMzUwODwvaW1hZ2U6dGl0bGU+PGltYWdlOmNhcHRpb24+PC9pbWFnZTpjYXB0aW9uPjwvaW1hZ2U6aW1hZ2U+PC91cmw+PHVybD48bG9jPmh0dHBzOi8vd3d3LndhdGNoaGlsbC5jYS8/Zm9vZ2FsbGVyeT1jaHJpc3RtYXMtaG9tZS10b3VyPC9sb2M+PGxhc3Rtb2Q+MjAxOC0wMi0yM1QwMDowMjozOVo8L2xhc3Rtb2Q+PGltYWdlOmltYWdlPjxpbWFnZTpsb2M+aHR0cHM6Ly93d3cud2F0Y2hoaWxsLmNhL3dwLWNvbnRlbnQvdXBsb2Fkcy8yMDE4LzAyL0NQLTM1MjQuanBnPC9pbWFnZTpsb2M+PGltYWdlOnRpdGxlPkNQIDM1MjQ8L2ltYWdlOnRpdGxlPjxpbWFnZTpjYXB0aW9uPjwvaW1hZ2U6Y2FwdGlvbj48L2ltYWdlOmltYWdlPjwvdXJsPjx1cmw+PGxvYz5odHRwczovL3d3dy53YXRjaGhpbGwuY2EvP2Zvb2dhbGxlcnk9Y2hyaXN0bWFzLWhvbWUtdG91cjwvbG9jPjxsYXN0bW9kPjIwMTgtMDItMjNUMDA6MDI6NDFaPC9sYXN0bW9kPjxpbWFnZTppbWFnZT48aW1hZ2U6bG9jPmh0dHBzOi8vd3d3LndhdGNoaGlsbC5jYS93cC1jb250ZW50L3VwbG9hZHMvMjAxOC8wMi9DUC0zNTMyLmpwZzwvaW1hZ2U6bG9jPjxpbWFnZTp0aXRsZT5DUCAzNTMyPC9pbWFnZTp0aXRsZT48aW1hZ2U6Y2FwdGlvbj48L2ltYWdlOmNhcHRpb24+PC9pbWFnZTppbWFnZT48L3VybD48dXJsPjxsb2M+aHR0cHM6Ly93d3cud2F0Y2hoaWxsLmNhLz9mb29nYWxsZXJ5PWNocmlzdG1hcy1ob21lLXRvdXI8L2xvYz48bGFzdG1vZD4yMDE4LTAyLTIzVDAwOjAyOjQ0WjwvbGFzdG1vZD48aW1hZ2U6aW1hZ2U+PGltYWdlOmxvYz5odHRwczovL3d3dy53YXRjaGhpbGwuY2Evd3AtY29udGVudC91cGxvYWRzLzIwMTgvMDIvQ1AtMzUzMy5qcGc8L2ltYWdlOmxvYz48aW1hZ2U6dGl0bGU+Q1AgMzUzMzwvaW1hZ2U6dGl0bGU+PGltYWdlOmNhcHRpb24+PC9pbWFnZTpjYXB0aW9uPjwvaW1hZ2U6aW1hZ2U+PC91cmw+PHVybD48bG9jPmh0dHBzOi8vd3d3LndhdGNoaGlsbC5jYS8/Zm9vZ2FsbGVyeT1jaHJpc3RtYXMtaG9tZS10b3VyPC9sb2M+PGxhc3Rtb2Q+MjAxOC0wMi0yM1QwMDowMjo0Nlo8L2xhc3Rtb2Q+PGltYWdlOmltYWdlPjxpbWFnZTpsb2M+aHR0cHM6Ly93d3cud2F0Y2hoaWxsLmNhL3dwLWNvbnRlbnQvdXBsb2Fkcy8yMDE4LzAyL0NQLTM1NTUuanBnPC9pbWFnZTpsb2M+PGltYWdlOnRpdGxlPkNQIDM1NTU8L2ltYWdlOnRpdGxlPjxpbWFnZTpjYXB0aW9uPjwvaW1hZ2U6Y2FwdGlvbj48L2ltYWdlOmltYWdlPjwvdXJsPjx1cmw+PGxvYz5odHRwczovL3d3dy53YXRjaGhpbGwuY2EvP2Zvb2dhbGxlcnk9Y2hyaXN0bWFzLWhvbWUtdG91cjwvbG9jPjxsYXN0bW9kPjIwMTgtMDItMjNUMDA6MDI6NDlaPC9sYXN0bW9kPjxpbWFnZTppbWFnZT48aW1hZ2U6bG9jPmh0dHBzOi8vd3d3LndhdGNoaGlsbC5jYS93cC1jb250ZW50L3VwbG9hZHMvMjAxOC8wMi9DUC0zNTU3LmpwZzwvaW1hZ2U6bG9jPjxpbWFnZTp0aXRsZT5DUCAzNTU3PC9pbWFnZTp0aXRsZT48aW1hZ2U6Y2FwdGlvbj48L2ltYWdlOmNhcHRpb24+PC9pbWFnZTppbWFnZT48L3VybD48dXJsPjxsb2M+aHR0cHM6Ly93d3cud2F0Y2hoaWxsLmNhLz9mb29nYWxsZXJ5PWNocmlzdG1hcy1ob21lLXRvdXI8L2xvYz48bGFzdG1vZD4yMDE4LTAyLTIzVDAwOjAyOjUxWjwvbGFzdG1vZD48aW1hZ2U6aW1hZ2U+PGltYWdlOmxvYz5odHRwczovL3d3dy53YXRjaGhpbGwuY2Evd3AtY29udGVudC91cGxvYWRzLzIwMTgvMDIvQ1AtMzU3Ni5qcGc8L2ltYWdlOmxvYz48aW1hZ2U6dGl0bGU+Q1AgMzU3NjwvaW1hZ2U6dGl0bGU+PGltYWdlOmNhcHRpb24+PC9pbWFnZTpjYXB0aW9uPjwvaW1hZ2U6aW1hZ2U+PC91cmw+PHVybD48bG9jPmh0dHBzOi8vd3d3LndhdGNoaGlsbC5jYS8/Zm9vZ2FsbGVyeT1jaHJpc3RtYXMtaG9tZS10b3VyPC9sb2M+PGxhc3Rtb2Q+MjAxOC0wMi0yM1QwMDowMjo1NFo8L2xhc3Rtb2Q+PGltYWdlOmltYWdlPjxpbWFnZTpsb2M+aHR0cHM6Ly93d3cud2F0Y2hoaWxsLmNhL3dwLWNvbnRlbnQvdXBsb2Fkcy8yMDE4LzAyL0NQLTM1ODAuanBnPC9pbWFnZTpsb2M+PGltYWdlOnRpdGxlPkNQIDM1ODA8L2ltYWdlOnRpdGxlPjxpbWFnZTpjYXB0aW9uPjwvaW1hZ2U6Y2FwdGlvbj48L2ltYWdlOmltYWdlPjwvdXJsPjx1cmw+PGxvYz5odHRwczovL3d3dy53YXRjaGhpbGwuY2EvP2Zvb2dhbGxlcnk9Y2hyaXN0bWFzLWhvbWUtdG91cjwvbG9jPjxsYXN0bW9kPjIwMTgtMDItMjNUMDA6MDM6MDNaPC9sYXN0bW9kPjxpbWFnZTppbWFnZT48aW1hZ2U6bG9jPmh0dHBzOi8vd3d3LndhdGNoaGlsbC5jYS93cC1jb250ZW50L3VwbG9hZHMvMjAxOC8wMi9DUC0zNTgxLmpwZzwvaW1hZ2U6bG9jPjxpbWFnZTp0aXRsZT5DUCAzNTgxPC9pbWFnZTp0aXRsZT48aW1hZ2U6Y2FwdGlvbj48L2ltYWdlOmNhcHRpb24+PC9pbWFnZTppbWFnZT48L3VybD48dXJsPjxsb2M+aHR0cHM6Ly93d3cud2F0Y2hoaWxsLmNhLz9mb29nYWxsZXJ5PWNocmlzdG1hcy1ob21lLXRvdXI8L2xvYz48bGFzdG1vZD4yMDE4LTAyLTIzVDAwOjAzOjA1WjwvbGFzdG1vZD48aW1hZ2U6aW1hZ2U+PGltYWdlOmxvYz5odHRwczovL3d3dy53YXRjaGhpbGwuY2Evd3AtY29udGVudC91cGxvYWRzLzIwMTgvMDIvQ1AtMzU4NC5qcGc8L2ltYWdlOmxvYz48aW1hZ2U6dGl0bGU+Q1AgMzU4NDwvaW1hZ2U6dGl0bGU+PGltYWdlOmNhcHRpb24+PC9pbWFnZTpjYXB0aW9uPjwvaW1hZ2U6aW1hZ2U+PC91cmw+PHVybD48bG9jPmh0dHBzOi8vd3d3LndhdGNoaGlsbC5jYS8/Zm9vZ2FsbGVyeT1jaHJpc3RtYXMtaG9tZS10b3VyPC9sb2M+PGxhc3Rtb2Q+MjAxOC0wMi0yM1QwMDowMzowOFo8L2xhc3Rtb2Q+PGltYWdlOmltYWdlPjxpbWFnZTpsb2M+aHR0cHM6Ly93d3cud2F0Y2hoaWxsLmNhL3dwLWNvbnRlbnQvdXBsb2Fkcy8yMDE4LzAyL0NQLTM1OTEuanBnPC9pbWFnZTpsb2M+PGltYWdlOnRpdGxlPkNQIDM1OTE8L2ltYWdlOnRpdGxlPjxpbWFnZTpjYXB0aW9uPjwvaW1hZ2U6Y2FwdGlvbj48L2ltYWdlOmltYWdlPjwvdXJsPjx1cmw+PGxvYz5odHRwczovL3d3dy53YXRjaGhpbGwuY2EvP2Zvb2dhbGxlcnk9Y2hyaXN0bWFzLWhvbWUtdG91cjwvbG9jPjxsYXN0bW9kPjIwMTgtMDItMjNUMDA6MDM6MTBaPC9sYXN0bW9kPjxpbWFnZTppbWFnZT48aW1hZ2U6bG9jPmh0dHBzOi8vd3d3LndhdGNoaGlsbC5jYS93cC1jb250ZW50L3VwbG9hZHMvMjAxOC8wMi9DUC0zNTk3LmpwZzwvaW1hZ2U6bG9jPjxpbWFnZTp0aXRsZT5DUCAzNTk3PC9pbWFnZTp0aXRsZT48aW1hZ2U6Y2FwdGlvbj48L2ltYWdlOmNhcHRpb24+PC9pbWFnZTppbWFnZT48L3VybD48dXJsPjxsb2M+aHR0cHM6Ly93d3cud2F0Y2hoaWxsLmNhLz9mb29nYWxsZXJ5PWNocmlzdG1hcy1ob21lLXRvdXI8L2xvYz48bGFzdG1vZD4yMDE4LTAyLTIzVDAwOjAzOjEzWjwvbGFzdG1vZD48aW1hZ2U6aW1hZ2U+PGltYWdlOmxvYz5odHRwczovL3d3dy53YXRjaGhpbGwuY2Evd3AtY29udGVudC91cGxvYWRzLzIwMTgvMDIvQ1AtMzYxNC5qcGc8L2ltYWdlOmxvYz48aW1hZ2U6dGl0bGU+Q1AgMzYxNDwvaW1hZ2U6dGl0bGU+PGltYWdlOmNhcHRpb24+PC9pbWFnZTpjYXB0aW9uPjwvaW1hZ2U6aW1hZ2U+PC91cmw+PHVybD48bG9jPmh0dHBzOi8vd3d3LndhdGNoaGlsbC5jYS8/Zm9vZ2FsbGVyeT1jaHJpc3RtYXMtaG9tZS10b3VyPC9sb2M+PGxhc3Rtb2Q+MjAxOC0wMi0yM1QwMDowMzoxNlo8L2xhc3Rtb2Q+PGltYWdlOmltYWdlPjxpbWFnZTpsb2M+aHR0cHM6Ly93d3cud2F0Y2hoaWxsLmNhL3dwLWNvbnRlbnQvdXBsb2Fkcy8yMDE4LzAyL0NQLTM2MTUuanBnPC9pbWFnZTpsb2M+PGltYWdlOnRpdGxlPkNQIDM2MTU8L2ltYWdlOnRpdGxlPjxpbWFnZTpjYXB0aW9uPjwvaW1hZ2U6Y2FwdGlvbj48L2ltYWdlOmltYWdlPjwvdXJsPjx1cmw+PGxvYz5odHRwczovL3d3dy53YXRjaGhpbGwuY2EvP2Zvb2dhbGxlcnk9Y2hyaXN0bWFzLWhvbWUtdG91cjwvbG9jPjxsYXN0bW9kPjIwMTgtMDItMjNUMDA6MDM6MThaPC9sYXN0bW9kPjxpbWFnZTppbWFnZT48aW1hZ2U6bG9jPmh0dHBzOi8vd3d3LndhdGNoaGlsbC5jYS93cC1jb250ZW50L3VwbG9hZHMvMjAxOC8wMi9DUC0zNjIwLmpwZzwvaW1hZ2U6bG9jPjxpbWFnZTp0aXRsZT5DUCAzNjIwPC9pbWFnZTp0aXRsZT48aW1hZ2U6Y2FwdGlvbj48L2ltYWdlOmNhcHRpb24+PC9pbWFnZTppbWFnZT48L3VybD48dXJsPjxsb2M+aHR0cHM6Ly93d3cud2F0Y2hoaWxsLmNhLz9mb29nYWxsZXJ5PWNocmlzdG1hcy1ob21lLXRvdXI8L2xvYz48bGFzdG1vZD4yMDE4LTAyLTIzVDAwOjAzOjIxWjwvbGFzdG1vZD48aW1hZ2U6aW1hZ2U+PGltYWdlOmxvYz5odHRwczovL3d3dy53YXRjaGhpbGwuY2Evd3AtY29udGVudC91cGxvYWRzLzIwMTgvMDIvQ1AtMzYyMi5qcGc8L2ltYWdlOmxvYz48aW1hZ2U6dGl0bGU+Q1AgMzYyMjwvaW1hZ2U6dGl0bGU+PGltYWdlOmNhcHRpb24+PC9pbWFnZTpjYXB0aW9uPjwvaW1hZ2U6aW1hZ2U+PC91cmw+PHVybD48bG9jPmh0dHBzOi8vd3d3LndhdGNoaGlsbC5jYS8/Zm9vZ2FsbGVyeT1jaHJpc3RtYXMtaG9tZS10b3VyPC9sb2M+PGxhc3Rtb2Q+MjAxOC0wMi0yM1QwMDowMzoyNFo8L2xhc3Rtb2Q+PGltYWdlOmltYWdlPjxpbWFnZTpsb2M+aHR0cHM6Ly93d3cud2F0Y2hoaWxsLmNhL3dwLWNvbnRlbnQvdXBsb2Fkcy8yMDE4LzAyL0NQLTM2NDQuanBnPC9pbWFnZTpsb2M+PGltYWdlOnRpdGxlPkNQIDM2NDQ8L2ltYWdlOnRpdGxlPjxpbWFnZTpjYXB0aW9uPjwvaW1hZ2U6Y2FwdGlvbj48L2ltYWdlOmltYWdlPjwvdXJsPjx1cmw+PGxvYz5odHRwczovL3d3dy53YXRjaGhpbGwuY2EvP2Zvb2dhbGxlcnk9Y2hyaXN0bWFzLWhvbWUtdG91cjwvbG9jPjxsYXN0bW9kPjIwMTgtMDItMjNUMDA6MDM6MjdaPC9sYXN0bW9kPjxpbWFnZTppbWFnZT48aW1hZ2U6bG9jPmh0dHBzOi8vd3d3LndhdGNoaGlsbC5jYS93cC1jb250ZW50L3VwbG9hZHMvMjAxOC8wMi9DUC0zNjU0LmpwZzwvaW1hZ2U6bG9jPjxpbWFnZTp0aXRsZT5DUCAzNjU0PC9pbWFnZTp0aXRsZT48aW1hZ2U6Y2FwdGlvbj48L2ltYWdlOmNhcHRpb24+PC9pbWFnZTppbWFnZT48L3VybD48dXJsPjxsb2M+aHR0cHM6Ly93d3cud2F0Y2hoaWxsLmNhLz9mb29nYWxsZXJ5PWNocmlzdG1hcy1ob21lLXRvdXI8L2xvYz48bGFzdG1vZD4yMDE4LTAyLTIzVDAwOjAzOjMwWjwvbGFzdG1vZD48aW1hZ2U6aW1hZ2U+PGltYWdlOmxvYz5odHRwczovL3d3dy53YXRjaGhpbGwuY2Evd3AtY29udGVudC91cGxvYWRzLzIwMTgvMDIvQ1AtMzY2My5qcGc8L2ltYWdlOmxvYz48aW1hZ2U6dGl0bGU+Q1AgMzY2MzwvaW1hZ2U6dGl0bGU+PGltYWdlOmNhcHRpb24+PC9pbWFnZTpjYXB0aW9uPjwvaW1hZ2U6aW1hZ2U+PC91cmw+PHVybD48bG9jPmh0dHBzOi8vd3d3LndhdGNoaGlsbC5jYS8/Zm9vZ2FsbGVyeT1jaHJpc3RtYXMtaG9tZS10b3VyPC9sb2M+PGxhc3Rtb2Q+MjAxOC0wMi0yM1QwMDowMzozM1o8L2xhc3Rtb2Q+PGltYWdlOmltYWdlPjxpbWFnZTpsb2M+aHR0cHM6Ly93d3cud2F0Y2hoaWxsLmNhL3dwLWNvbnRlbnQvdXBsb2Fkcy8yMDE4LzAyL0NQLTM2NjQuanBnPC9pbWFnZTpsb2M+PGltYWdlOnRpdGxlPkNQIDM2NjQ8L2ltYWdlOnRpdGxlPjxpbWFnZTpjYXB0aW9uPjwvaW1hZ2U6Y2FwdGlvbj48L2ltYWdlOmltYWdlPjwvdXJsPjx1cmw+PGxvYz5odHRwczovL3d3dy53YXRjaGhpbGwuY2EvP2Zvb2dhbGxlcnk9Y2hyaXN0bWFzLWhvbWUtdG91cjwvbG9jPjxsYXN0bW9kPjIwMTgtMDItMjNUMDA6MDM6MzZaPC9sYXN0bW9kPjxpbWFnZTppbWFnZT48aW1hZ2U6bG9jPmh0dHBzOi8vd3d3LndhdGNoaGlsbC5jYS93cC1jb250ZW50L3VwbG9hZHMvMjAxOC8wMi9DUC0zNjY3LmpwZzwvaW1hZ2U6bG9jPjxpbWFnZTp0aXRsZT5DUCAzNjY3PC9pbWFnZTp0aXRsZT48aW1hZ2U6Y2FwdGlvbj48L2ltYWdlOmNhcHRpb24+PC9pbWFnZTppbWFnZT48L3VybD48dXJsPjxsb2M+aHR0cHM6Ly93d3cud2F0Y2hoaWxsLmNhLz9mb29nYWxsZXJ5PWNocmlzdG1hcy1ob21lLXRvdXI8L2xvYz48bGFzdG1vZD4yMDE4LTAyLTIzVDAwOjAzOjM4WjwvbGFzdG1vZD48aW1hZ2U6aW1hZ2U+PGltYWdlOmxvYz5odHRwczovL3d3dy53YXRjaGhpbGwuY2Evd3AtY29udGVudC91cGxvYWRzLzIwMTgvMDIvSU1HXzAxMDctMS5qcGVnPC9pbWFnZTpsb2M+PGltYWdlOnRpdGxlPklNRyAwMTA3PC9pbWFnZTp0aXRsZT48aW1hZ2U6Y2FwdGlvbj48L2ltYWdlOmNhcHRpb24+PC9pbWFnZTppbWFnZT48L3VybD48dXJsPjxsb2M+aHR0cHM6Ly93d3cud2F0Y2hoaWxsLmNhLz9mb29nYWxsZXJ5PWNocmlzdG1hcy1ob21lLXRvdXI8L2xvYz48bGFzdG1vZD4yMDE4LTAyLTIzVDAwOjAzOjQwWjwvbGFzdG1vZD48aW1hZ2U6aW1hZ2U+PGltYWdlOmxvYz5odHRwczovL3d3dy53YXRjaGhpbGwuY2Evd3AtY29udGVudC91cGxvYWRzLzIwMTgvMDIvSU1HXzAxMDguanBlZzwvaW1hZ2U6bG9jPjxpbWFnZTp0aXRsZT5JTUcgMDEwODwvaW1hZ2U6dGl0bGU+PGltYWdlOmNhcHRpb24+PC9pbWFnZTpjYXB0aW9uPjwvaW1hZ2U6aW1hZ2U+PC91cmw+PHVybD48bG9jPmh0dHBzOi8vd3d3LndhdGNoaGlsbC5jYS8/Zm9vZ2FsbGVyeT1jaHJpc3RtYXMtaG9tZS10b3VyPC9sb2M+PGxhc3Rtb2Q+MjAxOC0wMi0yM1QwMDowMzo0Mlo8L2xhc3Rtb2Q+PGltYWdlOmltYWdlPjxpbWFnZTpsb2M+aHR0cHM6Ly93d3cud2F0Y2hoaWxsLmNhL3dwLWNvbnRlbnQvdXBsb2Fkcy8yMDE4LzAyL0lNR18yMTgxLTEtZTE1MTkzNDQzMjcxNzMuanBnPC9pbWFnZTpsb2M+PGltYWdlOnRpdGxlPklNRyAyMTgxPC9pbWFnZTp0aXRsZT48aW1hZ2U6Y2FwdGlvbj48L2ltYWdlOmNhcHRpb24+PC9pbWFnZTppbWFnZT48L3VybD48dXJsPjxsb2M+aHR0cHM6Ly93d3cud2F0Y2hoaWxsLmNhLz9mb29nYWxsZXJ5PWNocmlzdG1hcy1ob21lLXRvdXI8L2xvYz48bGFzdG1vZD4yMDE4LTAyLTIzVDAwOjAzOjQ0WjwvbGFzdG1vZD48aW1hZ2U6aW1hZ2U+PGltYWdlOmxvYz5odHRwczovL3d3dy53YXRjaGhpbGwuY2Evd3AtY29udGVudC91cGxvYWRzLzIwMTgvMDIvSU1HXzIxODQtMS1lMTUxOTM0NDMxNDc5Ni5qcGc8L2ltYWdlOmxvYz48aW1hZ2U6dGl0bGU+SU1HIDIxODQ8L2ltYWdlOnRpdGxlPjxpbWFnZTpjYXB0aW9uPjwvaW1hZ2U6Y2FwdGlvbj48L2ltYWdlOmltYWdlPjwvdXJsPjx1cmw+PGxvYz5odHRwczovL3d3dy53YXRjaGhpbGwuY2EvP2Zvb2dhbGxlcnk9Y2hyaXN0bWFzLWhvbWUtdG91cjwvbG9jPjxsYXN0bW9kPjIwMTgtMDItMjNUMDA6MDQ6MzBaPC9sYXN0bW9kPjxpbWFnZTppbWFnZT48aW1hZ2U6bG9jPmh0dHBzOi8vd3d3LndhdGNoaGlsbC5jYS93cC1jb250ZW50L3VwbG9hZHMvMjAxOC8wMi9JTUdfMjE5My0xLWUxNTE5MzQ0MjYxNDkxLmpwZzwvaW1hZ2U6bG9jPjxpbWFnZTp0aXRsZT5JTUcgMjE5MzwvaW1hZ2U6dGl0bGU+PGltYWdlOmNhcHRpb24+PC9pbWFnZTpjYXB0aW9uPjwvaW1hZ2U6aW1hZ2U+PC91cmw+PHVybD48bG9jPmh0dHBzOi8vd3d3LndhdGNoaGlsbC5jYS8/Zm9vZ2FsbGVyeT13aW50ZXItYWN0aXZpdGllczwvbG9jPjxsYXN0bW9kPjIwMTgtMDItMjNUMDA6MTk6MTZaPC9sYXN0bW9kPjxpbWFnZTppbWFnZT48aW1hZ2U6bG9jPmh0dHBzOi8vd3d3LndhdGNoaGlsbC5jYS93cC1jb250ZW50L3VwbG9hZHMvMjAxOC8wMi9TdW5zZXQtRFNDMTY5My5qcGVnPC9pbWFnZTpsb2M+PGltYWdlOnRpdGxlPiBTdW5zZXQgRFNDMTY5MzwvaW1hZ2U6dGl0bGU+PGltYWdlOmNhcHRpb24+PC9pbWFnZTpjYXB0aW9uPjwvaW1hZ2U6aW1hZ2U+PC91cmw+PHVybD48bG9jPmh0dHBzOi8vd3d3LndhdGNoaGlsbC5jYS8/Zm9vZ2FsbGVyeT13aW50ZXItYWN0aXZpdGllczwvbG9jPjxsYXN0bW9kPjIwMTgtMDItMjNUMDA6MTk6MzBaPC9sYXN0bW9kPjxpbWFnZTppbWFnZT48aW1hZ2U6bG9jPmh0dHBzOi8vd3d3LndhdGNoaGlsbC5jYS93cC1jb250ZW50L3VwbG9hZHMvMjAxOC8wMi9JTUdfMjA5Ny5qcGc8L2ltYWdlOmxvYz48aW1hZ2U6dGl0bGU+SU1HIDIwOTc8L2ltYWdlOnRpdGxlPjxpbWFnZTpjYXB0aW9uPjwvaW1hZ2U6Y2FwdGlvbj48L2ltYWdlOmltYWdlPjwvdXJsPjx1cmw+PGxvYz5odHRwczovL3d3dy53YXRjaGhpbGwuY2EvP2Zvb2dhbGxlcnk9d2ludGVyLWFjdGl2aXRpZXM8L2xvYz48bGFzdG1vZD4yMDE4LTAyLTIzVDAwOjE5OjM3WjwvbGFzdG1vZD48aW1hZ2U6aW1hZ2U+PGltYWdlOmxvYz5odHRwczovL3d3dy53YXRjaGhpbGwuY2Evd3AtY29udGVudC91cGxvYWRzLzIwMTgvMDIvSU1HXzIxMDIuanBnPC9pbWFnZTpsb2M+PGltYWdlOnRpdGxlPklNRyAyMTAyPC9pbWFnZTp0aXRsZT48aW1hZ2U6Y2FwdGlvbj48L2ltYWdlOmNhcHRpb24+PC9pbWFnZTppbWFnZT48L3VybD48dXJsPjxsb2M+aHR0cHM6Ly93d3cud2F0Y2hoaWxsLmNhLz9mb29nYWxsZXJ5PXdpbnRlci1hY3Rpdml0aWVzPC9sb2M+PGxhc3Rtb2Q+MjAxOC0wMi0yM1QwMDoxOTo0OVo8L2xhc3Rtb2Q+PGltYWdlOmltYWdlPjxpbWFnZTpsb2M+aHR0cHM6Ly93d3cud2F0Y2hoaWxsLmNhL3dwLWNvbnRlbnQvdXBsb2Fkcy8yMDE4LzAyL0lNR18yMTEyLmpwZzwvaW1hZ2U6bG9jPjxpbWFnZTp0aXRsZT5JTUcgMjExMjwvaW1hZ2U6dGl0bGU+PGltYWdlOmNhcHRpb24+PC9pbWFnZTpjYXB0aW9uPjwvaW1hZ2U6aW1hZ2U+PC91cmw+PHVybD48bG9jPmh0dHBzOi8vd3d3LndhdGNoaGlsbC5jYS8/Zm9vZ2FsbGVyeT13aW50ZXItYWN0aXZpdGllczwvbG9jPjxsYXN0bW9kPjIwMTgtMDItMjNUMDA6MTk6NTJaPC9sYXN0bW9kPjxpbWFnZTppbWFnZT48aW1hZ2U6bG9jPmh0dHBzOi8vd3d3LndhdGNoaGlsbC5jYS93cC1jb250ZW50L3VwbG9hZHMvMjAxOC8wMi9SZXNpemVkX0lNR18yMDE4MDEwN18xMTIwNDhfOTc1LmpwZzwvaW1hZ2U6bG9jPjxpbWFnZTp0aXRsZT5SZXNpemVkIElNRyAyMDE4MDEwNyAxMTIwNDggOTc1PC9pbWFnZTp0aXRsZT48aW1hZ2U6Y2FwdGlvbj48L2ltYWdlOmNhcHRpb24+PC9pbWFnZTppbWFnZT48L3VybD48dXJsPjxsb2M+aHR0cHM6Ly93d3cud2F0Y2hoaWxsLmNhLz9mb29nYWxsZXJ5PWFjdGl2aXRpZXM8L2xvYz48bGFzdG1vZD4yMDE4LTAyLTIzVDAwOjQ4OjI0WjwvbGFzdG1vZD48aW1hZ2U6aW1hZ2U+PGltYWdlOmxvYz5odHRwczovL3d3dy53YXRjaGhpbGwuY2Evd3AtY29udGVudC91cGxvYWRzLzIwMTcvMDMvRkJfSU1HXzE1MTc5Mzk1ODk4MDYuanBnPC9pbWFnZTpsb2M+PGltYWdlOnRpdGxlPkZpc2hpbmcgdW5kZXIgYSBzdW1tZXIgcmFpbmJvdzwvaW1hZ2U6dGl0bGU+PGltYWdlOmNhcHRpb24+RmlzaGluZyB1bmRlciBhIHN1bW1lciByYWluYm93PC9pbWFnZTpjYXB0aW9uPjwvaW1hZ2U6aW1hZ2U+PC91cmw+PHVybD48bG9jPmh0dHBzOi8vd3d3LndhdGNoaGlsbC5jYS8/Zm9vZ2FsbGVyeT1hY3Rpdml0aWVzPC9sb2M+PGxhc3Rtb2Q+MjAxOC0wMi0yM1QwMDoyMjo0N1o8L2xhc3Rtb2Q+PGltYWdlOmltYWdlPjxpbWFnZTpsb2M+aHR0cHM6Ly93d3cud2F0Y2hoaWxsLmNhL3dwLWNvbnRlbnQvdXBsb2Fkcy8yMDE3LzAzL0ZCX0lNR18xNTE3OTM5NjAyMjY5LmpwZzwvaW1hZ2U6bG9jPjxpbWFnZTp0aXRsZT5GQiBJTUcgMTUxNzkzOTYwMjI2OTwvaW1hZ2U6dGl0bGU+PGltYWdlOmNhcHRpb24+PC9pbWFnZTpjYXB0aW9uPjwvaW1hZ2U6aW1hZ2U+PC91cmw+PHVybD48bG9jPmh0dHBzOi8vd3d3LndhdGNoaGlsbC5jYS8/Zm9vZ2FsbGVyeT1hY3Rpdml0aWVzPC9sb2M+PGxhc3Rtb2Q+MjAxOC0wMi0yM1QwMDoyMjo0OFo8L2xhc3Rtb2Q+PGltYWdlOmltYWdlPjxpbWFnZTpsb2M+aHR0cHM6Ly93d3cud2F0Y2hoaWxsLmNhL3dwLWNvbnRlbnQvdXBsb2Fkcy8yMDE3LzAzL0ZCX0lNR18xNTE3OTM5NjY0ODc0LmpwZzwvaW1hZ2U6bG9jPjxpbWFnZTp0aXRsZT5GQiBJTUcgMTUxNzkzOTY2NDg3NDwvaW1hZ2U6dGl0bGU+PGltYWdlOmNhcHRpb24+PC9pbWFnZTpjYXB0aW9uPjwvaW1hZ2U6aW1hZ2U+PC91cmw+PHVybD48bG9jPmh0dHBzOi8vd3d3LndhdGNoaGlsbC5jYS8/Zm9vZ2FsbGVyeT1hY3Rpdml0aWVzPC9sb2M+PGxhc3Rtb2Q+MjAxOC0wMi0yM1QwMDozOTowNlo8L2xhc3Rtb2Q+PGltYWdlOmltYWdlPjxpbWFnZTpsb2M+aHR0cHM6Ly93d3cud2F0Y2hoaWxsLmNhL3dwLWNvbnRlbnQvdXBsb2Fkcy8yMDE3LzAzL0ZCX0lNR18xNTE3OTM5NzI0NTYxLmpwZzwvaW1hZ2U6bG9jPjxpbWFnZTp0aXRsZT5TZWUgV2F0Y2ggSGlsbCBwZWVraW5nIHRocm91Z2ggdGhlIHRyZWVzICh1cHBlciByaWdodCk8L2ltYWdlOnRpdGxlPjxpbWFnZTpjYXB0aW9uPlNlZSBXYXRjaCBIaWxsIHBlZWtpbmcgdGhyb3VnaCB0aGUgdHJlZXMgKHVwcGVyIHJpZ2h0KTwvaW1hZ2U6Y2FwdGlvbj48L2ltYWdlOmltYWdlPjwvdXJsPjx1cmw+PGxvYz5odHRwczovL3d3dy53YXRjaGhpbGwuY2EvP2Zvb2dhbGxlcnk9YWN0aXZpdGllczwvbG9jPjxsYXN0bW9kPjIwMTgtMDItMjNUMDA6MjI6NTNaPC9sYXN0bW9kPjxpbWFnZTppbWFnZT48aW1hZ2U6bG9jPmh0dHBzOi8vd3d3LndhdGNoaGlsbC5jYS93cC1jb250ZW50L3VwbG9hZHMvMjAxNy8wMy9GQl9JTUdfMTUxNzkzOTc0NDI0My5qcGc8L2ltYWdlOmxvYz48aW1hZ2U6dGl0bGU+RkIgSU1HIDE1MTc5Mzk3NDQyNDM8L2ltYWdlOnRpdGxlPjxpbWFnZTpjYXB0aW9uPjwvaW1hZ2U6Y2FwdGlvbj48L2ltYWdlOmltYWdlPjwvdXJsPjx1cmw+PGxvYz5odHRwczovL3d3dy53YXRjaGhpbGwuY2EvP2Zvb2dhbGxlcnk9YWN0aXZpdGllczwvbG9jPjxsYXN0bW9kPjIwMTgtMDItMjNUMDA6Mzg6NDdaPC9sYXN0bW9kPjxpbWFnZTppbWFnZT48aW1hZ2U6bG9jPmh0dHBzOi8vd3d3LndhdGNoaGlsbC5jYS93cC1jb250ZW50L3VwbG9hZHMvMjAxNy8wMy9GQl9JTUdfMTUxNzkzOTc4ODA3OS5qcGc8L2ltYWdlOmxvYz48aW1hZ2U6dGl0bGU+Qm9hcmRpbmcgdG8gc2hvcmUgYXQgZW5kIG9mIGRheTwvaW1hZ2U6dGl0bGU+PGltYWdlOmNhcHRpb24+Qm9hcmRpbmcgdG8gc2hvcmUgYXQgZW5kIG9mIGRheTwvaW1hZ2U6Y2FwdGlvbj48L2ltYWdlOmltYWdlPjwvdXJsPjx1cmw+PGxvYz5odHRwczovL3d3dy53YXRjaGhpbGwuY2EvP2Zvb2dhbGxlcnk9YWN0aXZpdGllczwvbG9jPjxsYXN0bW9kPjIwMTgtMDItMjNUMDA6NTM6MzBaPC9sYXN0bW9kPjxpbWFnZTppbWFnZT48aW1hZ2U6bG9jPmh0dHBzOi8vd3d3LndhdGNoaGlsbC5jYS93cC1jb250ZW50L3VwbG9hZHMvMjAxNy8wMy9GQl9JTUdfMTUxNzkzOTgwODg3OS5qcGc8L2ltYWdlOmxvYz48aW1hZ2U6dGl0bGU+U2VlIHRoaXMgZnJvbSB0aGUgdmVyYW5kYSAtIGlmIHlvdSB1c2UgYmlub2N1bGFycy48L2ltYWdlOnRpdGxlPjxpbWFnZTpjYXB0aW9uPlNlZSB0aGlzIGZyb20gdGhlIHZlcmFuZGEgLSBpZiB5b3UgdXNlIGJpbm9jdWxhcnMuPC9pbWFnZTpjYXB0aW9uPjwvaW1hZ2U6aW1hZ2U+PC91cmw+PHVybD48bG9jPmh0dHBzOi8vd3d3LndhdGNoaGlsbC5jYS8/Zm9vZ2FsbGVyeT1hY3Rpdml0aWVzPC9sb2M+PGxhc3Rtb2Q+MjAxOC0wMi0yM1QwMDozNzo0Nlo8L2xhc3Rtb2Q+PGltYWdlOmltYWdlPjxpbWFnZTpsb2M+aHR0cHM6Ly93d3cud2F0Y2hoaWxsLmNhL3dwLWNvbnRlbnQvdXBsb2Fkcy8yMDE3LzAzL0ZCX0lNR18xNTE3OTQxMTk5NDcwLmpwZzwvaW1hZ2U6bG9jPjxpbWFnZTp0aXRsZT5TdG9ybXkgZGF5PC9pbWFnZTp0aXRsZT48aW1hZ2U6Y2FwdGlvbj5TdG9ybXkgZGF5PC9pbWFnZTpjYXB0aW9uPjwvaW1hZ2U6aW1hZ2U+PC91cmw+PHVybD48bG9jPmh0dHBzOi8vd3d3LndhdGNoaGlsbC5jYS8/Zm9vZ2FsbGVyeT1hY3Rpdml0aWVzPC9sb2M+PGxhc3Rtb2Q+MjAxOC0wMi0yM1QwMDozNjo1OVo8L2xhc3Rtb2Q+PGltYWdlOmltYWdlPjxpbWFnZTpsb2M+aHR0cHM6Ly93d3cud2F0Y2hoaWxsLmNhL3dwLWNvbnRlbnQvdXBsb2Fkcy8yMDE3LzAzL0ZCX0lNR18xNTE3OTQyMTIwMDEzLmpwZzwvaW1hZ2U6bG9jPjxpbWFnZTp0aXRsZT5BcnQgY2xhc3NlcyBhdCBTY3ViYnnigJlzIHBvaW50LCBqdXN0IGFjcm9zcyB0aGUgc3RyZWV0PC9pbWFnZTp0aXRsZT48aW1hZ2U6Y2FwdGlvbj5BcnQgY2xhc3NlcyBhdCBTY3ViYnnigJlzIHBvaW50LCBqdXN0IGFjcm9zcyB0aGUgc3RyZWV0PC9pbWFnZTpjYXB0aW9uPjwvaW1hZ2U6aW1hZ2U+PC91cmw+PHVybD48bG9jPmh0dHBzOi8vd3d3LndhdGNoaGlsbC5jYS9mYl9pbWdfMTUxNzkzOTY4MTY5NC88L2xvYz48bGFzdG1vZD4yMDE4LTAyLTIzVDAwOjUyOjM4WjwvbGFzdG1vZD48aW1hZ2U6aW1hZ2U+PGltYWdlOmxvYz5odHRwczovL3d3dy53YXRjaGhpbGwuY2Evd3AtY29udGVudC91cGxvYWRzLzIwMTgvMDIvRkJfSU1HXzE1MTc5Mzk2ODE2OTQuanBnPC9pbWFnZTpsb2M+PGltYWdlOnRpdGxlPkNvbG91ciB0aGUgZGF5IGF3YXkgb3IgbWFrZSBtdXNpYyBhcyB5b3Ugd2lzaDwvaW1hZ2U6dGl0bGU+PGltYWdlOmNhcHRpb24+Q29sb3VyIHRoZSBkYXkgYXdheSBvciBtYWtlIG11c2ljIGFzIHlvdSB3aXNoPC9pbWFnZTpjYXB0aW9uPjwvaW1hZ2U6aW1hZ2U+PC91cmw+PHVybD48bG9jPmh0dHBzOi8vd3d3LndhdGNoaGlsbC5jYS9mYl9pbWdfMTUxNzkzOTc1NzU4OC88L2xvYz48bGFzdG1vZD4yMDE4LTAyLTIzVDAwOjUyOjE1WjwvbGFzdG1vZD48aW1hZ2U6aW1hZ2U+PGltYWdlOmxvYz5odHRwczovL3d3dy53YXRjaGhpbGwuY2Evd3AtY29udGVudC91cGxvYWRzLzIwMTgvMDIvRkJfSU1HXzE1MTc5Mzk3NTc1ODguanBnPC9pbWFnZTpsb2M+PGltYWdlOnRpdGxlPlN1bnNoaW5lIG9uIHRoZSBicmVha2Zhc3QgdGFibGU8L2ltYWdlOnRpdGxlPjxpbWFnZTpjYXB0aW9uPlN1bnNoaW5lIG9uIHRoZSBicmVha2Zhc3QgdGFibGU8L2ltYWdlOmNhcHRpb24+PC9pbWFnZTppbWFnZT48L3VybD48dXJsPjxsb2M+aHR0cHM6Ly93d3cud2F0Y2hoaWxsLmNhL2ZiX2ltZ18xNTE3OTM5NTcxMTU4LzwvbG9jPjxsYXN0bW9kPjIwMTgtMDItMjNUMDA6NTE6NTdaPC9sYXN0bW9kPjxpbWFnZTppbWFnZT48aW1hZ2U6bG9jPmh0dHBzOi8vd3d3LndhdGNoaGlsbC5jYS93cC1jb250ZW50L3VwbG9hZHMvMjAxOC8wMi9GQl9JTUdfMTUxNzkzOTU3MTE1OC5qcGc8L2ltYWdlOmxvYz48aW1hZ2U6dGl0bGU+U3BlY3RhY3VsYXIgZ2FyZGVuIGJsb29tPC9pbWFnZTp0aXRsZT48aW1hZ2U6Y2FwdGlvbj5TcGVjdGFjdWxhciBnYXJkZW4gYmxvb208L2ltYWdlOmNhcHRpb24+PC9pbWFnZTppbWFnZT48L3VybD48dXJsPjxsb2M+aHR0cHM6Ly93d3cud2F0Y2hoaWxsLmNhL2ZiX2ltZ18xNTE3OTM5NjMzNzA1LzwvbG9jPjxsYXN0bW9kPjIwMTgtMDItMjNUMDA6NTE6MzZaPC9sYXN0bW9kPjxpbWFnZTppbWFnZT48aW1hZ2U6bG9jPmh0dHBzOi8vd3d3LndhdGNoaGlsbC5jYS93cC1jb250ZW50L3VwbG9hZHMvMjAxOC8wMi9GQl9JTUdfMTUxNzkzOTYzMzcwNS5qcGc8L2ltYWdlOmxvYz48aW1hZ2U6dGl0bGU+Q2FuYWRhIERheSBCcmVha2Zhc3QuICBMZXTigJlzIGNlbGVicmF0ZSE8L2ltYWdlOnRpdGxlPjxpbWFnZTpjYXB0aW9uPkNhbmFkYSBEYXkgQnJlYWtmYXN0LiAgTGV04oCZcyBjZWxlYnJhdGUhPC9pbWFnZTpjYXB0aW9uPjwvaW1hZ2U6aW1hZ2U+PC91cmw+PHVybD48bG9jPmh0dHBzOi8vd3d3LndhdGNoaGlsbC5jYS9mYl9pbWdfMTUxNzkzOTY1NzQ4Ni88L2xvYz48bGFzdG1vZD4yMDE4LTAyLTIzVDAwOjUxOjE0WjwvbGFzdG1vZD48aW1hZ2U6aW1hZ2U+PGltYWdlOmxvYz5odHRwczovL3d3dy53YXRjaGhpbGwuY2Evd3AtY29udGVudC91cGxvYWRzLzIwMTgvMDIvRkJfSU1HXzE1MTc5Mzk2NTc0ODYuanBnPC9pbWFnZTpsb2M+PGltYWdlOnRpdGxlPkJha2VkIGRhaWx5IGZvciBndWVzdHMgYW5kIHNlcnZlZCBhdCB0aGUgY29mZmVlIHN0YXRpb248L2ltYWdlOnRpdGxlPjxpbWFnZTpjYXB0aW9uPkJha2VkIGRhaWx5IGZvciBndWVzdHMgYW5kIHNlcnZlZCBhdCB0aGUgY29mZmVlIHN0YXRpb248L2ltYWdlOmNhcHRpb24+PC9pbWFnZTppbWFnZT48L3VybD48L3VybHNldD4K','image-sitemap-1.xml','','draft','closed','closed','','','','','2018-05-08 13:23:25','2018-05-08 17:23:25','',0,'https://www.watchhill.ca/?p=689',0,'jp_img_sitemap','',0),(690,0,'1970-01-01 00:00:00','0000-00-00 00:00:00','PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPCEtLWdlbmVyYXRvcj0namV0cGFjay01LjknLS0+Cjw/eG1sLXN0eWxlc2hlZXQgdHlwZT0idGV4dC94c2wiIGhyZWY9Imh0dHBzOi8vd3d3LndhdGNoaGlsbC5jYS9zaXRlbWFwLWluZGV4LnhzbCI/Pgo8c2l0ZW1hcGluZGV4IHhtbG5zPSJodHRwOi8vd3d3LnNpdGVtYXBzLm9yZy9zY2hlbWFzL3NpdGVtYXAvMC45Ij48c2l0ZW1hcD48bG9jPmh0dHBzOi8vd3d3LndhdGNoaGlsbC5jYS9zaXRlbWFwLTEueG1sPC9sb2M+PGxhc3Rtb2Q+MjAxOC0wNC0wNlQxODo0OToyMlo8L2xhc3Rtb2Q+PC9zaXRlbWFwPjxzaXRlbWFwPjxsb2M+aHR0cHM6Ly93d3cud2F0Y2hoaWxsLmNhL2ltYWdlLXNpdGVtYXAtMS54bWw8L2xvYz48bGFzdG1vZD4yMDE4LTAyLTIzVDAxOjAxOjA2WjwvbGFzdG1vZD48L3NpdGVtYXA+PC9zaXRlbWFwaW5kZXg+Cg==','sitemap.xml','','draft','closed','closed','','','','','2018-05-08 13:23:25','2018-05-08 17:23:25','',0,'https://www.watchhill.ca/?p=690',0,'jp_sitemap_master','',0);
/*!40000 ALTER TABLE `wh_posts` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wh_sbc_calendars`
--

DROP TABLE IF EXISTS `wh_sbc_calendars`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wh_sbc_calendars` (
  `calendarID` int(10) NOT NULL AUTO_INCREMENT,
  `calendarTitle` text,
  `createdDate` int(11) DEFAULT NULL,
  `modifiedDate` int(11) DEFAULT NULL,
  `calendarData` text,
  `calendarLegend` text,
  PRIMARY KEY (`calendarID`)
) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8 COMMENT='WP Simple Booking Calendar';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wh_sbc_calendars`
--

LOCK TABLES `wh_sbc_calendars` WRITE;
/*!40000 ALTER TABLE `wh_sbc_calendars` DISABLE KEYS */;
INSERT INTO `wh_sbc_calendars` VALUES (1,'The Huron',1490882861,1525444383,'{\"2017\":{\"3\":{\"1\":\"1\",\"2\":\"1\",\"3\":\"1\",\"4\":\"1\",\"5\":\"1\",\"6\":\"1\",\"7\":\"1\",\"8\":\"1\",\"9\":\"1\",\"10\":\"1\",\"11\":\"1\",\"12\":\"1\",\"13\":\"1\",\"14\":\"1\",\"15\":\"1\",\"16\":\"1\",\"17\":\"1\",\"18\":\"1\",\"19\":\"1\",\"20\":\"1\",\"21\":\"1\",\"22\":\"1\",\"23\":\"1\",\"24\":\"1\",\"25\":\"1\",\"26\":\"1\",\"27\":\"1\",\"28\":\"1\",\"29\":\"1\",\"30\":\"1\",\"31\":\"1\"},\"4\":{\"1\":\"1\",\"2\":\"1\",\"3\":\"1\",\"4\":\"1\",\"5\":\"1\",\"6\":\"1\",\"7\":\"1\",\"8\":\"1\",\"9\":\"1\",\"10\":\"1\",\"11\":\"1\",\"12\":\"1\",\"13\":\"1\",\"14\":\"1\",\"15\":\"1\",\"16\":\"1\",\"17\":\"1\",\"18\":\"1\",\"19\":\"1\",\"20\":\"1\",\"21\":\"1\",\"22\":\"1\",\"23\":\"1\",\"24\":\"1\",\"25\":\"1\",\"26\":\"1\",\"27\":\"1\",\"28\":\"1\",\"29\":\"1\",\"30\":\"1\"},\"5\":{\"1\":\"1\",\"2\":\"1\",\"3\":\"1\",\"4\":\"1\",\"5\":\"1\",\"6\":\"1\",\"7\":\"1\",\"8\":\"1\",\"9\":\"1\",\"10\":\"1\",\"11\":\"1\",\"12\":\"1\",\"13\":\"1\",\"14\":\"1\",\"15\":\"1\",\"16\":\"1\",\"17\":\"1\",\"18\":\"1\",\"19\":\"1\",\"20\":\"1\",\"21\":\"1\",\"22\":\"1\",\"23\":\"1\",\"24\":\"1\",\"25\":\"1\",\"26\":\"1\",\"27\":\"1\",\"28\":\"1\",\"29\":\"1\",\"30\":\"1\",\"31\":\"1\"},\"6\":{\"1\":\"1\",\"2\":\"1\",\"3\":\"1\",\"4\":\"1\",\"5\":\"1\",\"6\":\"default\",\"7\":\"default\",\"8\":\"default\",\"9\":\"1\",\"10\":\"1\",\"11\":\"1\",\"12\":\"default\",\"13\":\"default\",\"14\":\"default\",\"15\":\"default\",\"16\":\"1\",\"17\":\"1\",\"18\":\"1\",\"19\":\"1\",\"20\":\"1\",\"21\":\"1\",\"22\":\"1\",\"23\":\"default\",\"24\":\"1\",\"25\":\"1\",\"26\":\"1\",\"27\":\"default\",\"28\":\"1\",\"29\":\"1\",\"30\":\"default\",\"description-9\":\"Max Sawka\",\"description-24\":\"Doug Woltz\",\"description-16\":\"Karen Christensen\",\"description-28\":\"Sues day off\",\"description-29\":\"Sues day off\"},\"7\":{\"1\":\"1\",\"2\":\"1\",\"3\":\"default\",\"4\":\"default\",\"5\":\"1\",\"6\":\"1\",\"7\":\"1\",\"8\":\"1\",\"9\":\"default\",\"10\":\"1\",\"11\":\"default\",\"12\":\"default\",\"13\":\"default\",\"14\":\"1\",\"15\":\"1\",\"16\":\"1\",\"17\":\"1\",\"18\":\"1\",\"19\":\"1\",\"20\":\"1\",\"21\":\"1\",\"22\":\"1\",\"23\":\"1\",\"24\":\"1\",\"25\":\"1\",\"26\":\"1\",\"27\":\"default\",\"28\":\"1\",\"29\":\"1\",\"30\":\"default\",\"31\":\"default\",\"description-15\":\"Kiersty Kelly\",\"description-21\":\"Christine Brezina\",\"description-7\":\"Craig Harrison\",\"description-1\":\"Anabela Lopes\",\"description-24\":\"Kaylea Brunk\",\"description-10\":\"David Scragg\",\"description-14\":\"Warren Burnett\",\"description-5\":\"Lesle Eccelstone and Robert Ebert\",\"description-12\":\"\",\"description-19\":\"Lynette Renzetti\",\"description-26\":\"Duncan MacArthur...cancelled\",\"description-29\":\"Lianne Davies\",\"description-28\":\"Joanne Kidd/Dave\"},\"8\":{\"1\":\"1\",\"2\":\"1\",\"3\":\"default\",\"4\":\"default\",\"5\":\"1\",\"6\":\"1\",\"7\":\"1\",\"8\":\"1\",\"9\":\"1\",\"10\":\"1\",\"11\":\"1\",\"12\":\"1\",\"13\":\"1\",\"14\":\"1\",\"15\":\"1\",\"16\":\"1\",\"17\":\"1\",\"18\":\"1\",\"19\":\"1\",\"20\":\"1\",\"21\":\"1\",\"22\":\"1\",\"23\":\"1\",\"24\":\"1\",\"25\":\"1\",\"26\":\"1\",\"27\":\"1\",\"28\":\"default\",\"29\":\"default\",\"30\":\"default\",\"31\":\"default\",\"description-7\":\"Tina Srebotnjak  \",\"description-11\":\"Helvi\",\"description-14\":\"Helene Sirag\",\"description-5\":\"Jerrimy Richardson\",\"description-1\":\"Meryl  Ouellette\",\"description-20\":\"Lori Ferris\",\"description-18\":\"Colin Gabriel\",\"description-19\":\"Alix McGregor \",\"description-10\":\"Cathy Schroeder\",\"description-13\":\"Barb Brady\",\"description-26\":\"Isabell Neiderer\",\"description-17\":\"Jan Fuller and Dave\",\"description-28\":\"Ingrid De Visser  CAMCELLED\",\"description-24\":\"Ian Low\"},\"9\":{\"1\":\"default\",\"2\":\"1\",\"3\":\"1\",\"4\":\"1\",\"5\":\"1\",\"6\":\"1\",\"7\":\"default\",\"8\":\"1\",\"9\":\"1\",\"10\":\"default\",\"11\":\"default\",\"12\":\"default\",\"13\":\"default\",\"14\":\"default\",\"15\":\"default\",\"16\":\"1\",\"17\":\"default\",\"18\":\"default\",\"19\":\"default\",\"20\":\"1\",\"21\":\"1\",\"22\":\"1\",\"23\":\"1\",\"24\":\"1\",\"25\":\"1\",\"26\":\"1\",\"27\":\"1\",\"28\":\"1\",\"29\":\"1\",\"30\":\"1\",\"description-2\":\"Simon \",\"description-8\":\"David Pelton\",\"description-20\":\"Grant Williamson\",\"description-22\":\"Rose /James Castronovo\",\"description-16\":\"Michael Deroode\",\"description-24\":\"Wayne Winch\"},\"10\":{\"1\":\"1\",\"2\":\"1\",\"3\":\"1\",\"4\":\"1\",\"5\":\"1\",\"6\":\"1\",\"7\":\"1\",\"8\":\"1\",\"9\":\"1\",\"10\":\"1\",\"11\":\"1\",\"12\":\"1\",\"13\":\"1\",\"14\":\"1\",\"15\":\"1\",\"16\":\"1\",\"17\":\"1\",\"18\":\"1\",\"19\":\"1\",\"20\":\"1\",\"21\":\"1\",\"22\":\"1\",\"23\":\"1\",\"24\":\"1\",\"25\":\"1\",\"26\":\"1\",\"27\":\"1\",\"28\":\"1\",\"29\":\"1\",\"30\":\"1\",\"31\":\"1\"},\"11\":{\"1\":\"1\",\"2\":\"1\",\"3\":\"1\",\"4\":\"1\",\"5\":\"1\",\"6\":\"1\",\"7\":\"1\",\"8\":\"1\",\"9\":\"1\",\"10\":\"1\",\"11\":\"1\",\"12\":\"1\",\"13\":\"1\",\"14\":\"1\",\"15\":\"1\",\"16\":\"1\",\"17\":\"1\",\"18\":\"1\",\"19\":\"1\",\"20\":\"1\",\"21\":\"1\",\"22\":\"1\",\"23\":\"1\",\"24\":\"1\",\"25\":\"1\",\"26\":\"1\",\"27\":\"1\",\"28\":\"1\",\"29\":\"1\",\"30\":\"1\"},\"12\":{\"1\":\"1\",\"2\":\"1\",\"3\":\"1\",\"4\":\"1\",\"5\":\"1\",\"6\":\"1\",\"7\":\"1\",\"8\":\"1\",\"9\":\"1\",\"10\":\"1\",\"11\":\"1\",\"12\":\"1\",\"13\":\"1\",\"14\":\"1\",\"15\":\"1\",\"16\":\"1\",\"17\":\"1\",\"18\":\"1\",\"19\":\"1\",\"20\":\"1\",\"21\":\"1\",\"22\":\"1\",\"23\":\"1\",\"24\":\"1\",\"25\":\"1\",\"26\":\"1\",\"27\":\"1\",\"28\":\"1\",\"29\":\"1\",\"30\":\"1\",\"31\":\"1\"}},\"2018\":{\"1\":{\"1\":\"1\",\"2\":\"1\",\"3\":\"1\",\"4\":\"1\",\"5\":\"1\",\"6\":\"1\",\"7\":\"1\",\"8\":\"1\",\"9\":\"1\",\"10\":\"1\",\"11\":\"1\",\"12\":\"1\",\"13\":\"1\",\"14\":\"1\",\"15\":\"1\",\"16\":\"1\",\"17\":\"1\",\"18\":\"1\",\"19\":\"1\",\"20\":\"1\",\"21\":\"1\",\"22\":\"1\",\"23\":\"1\",\"24\":\"1\",\"25\":\"1\",\"26\":\"1\",\"27\":\"1\",\"28\":\"1\",\"29\":\"1\",\"30\":\"1\",\"31\":\"1\"},\"2\":{\"1\":\"1\",\"2\":\"1\",\"3\":\"1\",\"4\":\"1\",\"5\":\"1\",\"6\":\"1\",\"7\":\"1\",\"8\":\"1\",\"9\":\"1\",\"10\":\"1\",\"11\":\"1\",\"12\":\"1\",\"13\":\"1\",\"14\":\"1\",\"15\":\"1\",\"16\":\"1\",\"17\":\"1\",\"18\":\"1\",\"19\":\"1\",\"20\":\"1\",\"21\":\"1\",\"22\":\"1\",\"23\":\"1\",\"24\":\"1\",\"25\":\"1\",\"26\":\"1\",\"27\":\"1\",\"28\":\"1\"},\"3\":{\"1\":\"1\",\"2\":\"1\",\"3\":\"1\",\"4\":\"1\",\"5\":\"1\",\"6\":\"1\",\"7\":\"1\",\"8\":\"1\",\"9\":\"1\",\"10\":\"1\",\"11\":\"1\",\"12\":\"1\",\"13\":\"1\",\"14\":\"1\",\"15\":\"1\",\"16\":\"1\",\"17\":\"1\",\"18\":\"1\",\"19\":\"1\",\"20\":\"1\",\"21\":\"1\",\"22\":\"1\",\"23\":\"1\",\"24\":\"1\",\"25\":\"1\",\"26\":\"1\",\"27\":\"1\",\"28\":\"1\",\"29\":\"1\",\"30\":\"1\",\"31\":\"1\"},\"4\":{\"1\":\"1\",\"2\":\"1\",\"3\":\"1\",\"4\":\"1\",\"5\":\"1\",\"6\":\"1\",\"7\":\"1\",\"8\":\"1\",\"9\":\"1\",\"10\":\"1\",\"11\":\"1\",\"12\":\"1\",\"13\":\"1\",\"14\":\"1\",\"15\":\"1\",\"16\":\"1\",\"17\":\"1\",\"18\":\"1\",\"19\":\"1\",\"20\":\"1\",\"21\":\"1\",\"22\":\"1\",\"23\":\"1\",\"24\":\"1\",\"25\":\"1\",\"26\":\"1\",\"27\":\"1\",\"28\":\"1\",\"29\":\"1\",\"30\":\"1\"},\"5\":{\"1\":\"1\",\"2\":\"1\",\"3\":\"1\",\"4\":\"1\",\"5\":\"1\",\"6\":\"1\",\"7\":\"1\",\"8\":\"1\",\"9\":\"1\",\"10\":\"1\",\"11\":\"default\",\"12\":\"default\",\"13\":\"default\",\"14\":\"default\",\"15\":\"default\",\"16\":\"default\",\"17\":\"default\",\"18\":\"default\",\"19\":\"default\",\"20\":\"default\",\"21\":\"default\",\"22\":\"default\",\"23\":\"default\",\"24\":\"default\",\"25\":\"default\",\"26\":\"default\",\"27\":\"default\",\"28\":\"default\",\"29\":\"1\",\"30\":\"default\",\"31\":\"default\",\"description-29\":\"Moira Dossetor\"},\"6\":{\"1\":\"default\",\"5\":\"1\",\"22\":\"1\",\"23\":\"1\",\"description-22\":\"Victoria Cowley\",\"description-5\":\"Nicole\"},\"7\":{\"3\":\"1\",\"4\":\"1\",\"5\":\"1\",\"8\":\"1\",\"9\":\"1\",\"13\":\"1\",\"14\":\"1\",\"18\":\"default\",\"19\":\"default\",\"20\":\"1\",\"21\":\"1\",\"22\":\"1\",\"23\":\"1\",\"24\":\"1\",\"27\":\"1\",\"28\":\"1\",\"29\":\"1\",\"30\":\"1\",\"31\":\"1\",\"description-27\":\"Lynn Myers...moving toChantry for 28\",\"description-13\":\"Junk Food BBQ\",\"description-20\":\"Joanne Prout\",\"description-3\":\"Gerald Costello \",\"description-21\":\"Courtney Rogic\",\"description-29\":\"Jane McGowan\",\"description-8\":\"Debbie Hannaberg\"},\"8\":{\"1\":\"1\",\"2\":\"1\",\"3\":\"default\",\"4\":\"default\",\"5\":\"default\",\"7\":\"1\",\"8\":\"1\",\"16\":\"1\",\"18\":\"1\",\"19\":\"1\",\"22\":\"1\",\"23\":\"1\",\"24\":\"1\",\"25\":\"1\",\"26\":\"1\",\"description-24\":\"Carol Cundal\",\"description-2\":\"\",\"description-18\":\"Kelsey Weding\",\"description-16\":\"Tim Keta\",\"description-1\":\"Jane McGowan\",\"description-7\":\"Shela Coulas\",\"description-22\":\"Marcell DeFreitas\"},\"9\":{\"13\":\"1\",\"14\":\"1\",\"15\":\"1\",\"16\":\"1\",\"description-12\":\"\",\"description-13\":\"Linda Prachun\"},\"10\":{\"1\":\"1\",\"2\":\"1\",\"3\":\"1\",\"4\":\"1\",\"5\":\"1\",\"6\":\"1\",\"7\":\"1\",\"8\":\"1\",\"9\":\"1\",\"10\":\"1\",\"11\":\"1\",\"12\":\"1\",\"13\":\"1\",\"14\":\"1\",\"15\":\"1\",\"16\":\"1\",\"17\":\"1\",\"18\":\"1\",\"19\":\"1\",\"20\":\"1\",\"21\":\"1\",\"22\":\"1\",\"23\":\"1\",\"24\":\"1\",\"25\":\"1\",\"26\":\"1\",\"27\":\"1\",\"28\":\"1\",\"29\":\"1\",\"30\":\"1\",\"31\":\"1\"},\"11\":{\"1\":\"1\",\"2\":\"1\",\"3\":\"1\",\"4\":\"1\",\"5\":\"1\",\"6\":\"1\",\"7\":\"1\",\"8\":\"1\",\"9\":\"1\",\"10\":\"1\",\"11\":\"1\",\"12\":\"1\",\"13\":\"1\",\"14\":\"1\",\"15\":\"1\",\"16\":\"1\",\"17\":\"1\",\"18\":\"1\",\"19\":\"1\",\"20\":\"1\",\"21\":\"1\",\"22\":\"1\",\"23\":\"1\",\"24\":\"1\",\"25\":\"1\",\"26\":\"1\",\"27\":\"1\",\"28\":\"1\",\"29\":\"1\",\"30\":\"1\"},\"12\":{\"1\":\"1\",\"2\":\"1\",\"3\":\"1\",\"4\":\"1\",\"5\":\"1\",\"6\":\"1\",\"7\":\"1\",\"8\":\"1\",\"9\":\"1\",\"10\":\"1\",\"11\":\"1\",\"12\":\"1\",\"13\":\"1\",\"14\":\"1\",\"15\":\"1\",\"16\":\"1\",\"17\":\"1\",\"18\":\"1\",\"19\":\"1\",\"20\":\"1\",\"21\":\"1\",\"22\":\"1\",\"23\":\"1\",\"24\":\"1\",\"25\":\"1\",\"26\":\"1\",\"27\":\"1\",\"28\":\"1\",\"29\":\"1\",\"30\":\"1\",\"31\":\"1\"}},\"2019\":{\"1\":{\"1\":\"1\",\"2\":\"1\",\"3\":\"1\",\"4\":\"1\",\"5\":\"1\",\"6\":\"1\",\"7\":\"1\",\"8\":\"1\",\"9\":\"1\",\"10\":\"1\",\"11\":\"1\",\"12\":\"1\",\"13\":\"1\",\"14\":\"1\",\"15\":\"1\",\"16\":\"1\",\"17\":\"1\",\"18\":\"1\",\"19\":\"1\",\"20\":\"1\",\"21\":\"1\",\"22\":\"1\",\"23\":\"1\",\"24\":\"1\",\"25\":\"1\",\"26\":\"1\",\"27\":\"1\",\"28\":\"1\",\"29\":\"1\",\"30\":\"1\",\"31\":\"1\"},\"2\":{\"1\":\"1\",\"2\":\"1\",\"3\":\"1\",\"4\":\"1\",\"5\":\"1\",\"6\":\"1\",\"7\":\"1\",\"8\":\"1\",\"9\":\"1\",\"10\":\"1\",\"11\":\"1\",\"12\":\"1\",\"13\":\"1\",\"14\":\"1\",\"15\":\"1\",\"16\":\"1\",\"17\":\"1\",\"18\":\"1\",\"19\":\"1\",\"20\":\"1\",\"21\":\"1\",\"22\":\"1\",\"23\":\"1\",\"24\":\"1\",\"25\":\"1\",\"26\":\"1\",\"27\":\"1\",\"28\":\"1\"},\"3\":{\"1\":\"1\",\"2\":\"1\",\"3\":\"1\",\"4\":\"1\",\"5\":\"1\",\"6\":\"1\",\"7\":\"1\",\"8\":\"1\",\"9\":\"1\",\"10\":\"1\",\"11\":\"1\",\"12\":\"1\",\"13\":\"1\",\"14\":\"1\",\"15\":\"1\",\"16\":\"1\",\"17\":\"1\",\"18\":\"1\",\"19\":\"1\",\"20\":\"1\",\"21\":\"1\",\"22\":\"1\",\"23\":\"1\",\"24\":\"1\",\"25\":\"1\",\"26\":\"1\",\"27\":\"1\",\"28\":\"1\",\"29\":\"1\",\"30\":\"1\",\"31\":\"1\"},\"4\":{\"1\":\"1\",\"2\":\"1\",\"3\":\"1\",\"4\":\"1\",\"5\":\"1\",\"6\":\"1\",\"7\":\"1\",\"8\":\"1\",\"9\":\"1\",\"10\":\"1\",\"11\":\"1\",\"12\":\"1\",\"13\":\"1\",\"14\":\"1\",\"15\":\"1\",\"16\":\"1\",\"17\":\"1\",\"18\":\"1\",\"19\":\"1\",\"20\":\"1\",\"21\":\"1\",\"22\":\"1\",\"23\":\"1\",\"24\":\"1\",\"25\":\"1\",\"26\":\"1\",\"27\":\"1\",\"28\":\"1\",\"29\":\"1\",\"30\":\"1\"},\"5\":{\"1\":\"1\",\"2\":\"1\",\"3\":\"1\",\"4\":\"1\",\"5\":\"1\",\"6\":\"1\",\"7\":\"1\",\"8\":\"1\",\"9\":\"1\",\"10\":\"1\",\"11\":\"1\",\"12\":\"1\",\"13\":\"1\",\"14\":\"1\",\"15\":\"1\",\"16\":\"1\",\"17\":\"1\",\"18\":\"1\",\"19\":\"1\",\"20\":\"1\",\"21\":\"1\",\"22\":\"1\",\"23\":\"1\",\"24\":\"1\",\"25\":\"1\",\"26\":\"1\",\"27\":\"1\",\"28\":\"1\",\"29\":\"1\",\"30\":\"1\",\"31\":\"1\"},\"6\":{\"1\":\"default\",\"2\":\"default\"},\"10\":{\"1\":\"1\",\"2\":\"1\",\"3\":\"1\",\"4\":\"1\",\"5\":\"1\",\"6\":\"1\",\"7\":\"1\",\"8\":\"1\",\"9\":\"1\",\"10\":\"1\",\"11\":\"1\",\"12\":\"1\",\"13\":\"1\",\"14\":\"1\",\"15\":\"1\",\"16\":\"1\",\"17\":\"1\",\"18\":\"1\",\"19\":\"1\",\"20\":\"1\",\"21\":\"1\",\"22\":\"1\",\"23\":\"1\",\"24\":\"1\",\"25\":\"1\",\"26\":\"1\",\"27\":\"1\",\"28\":\"1\",\"29\":\"1\",\"30\":\"1\",\"31\":\"1\"},\"11\":{\"1\":\"1\",\"2\":\"1\",\"3\":\"1\",\"4\":\"1\",\"5\":\"1\",\"6\":\"1\",\"7\":\"1\",\"8\":\"1\",\"9\":\"1\",\"10\":\"1\",\"11\":\"1\",\"12\":\"1\",\"13\":\"1\",\"14\":\"1\",\"15\":\"1\",\"16\":\"1\",\"17\":\"1\",\"18\":\"1\",\"19\":\"1\",\"20\":\"1\",\"21\":\"1\",\"22\":\"1\",\"23\":\"1\",\"24\":\"1\",\"25\":\"1\",\"26\":\"1\",\"27\":\"1\",\"28\":\"1\",\"29\":\"1\",\"30\":\"1\"},\"12\":{\"1\":\"1\",\"2\":\"1\",\"3\":\"1\",\"4\":\"1\",\"5\":\"1\",\"6\":\"1\",\"7\":\"1\",\"8\":\"1\",\"9\":\"1\",\"10\":\"1\",\"11\":\"1\",\"12\":\"1\",\"13\":\"1\",\"14\":\"1\",\"15\":\"1\",\"16\":\"1\",\"17\":\"1\",\"18\":\"1\",\"19\":\"1\",\"20\":\"1\",\"21\":\"1\",\"22\":\"1\",\"23\":\"1\",\"24\":\"1\",\"25\":\"1\",\"26\":\"1\",\"27\":\"1\",\"28\":\"1\",\"29\":\"1\",\"30\":\"1\",\"31\":\"1\"}},\"2020\":{\"1\":{\"1\":\"1\",\"2\":\"1\",\"3\":\"1\",\"4\":\"1\",\"5\":\"1\",\"6\":\"1\",\"7\":\"1\",\"8\":\"1\",\"9\":\"1\",\"10\":\"1\",\"11\":\"1\",\"12\":\"1\",\"13\":\"1\",\"14\":\"1\",\"15\":\"1\",\"16\":\"1\",\"17\":\"1\",\"18\":\"1\",\"19\":\"1\",\"20\":\"1\",\"21\":\"1\",\"22\":\"1\",\"23\":\"1\",\"24\":\"1\",\"25\":\"1\",\"26\":\"1\",\"27\":\"1\",\"28\":\"1\",\"29\":\"1\",\"30\":\"1\",\"31\":\"1\"},\"2\":{\"1\":\"1\",\"2\":\"1\",\"3\":\"1\",\"4\":\"1\",\"5\":\"1\",\"6\":\"1\",\"7\":\"1\",\"8\":\"1\",\"9\":\"1\",\"10\":\"1\",\"11\":\"1\",\"12\":\"1\",\"13\":\"1\",\"14\":\"1\",\"15\":\"1\",\"16\":\"1\",\"17\":\"1\",\"18\":\"1\",\"19\":\"1\",\"20\":\"1\",\"21\":\"1\",\"22\":\"1\",\"23\":\"1\",\"24\":\"1\",\"25\":\"1\",\"26\":\"1\",\"27\":\"1\",\"28\":\"1\",\"29\":\"1\"},\"3\":{\"1\":\"1\",\"2\":\"1\",\"3\":\"1\",\"4\":\"1\",\"5\":\"1\",\"6\":\"1\",\"7\":\"1\",\"9\":\"1\",\"10\":\"1\",\"11\":\"1\",\"12\":\"1\",\"13\":\"1\",\"14\":\"1\",\"15\":\"1\",\"16\":\"1\",\"17\":\"1\",\"18\":\"1\",\"19\":\"1\",\"20\":\"1\",\"21\":\"1\",\"22\":\"1\",\"23\":\"1\",\"24\":\"1\",\"25\":\"1\",\"26\":\"1\",\"27\":\"1\",\"28\":\"1\",\"29\":\"1\",\"30\":\"1\",\"31\":\"1\"},\"4\":{\"1\":\"1\",\"2\":\"1\",\"3\":\"1\",\"4\":\"1\",\"5\":\"1\",\"6\":\"1\",\"7\":\"1\",\"8\":\"1\",\"9\":\"1\",\"10\":\"1\",\"11\":\"1\",\"12\":\"1\",\"13\":\"1\",\"14\":\"1\",\"15\":\"1\",\"16\":\"1\",\"17\":\"1\",\"18\":\"1\",\"19\":\"1\",\"20\":\"1\",\"21\":\"1\",\"22\":\"1\",\"23\":\"1\",\"24\":\"1\",\"25\":\"1\",\"26\":\"1\",\"27\":\"1\",\"28\":\"1\",\"29\":\"1\",\"30\":\"1\"},\"5\":{\"1\":\"1\",\"2\":\"1\",\"3\":\"1\",\"4\":\"1\",\"5\":\"1\",\"6\":\"1\",\"7\":\"1\",\"8\":\"1\",\"9\":\"1\",\"10\":\"1\",\"11\":\"1\",\"12\":\"1\",\"13\":\"1\",\"14\":\"1\",\"15\":\"1\",\"16\":\"1\",\"17\":\"1\",\"18\":\"1\",\"19\":\"1\",\"20\":\"1\",\"21\":\"1\",\"22\":\"1\",\"23\":\"1\",\"24\":\"1\",\"25\":\"1\",\"26\":\"1\",\"27\":\"1\",\"28\":\"1\",\"29\":\"1\",\"30\":\"1\",\"31\":\"1\"},\"6\":{\"1\":\"default\",\"2\":\"default\"}}}','{\"default\":{\"name\":{\"default\":\"Available\",\"hr\":\"Slobodno\",\"cs\":\"Volno\",\"da\":\"Ledigt\",\"nl\":\"Vrij\",\"en\":\"Available\",\"fr\":\"Libre\",\"de\":\"Frei\",\"hu\":\"Szabad\",\"it\":\"Libero\",\"ro\":\"Disponobil\",\"ru\":\"\\u0412\\u0456\\u043b\\u044c\\u043d\\u043e\",\"sk\":\"Vo\\u013en\\u00fd\",\"es\":\"Libre\",\"sv\":\"Ledigt\",\"uk\":\"B\\u0456\\u043b\\u044c\\u043d\\u043e\"},\"color\":\"#ffff99\",\"splitColor\":false,\"bookable\":\"yes\"},\"1\":{\"name\":{\"default\":\"Booked\",\"hr\":\"Zauzeto\",\"cs\":\"Obsazeno\",\"da\":\"Booket\",\"nl\":\"Bezet\",\"en\":\"Booked\",\"fr\":\"Occup\\u00e9\",\"de\":\"Belegt\",\"hu\":\"Foglalt\",\"it\":\"Prenotato\",\"ro\":\"Rezervat\",\"ru\":\"\\u0417\\u0430\\u0431\\u0440\\u043e\\u043d\\u044c\\u043e\\u0432\\u0430\\u043d\\u043e\",\"sk\":\"Obsaden\\u00fd\",\"es\":\"Reservado\",\"sv\":\"Bokat\",\"uk\":\"\\u0417\\u0430\\u0439\\u043d\\u044f\\u0442\\u043e\"},\"color\":\"#339933\",\"splitColor\":false},\"2\":{\"name\":{\"en\":\"Changeover 1\",\"nl\":\"\",\"et\":\"\",\"fi\":\"\",\"fr\":\"\",\"de\":\"\",\"pt\":\"\",\"ro\":\"\",\"default\":\"Changeover 1\"},\"color\":\"#DDFFCC\",\"splitColor\":\"#FFC0BD\",\"bookable\":\"yes\",\"hide\":\"hide\"},\"3\":{\"name\":{\"en\":\"Changeover 2\",\"nl\":\"\",\"et\":\"\",\"fi\":\"\",\"fr\":\"\",\"de\":\"\",\"pt\":\"\",\"ro\":\"\",\"default\":\"Changeover 2\"},\"color\":\"#FFC0BD\",\"splitColor\":\"#DDFFCC\",\"bookable\":\"yes\",\"hide\":\"hide\"}}'),(3,'The Saugeen',1490882934,1525361865,'{\"2017\":{\"3\":{\"1\":\"1\",\"2\":\"1\",\"3\":\"1\",\"4\":\"1\",\"5\":\"1\",\"6\":\"1\",\"7\":\"1\",\"8\":\"1\",\"9\":\"1\",\"10\":\"1\",\"11\":\"1\",\"12\":\"1\",\"13\":\"1\",\"14\":\"1\",\"15\":\"1\",\"16\":\"1\",\"17\":\"1\",\"18\":\"1\",\"19\":\"1\",\"20\":\"1\",\"21\":\"1\",\"22\":\"1\",\"23\":\"1\",\"24\":\"1\",\"25\":\"1\",\"26\":\"1\",\"27\":\"1\",\"28\":\"1\",\"29\":\"1\",\"30\":\"1\",\"31\":\"1\"},\"4\":{\"1\":\"1\",\"2\":\"1\",\"3\":\"1\",\"4\":\"1\",\"5\":\"1\",\"6\":\"1\",\"7\":\"1\",\"8\":\"1\",\"9\":\"1\",\"10\":\"1\",\"11\":\"1\",\"12\":\"1\",\"13\":\"1\",\"14\":\"1\",\"15\":\"1\",\"16\":\"1\",\"17\":\"1\",\"18\":\"1\",\"19\":\"1\",\"20\":\"1\",\"21\":\"1\",\"22\":\"1\",\"23\":\"1\",\"24\":\"1\",\"25\":\"1\",\"26\":\"1\",\"27\":\"1\",\"28\":\"1\",\"29\":\"1\",\"30\":\"1\"},\"5\":{\"1\":\"1\",\"2\":\"1\",\"3\":\"1\",\"4\":\"1\",\"5\":\"1\",\"6\":\"1\",\"7\":\"1\",\"8\":\"1\",\"9\":\"1\",\"10\":\"1\",\"11\":\"1\",\"12\":\"1\",\"13\":\"1\",\"14\":\"1\",\"15\":\"1\",\"16\":\"1\",\"17\":\"1\",\"18\":\"1\",\"19\":\"1\",\"20\":\"1\",\"21\":\"1\",\"22\":\"1\",\"23\":\"1\",\"24\":\"1\",\"25\":\"1\",\"26\":\"1\",\"27\":\"1\",\"28\":\"1\",\"29\":\"1\",\"30\":\"1\",\"31\":\"1\"},\"6\":{\"1\":\"1\",\"2\":\"1\",\"3\":\"1\",\"4\":\"1\",\"5\":\"1\",\"6\":\"default\",\"7\":\"default\",\"8\":\"default\",\"9\":\"1\",\"10\":\"1\",\"11\":\"default\",\"12\":\"1\",\"13\":\"1\",\"14\":\"1\",\"15\":\"default\",\"16\":\"default\",\"17\":\"default\",\"18\":\"default\",\"19\":\"default\",\"20\":\"default\",\"21\":\"default\",\"22\":\"default\",\"23\":\"1\",\"24\":\"1\",\"25\":\"default\",\"26\":\"default\",\"27\":\"default\",\"28\":\"1\",\"29\":\"1\",\"30\":\"1\",\"description-30\":\"Laura and Voya\",\"description-12\":\"Ted\",\"description-9\":\"Val  klobucar\",\"description-23\":\"Cortney Simkins\",\"description-2\":\"Simon Morar\",\"description-28\":\"Sues day off\",\"description-29\":\"Suses day off \"},\"7\":{\"1\":\"1\",\"2\":\"1\",\"3\":\"default\",\"4\":\"1\",\"5\":\"1\",\"6\":\"1\",\"7\":\"default\",\"8\":\"1\",\"9\":\"1\",\"10\":\"1\",\"11\":\"default\",\"12\":\"default\",\"13\":\"1\",\"14\":\"1\",\"15\":\"1\",\"16\":\"default\",\"17\":\"1\",\"18\":\"default\",\"19\":\"default\",\"20\":\"1\",\"21\":\"1\",\"22\":\"1\",\"23\":\"1\",\"24\":\"1\",\"25\":\"1\",\"26\":\"1\",\"27\":\"1\",\"28\":\"1\",\"29\":\"1\",\"30\":\"default\",\"31\":\"1\",\"description-4\":\"Lianne Thompson\",\"description-2\":\"\",\"description-1\":\"Laura and Voya\",\"description-14\":\"Janet Kellu\",\"description-8\":\"Brent and Diane Arlitt\",\"description-10\":\"Gary Schultz\",\"description-20\":\"Roberta Avery\",\"description-21\":\"Barbara Victor\",\"description-17\":\"John Clark\",\"description-22\":\"Nazila Hearodi\",\"description-24\":\"Sandra Karpatfi\",\"description-31\":\"Ron Saunders\",\"description-28\":\"Moira Barber\"},\"8\":{\"1\":\"1\",\"2\":\"1\",\"3\":\"1\",\"4\":\"1\",\"5\":\"1\",\"6\":\"1\",\"7\":\"1\",\"8\":\"1\",\"9\":\"1\",\"10\":\"1\",\"11\":\"1\",\"12\":\"1\",\"13\":\"1\",\"14\":\"1\",\"15\":\"default\",\"16\":\"1\",\"17\":\"1\",\"18\":\"1\",\"19\":\"1\",\"20\":\"1\",\"21\":\"1\",\"22\":\"default\",\"23\":\"1\",\"24\":\"default\",\"25\":\"1\",\"26\":\"1\",\"27\":\"1\",\"28\":\"default\",\"29\":\"default\",\"30\":\"default\",\"31\":\"default\",\"description-25\":\"Taigh Smyth\",\"description-11\":\"\",\"description-6\":\"Sarah Malo\",\"description-3\":\"Colleen Anastasiadis\",\"description-26\":\"Marcel  special rate\",\"description-10\":\"Raymond Charland\",\"description-19\":\"Earl Jones\",\"description-2\":\"Paul Burns\",\"description-8\":\"Catherine Carter\",\"description-16\":\"George Thomson  (moving to Chantry on 17)\",\"description-17\":\"Joanne Kidd\",\"description-18\":\"Connie and Robert Giles  booked by son Ryan London\",\"description-21\":\"Unknown\",\"description-23\":\"Lara Weyler\"},\"9\":{\"1\":\"default\",\"2\":\"1\",\"3\":\"1\",\"4\":\"1\",\"5\":\"1\",\"6\":\"1\",\"7\":\"default\",\"8\":\"1\",\"9\":\"1\",\"10\":\"default\",\"11\":\"default\",\"12\":\"default\",\"13\":\"default\",\"14\":\"1\",\"15\":\"1\",\"16\":\"1\",\"17\":\"default\",\"18\":\"default\",\"19\":\"default\",\"20\":\"default\",\"21\":\"1\",\"22\":\"1\",\"23\":\"1\",\"24\":\"default\",\"25\":\"1\",\"26\":\"1\",\"27\":\"1\",\"28\":\"1\",\"29\":\"1\",\"30\":\"1\",\"description-2\":\"Simon\",\"description-15\":\"Rick Harcomb\",\"description-14\":\"Rick Harcomb\",\"description-1\":\"Cheryl Ross cancelled\",\"description-8\":\"Dewi Minden\",\"description-23\":\"Brendon Ross\",\"description-21\":\"Len White\"},\"10\":{\"1\":\"1\",\"2\":\"1\",\"3\":\"1\",\"4\":\"1\",\"5\":\"1\",\"6\":\"1\",\"7\":\"1\",\"8\":\"1\",\"9\":\"1\",\"10\":\"1\",\"11\":\"1\",\"12\":\"1\",\"13\":\"1\",\"14\":\"1\",\"15\":\"1\",\"16\":\"1\",\"17\":\"1\",\"18\":\"1\",\"19\":\"1\",\"20\":\"1\",\"21\":\"1\",\"22\":\"1\",\"23\":\"1\",\"24\":\"1\",\"25\":\"1\",\"26\":\"1\",\"27\":\"1\",\"28\":\"1\",\"29\":\"1\",\"30\":\"1\",\"31\":\"1\"},\"11\":{\"1\":\"1\",\"2\":\"1\",\"3\":\"1\",\"4\":\"1\",\"5\":\"1\",\"6\":\"1\",\"7\":\"1\",\"8\":\"1\",\"9\":\"1\",\"10\":\"1\",\"11\":\"1\",\"12\":\"1\",\"13\":\"1\",\"14\":\"1\",\"15\":\"1\",\"16\":\"1\",\"17\":\"1\",\"18\":\"1\",\"19\":\"1\",\"20\":\"1\",\"21\":\"1\",\"22\":\"1\",\"23\":\"1\",\"24\":\"1\",\"25\":\"1\",\"26\":\"1\",\"27\":\"1\",\"28\":\"1\",\"29\":\"1\",\"30\":\"1\"},\"12\":{\"1\":\"1\",\"2\":\"1\",\"3\":\"1\",\"4\":\"1\",\"5\":\"1\",\"6\":\"1\",\"7\":\"1\",\"8\":\"1\",\"9\":\"1\",\"10\":\"1\",\"11\":\"1\",\"12\":\"1\",\"13\":\"1\",\"14\":\"1\",\"15\":\"1\",\"16\":\"1\",\"17\":\"1\",\"18\":\"1\",\"19\":\"1\",\"20\":\"1\",\"21\":\"1\",\"22\":\"1\",\"23\":\"1\",\"24\":\"1\",\"25\":\"1\",\"26\":\"1\",\"27\":\"1\",\"28\":\"1\",\"29\":\"1\",\"30\":\"1\",\"31\":\"1\"}},\"2018\":{\"1\":{\"1\":\"1\",\"2\":\"1\",\"3\":\"1\",\"4\":\"1\",\"5\":\"1\",\"6\":\"1\",\"7\":\"1\",\"8\":\"1\",\"9\":\"1\",\"10\":\"1\",\"11\":\"1\",\"12\":\"1\",\"13\":\"1\",\"14\":\"1\",\"15\":\"1\",\"16\":\"1\",\"17\":\"1\",\"18\":\"1\",\"19\":\"1\",\"20\":\"1\",\"21\":\"1\",\"22\":\"1\",\"23\":\"1\",\"24\":\"1\",\"25\":\"1\",\"26\":\"1\",\"27\":\"1\",\"28\":\"1\",\"29\":\"1\",\"30\":\"1\",\"31\":\"1\"},\"2\":{\"1\":\"1\",\"2\":\"1\",\"3\":\"1\",\"4\":\"1\",\"5\":\"1\",\"6\":\"1\",\"7\":\"1\",\"8\":\"1\",\"9\":\"1\",\"10\":\"1\",\"11\":\"1\",\"12\":\"1\",\"13\":\"1\",\"14\":\"1\",\"15\":\"1\",\"16\":\"1\",\"17\":\"1\",\"18\":\"1\",\"19\":\"1\",\"20\":\"1\",\"21\":\"1\",\"22\":\"1\",\"23\":\"1\",\"24\":\"1\",\"25\":\"1\",\"26\":\"1\",\"27\":\"1\",\"28\":\"1\"},\"3\":{\"1\":\"1\",\"2\":\"1\",\"3\":\"1\",\"4\":\"1\",\"5\":\"1\",\"6\":\"1\",\"7\":\"1\",\"8\":\"1\",\"9\":\"1\",\"10\":\"1\",\"11\":\"1\",\"12\":\"1\",\"13\":\"1\",\"14\":\"1\",\"15\":\"1\",\"16\":\"1\",\"17\":\"1\",\"18\":\"1\",\"19\":\"1\",\"20\":\"1\",\"21\":\"1\",\"22\":\"1\",\"23\":\"1\",\"24\":\"1\",\"25\":\"1\",\"26\":\"1\",\"27\":\"1\",\"28\":\"1\",\"29\":\"1\",\"30\":\"1\",\"31\":\"1\"},\"4\":{\"1\":\"1\",\"2\":\"1\",\"3\":\"1\",\"4\":\"1\",\"5\":\"1\",\"6\":\"1\",\"7\":\"1\",\"8\":\"1\",\"9\":\"1\",\"10\":\"1\",\"11\":\"1\",\"12\":\"1\",\"13\":\"1\",\"14\":\"1\",\"15\":\"1\",\"16\":\"1\",\"17\":\"1\",\"18\":\"1\",\"19\":\"1\",\"20\":\"1\",\"21\":\"1\",\"22\":\"1\",\"23\":\"1\",\"24\":\"1\",\"25\":\"1\",\"26\":\"1\",\"27\":\"1\",\"28\":\"1\",\"29\":\"1\",\"30\":\"1\"},\"5\":{\"1\":\"1\",\"2\":\"1\",\"3\":\"1\",\"4\":\"1\",\"5\":\"1\",\"6\":\"1\",\"7\":\"1\",\"8\":\"1\",\"9\":\"1\",\"10\":\"1\",\"11\":\"default\",\"12\":\"default\",\"13\":\"default\",\"14\":\"default\",\"15\":\"default\",\"16\":\"default\",\"17\":\"default\",\"18\":\"default\",\"19\":\"default\",\"20\":\"default\",\"21\":\"default\",\"22\":\"default\",\"23\":\"default\",\"24\":\"default\",\"25\":\"default\",\"26\":\"default\",\"27\":\"default\",\"28\":\"default\",\"29\":\"default\",\"30\":\"default\",\"31\":\"default\"},\"6\":{\"1\":\"default\",\"2\":\"default\",\"3\":\"default\",\"4\":\"default\",\"5\":\"1\",\"6\":\"default\",\"7\":\"default\",\"8\":\"default\",\"9\":\"default\",\"10\":\"default\",\"11\":\"default\",\"12\":\"default\",\"13\":\"default\",\"14\":\"default\",\"15\":\"default\",\"16\":\"default\",\"17\":\"default\",\"18\":\"default\",\"19\":\"default\",\"20\":\"default\",\"21\":\"default\",\"22\":\"default\",\"23\":\"default\",\"24\":\"default\",\"25\":\"default\",\"26\":\"default\",\"27\":\"default\",\"28\":\"default\",\"29\":\"default\",\"30\":\"default\",\"description-5\":\"Nicole and Edwina\"},\"7\":{\"1\":\"default\",\"2\":\"default\",\"3\":\"default\",\"4\":\"default\",\"5\":\"default\",\"6\":\"default\",\"7\":\"default\",\"8\":\"default\",\"9\":\"default\",\"10\":\"default\",\"11\":\"default\",\"12\":\"default\",\"13\":\"1\",\"14\":\"1\",\"15\":\"default\",\"16\":\"default\",\"17\":\"default\",\"18\":\"default\",\"19\":\"default\",\"20\":\"1\",\"21\":\"1\",\"22\":\"default\",\"23\":\"default\",\"24\":\"default\",\"25\":\"default\",\"26\":\"default\",\"27\":\"1\",\"28\":\"1\",\"29\":\"default\",\"30\":\"default\",\"31\":\"1\",\"description-13\":\"Junk Food BBQ\",\"description-20\":\"Aleksandra Pryzdnowek\",\"description-27\":\"Lynn Myers\",\"description-31\":\"Samuel B. Stewart\"},\"8\":{\"1\":\"1\",\"2\":\"1\",\"3\":\"1\",\"4\":\"1\",\"5\":\"1\",\"6\":\"default\",\"7\":\"default\",\"8\":\"default\",\"9\":\"default\",\"10\":\"default\",\"11\":\"default\",\"12\":\"default\",\"13\":\"default\",\"14\":\"default\",\"15\":\"default\",\"16\":\"default\",\"17\":\"default\",\"18\":\"1\",\"19\":\"1\",\"20\":\"1\",\"21\":\"1\",\"22\":\"1\",\"23\":\"1\",\"24\":\"1\",\"25\":\"1\",\"26\":\"1\",\"27\":\"default\",\"28\":\"default\",\"29\":\"default\",\"30\":\"default\",\"31\":\"default\",\"description-24\":\"Carol  Cundal\",\"description-18\":\"Kelsey Wedding\",\"description-1\":\"Samuel B. Stewart\",\"description-20\":\"Doug Richards\"},\"9\":{\"1\":\"default\",\"2\":\"default\",\"3\":\"default\",\"4\":\"default\",\"5\":\"default\",\"6\":\"default\",\"7\":\"default\",\"8\":\"default\",\"9\":\"default\",\"10\":\"default\",\"11\":\"default\",\"12\":\"default\",\"13\":\"default\",\"14\":\"1\",\"15\":\"1\",\"16\":\"default\",\"17\":\"default\",\"18\":\"default\",\"19\":\"default\",\"20\":\"default\",\"21\":\"default\",\"22\":\"default\",\"23\":\"default\",\"24\":\"default\",\"25\":\"default\",\"26\":\"default\",\"27\":\"default\",\"28\":\"default\",\"29\":\"default\",\"30\":\"default\",\"description-14\":\"Anabela Lopes\"},\"10\":{\"1\":\"1\",\"2\":\"1\",\"3\":\"1\",\"4\":\"1\",\"5\":\"1\",\"6\":\"1\",\"7\":\"1\",\"8\":\"1\",\"9\":\"1\",\"10\":\"1\",\"11\":\"1\",\"12\":\"1\",\"13\":\"1\",\"14\":\"1\",\"15\":\"1\",\"16\":\"1\",\"17\":\"1\",\"18\":\"1\",\"19\":\"1\",\"20\":\"1\",\"21\":\"1\",\"22\":\"1\",\"23\":\"1\",\"24\":\"1\",\"25\":\"1\",\"26\":\"1\",\"27\":\"1\",\"28\":\"1\",\"29\":\"1\",\"30\":\"1\",\"31\":\"1\"},\"11\":{\"1\":\"1\",\"2\":\"1\",\"3\":\"1\",\"4\":\"1\",\"5\":\"1\",\"6\":\"1\",\"7\":\"1\",\"8\":\"1\",\"9\":\"1\",\"10\":\"1\",\"11\":\"1\",\"12\":\"1\",\"13\":\"1\",\"14\":\"1\",\"15\":\"1\",\"16\":\"1\",\"17\":\"1\",\"18\":\"1\",\"19\":\"1\",\"20\":\"1\",\"21\":\"1\",\"22\":\"1\",\"23\":\"1\",\"24\":\"1\",\"25\":\"1\",\"26\":\"1\",\"27\":\"1\",\"28\":\"1\",\"29\":\"1\",\"30\":\"1\"},\"12\":{\"1\":\"1\",\"2\":\"1\",\"3\":\"1\",\"4\":\"1\",\"5\":\"1\",\"6\":\"1\",\"7\":\"1\",\"8\":\"1\",\"9\":\"1\",\"10\":\"1\",\"11\":\"1\",\"12\":\"1\",\"13\":\"1\",\"14\":\"1\",\"15\":\"1\",\"16\":\"1\",\"17\":\"1\",\"18\":\"1\",\"19\":\"1\",\"20\":\"1\",\"21\":\"1\",\"22\":\"1\",\"23\":\"1\",\"24\":\"1\",\"25\":\"1\",\"26\":\"1\",\"27\":\"1\",\"28\":\"1\",\"29\":\"1\",\"30\":\"1\",\"31\":\"1\"}},\"2019\":{\"1\":{\"1\":\"1\",\"2\":\"1\",\"3\":\"1\",\"4\":\"1\",\"5\":\"1\",\"6\":\"1\",\"7\":\"1\",\"8\":\"1\",\"9\":\"1\",\"10\":\"1\",\"11\":\"1\",\"12\":\"1\",\"13\":\"1\",\"14\":\"1\",\"15\":\"1\",\"16\":\"1\",\"17\":\"1\",\"18\":\"1\",\"19\":\"1\",\"20\":\"1\",\"21\":\"1\",\"22\":\"1\",\"23\":\"1\",\"24\":\"1\",\"25\":\"1\",\"26\":\"1\",\"27\":\"1\",\"28\":\"1\",\"29\":\"1\",\"30\":\"1\",\"31\":\"1\"},\"2\":{\"1\":\"1\",\"2\":\"1\",\"3\":\"1\",\"4\":\"1\",\"5\":\"1\",\"6\":\"1\",\"7\":\"1\",\"8\":\"1\",\"9\":\"1\",\"10\":\"1\",\"11\":\"1\",\"12\":\"1\",\"13\":\"1\",\"14\":\"1\",\"15\":\"1\",\"16\":\"1\",\"17\":\"1\",\"18\":\"1\",\"19\":\"1\",\"20\":\"1\",\"21\":\"1\",\"22\":\"1\",\"23\":\"1\",\"24\":\"1\",\"25\":\"1\",\"26\":\"1\",\"27\":\"1\",\"28\":\"1\"},\"3\":{\"1\":\"1\",\"2\":\"1\",\"3\":\"1\",\"4\":\"1\",\"5\":\"1\",\"6\":\"1\",\"7\":\"1\",\"8\":\"1\",\"9\":\"1\",\"10\":\"1\",\"11\":\"1\",\"12\":\"1\",\"13\":\"1\",\"14\":\"1\",\"15\":\"1\",\"16\":\"1\",\"17\":\"1\",\"18\":\"1\",\"19\":\"1\",\"20\":\"1\",\"21\":\"1\",\"22\":\"1\",\"23\":\"1\",\"24\":\"1\",\"25\":\"1\",\"26\":\"1\",\"27\":\"1\",\"28\":\"1\",\"29\":\"1\",\"30\":\"1\",\"31\":\"1\"},\"4\":{\"1\":\"1\",\"2\":\"1\",\"3\":\"1\",\"4\":\"1\",\"5\":\"1\",\"6\":\"1\",\"7\":\"1\",\"8\":\"1\",\"9\":\"1\",\"10\":\"1\",\"11\":\"1\",\"12\":\"1\",\"13\":\"1\",\"14\":\"1\",\"15\":\"1\",\"16\":\"1\",\"17\":\"1\",\"18\":\"1\",\"19\":\"1\",\"20\":\"1\",\"21\":\"1\",\"22\":\"1\",\"23\":\"1\",\"24\":\"1\",\"25\":\"1\",\"26\":\"1\",\"27\":\"1\",\"28\":\"1\",\"29\":\"1\",\"30\":\"1\"},\"5\":{\"1\":\"1\",\"2\":\"1\",\"3\":\"1\",\"4\":\"1\",\"5\":\"1\",\"6\":\"1\",\"7\":\"1\",\"8\":\"1\",\"9\":\"1\",\"10\":\"1\",\"11\":\"1\",\"12\":\"1\",\"13\":\"1\",\"14\":\"1\",\"15\":\"1\",\"16\":\"1\",\"17\":\"1\",\"18\":\"1\",\"19\":\"1\",\"20\":\"1\",\"21\":\"1\",\"22\":\"1\",\"23\":\"1\",\"24\":\"1\",\"25\":\"1\",\"26\":\"1\",\"27\":\"1\",\"28\":\"1\",\"29\":\"1\",\"30\":\"1\",\"31\":\"1\"},\"10\":{\"1\":\"1\",\"2\":\"1\",\"3\":\"1\",\"4\":\"1\",\"5\":\"1\",\"6\":\"1\",\"7\":\"1\",\"8\":\"1\",\"9\":\"1\",\"10\":\"1\",\"11\":\"1\",\"12\":\"1\",\"13\":\"1\",\"14\":\"1\",\"15\":\"1\",\"16\":\"1\",\"17\":\"1\",\"18\":\"1\",\"19\":\"1\",\"20\":\"1\",\"21\":\"1\",\"22\":\"1\",\"23\":\"1\",\"24\":\"1\",\"25\":\"1\",\"26\":\"1\",\"27\":\"1\",\"28\":\"1\",\"29\":\"1\",\"30\":\"1\",\"31\":\"1\"},\"11\":{\"1\":\"1\",\"2\":\"1\",\"3\":\"1\",\"4\":\"1\",\"5\":\"1\",\"6\":\"1\",\"7\":\"1\",\"8\":\"1\",\"9\":\"1\",\"10\":\"1\",\"11\":\"1\",\"12\":\"1\",\"13\":\"1\",\"14\":\"1\",\"15\":\"1\",\"16\":\"1\",\"17\":\"1\",\"18\":\"1\",\"19\":\"1\",\"20\":\"1\",\"21\":\"1\",\"22\":\"1\",\"23\":\"1\",\"24\":\"1\",\"25\":\"1\",\"26\":\"1\",\"27\":\"1\",\"28\":\"1\",\"29\":\"1\",\"30\":\"1\"},\"12\":{\"1\":\"1\",\"2\":\"1\",\"3\":\"1\",\"4\":\"1\",\"5\":\"1\",\"6\":\"1\",\"7\":\"1\",\"8\":\"1\",\"9\":\"1\",\"10\":\"1\",\"11\":\"1\",\"12\":\"1\",\"13\":\"1\",\"14\":\"1\",\"15\":\"1\",\"16\":\"1\",\"17\":\"1\",\"18\":\"1\",\"19\":\"1\",\"20\":\"1\",\"21\":\"1\",\"22\":\"1\",\"23\":\"1\",\"24\":\"1\",\"25\":\"1\",\"26\":\"1\",\"27\":\"1\",\"28\":\"1\",\"29\":\"1\",\"30\":\"1\",\"31\":\"1\"}},\"2020\":{\"1\":{\"1\":\"1\",\"2\":\"1\",\"3\":\"1\",\"4\":\"1\",\"5\":\"1\",\"6\":\"1\",\"7\":\"1\",\"8\":\"1\",\"9\":\"1\",\"10\":\"1\",\"11\":\"1\",\"12\":\"1\",\"13\":\"1\",\"14\":\"1\",\"15\":\"1\",\"16\":\"1\",\"17\":\"1\",\"18\":\"1\",\"19\":\"1\",\"20\":\"1\",\"21\":\"1\",\"22\":\"1\",\"23\":\"1\",\"24\":\"1\",\"25\":\"1\",\"26\":\"1\",\"27\":\"1\",\"28\":\"1\",\"29\":\"1\",\"30\":\"1\",\"31\":\"1\"},\"2\":{\"1\":\"1\",\"2\":\"1\",\"3\":\"1\",\"4\":\"1\",\"5\":\"1\",\"6\":\"1\",\"7\":\"1\",\"8\":\"1\",\"9\":\"1\",\"10\":\"1\",\"11\":\"1\",\"12\":\"1\",\"13\":\"1\",\"14\":\"1\",\"15\":\"1\",\"16\":\"1\",\"17\":\"1\",\"18\":\"1\",\"19\":\"1\",\"20\":\"1\",\"21\":\"1\",\"22\":\"1\",\"23\":\"1\",\"24\":\"1\",\"25\":\"1\",\"26\":\"1\",\"27\":\"1\",\"28\":\"1\",\"29\":\"1\"},\"3\":{\"1\":\"1\",\"2\":\"1\",\"3\":\"1\",\"4\":\"1\",\"5\":\"1\",\"6\":\"1\",\"7\":\"1\",\"8\":\"1\",\"9\":\"1\",\"10\":\"1\",\"11\":\"1\",\"12\":\"1\",\"13\":\"1\",\"14\":\"1\",\"15\":\"1\",\"16\":\"1\",\"17\":\"1\",\"18\":\"1\",\"19\":\"1\",\"20\":\"1\",\"21\":\"1\",\"22\":\"1\",\"23\":\"1\",\"24\":\"1\",\"25\":\"1\",\"26\":\"1\",\"27\":\"1\",\"28\":\"1\",\"29\":\"1\",\"30\":\"1\",\"31\":\"1\"},\"4\":{\"1\":\"1\",\"2\":\"1\",\"3\":\"1\",\"4\":\"1\",\"5\":\"1\",\"6\":\"1\",\"7\":\"1\",\"8\":\"1\",\"9\":\"1\",\"10\":\"1\",\"11\":\"1\",\"12\":\"1\",\"13\":\"1\",\"14\":\"1\",\"15\":\"1\",\"16\":\"1\",\"17\":\"1\",\"18\":\"1\",\"19\":\"1\",\"20\":\"1\",\"21\":\"1\",\"22\":\"1\",\"23\":\"1\",\"24\":\"1\",\"25\":\"1\",\"26\":\"1\",\"27\":\"1\",\"28\":\"1\",\"29\":\"1\",\"30\":\"1\"},\"5\":{\"1\":\"1\",\"2\":\"1\",\"3\":\"1\",\"4\":\"1\",\"5\":\"1\",\"6\":\"1\",\"7\":\"1\",\"8\":\"1\",\"9\":\"1\",\"10\":\"1\",\"11\":\"1\",\"12\":\"1\",\"13\":\"1\",\"14\":\"1\",\"15\":\"1\",\"16\":\"1\",\"17\":\"1\",\"18\":\"1\",\"19\":\"1\",\"20\":\"1\",\"21\":\"1\",\"22\":\"1\",\"23\":\"1\",\"24\":\"1\",\"25\":\"1\",\"26\":\"1\",\"27\":\"1\",\"28\":\"1\",\"29\":\"1\",\"30\":\"1\",\"31\":\"1\"},\"10\":{\"1\":\"1\",\"2\":\"1\",\"3\":\"1\",\"4\":\"1\",\"5\":\"1\",\"6\":\"1\",\"7\":\"1\",\"8\":\"1\",\"9\":\"1\",\"10\":\"1\",\"11\":\"1\",\"12\":\"1\",\"13\":\"1\",\"14\":\"1\",\"15\":\"1\",\"16\":\"1\",\"17\":\"1\",\"18\":\"1\",\"19\":\"1\",\"20\":\"1\",\"21\":\"1\",\"22\":\"1\",\"23\":\"1\",\"24\":\"1\",\"25\":\"1\",\"26\":\"1\",\"27\":\"1\",\"28\":\"1\",\"29\":\"1\",\"30\":\"1\",\"31\":\"1\"},\"11\":{\"1\":\"1\",\"2\":\"1\",\"3\":\"1\",\"4\":\"1\",\"5\":\"1\",\"6\":\"1\",\"7\":\"1\",\"8\":\"1\",\"9\":\"1\",\"10\":\"1\",\"11\":\"1\",\"12\":\"1\",\"13\":\"1\",\"14\":\"1\",\"15\":\"1\",\"16\":\"1\",\"17\":\"1\",\"18\":\"1\",\"19\":\"1\",\"20\":\"1\",\"21\":\"1\",\"22\":\"1\",\"23\":\"1\",\"24\":\"1\",\"25\":\"1\",\"26\":\"1\",\"27\":\"1\",\"28\":\"1\",\"29\":\"1\",\"30\":\"1\"},\"12\":{\"1\":\"1\",\"2\":\"1\",\"3\":\"1\",\"4\":\"1\",\"5\":\"1\",\"6\":\"1\",\"7\":\"1\",\"8\":\"1\",\"9\":\"1\",\"10\":\"1\",\"11\":\"1\",\"12\":\"1\",\"13\":\"1\",\"14\":\"1\",\"15\":\"1\",\"16\":\"1\",\"17\":\"1\",\"18\":\"1\",\"19\":\"1\",\"20\":\"1\",\"21\":\"1\",\"22\":\"1\",\"23\":\"1\",\"24\":\"1\",\"25\":\"1\",\"26\":\"1\",\"27\":\"1\",\"28\":\"1\",\"29\":\"1\",\"30\":\"1\",\"31\":\"1\"}},\"2021\":{\"1\":{\"1\":\"1\",\"2\":\"1\",\"3\":\"1\",\"4\":\"1\",\"5\":\"1\",\"6\":\"1\",\"7\":\"1\",\"8\":\"1\",\"9\":\"1\",\"10\":\"1\",\"11\":\"1\",\"12\":\"1\",\"13\":\"1\",\"14\":\"1\",\"15\":\"1\",\"16\":\"1\",\"17\":\"1\",\"18\":\"1\",\"19\":\"1\",\"20\":\"1\",\"21\":\"1\",\"22\":\"1\",\"23\":\"1\",\"24\":\"1\",\"25\":\"1\",\"26\":\"1\",\"27\":\"1\",\"28\":\"1\",\"29\":\"1\",\"30\":\"1\",\"31\":\"1\"},\"2\":{\"1\":\"1\",\"2\":\"1\",\"3\":\"1\",\"4\":\"1\",\"5\":\"1\",\"6\":\"1\",\"7\":\"1\",\"8\":\"1\",\"9\":\"1\",\"10\":\"1\",\"11\":\"1\",\"12\":\"1\",\"13\":\"1\",\"14\":\"1\",\"15\":\"1\",\"16\":\"1\",\"17\":\"1\",\"18\":\"1\",\"19\":\"1\",\"20\":\"1\",\"21\":\"1\",\"22\":\"1\",\"23\":\"1\",\"24\":\"1\",\"25\":\"1\",\"26\":\"1\",\"27\":\"1\",\"28\":\"1\"},\"3\":{\"1\":\"1\",\"2\":\"1\",\"3\":\"1\",\"4\":\"1\",\"5\":\"1\",\"6\":\"1\",\"7\":\"1\",\"8\":\"1\",\"9\":\"1\",\"10\":\"1\",\"11\":\"1\",\"12\":\"1\",\"13\":\"1\",\"15\":\"1\",\"16\":\"1\",\"17\":\"1\",\"18\":\"1\",\"19\":\"1\",\"20\":\"1\",\"21\":\"1\",\"22\":\"1\",\"23\":\"1\",\"24\":\"1\",\"25\":\"1\",\"26\":\"1\",\"27\":\"1\",\"28\":\"1\",\"29\":\"1\",\"30\":\"1\",\"31\":\"1\"},\"4\":{\"1\":\"1\",\"2\":\"1\",\"3\":\"1\",\"4\":\"1\",\"5\":\"1\",\"6\":\"1\",\"7\":\"1\",\"8\":\"1\",\"9\":\"1\",\"10\":\"1\",\"11\":\"1\",\"12\":\"1\",\"13\":\"1\",\"14\":\"1\",\"15\":\"1\",\"16\":\"1\",\"17\":\"1\",\"18\":\"1\",\"19\":\"1\",\"20\":\"1\",\"21\":\"1\",\"22\":\"1\",\"23\":\"1\",\"24\":\"1\",\"25\":\"1\",\"26\":\"1\",\"27\":\"1\",\"28\":\"1\",\"29\":\"1\",\"30\":\"1\"},\"5\":{\"1\":\"1\",\"2\":\"1\",\"3\":\"1\",\"4\":\"1\",\"5\":\"1\",\"6\":\"1\",\"7\":\"1\",\"8\":\"1\",\"9\":\"1\",\"10\":\"1\",\"11\":\"1\",\"12\":\"1\",\"13\":\"1\",\"14\":\"1\",\"15\":\"1\",\"16\":\"1\",\"17\":\"1\",\"18\":\"1\",\"19\":\"1\",\"20\":\"1\",\"21\":\"1\",\"22\":\"1\",\"23\":\"1\",\"24\":\"1\",\"25\":\"1\",\"26\":\"1\",\"27\":\"1\",\"28\":\"1\",\"29\":\"1\",\"30\":\"1\",\"31\":\"1\"}}}','{\"default\":{\"name\":{\"default\":\"Available\",\"hr\":\"Slobodno\",\"cs\":\"Volno\",\"da\":\"Ledigt\",\"nl\":\"Vrij\",\"en\":\"Available\",\"fr\":\"Libre\",\"de\":\"Frei\",\"hu\":\"Szabad\",\"it\":\"Libero\",\"ro\":\"Disponobil\",\"ru\":\"\\u0412\\u0456\\u043b\\u044c\\u043d\\u043e\",\"sk\":\"Vo\\u013en\\u00fd\",\"es\":\"Libre\",\"sv\":\"Ledigt\",\"uk\":\"B\\u0456\\u043b\\u044c\\u043d\\u043e\"},\"color\":\"#ffff99\",\"splitColor\":false,\"bookable\":\"yes\"},\"1\":{\"name\":{\"default\":\"Booked\",\"hr\":\"Zauzeto\",\"cs\":\"Obsazeno\",\"da\":\"Booket\",\"nl\":\"Bezet\",\"en\":\"Booked\",\"fr\":\"Occup\\u00e9\",\"de\":\"Belegt\",\"hu\":\"Foglalt\",\"it\":\"Prenotato\",\"ro\":\"Rezervat\",\"ru\":\"\\u0417\\u0430\\u0431\\u0440\\u043e\\u043d\\u044c\\u043e\\u0432\\u0430\\u043d\\u043e\",\"sk\":\"Obsaden\\u00fd\",\"es\":\"Reservado\",\"sv\":\"Bokat\",\"uk\":\"\\u0417\\u0430\\u0439\\u043d\\u044f\\u0442\\u043e\"},\"color\":\"#339933\",\"splitColor\":false},\"2\":{\"name\":{\"en\":\"Changeover 1\",\"nl\":\"\",\"et\":\"\",\"fi\":\"\",\"fr\":\"\",\"de\":\"\",\"pt\":\"\",\"ro\":\"\",\"default\":\"Changeover 1\"},\"color\":\"#DDFFCC\",\"splitColor\":\"#FFC0BD\",\"bookable\":\"yes\",\"hide\":\"hide\"},\"3\":{\"name\":{\"en\":\"Changeover 2\",\"nl\":\"\",\"et\":\"\",\"fi\":\"\",\"fr\":\"\",\"de\":\"\",\"pt\":\"\",\"ro\":\"\",\"default\":\"Changeover 2\"},\"color\":\"#FFC0BD\",\"splitColor\":\"#DDFFCC\",\"bookable\":\"yes\",\"hide\":\"hide\"}}'),(4,'The Harbour Suite',1490882978,1524075787,'{\"2017\":{\"3\":{\"1\":\"1\",\"2\":\"1\",\"3\":\"1\",\"4\":\"1\",\"5\":\"1\",\"6\":\"1\",\"7\":\"1\",\"8\":\"1\",\"9\":\"1\",\"10\":\"1\",\"11\":\"1\",\"12\":\"1\",\"13\":\"1\",\"14\":\"1\",\"15\":\"1\",\"16\":\"1\",\"17\":\"1\",\"18\":\"1\",\"19\":\"1\",\"20\":\"1\",\"21\":\"1\",\"22\":\"1\",\"23\":\"1\",\"24\":\"1\",\"25\":\"1\",\"26\":\"1\",\"27\":\"1\",\"28\":\"1\",\"29\":\"1\",\"30\":\"1\",\"31\":\"1\"},\"4\":{\"1\":\"1\",\"2\":\"1\",\"3\":\"1\",\"4\":\"1\",\"5\":\"1\",\"6\":\"1\",\"7\":\"1\",\"8\":\"1\",\"9\":\"1\",\"10\":\"1\",\"11\":\"1\",\"12\":\"1\",\"13\":\"1\",\"14\":\"1\",\"15\":\"1\",\"16\":\"1\",\"17\":\"1\",\"18\":\"1\",\"19\":\"1\",\"20\":\"1\",\"21\":\"1\",\"22\":\"1\",\"23\":\"1\",\"24\":\"1\",\"25\":\"1\",\"26\":\"1\",\"27\":\"1\",\"28\":\"1\",\"29\":\"1\",\"30\":\"1\"},\"5\":{\"1\":\"1\",\"2\":\"1\",\"3\":\"1\",\"4\":\"1\",\"5\":\"1\",\"6\":\"1\",\"7\":\"1\",\"8\":\"1\",\"9\":\"1\",\"10\":\"1\",\"11\":\"1\",\"12\":\"1\",\"13\":\"1\",\"14\":\"1\",\"15\":\"1\",\"16\":\"1\",\"17\":\"1\",\"18\":\"1\",\"19\":\"1\",\"20\":\"1\",\"21\":\"1\",\"22\":\"1\",\"23\":\"1\",\"24\":\"1\",\"25\":\"1\",\"26\":\"1\",\"27\":\"1\",\"28\":\"1\",\"29\":\"1\",\"30\":\"1\",\"31\":\"1\"},\"6\":{\"1\":\"1\",\"2\":\"1\",\"3\":\"1\",\"4\":\"1\",\"5\":\"1\",\"6\":\"1\",\"7\":\"1\",\"8\":\"1\",\"9\":\"1\",\"10\":\"1\",\"11\":\"1\",\"12\":\"1\",\"13\":\"1\",\"14\":\"1\",\"15\":\"1\",\"16\":\"1\",\"17\":\"1\",\"18\":\"1\",\"19\":\"1\",\"20\":\"1\",\"21\":\"1\",\"22\":\"1\",\"23\":\"1\",\"24\":\"1\",\"25\":\"1\",\"26\":\"1\",\"27\":\"1\",\"28\":\"1\",\"29\":\"1\",\"30\":\"1\"},\"7\":{\"1\":\"1\",\"2\":\"1\",\"3\":\"1\",\"4\":\"1\",\"5\":\"1\",\"6\":\"1\",\"7\":\"1\",\"8\":\"1\",\"9\":\"1\",\"10\":\"1\",\"11\":\"1\",\"12\":\"1\",\"13\":\"1\",\"14\":\"1\",\"15\":\"1\",\"16\":\"1\",\"17\":\"1\",\"18\":\"1\",\"19\":\"1\",\"20\":\"1\",\"21\":\"1\",\"22\":\"1\",\"23\":\"1\",\"24\":\"1\",\"25\":\"1\",\"26\":\"1\",\"27\":\"1\",\"28\":\"1\",\"29\":\"1\",\"30\":\"1\",\"31\":\"1\"},\"8\":{\"1\":\"1\",\"2\":\"1\",\"3\":\"1\",\"4\":\"1\",\"5\":\"1\",\"6\":\"1\",\"7\":\"1\",\"8\":\"1\",\"9\":\"1\",\"10\":\"1\",\"11\":\"1\",\"12\":\"1\",\"13\":\"1\",\"14\":\"1\",\"15\":\"1\",\"16\":\"1\",\"17\":\"1\",\"18\":\"1\",\"19\":\"1\",\"20\":\"1\",\"21\":\"1\",\"22\":\"1\",\"23\":\"1\",\"24\":\"1\",\"25\":\"1\",\"26\":\"1\",\"27\":\"1\",\"28\":\"1\",\"29\":\"1\",\"30\":\"1\",\"31\":\"1\"},\"9\":{\"1\":\"1\",\"2\":\"1\",\"3\":\"1\",\"4\":\"1\",\"5\":\"1\",\"6\":\"1\",\"7\":\"1\",\"8\":\"1\",\"9\":\"1\",\"10\":\"1\",\"11\":\"1\",\"12\":\"1\",\"13\":\"1\",\"14\":\"1\",\"15\":\"1\",\"16\":\"1\",\"17\":\"1\",\"18\":\"1\",\"19\":\"1\",\"20\":\"1\",\"21\":\"1\",\"22\":\"1\",\"23\":\"1\",\"24\":\"1\",\"25\":\"1\",\"26\":\"1\",\"27\":\"1\",\"28\":\"1\",\"29\":\"1\",\"30\":\"1\"},\"10\":{\"1\":\"default\",\"2\":\"default\",\"3\":\"default\",\"4\":\"default\",\"5\":\"default\",\"6\":\"default\",\"7\":\"1\",\"8\":\"1\",\"9\":\"1\",\"10\":\"1\",\"11\":\"default\",\"12\":\"default\",\"13\":\"default\",\"14\":\"default\",\"15\":\"default\",\"16\":\"default\",\"17\":\"1\",\"18\":\"default\",\"19\":\"1\",\"20\":\"1\",\"21\":\"1\",\"22\":\"default\",\"23\":\"1\",\"24\":\"default\",\"25\":\"default\",\"26\":\"default\",\"27\":\"default\",\"28\":\"default\",\"29\":\"default\",\"30\":\"default\",\"31\":\"default\",\"description-13\":\"Brian Stainton cancelled\",\"description-18\":\"Nicole Zimmer-Stewart\",\"description-21\":\"Keith/Perry McEwen\",\"description-19\":\"Robert Howson\",\"description-23\":\"Lila Lazarz\"},\"11\":{\"1\":\"1\",\"2\":\"default\",\"3\":\"1\",\"4\":\"1\",\"5\":\"default\",\"6\":\"default\",\"7\":\"default\",\"8\":\"default\",\"9\":\"default\",\"10\":\"default\",\"11\":\"default\",\"12\":\"default\",\"13\":\"default\",\"14\":\"default\",\"15\":\"1\",\"16\":\"default\",\"17\":\"1\",\"18\":\"1\",\"19\":\"1\",\"20\":\"default\",\"21\":\"default\",\"22\":\"default\",\"23\":\"default\",\"24\":\"1\",\"25\":\"1\",\"26\":\"default\",\"27\":\"default\",\"28\":\"default\",\"29\":\"default\",\"30\":\"default\",\"description-17\":\"MIchell and KC\",\"description-15\":\"Nicole Zimmer-Stewart\",\"description-3\":\"Jim Van Buskirk\",\"description-1\":\"Judy Johnston\",\"description-24\":\"Beth Canezal\"},\"12\":{\"1\":\"default\",\"2\":\"default\",\"3\":\"default\",\"4\":\"default\",\"5\":\"default\",\"6\":\"default\",\"7\":\"default\",\"8\":\"default\",\"9\":\"default\",\"10\":\"default\",\"11\":\"default\",\"12\":\"default\",\"13\":\"default\",\"14\":\"default\",\"15\":\"default\",\"16\":\"default\",\"17\":\"default\",\"18\":\"default\",\"19\":\"default\",\"20\":\"default\",\"21\":\"default\",\"22\":\"1\",\"23\":\"1\",\"24\":\"1\",\"25\":\"1\",\"26\":\"1\",\"27\":\"1\",\"28\":\"1\",\"29\":\"1\",\"30\":\"1\",\"31\":\"1\"}},\"2018\":{\"1\":{\"1\":\"1\",\"2\":\"1\",\"3\":\"1\",\"4\":\"1\",\"5\":\"1\",\"6\":\"1\",\"7\":\"1\",\"8\":\"1\",\"9\":\"1\",\"10\":\"1\",\"11\":\"default\",\"12\":\"1\",\"13\":\"1\",\"14\":\"1\",\"15\":\"1\",\"16\":\"1\",\"17\":\"1\",\"18\":\"1\",\"19\":\"1\",\"20\":\"1\",\"21\":\"default\",\"22\":\"default\",\"23\":\"default\",\"24\":\"default\",\"25\":\"default\",\"26\":\"default\",\"27\":\"default\",\"28\":\"default\",\"29\":\"default\",\"30\":\"default\",\"31\":\"default\",\"description-3\":\"Karen Kochany\",\"description-12\":\"Keith Howlett\",\"description-19\":\"Wendy Heatherington\"},\"2\":{\"1\":\"default\",\"2\":\"default\",\"3\":\"default\",\"4\":\"default\",\"5\":\"default\",\"6\":\"default\",\"7\":\"default\",\"8\":\"default\",\"9\":\"default\",\"10\":\"default\",\"11\":\"default\",\"12\":\"1\",\"13\":\"default\",\"14\":\"default\",\"15\":\"default\",\"16\":\"default\",\"17\":\"1\",\"18\":\"default\",\"19\":\"default\",\"20\":\"default\",\"21\":\"default\",\"22\":\"default\",\"23\":\"default\",\"24\":\"default\",\"25\":\"default\",\"26\":\"default\",\"27\":\"default\",\"28\":\"default\",\"description-12\":\"Nicole Zimmer-Stewart\",\"description-17\":\"Michell  Bruin\"},\"3\":{\"1\":\"default\",\"2\":\"default\",\"3\":\"default\",\"4\":\"default\",\"5\":\"default\",\"6\":\"default\",\"7\":\"1\",\"8\":\"1\",\"9\":\"default\",\"10\":\"default\",\"12\":\"default\",\"13\":\"default\",\"14\":\"default\",\"15\":\"default\",\"16\":\"default\",\"17\":\"default\",\"18\":\"default\",\"19\":\"default\",\"20\":\"default\",\"21\":\"default\",\"22\":\"default\",\"23\":\"default\",\"24\":\"1\",\"25\":\"default\",\"26\":\"default\",\"27\":\"default\",\"28\":\"1\",\"29\":\"default\",\"30\":\"default\",\"31\":\"default\",\"description-7\":\"Michelle George\",\"description-28\":\"Aime Bowles\",\"description-24\":\"Helen Richard\"},\"4\":{\"1\":\"default\",\"2\":\"default\",\"3\":\"default\",\"4\":\"default\",\"5\":\"default\",\"6\":\"default\",\"7\":\"default\",\"8\":\"default\",\"9\":\"1\",\"10\":\"default\",\"11\":\"default\",\"12\":\"default\",\"13\":\"1\",\"14\":\"1\",\"15\":\"default\",\"16\":\"1\",\"17\":\"1\",\"18\":\"default\",\"19\":\"default\",\"20\":\"default\",\"21\":\"1\",\"22\":\"1\",\"23\":\"default\",\"24\":\"default\",\"25\":\"default\",\"26\":\"default\",\"27\":\"1\",\"28\":\"1\",\"29\":\"default\",\"30\":\"1\",\"description-9\":\"Nicole Zimmer-Stewart\",\"description-14\":\"Jayne Tessmer\",\"description-16\":\"Jen McFadden\",\"description-13\":\"Jennifer Fowler\",\"description-21\":\"Free Guests\",\"description-27\":\"Craig Murray\",\"description-30\":\"Linda Goodman\"},\"5\":{\"1\":\"1\",\"2\":\"1\",\"3\":\"1\",\"4\":\"1\",\"5\":\"1\",\"6\":\"1\",\"7\":\"1\",\"8\":\"1\",\"9\":\"1\",\"10\":\"1\",\"11\":\"1\",\"12\":\"1\",\"13\":\"1\",\"14\":\"1\",\"15\":\"1\",\"16\":\"1\",\"17\":\"1\",\"18\":\"1\",\"19\":\"1\",\"20\":\"1\",\"21\":\"1\",\"22\":\"1\",\"23\":\"1\",\"24\":\"1\",\"25\":\"1\",\"26\":\"1\",\"27\":\"1\",\"28\":\"1\",\"29\":\"1\",\"30\":\"1\",\"31\":\"1\",\"description-1\":\"Linda Goodman\",\"description-2\":\"Linda Goodman\",\"description-3\":\"Richard and Sue\"},\"6\":{\"1\":\"1\",\"2\":\"1\",\"3\":\"1\",\"4\":\"1\",\"5\":\"1\",\"6\":\"1\",\"7\":\"1\",\"8\":\"1\",\"9\":\"1\",\"10\":\"1\",\"11\":\"1\",\"12\":\"1\",\"13\":\"1\",\"14\":\"1\",\"15\":\"1\",\"16\":\"1\",\"17\":\"1\",\"18\":\"1\",\"19\":\"1\",\"20\":\"1\",\"21\":\"1\",\"22\":\"1\",\"23\":\"1\",\"24\":\"1\",\"25\":\"1\",\"26\":\"1\",\"27\":\"1\",\"28\":\"1\",\"29\":\"1\",\"30\":\"1\"},\"7\":{\"1\":\"1\",\"2\":\"1\",\"3\":\"1\",\"4\":\"1\",\"5\":\"1\",\"6\":\"1\",\"7\":\"1\",\"8\":\"1\",\"9\":\"1\",\"10\":\"1\",\"11\":\"1\",\"12\":\"1\",\"13\":\"1\",\"14\":\"1\",\"15\":\"1\",\"16\":\"1\",\"17\":\"1\",\"18\":\"1\",\"19\":\"1\",\"20\":\"1\",\"21\":\"1\",\"22\":\"1\",\"23\":\"1\",\"24\":\"1\",\"25\":\"1\",\"26\":\"1\",\"27\":\"1\",\"28\":\"1\",\"29\":\"1\",\"30\":\"1\",\"31\":\"1\"},\"8\":{\"1\":\"1\",\"2\":\"1\",\"3\":\"1\",\"4\":\"1\",\"5\":\"1\",\"6\":\"1\",\"7\":\"1\",\"8\":\"1\",\"9\":\"1\",\"10\":\"1\",\"11\":\"1\",\"12\":\"1\",\"13\":\"1\",\"14\":\"1\",\"15\":\"1\",\"16\":\"1\",\"17\":\"1\",\"18\":\"1\",\"19\":\"1\",\"20\":\"1\",\"21\":\"1\",\"22\":\"1\",\"23\":\"1\",\"24\":\"1\",\"25\":\"1\",\"26\":\"1\",\"27\":\"1\",\"28\":\"1\",\"29\":\"1\",\"30\":\"1\",\"31\":\"1\"},\"9\":{\"1\":\"1\",\"2\":\"1\",\"3\":\"1\",\"4\":\"1\",\"5\":\"1\",\"6\":\"1\",\"7\":\"1\",\"8\":\"1\",\"9\":\"1\",\"10\":\"1\",\"11\":\"1\",\"12\":\"1\",\"13\":\"1\",\"14\":\"1\",\"15\":\"1\",\"16\":\"1\",\"17\":\"1\",\"18\":\"1\",\"19\":\"1\",\"20\":\"1\",\"21\":\"1\",\"22\":\"1\",\"23\":\"1\",\"24\":\"1\",\"25\":\"1\",\"26\":\"1\",\"27\":\"1\",\"28\":\"1\",\"29\":\"1\",\"30\":\"1\"},\"10\":{\"1\":\"1\",\"2\":\"1\",\"3\":\"1\",\"4\":\"1\",\"5\":\"1\",\"6\":\"1\",\"7\":\"1\",\"8\":\"1\",\"9\":\"1\",\"10\":\"1\",\"11\":\"default\",\"12\":\"default\",\"13\":\"default\",\"14\":\"default\",\"15\":\"default\",\"16\":\"default\",\"17\":\"default\",\"18\":\"default\",\"19\":\"default\",\"20\":\"default\",\"21\":\"default\",\"22\":\"default\",\"23\":\"default\",\"24\":\"default\",\"25\":\"default\",\"26\":\"default\",\"27\":\"default\",\"28\":\"default\",\"29\":\"default\",\"30\":\"default\",\"31\":\"default\"},\"11\":{\"1\":\"default\",\"2\":\"default\",\"3\":\"default\",\"4\":\"default\",\"5\":\"default\",\"6\":\"default\",\"7\":\"default\",\"8\":\"default\",\"9\":\"default\",\"10\":\"default\",\"11\":\"default\",\"12\":\"default\",\"13\":\"default\",\"14\":\"default\",\"15\":\"default\",\"16\":\"default\",\"17\":\"default\",\"18\":\"default\",\"19\":\"default\",\"20\":\"default\",\"21\":\"default\",\"22\":\"default\",\"23\":\"default\",\"24\":\"default\",\"25\":\"default\",\"26\":\"default\",\"27\":\"default\",\"28\":\"default\",\"29\":\"default\",\"30\":\"default\"},\"12\":{\"1\":\"default\",\"2\":\"default\",\"3\":\"default\",\"4\":\"default\",\"5\":\"default\",\"6\":\"default\",\"7\":\"default\",\"8\":\"default\",\"9\":\"default\",\"10\":\"default\",\"11\":\"default\",\"12\":\"default\",\"13\":\"default\",\"14\":\"default\",\"15\":\"default\",\"16\":\"default\",\"17\":\"default\",\"18\":\"1\",\"19\":\"1\",\"20\":\"1\",\"21\":\"1\",\"22\":\"1\",\"23\":\"1\",\"24\":\"1\",\"25\":\"1\",\"26\":\"1\",\"27\":\"1\",\"28\":\"1\",\"29\":\"1\",\"30\":\"1\",\"31\":\"1\"}},\"2019\":{\"1\":{\"1\":\"1\",\"2\":\"1\",\"3\":\"1\",\"4\":\"1\",\"5\":\"1\",\"6\":\"1\",\"7\":\"1\",\"8\":\"default\",\"9\":\"default\",\"10\":\"default\",\"11\":\"default\",\"12\":\"default\",\"13\":\"default\",\"14\":\"default\",\"15\":\"default\",\"16\":\"default\",\"17\":\"default\",\"18\":\"default\",\"19\":\"default\",\"20\":\"default\",\"21\":\"default\",\"22\":\"default\",\"23\":\"default\",\"24\":\"default\",\"25\":\"default\",\"26\":\"default\",\"27\":\"default\",\"28\":\"default\",\"29\":\"default\",\"30\":\"default\",\"31\":\"default\"},\"2\":{\"1\":\"default\",\"2\":\"default\",\"3\":\"default\",\"4\":\"default\",\"5\":\"default\",\"6\":\"default\",\"7\":\"default\",\"8\":\"default\",\"9\":\"default\",\"10\":\"default\",\"11\":\"default\",\"12\":\"default\",\"13\":\"default\",\"14\":\"default\",\"15\":\"default\",\"16\":\"default\",\"17\":\"default\",\"18\":\"default\",\"19\":\"default\",\"20\":\"default\",\"21\":\"default\",\"22\":\"default\",\"23\":\"default\",\"24\":\"default\",\"25\":\"default\",\"26\":\"default\",\"27\":\"default\",\"28\":\"default\"},\"3\":{\"1\":\"default\",\"2\":\"default\",\"3\":\"default\",\"4\":\"default\",\"5\":\"default\",\"6\":\"default\",\"7\":\"default\",\"8\":\"default\",\"9\":\"default\",\"11\":\"default\",\"12\":\"default\",\"13\":\"default\",\"14\":\"default\",\"15\":\"default\",\"16\":\"default\",\"17\":\"default\",\"18\":\"default\",\"19\":\"default\",\"20\":\"default\",\"21\":\"default\",\"22\":\"default\",\"23\":\"default\",\"24\":\"default\",\"25\":\"default\",\"26\":\"default\",\"27\":\"default\",\"28\":\"default\",\"29\":\"default\",\"30\":\"default\",\"31\":\"default\"},\"4\":{\"1\":\"default\",\"2\":\"default\",\"3\":\"default\",\"4\":\"default\",\"5\":\"default\",\"6\":\"default\",\"7\":\"default\",\"8\":\"default\",\"9\":\"default\",\"10\":\"default\",\"11\":\"default\",\"12\":\"default\",\"13\":\"default\",\"14\":\"default\",\"15\":\"default\",\"16\":\"default\",\"17\":\"default\",\"18\":\"default\",\"19\":\"default\",\"20\":\"default\",\"21\":\"default\",\"22\":\"default\",\"23\":\"default\",\"24\":\"default\",\"25\":\"default\",\"26\":\"default\",\"27\":\"default\",\"28\":\"default\",\"29\":\"default\",\"30\":\"default\"},\"5\":{\"1\":\"1\",\"2\":\"1\",\"3\":\"1\",\"4\":\"1\",\"5\":\"1\",\"6\":\"1\",\"7\":\"1\",\"8\":\"1\",\"9\":\"1\",\"10\":\"1\",\"11\":\"1\",\"12\":\"1\",\"13\":\"1\",\"14\":\"1\",\"15\":\"1\",\"16\":\"1\",\"17\":\"1\",\"18\":\"1\",\"19\":\"1\",\"20\":\"1\",\"21\":\"1\",\"22\":\"1\",\"23\":\"1\",\"24\":\"1\",\"25\":\"1\",\"26\":\"1\",\"27\":\"1\",\"28\":\"1\",\"29\":\"1\",\"30\":\"1\",\"31\":\"1\"},\"6\":{\"1\":\"1\",\"2\":\"1\",\"3\":\"1\",\"4\":\"1\",\"5\":\"1\",\"6\":\"1\",\"7\":\"1\",\"8\":\"1\",\"9\":\"1\",\"10\":\"1\",\"11\":\"1\",\"12\":\"1\",\"13\":\"1\",\"14\":\"1\",\"15\":\"1\",\"16\":\"1\",\"17\":\"1\",\"18\":\"1\",\"19\":\"1\",\"20\":\"1\",\"21\":\"1\",\"22\":\"1\",\"23\":\"1\",\"24\":\"1\",\"25\":\"1\",\"26\":\"1\",\"27\":\"1\",\"28\":\"1\",\"29\":\"1\",\"30\":\"1\"},\"7\":{\"1\":\"1\",\"2\":\"1\",\"3\":\"1\",\"4\":\"1\",\"5\":\"1\",\"6\":\"1\",\"7\":\"1\",\"8\":\"1\",\"9\":\"1\",\"10\":\"1\",\"11\":\"1\",\"12\":\"1\",\"13\":\"1\",\"14\":\"1\",\"15\":\"1\",\"16\":\"1\",\"17\":\"1\",\"18\":\"1\",\"19\":\"1\",\"20\":\"1\",\"21\":\"1\",\"22\":\"1\",\"23\":\"1\",\"24\":\"1\",\"25\":\"1\",\"26\":\"1\",\"27\":\"1\",\"28\":\"1\",\"29\":\"1\",\"30\":\"1\",\"31\":\"1\"},\"8\":{\"1\":\"1\",\"2\":\"1\",\"3\":\"1\",\"4\":\"1\",\"5\":\"1\",\"6\":\"1\",\"7\":\"1\",\"8\":\"1\",\"9\":\"1\",\"10\":\"1\",\"11\":\"1\",\"12\":\"1\",\"13\":\"1\",\"14\":\"1\",\"15\":\"1\",\"16\":\"1\",\"17\":\"1\",\"18\":\"1\",\"19\":\"1\",\"20\":\"1\",\"21\":\"1\",\"22\":\"1\",\"23\":\"1\",\"24\":\"1\",\"25\":\"1\",\"26\":\"1\",\"27\":\"1\",\"28\":\"1\",\"29\":\"1\",\"30\":\"1\",\"31\":\"1\"},\"9\":{\"1\":\"1\",\"2\":\"1\",\"3\":\"1\",\"4\":\"1\",\"5\":\"1\",\"6\":\"1\",\"7\":\"1\",\"8\":\"1\",\"9\":\"1\",\"10\":\"1\",\"11\":\"1\",\"12\":\"1\",\"13\":\"1\",\"14\":\"1\",\"15\":\"1\",\"16\":\"1\",\"17\":\"1\",\"18\":\"1\",\"19\":\"1\",\"20\":\"1\",\"21\":\"1\",\"22\":\"1\",\"23\":\"1\",\"24\":\"1\",\"25\":\"1\",\"26\":\"1\",\"27\":\"1\",\"28\":\"1\",\"29\":\"1\",\"30\":\"1\"},\"10\":{\"1\":\"1\",\"2\":\"1\",\"3\":\"1\",\"4\":\"1\",\"5\":\"1\",\"6\":\"1\",\"7\":\"1\",\"8\":\"1\",\"9\":\"1\",\"10\":\"1\",\"11\":\"1\",\"12\":\"1\",\"13\":\"1\",\"14\":\"1\",\"15\":\"1\",\"16\":\"1\",\"17\":\"1\",\"18\":\"1\",\"19\":\"1\"},\"12\":{\"17\":\"1\",\"18\":\"1\",\"19\":\"1\",\"20\":\"1\",\"21\":\"1\",\"22\":\"1\",\"23\":\"1\",\"24\":\"1\",\"25\":\"1\",\"26\":\"1\",\"27\":\"1\",\"28\":\"1\",\"29\":\"1\",\"30\":\"1\",\"31\":\"1\"}},\"2020\":{\"1\":{\"1\":\"1\",\"2\":\"1\",\"3\":\"1\",\"4\":\"1\",\"5\":\"1\",\"6\":\"1\",\"7\":\"1\",\"8\":\"1\"},\"6\":{\"1\":\"1\",\"2\":\"1\",\"3\":\"1\",\"4\":\"1\",\"5\":\"1\",\"6\":\"1\",\"7\":\"1\",\"8\":\"1\",\"9\":\"1\",\"10\":\"1\",\"11\":\"1\",\"12\":\"1\",\"13\":\"1\",\"14\":\"1\",\"15\":\"1\",\"16\":\"1\",\"17\":\"1\",\"18\":\"1\",\"19\":\"1\",\"20\":\"1\",\"21\":\"1\",\"22\":\"1\",\"23\":\"1\",\"24\":\"1\",\"25\":\"1\",\"26\":\"1\",\"27\":\"1\",\"28\":\"1\",\"29\":\"1\",\"30\":\"1\"},\"7\":{\"1\":\"1\",\"2\":\"1\",\"3\":\"1\",\"4\":\"1\",\"5\":\"1\",\"6\":\"1\",\"7\":\"1\",\"8\":\"1\",\"9\":\"1\",\"10\":\"1\",\"11\":\"1\",\"12\":\"1\",\"13\":\"1\",\"14\":\"1\",\"15\":\"1\",\"16\":\"1\",\"17\":\"1\",\"18\":\"1\",\"19\":\"1\",\"20\":\"1\",\"21\":\"1\",\"22\":\"1\",\"23\":\"1\",\"24\":\"1\",\"25\":\"1\",\"26\":\"1\",\"27\":\"1\",\"28\":\"1\",\"29\":\"1\",\"30\":\"1\",\"31\":\"1\"},\"8\":{\"1\":\"1\",\"2\":\"1\",\"3\":\"1\",\"4\":\"1\",\"5\":\"1\",\"6\":\"1\",\"7\":\"1\",\"8\":\"1\",\"9\":\"1\",\"10\":\"1\",\"11\":\"1\",\"12\":\"1\",\"13\":\"1\",\"14\":\"1\",\"15\":\"1\",\"16\":\"1\",\"17\":\"1\",\"18\":\"1\",\"19\":\"1\",\"20\":\"1\",\"21\":\"1\",\"22\":\"1\",\"23\":\"1\",\"24\":\"1\",\"25\":\"1\",\"26\":\"1\",\"27\":\"1\",\"28\":\"1\",\"29\":\"1\",\"30\":\"1\",\"31\":\"1\"},\"9\":{\"1\":\"1\",\"2\":\"1\",\"3\":\"1\",\"4\":\"1\",\"5\":\"1\",\"6\":\"1\",\"7\":\"1\",\"8\":\"1\",\"9\":\"1\",\"10\":\"1\",\"11\":\"1\",\"12\":\"1\",\"13\":\"1\",\"14\":\"1\",\"15\":\"1\",\"16\":\"1\",\"17\":\"1\",\"18\":\"1\",\"19\":\"1\",\"20\":\"1\",\"21\":\"1\",\"22\":\"1\",\"23\":\"1\",\"24\":\"1\",\"25\":\"1\",\"26\":\"1\",\"27\":\"1\",\"28\":\"1\",\"29\":\"1\",\"30\":\"1\"},\"10\":{\"1\":\"1\",\"2\":\"1\",\"3\":\"1\",\"4\":\"1\",\"5\":\"1\",\"6\":\"1\",\"7\":\"1\",\"8\":\"1\",\"9\":\"1\",\"10\":\"1\",\"11\":\"1\",\"12\":\"1\",\"13\":\"1\",\"14\":\"1\",\"15\":\"1\"},\"12\":{\"15\":\"1\",\"16\":\"1\",\"17\":\"1\",\"18\":\"1\",\"19\":\"1\",\"20\":\"1\",\"21\":\"1\",\"22\":\"1\",\"23\":\"1\",\"24\":\"1\",\"25\":\"1\",\"26\":\"1\",\"27\":\"1\",\"28\":\"1\",\"29\":\"1\",\"30\":\"1\",\"31\":\"1\"}},\"2021\":{\"1\":{\"1\":\"1\",\"2\":\"1\",\"3\":\"1\",\"4\":\"1\",\"5\":\"1\",\"6\":\"1\",\"7\":\"1\",\"8\":\"1\",\"9\":\"1\",\"10\":\"1\"}}}','{\"default\":{\"name\":{\"default\":\"Available\",\"hr\":\"Slobodno\",\"cs\":\"Volno\",\"da\":\"Ledigt\",\"nl\":\"Vrij\",\"en\":\"Available\",\"fr\":\"Libre\",\"de\":\"Frei\",\"hu\":\"Szabad\",\"it\":\"Libero\",\"ro\":\"Disponobil\",\"ru\":\"\\u0412\\u0456\\u043b\\u044c\\u043d\\u043e\",\"sk\":\"Vo\\u013en\\u00fd\",\"es\":\"Libre\",\"sv\":\"Ledigt\",\"uk\":\"B\\u0456\\u043b\\u044c\\u043d\\u043e\"},\"color\":\"#ffff99\",\"splitColor\":false,\"bookable\":\"yes\"},\"1\":{\"name\":{\"default\":\"Booked\",\"hr\":\"Zauzeto\",\"cs\":\"Obsazeno\",\"da\":\"Booket\",\"nl\":\"Bezet\",\"en\":\"Booked\",\"fr\":\"Occup\\u00e9\",\"de\":\"Belegt\",\"hu\":\"Foglalt\",\"it\":\"Prenotato\",\"ro\":\"Rezervat\",\"ru\":\"\\u0417\\u0430\\u0431\\u0440\\u043e\\u043d\\u044c\\u043e\\u0432\\u0430\\u043d\\u043e\",\"sk\":\"Obsaden\\u00fd\",\"es\":\"Reservado\",\"sv\":\"Bokat\",\"uk\":\"\\u0417\\u0430\\u0439\\u043d\\u044f\\u0442\\u043e\"},\"color\":\"#339933\",\"splitColor\":false},\"2\":{\"name\":{\"en\":\"Changeover 1\",\"nl\":\"\",\"et\":\"\",\"fi\":\"\",\"fr\":\"\",\"de\":\"\",\"pt\":\"\",\"ro\":\"\",\"default\":\"Changeover 1\"},\"color\":\"#DDFFCC\",\"splitColor\":\"#FFC0BD\",\"bookable\":\"yes\",\"hide\":\"hide\"},\"3\":{\"name\":{\"en\":\"Changeover 2\",\"nl\":\"\",\"et\":\"\",\"fi\":\"\",\"fr\":\"\",\"de\":\"\",\"pt\":\"\",\"ro\":\"\",\"default\":\"Changeover 2\"},\"color\":\"#FFC0BD\",\"splitColor\":\"#DDFFCC\",\"bookable\":\"yes\",\"hide\":\"hide\"}}'),(5,'The Chantry',1521136459,1525812958,'{\"2018\":{\"3\":{\"1\":\"default\",\"2\":\"default\",\"3\":\"default\",\"4\":\"default\",\"5\":\"default\",\"6\":\"default\",\"7\":\"default\",\"8\":\"default\",\"9\":\"default\",\"10\":\"default\",\"11\":\"default\",\"12\":\"default\",\"13\":\"default\",\"14\":\"default\",\"15\":\"default\",\"16\":\"default\",\"17\":\"default\",\"18\":\"default\",\"19\":\"default\",\"20\":\"default\",\"21\":\"default\",\"22\":\"default\",\"23\":\"default\",\"24\":\"default\",\"25\":\"default\",\"26\":\"default\",\"27\":\"default\",\"28\":\"default\",\"29\":\"default\",\"30\":\"default\",\"31\":\"default\"},\"4\":{\"1\":\"default\",\"2\":\"default\",\"3\":\"default\",\"4\":\"default\",\"5\":\"default\",\"6\":\"default\",\"7\":\"default\",\"8\":\"default\",\"9\":\"default\",\"10\":\"default\",\"11\":\"default\",\"12\":\"default\",\"13\":\"default\",\"14\":\"default\",\"15\":\"default\",\"16\":\"default\",\"17\":\"default\",\"18\":\"default\",\"19\":\"default\",\"20\":\"default\",\"21\":\"default\",\"22\":\"default\",\"23\":\"default\",\"24\":\"default\",\"25\":\"default\",\"26\":\"default\",\"27\":\"default\",\"28\":\"default\",\"29\":\"default\",\"30\":\"default\"},\"5\":{\"1\":\"default\",\"2\":\"default\",\"3\":\"default\",\"4\":\"default\",\"5\":\"default\",\"6\":\"default\",\"7\":\"default\",\"8\":\"1\",\"9\":\"default\",\"10\":\"1\",\"11\":\"1\",\"12\":\"1\",\"13\":\"1\",\"14\":\"1\",\"15\":\"1\",\"16\":\"1\",\"17\":\"1\",\"18\":\"1\",\"19\":\"1\",\"20\":\"1\",\"21\":\"1\",\"22\":\"1\",\"23\":\"1\",\"24\":\"1\",\"25\":\"1\",\"26\":\"1\",\"27\":\"1\",\"28\":\"1\",\"29\":\"1\",\"30\":\"1\",\"31\":\"1\",\"description-9\":\"Margaret Kemper\",\"description-8\":\"\",\"description-10\":\"\"},\"6\":{\"1\":\"1\",\"2\":\"1\",\"3\":\"1\",\"4\":\"1\",\"5\":\"1\",\"6\":\"1\",\"7\":\"1\",\"8\":\"default\",\"9\":\"default\",\"10\":\"1\",\"11\":\"1\",\"12\":\"1\",\"13\":\"1\",\"14\":\"1\",\"15\":\"1\",\"16\":\"1\",\"17\":\"1\",\"18\":\"1\",\"19\":\"1\",\"20\":\"1\",\"21\":\"1\",\"22\":\"1\",\"23\":\"default\",\"24\":\"1\",\"25\":\"1\",\"26\":\"1\",\"27\":\"1\",\"28\":\"1\",\"29\":\"1\",\"30\":\"1\",\"description-23\":\"Sharon O\'Driscoll\",\"description-9\":\"Melinda Bagnall\",\"description-8\":\"Milenda Bagnall\"},\"7\":{\"1\":\"1\",\"2\":\"1\",\"3\":\"1\",\"4\":\"1\",\"5\":\"1\",\"6\":\"default\",\"7\":\"1\",\"8\":\"1\",\"9\":\"1\",\"10\":\"default\",\"11\":\"default\",\"12\":\"default\",\"13\":\"1\",\"14\":\"1\",\"15\":\"default\",\"16\":\"default\",\"17\":\"default\",\"18\":\"default\",\"19\":\"default\",\"20\":\"default\",\"21\":\"default\",\"22\":\"default\",\"23\":\"default\",\"24\":\"default\",\"25\":\"default\",\"26\":\"default\",\"27\":\"default\",\"28\":\"1\",\"29\":\"1\",\"30\":\"1\",\"31\":\"1\",\"description-6\":\"Wayne Bergan\",\"description-15\":\"Dean Archer &amp; Pauline\",\"description-21\":\"Sarah Parker\",\"description-23\":\"Lori Schuett\",\"description-10\":\"Sharon Schnurr\"},\"8\":{\"1\":\"1\",\"2\":\"default\",\"3\":\"default\",\"4\":\"default\",\"5\":\"default\",\"6\":\"1\",\"7\":\"default\",\"8\":\"default\",\"9\":\"1\",\"10\":\"default\",\"11\":\"default\",\"12\":\"1\",\"13\":\"1\",\"14\":\"default\",\"15\":\"default\",\"16\":\"default\",\"17\":\"default\",\"18\":\"default\",\"19\":\"1\",\"20\":\"1\",\"21\":\"1\",\"22\":\"1\",\"23\":\"1\",\"24\":\"default\",\"25\":\"default\",\"26\":\"default\",\"27\":\"1\",\"28\":\"1\",\"29\":\"1\",\"30\":\"1\",\"31\":\"1\",\"description-2\":\"Colleen Anastasiadis\",\"description-17\":\"KELSEY\",\"description-24\":\"cAROL cUNDAL\",\"description-7\":\"Shela Coulas\",\"description-10\":\"Chad Collins\",\"description-14\":\"Bert and Becky Henderson\"},\"9\":{\"1\":\"1\",\"2\":\"1\",\"3\":\"1\",\"4\":\"1\",\"5\":\"1\",\"6\":\"1\",\"7\":\"1\",\"8\":\"1\",\"9\":\"1\",\"10\":\"1\",\"11\":\"1\",\"12\":\"1\",\"13\":\"default\",\"14\":\"default\",\"15\":\"default\",\"16\":\"default\",\"17\":\"1\",\"18\":\"1\",\"19\":\"1\",\"20\":\"1\",\"21\":\"1\",\"22\":\"1\",\"23\":\"1\",\"24\":\"1\",\"25\":\"1\",\"26\":\"1\",\"27\":\"1\",\"28\":\"1\",\"29\":\"1\",\"30\":\"1\"},\"10\":{\"1\":\"1\",\"2\":\"1\",\"3\":\"1\",\"4\":\"1\",\"5\":\"1\",\"6\":\"1\",\"7\":\"1\",\"8\":\"1\",\"9\":\"1\",\"10\":\"1\",\"11\":\"1\",\"12\":\"1\",\"13\":\"1\",\"14\":\"1\",\"15\":\"1\",\"16\":\"1\",\"17\":\"1\",\"18\":\"1\",\"19\":\"1\",\"20\":\"1\",\"21\":\"1\",\"22\":\"1\",\"23\":\"1\",\"24\":\"1\",\"25\":\"1\",\"26\":\"1\",\"27\":\"1\",\"28\":\"1\",\"29\":\"1\",\"30\":\"1\",\"31\":\"1\"},\"11\":{\"1\":\"1\",\"2\":\"1\",\"3\":\"1\",\"4\":\"1\",\"5\":\"1\",\"6\":\"1\",\"7\":\"1\",\"8\":\"1\",\"9\":\"1\",\"10\":\"1\",\"11\":\"1\",\"12\":\"1\",\"13\":\"1\",\"14\":\"1\",\"15\":\"1\",\"16\":\"1\",\"17\":\"1\",\"18\":\"1\",\"19\":\"1\",\"20\":\"1\",\"21\":\"1\",\"22\":\"1\",\"23\":\"1\",\"24\":\"1\",\"25\":\"1\",\"26\":\"1\",\"27\":\"1\",\"28\":\"1\",\"29\":\"1\",\"30\":\"1\"},\"12\":{\"1\":\"1\",\"2\":\"1\",\"3\":\"1\",\"4\":\"1\",\"5\":\"1\",\"6\":\"1\",\"7\":\"1\",\"8\":\"1\",\"9\":\"1\",\"10\":\"1\",\"11\":\"1\",\"12\":\"1\",\"13\":\"1\",\"14\":\"1\",\"15\":\"1\",\"16\":\"1\",\"17\":\"1\",\"18\":\"1\",\"19\":\"1\",\"20\":\"1\",\"21\":\"1\",\"22\":\"1\",\"23\":\"1\",\"24\":\"1\",\"25\":\"1\",\"26\":\"1\",\"27\":\"1\",\"28\":\"1\",\"29\":\"1\",\"30\":\"1\",\"31\":\"1\"}},\"2019\":{\"1\":{\"1\":\"1\",\"2\":\"1\",\"3\":\"1\",\"4\":\"1\",\"5\":\"1\",\"6\":\"1\",\"7\":\"1\",\"8\":\"1\",\"9\":\"1\",\"10\":\"1\",\"11\":\"1\",\"12\":\"1\",\"13\":\"1\",\"14\":\"1\",\"15\":\"1\",\"16\":\"1\",\"17\":\"1\",\"18\":\"1\",\"19\":\"1\",\"20\":\"1\",\"21\":\"1\",\"22\":\"1\",\"23\":\"1\",\"24\":\"1\",\"25\":\"1\",\"26\":\"1\",\"27\":\"1\",\"28\":\"1\",\"29\":\"1\",\"30\":\"1\",\"31\":\"1\"},\"2\":{\"1\":\"1\",\"2\":\"1\",\"3\":\"1\",\"4\":\"1\",\"5\":\"1\",\"6\":\"1\",\"7\":\"1\",\"8\":\"1\",\"9\":\"1\",\"10\":\"1\",\"11\":\"1\",\"12\":\"1\",\"13\":\"1\",\"14\":\"1\",\"15\":\"1\",\"16\":\"1\",\"17\":\"1\",\"18\":\"1\",\"19\":\"1\",\"20\":\"1\",\"21\":\"1\",\"22\":\"1\",\"23\":\"1\",\"24\":\"1\",\"25\":\"1\",\"26\":\"1\",\"27\":\"1\",\"28\":\"1\"},\"3\":{\"1\":\"1\",\"2\":\"1\",\"3\":\"1\",\"4\":\"1\",\"5\":\"1\",\"6\":\"1\",\"7\":\"1\",\"8\":\"1\",\"9\":\"1\",\"11\":\"1\",\"12\":\"1\",\"13\":\"1\",\"14\":\"1\",\"15\":\"1\",\"16\":\"1\",\"17\":\"1\",\"18\":\"1\",\"19\":\"1\",\"20\":\"1\",\"21\":\"1\",\"22\":\"1\",\"23\":\"1\",\"24\":\"1\",\"25\":\"1\",\"26\":\"1\",\"27\":\"1\",\"28\":\"1\",\"29\":\"1\",\"30\":\"1\",\"31\":\"1\"},\"4\":{\"1\":\"1\",\"2\":\"1\",\"3\":\"1\",\"4\":\"1\",\"5\":\"1\",\"6\":\"1\",\"7\":\"1\",\"8\":\"1\",\"9\":\"1\",\"10\":\"1\",\"11\":\"1\",\"12\":\"1\",\"13\":\"1\",\"14\":\"1\",\"15\":\"1\",\"16\":\"1\",\"17\":\"1\",\"18\":\"1\",\"19\":\"1\",\"20\":\"1\",\"21\":\"1\",\"22\":\"1\",\"23\":\"1\",\"24\":\"1\",\"25\":\"1\",\"26\":\"1\",\"27\":\"1\",\"28\":\"1\",\"29\":\"1\",\"30\":\"1\"},\"5\":{\"1\":\"1\"}}}','{\"default\":{\"name\":{\"default\":\"Booked\",\"hr\":\"Zauzeto\",\"cs\":\"Obsazeno\",\"da\":\"Booket\",\"nl\":\"Bezet\",\"en\":\"Booked\",\"fr\":\"Occup\\u00e9\",\"de\":\"Belegt\",\"hu\":\"Foglalt\",\"it\":\"Prenotato\",\"ro\":\"Rezervat\",\"ru\":\"\\u0417\\u0430\\u0431\\u0440\\u043e\\u043d\\u044c\\u043e\\u0432\\u0430\\u043d\\u043e\",\"sk\":\"Obsaden\\u00fd\",\"es\":\"Reservado\",\"sv\":\"Bokat\",\"uk\":\"\\u0417\\u0430\\u0439\\u043d\\u044f\\u0442\\u043e\"},\"color\":\"#339933\",\"splitColor\":false,\"bookable\":false,\"hide\":false},\"1\":{\"name\":{\"default\":\"Available\",\"hr\":\"Slobodno\",\"cs\":\"Volno\",\"da\":\"Ledigt\",\"nl\":\"Vrij\",\"en\":\"Available\",\"fr\":\"Libre\",\"de\":\"Frei\",\"hu\":\"Szabad\",\"it\":\"Libero\",\"ro\":\"Disponobil\",\"ru\":\"\\u0412\\u0456\\u043b\\u044c\\u043d\\u043e\",\"sk\":\"Vo\\u013en\\u00fd\",\"es\":\"Libre\",\"sv\":\"Ledigt\",\"uk\":\"B\\u0456\\u043b\\u044c\\u043d\\u043e\"},\"color\":\"#ffff99\",\"splitColor\":false,\"bookable\":\"yes\"},\"2\":{\"name\":{\"en\":\"Changeover 1\",\"nl\":\"\",\"et\":\"\",\"fi\":\"\",\"fr\":\"\",\"de\":\"\",\"pt\":\"\",\"ro\":\"\",\"default\":\"Changeover 1\"},\"color\":\"#DDFFCC\",\"splitColor\":\"#FFC0BD\",\"bookable\":\"yes\",\"hide\":\"hide\"},\"3\":{\"name\":{\"en\":\"Changeover 2\",\"nl\":\"\",\"et\":\"\",\"fi\":\"\",\"fr\":\"\",\"de\":\"\",\"pt\":\"\",\"ro\":\"\",\"default\":\"Changeover 2\"},\"color\":\"#FFC0BD\",\"splitColor\":\"#DDFFCC\",\"bookable\":\"yes\",\"hide\":\"hide\"}}');
/*!40000 ALTER TABLE `wh_sbc_calendars` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wh_term_relationships`
--

DROP TABLE IF EXISTS `wh_term_relationships`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wh_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_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wh_term_relationships`
--

LOCK TABLES `wh_term_relationships` WRITE;
/*!40000 ALTER TABLE `wh_term_relationships` DISABLE KEYS */;
INSERT INTO `wh_term_relationships` VALUES (1,1,0),(37,2,0),(38,2,0),(39,2,0),(41,2,0),(42,2,0),(43,2,0),(44,2,0),(45,2,0),(46,2,0),(47,2,0),(51,3,0),(52,3,0),(53,3,0),(54,3,0),(69,4,0),(70,4,0),(145,4,0),(72,4,0),(73,4,0),(93,6,0),(82,5,0),(83,5,0),(84,5,0),(85,5,0),(87,5,0),(88,5,0),(89,5,0),(94,6,0),(133,2,0),(105,7,0),(104,7,0),(103,7,0),(97,7,0),(101,7,0),(112,7,0),(251,7,0),(141,4,0),(142,5,0),(143,6,0),(144,4,0),(146,4,0),(174,8,0),(175,8,0),(176,8,0),(184,8,0),(192,8,0),(193,8,0),(194,8,0),(228,2,0),(238,9,0),(146,10,0),(145,10,0),(113,13,0),(108,13,0),(112,13,0),(111,13,0),(110,13,0),(109,13,0),(105,13,0),(104,13,0),(103,13,0),(102,13,0),(101,13,0),(100,13,0),(99,13,0),(98,13,0),(97,13,0),(144,10,0),(143,12,0),(142,11,0),(141,11,0),(89,11,0),(88,11,0),(87,11,0),(85,11,0),(84,11,0),(83,11,0),(82,11,0),(81,11,0),(94,12,0),(93,12,0),(69,10,0),(73,10,0),(72,10,0),(71,10,0),(70,10,0),(125,21,0),(116,21,0),(117,21,0),(122,21,0),(121,21,0),(120,21,0),(119,21,0),(394,8,0),(395,8,0),(396,8,0),(421,12,0),(422,6,0),(446,17,0),(447,17,0),(448,17,0),(449,17,0),(487,17,0),(485,17,0),(492,8,0),(483,17,0),(481,17,0),(482,16,0),(484,16,0),(486,16,0),(488,16,0),(493,8,0),(494,8,0),(495,8,0),(496,8,0),(497,8,0),(498,8,0),(499,8,0),(513,19,0),(514,19,0),(515,19,0),(516,19,0),(530,13,0),(532,18,0),(536,2,0),(568,2,0),(575,20,0),(576,20,0),(577,20,0),(578,20,0),(579,20,0),(580,20,0),(581,20,0),(582,20,0),(583,20,0),(584,20,0),(585,20,0),(586,20,0),(587,20,0),(588,20,0),(589,20,0),(591,20,0),(592,20,0),(593,20,0),(594,20,0),(595,20,0),(596,20,0),(597,20,0),(598,20,0),(599,20,0),(600,20,0),(601,20,0),(602,20,0),(603,20,0),(604,20,0),(605,20,0),(606,20,0),(607,20,0),(608,20,0),(609,20,0),(610,20,0),(611,20,0),(612,20,0),(613,20,0),(614,20,0),(615,20,0),(616,20,0),(617,20,0),(618,20,0),(619,20,0),(620,20,0),(621,20,0),(622,20,0),(623,20,0),(624,20,0),(625,20,0),(626,20,0),(627,20,0),(628,20,0),(629,20,0),(630,20,0),(631,20,0),(632,20,0),(633,20,0),(634,20,0),(635,20,0),(636,20,0),(637,20,0),(638,20,0),(639,20,0),(640,20,0),(641,20,0),(642,20,0),(643,20,0),(644,20,0),(645,20,0),(646,20,0),(647,20,0),(648,20,0),(649,20,0),(650,20,0),(651,20,0),(652,20,0),(653,20,0),(654,20,0),(655,20,0),(656,20,0),(657,20,0),(658,20,0),(659,20,0),(660,20,0),(669,21,0),(670,21,0),(671,21,0),(672,21,0),(673,21,0),(674,21,0),(675,21,0),(676,21,0),(677,21,0),(664,19,0),(665,19,0),(666,19,0),(667,19,0),(668,19,0),(130,19,0),(123,21,0),(52,13,0),(129,21,0),(128,21,0),(53,13,0),(164,18,0),(680,13,0),(681,13,0),(682,13,0),(683,13,0),(684,13,0);
/*!40000 ALTER TABLE `wh_term_relationships` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wh_term_taxonomy`
--

DROP TABLE IF EXISTS `wh_term_taxonomy`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wh_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_520_ci NOT NULL DEFAULT '',
  `description` longtext COLLATE utf8mb4_unicode_520_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=22 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wh_term_taxonomy`
--

LOCK TABLES `wh_term_taxonomy` WRITE;
/*!40000 ALTER TABLE `wh_term_taxonomy` DISABLE KEYS */;
INSERT INTO `wh_term_taxonomy` VALUES (1,1,'category','',0,1),(2,2,'nav_menu','',0,14),(3,3,'ml-slider','',0,0),(4,4,'ml-slider','',0,4),(5,5,'ml-slider','',0,0),(6,6,'ml-slider','',0,1),(7,7,'ml-slider','',0,7),(8,8,'wpmf-category','',0,12),(9,9,'ml-slider','',0,1),(10,10,'wpmf-category','',0,5),(11,11,'wpmf-category','',0,0),(12,12,'wpmf-category','',0,0),(13,13,'wpmf-category','',0,15),(14,14,'wpmf-category','',0,0),(15,15,'wpmf-category','',0,0),(16,16,'ml-slider','',0,4),(17,17,'wpmf-category','',0,0),(18,18,'wpmf-category','',0,2),(19,19,'wpmf-category','',0,6),(20,20,'wpmf-category','',18,0),(21,21,'wpmf-category','',0,19);
/*!40000 ALTER TABLE `wh_term_taxonomy` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wh_termmeta`
--

DROP TABLE IF EXISTS `wh_termmeta`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wh_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_520_ci DEFAULT NULL,
  `meta_value` longtext COLLATE utf8mb4_unicode_520_ci,
  PRIMARY KEY (`meta_id`),
  KEY `term_id` (`term_id`),
  KEY `meta_key` (`meta_key`(191))
) ENGINE=MyISAM AUTO_INCREMENT=12 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wh_termmeta`
--

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

--
-- Table structure for table `wh_terms`
--

DROP TABLE IF EXISTS `wh_terms`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wh_terms` (
  `term_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `slug` varchar(200) COLLATE utf8mb4_unicode_520_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=22 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wh_terms`
--

LOCK TABLES `wh_terms` WRITE;
/*!40000 ALTER TABLE `wh_terms` DISABLE KEYS */;
INSERT INTO `wh_terms` VALUES (1,'Uncategorised','uncategorized',0),(2,'Main Menu','main-menu',0),(3,'50','50',0),(4,'76','76',0),(5,'80','80',0),(6,'92','92',0),(7,'137','137',0),(8,'button images','button-images',3),(9,'237','237',0),(10,'Huron','huron',3),(11,'Chantry','chantry',3),(12,'Saugeen','saugeen',3),(13,'Shared Spaces','shared-spaces',3),(14,'Activities','activities',3),(15,'WP Media Folder Root','wp-media-folder-root',0),(16,'348','348',0),(17,'Harbour Suite','harbour-suite',3),(18,'About','about',4),(19,'Winter','winter',4),(20,'Christmas Home Tour','christmas-home-tour',6),(21,'Summer Activities','summer-activities',6);
/*!40000 ALTER TABLE `wh_terms` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wh_usermeta`
--

DROP TABLE IF EXISTS `wh_usermeta`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wh_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_520_ci DEFAULT NULL,
  `meta_value` longtext COLLATE utf8mb4_unicode_520_ci,
  PRIMARY KEY (`umeta_id`),
  KEY `user_id` (`user_id`),
  KEY `meta_key` (`meta_key`(191))
) ENGINE=MyISAM AUTO_INCREMENT=197 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wh_usermeta`
--

LOCK TABLES `wh_usermeta` WRITE;
/*!40000 ALTER TABLE `wh_usermeta` DISABLE KEYS */;
INSERT INTO `wh_usermeta` VALUES (1,1,'nickname','webadmin'),(2,1,'first_name','Kevin'),(3,1,'last_name',''),(4,1,'description',''),(5,1,'rich_editing','true'),(6,1,'comment_shortcuts','false'),(7,1,'admin_color','fresh'),(8,1,'use_ssl','0'),(9,1,'show_admin_bar_front','false'),(10,1,'locale',''),(11,1,'wh_capabilities','a:1:{s:13:\"administrator\";b:1;}'),(12,1,'wh_user_level','10'),(13,1,'dismissed_wp_pointers',''),(14,1,'show_welcome_panel','0'),(109,5,'rich_editing','true'),(110,5,'comment_shortcuts','false'),(111,5,'admin_color','fresh'),(112,5,'use_ssl','0'),(113,5,'show_admin_bar_front','true'),(16,1,'wh_dashboard_quick_press_last_post_id','525'),(17,1,'closedpostboxes_dashboard','a:0:{}'),(18,1,'metaboxhidden_dashboard','a:2:{i:0;s:21:\"dashboard_quick_press\";i:1;s:17:\"dashboard_primary\";}'),(19,1,'meta-box-order_dashboard','a:4:{s:6:\"normal\";s:19:\"dashboard_right_now\";s:4:\"side\";s:58:\"dashboard_quick_press,dashboard_primary,dashboard_activity\";s:7:\"column3\";s:0:\"\";s:7:\"column4\";s:0:\"\";}'),(20,2,'nickname','denright'),(21,2,'first_name','Donna'),(22,2,'last_name',''),(23,2,'description',''),(24,2,'rich_editing','true'),(25,2,'comment_shortcuts','false'),(26,2,'admin_color','fresh'),(27,2,'use_ssl','0'),(28,2,'show_admin_bar_front','false'),(29,2,'locale',''),(30,2,'wh_capabilities','a:1:{s:13:\"administrator\";b:1;}'),(31,2,'wh_user_level','10'),(32,2,'dismissed_wp_pointers',''),(33,3,'nickname','saskia'),(34,3,'first_name','Saskia'),(35,3,'last_name',''),(36,3,'description',''),(37,3,'rich_editing','true'),(38,3,'comment_shortcuts','false'),(39,3,'admin_color','fresh'),(40,3,'use_ssl','0'),(41,3,'show_admin_bar_front','true'),(42,3,'locale',''),(43,3,'wh_capabilities','a:1:{s:13:\"administrator\";b:1;}'),(44,3,'wh_user_level','10'),(45,3,'dismissed_wp_pointers',''),(46,1,'wh_user-settings','editor=html&libraryContent=browse'),(47,1,'wh_user-settings-time','1488807050'),(48,1,'closedpostboxes_genesis_page_simplehooks','a:5:{i:0;s:26:\"simplehooks-document-hooks\";i:1;s:24:\"simplehooks-header-hooks\";i:2;s:22:\"simplehooks-loop-hooks\";i:3;s:25:\"simplehooks-comment-hooks\";i:4;s:25:\"simplehooks-sidebar-hooks\";}'),(49,1,'metaboxhidden_genesis_page_simplehooks','a:0:{}'),(51,1,'managenav-menuscolumnshidden','a:5:{i:0;s:11:\"link-target\";i:1;s:11:\"css-classes\";i:2;s:3:\"xfn\";i:3;s:11:\"description\";i:4;s:15:\"title-attribute\";}'),(52,1,'metaboxhidden_nav-menus','a:1:{i:0;s:12:\"add-post_tag\";}'),(53,1,'nav_menu_recently_edited','2'),(55,1,'jetpack_tracks_anon_id','jetpack:ODJwnQnOYGtGKg7Tyd9CYTzw'),(56,1,'jetpack_tracks_wpcom_id','23309684'),(57,1,'closedpostboxes_page','a:3:{i:0;s:22:\"genesis_inpost_seo_box\";i:1;s:25:\"genesis_inpost_layout_box\";i:2;s:26:\"genesis_inpost_scripts_box\";}'),(58,1,'metaboxhidden_page','a:4:{i:0;s:10:\"postcustom\";i:1;s:16:\"commentstatusdiv\";i:2;s:7:\"slugdiv\";i:3;s:9:\"authordiv\";}'),(60,3,'genesis_admin_menu','1'),(61,3,'genesis_seo_settings_menu','1'),(62,3,'genesis_import_export_menu','1'),(63,3,'genesis_author_box_single',''),(64,3,'genesis_author_box_archive',''),(65,3,'headline',''),(66,3,'intro_text',''),(67,3,'doctitle',''),(68,3,'meta_description',''),(69,3,'meta_keywords',''),(70,3,'noindex',''),(71,3,'nofollow',''),(72,3,'noarchive',''),(73,3,'layout',''),(74,3,'googleplus',''),(76,3,'wh_dashboard_quick_press_last_post_id','491'),(172,6,'genesis_author_box_archive',''),(173,6,'headline',''),(174,6,'intro_text',''),(175,6,'doctitle',''),(176,6,'meta_description',''),(177,6,'meta_keywords',''),(77,3,'wh_user-settings','libraryContent=browse&advImgDetails=show&editor=html'),(78,3,'wh_user-settings-time','1509718381'),(79,3,'closedpostboxes_attachment','a:0:{}'),(80,3,'metaboxhidden_attachment','a:4:{i:0;s:16:\"commentstatusdiv\";i:1;s:11:\"commentsdiv\";i:2;s:7:\"slugdiv\";i:3;s:9:\"authordiv\";}'),(81,3,'nav_menu_recently_edited','2'),(82,3,'managenav-menuscolumnshidden','a:5:{i:0;s:11:\"link-target\";i:1;s:11:\"css-classes\";i:2;s:3:\"xfn\";i:3;s:11:\"description\";i:4;s:15:\"title-attribute\";}'),(83,3,'metaboxhidden_nav-menus','a:2:{i:0;s:25:\"ubermenu_custom_nav_items\";i:1;s:12:\"add-post_tag\";}'),(84,4,'nickname','Richard'),(85,4,'first_name','Richard'),(86,4,'last_name','Lee'),(87,4,'description',''),(88,4,'rich_editing','true'),(89,4,'comment_shortcuts','false'),(90,4,'admin_color','fresh'),(91,4,'use_ssl','0'),(92,4,'show_admin_bar_front','true'),(93,4,'locale',''),(94,4,'wh_capabilities','a:1:{s:6:\"editor\";b:1;}'),(95,4,'wh_user_level','7'),(96,4,'dismissed_wp_pointers',''),(121,4,'session_tokens','a:1:{s:64:\"86e20af8a9b8504b7524bd3b1d4d2b1ba890e4af0810d4fa6ea0cc3ce45147b3\";a:4:{s:10:\"expiration\";i:1527008384;s:2:\"ip\";s:12:\"23.111.64.26\";s:2:\"ua\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.139 Safari/537.36\";s:5:\"login\";i:1525798784;}}'),(147,4,'wh_user-settings','editor=tinymce&libraryContent=browse'),(148,4,'wh_user-settings-time','1517723940'),(149,4,'wh_media_library_mode','list'),(135,4,'metaboxhidden_nav-menus','a:2:{i:0;s:25:\"ubermenu_custom_nav_items\";i:1;s:12:\"add-post_tag\";}'),(105,5,'nickname','Sue'),(106,5,'first_name','Sue'),(107,5,'last_name','Carruthers'),(108,5,'description',''),(98,4,'wh_dashboard_quick_press_last_post_id','695'),(141,4,'edit_comments_per_page','20'),(154,6,'nickname','James'),(114,5,'locale',''),(115,5,'wh_capabilities','a:1:{s:6:\"editor\";b:1;}'),(116,5,'wh_user_level','7'),(117,5,'dismissed_wp_pointers',''),(100,4,'closedpostboxes_dashboard','a:0:{}'),(101,4,'metaboxhidden_dashboard','a:2:{i:0;s:21:\"dashboard_quick_press\";i:1;s:17:\"dashboard_primary\";}'),(102,4,'meta-box-order_dashboard','a:4:{s:6:\"normal\";s:42:\"dashboard_right_now,jetpack_summary_widget\";s:4:\"side\";s:58:\"dashboard_quick_press,dashboard_primary,dashboard_activity\";s:7:\"column3\";s:0:\"\";s:7:\"column4\";s:0:\"\";}'),(119,5,'wh_dashboard_quick_press_last_post_id','351'),(150,4,'jetpack_tracks_wpcom_id',NULL),(129,3,'jetpack_tracks_anon_id','jetpack:n9FbobbvwMVtUtg0w1ltrgUN'),(133,4,'nav_menu_recently_edited','2'),(134,4,'managenav-menuscolumnshidden','a:5:{i:0;s:11:\"link-target\";i:1;s:11:\"css-classes\";i:2;s:3:\"xfn\";i:3;s:11:\"description\";i:4;s:15:\"title-attribute\";}'),(189,6,'session_tokens','a:1:{s:64:\"7aaaa812979799582f18ab202d36c7fdd0ae2afcd1be845b861d75b3901d94eb\";a:4:{s:10:\"expiration\";i:1524683073;s:2:\"ip\";s:13:\"24.207.17.194\";s:2:\"ua\";s:117:\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_4) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/11.1 Safari/605.1.15\";s:5:\"login\";i:1523473473;}}'),(151,4,'jetpack_tracks_anon_id','jetpack:bxn37v64ZQz+0he+xwA6QLwy'),(155,6,'first_name','James'),(156,6,'last_name','Carruthers'),(157,6,'description',''),(158,6,'rich_editing','true'),(159,6,'syntax_highlighting','true'),(160,6,'comment_shortcuts','false'),(161,6,'admin_color','fresh'),(162,6,'use_ssl','0'),(163,6,'show_admin_bar_front','false'),(164,6,'locale',''),(165,6,'wh_capabilities','a:1:{s:13:\"administrator\";b:1;}'),(166,6,'wh_user_level','10'),(167,6,'dismissed_wp_pointers',''),(168,6,'genesis_admin_menu','1'),(169,6,'genesis_seo_settings_menu','1'),(170,6,'genesis_import_export_menu','1'),(171,6,'genesis_author_box_single',''),(178,6,'noindex',''),(179,6,'nofollow',''),(180,6,'noarchive',''),(181,6,'layout',''),(182,6,'googleplus',''),(192,6,'wh_user-settings-time','1519345664'),(193,6,'wh_media_library_mode','grid'),(194,6,'nav_menu_recently_edited','2'),(195,6,'managenav-menuscolumnshidden','a:5:{i:0;s:11:\"link-target\";i:1;s:11:\"css-classes\";i:2;s:3:\"xfn\";i:3;s:11:\"description\";i:4;s:15:\"title-attribute\";}'),(184,6,'wh_dashboard_quick_press_last_post_id','696'),(185,6,'community-events-location','a:1:{s:2:\"ip\";s:11:\"24.207.17.0\";}'),(186,6,'closedpostboxes_dashboard','a:0:{}'),(187,6,'metaboxhidden_dashboard','a:2:{i:0;s:21:\"dashboard_quick_press\";i:1;s:17:\"dashboard_primary\";}'),(188,6,'meta-box-order_dashboard','a:4:{s:6:\"normal\";s:42:\"dashboard_right_now,jetpack_summary_widget\";s:4:\"side\";s:58:\"dashboard_quick_press,dashboard_primary,dashboard_activity\";s:7:\"column3\";s:0:\"\";s:7:\"column4\";s:0:\"\";}'),(191,6,'wh_user-settings','libraryContent=browse&editor=tinymce'),(196,6,'metaboxhidden_nav-menus','a:2:{i:0;s:25:\"ubermenu_custom_nav_items\";i:1;s:12:\"add-post_tag\";}');
/*!40000 ALTER TABLE `wh_usermeta` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wh_users`
--

DROP TABLE IF EXISTS `wh_users`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wh_users` (
  `ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `user_login` varchar(60) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `user_pass` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `user_nicename` varchar(50) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `user_email` varchar(100) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `user_url` varchar(100) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `user_registered` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `user_activation_key` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `user_status` int(11) NOT NULL DEFAULT '0',
  `display_name` varchar(250) COLLATE utf8mb4_unicode_520_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=7 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wh_users`
--

LOCK TABLES `wh_users` WRITE;
/*!40000 ALTER TABLE `wh_users` DISABLE KEYS */;
INSERT INTO `wh_users` VALUES (1,'webadmin','$P$BvlZXOdHjlI/lNVG5OLlaW2xB08krM/','webadmin','kevin@technicalities.ca','','2017-03-06 11:42:32','',0,'Kevin'),(2,'denright','$P$BMHEQ4UoUUiaT6vieSaKieDSfIczZN1','denright','donna@technicalities.ca','','2017-03-06 11:44:43','',0,'Donna'),(3,'saskia','$P$Bd8ZopzKQdL.7hqjBTNHiArzUuVGNj.','saskia','saskia@technicalities.ca','','2017-03-06 11:45:47','',0,'Saskia'),(4,'Richard','$P$B.utNPHsSxH.1Hbx6Th80LdsUAZzcD0','richard','raldonlee@gmail.com','','2017-03-27 13:18:16','',0,'Richard Lee'),(5,'Sue','$P$BGTrU3F/OcaBNvUX4J3BF8fGqGMoxN.','sue','scarruthers@icloud.com','','2017-03-29 17:19:33','',0,'Sue Carruthers'),(6,'James','$P$Ba7nBkZdtYG63yxYCJXfrYjMhDOGVc0','james','m.j.carruthers@gmail.com','','2018-02-13 16:27:47','',0,'James Carruthers');
/*!40000 ALTER TABLE `wh_users` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wh_wfBadLeechers`
--

DROP TABLE IF EXISTS `wh_wfBadLeechers`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wh_wfBadLeechers` (
  `eMin` int(10) unsigned NOT NULL,
  `IP` binary(16) NOT NULL DEFAULT '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',
  `hits` int(10) unsigned NOT NULL,
  PRIMARY KEY (`eMin`,`IP`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wh_wfBadLeechers`
--

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

--
-- Table structure for table `wh_wfBlockedCommentLog`
--

DROP TABLE IF EXISTS `wh_wfBlockedCommentLog`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wh_wfBlockedCommentLog` (
  `IP` binary(16) NOT NULL DEFAULT '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',
  `countryCode` varchar(2) NOT NULL,
  `blockCount` int(10) unsigned NOT NULL DEFAULT '0',
  `unixday` int(10) unsigned NOT NULL,
  `blockType` varchar(50) NOT NULL DEFAULT 'gsb',
  PRIMARY KEY (`IP`,`unixday`,`blockType`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wh_wfBlockedCommentLog`
--

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

--
-- Table structure for table `wh_wfBlockedIPLog`
--

DROP TABLE IF EXISTS `wh_wfBlockedIPLog`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wh_wfBlockedIPLog` (
  `IP` binary(16) NOT NULL DEFAULT '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',
  `countryCode` varchar(2) NOT NULL,
  `blockCount` int(10) unsigned NOT NULL DEFAULT '0',
  `unixday` int(10) unsigned NOT NULL,
  `blockType` varchar(50) NOT NULL DEFAULT 'generic',
  PRIMARY KEY (`IP`,`unixday`,`blockType`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wh_wfBlockedIPLog`
--

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

--
-- Table structure for table `wh_wfBlocks`
--

DROP TABLE IF EXISTS `wh_wfBlocks`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wh_wfBlocks` (
  `IP` binary(16) NOT NULL DEFAULT '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',
  `blockedTime` bigint(20) NOT NULL,
  `reason` varchar(255) NOT NULL,
  `lastAttempt` int(10) unsigned DEFAULT '0',
  `blockedHits` int(10) unsigned DEFAULT '0',
  `wfsn` tinyint(3) unsigned DEFAULT '0',
  `permanent` tinyint(3) unsigned DEFAULT '0',
  PRIMARY KEY (`IP`),
  KEY `k1` (`wfsn`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wh_wfBlocks`
--

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

--
-- Table structure for table `wh_wfBlocks7`
--

DROP TABLE IF EXISTS `wh_wfBlocks7`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wh_wfBlocks7` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `type` int(10) unsigned NOT NULL DEFAULT '0',
  `IP` binary(16) NOT NULL DEFAULT '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',
  `blockedTime` bigint(20) NOT NULL,
  `reason` varchar(255) NOT NULL,
  `lastAttempt` int(10) unsigned DEFAULT '0',
  `blockedHits` int(10) unsigned DEFAULT '0',
  `expiration` bigint(20) unsigned NOT NULL DEFAULT '0',
  `parameters` text,
  PRIMARY KEY (`id`),
  KEY `type` (`type`),
  KEY `IP` (`IP`),
  KEY `expiration` (`expiration`)
) ENGINE=MyISAM AUTO_INCREMENT=3 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wh_wfBlocks7`
--

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

--
-- Table structure for table `wh_wfBlocksAdv`
--

DROP TABLE IF EXISTS `wh_wfBlocksAdv`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wh_wfBlocksAdv` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `blockType` char(2) NOT NULL,
  `blockString` varchar(255) NOT NULL,
  `ctime` int(10) unsigned NOT NULL,
  `reason` varchar(255) NOT NULL,
  `totalBlocked` int(10) unsigned DEFAULT '0',
  `lastBlocked` int(10) unsigned DEFAULT '0',
  PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wh_wfBlocksAdv`
--

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

--
-- Table structure for table `wh_wfConfig`
--

DROP TABLE IF EXISTS `wh_wfConfig`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wh_wfConfig` (
  `name` varchar(100) NOT NULL,
  `val` longblob,
  `autoload` enum('no','yes') NOT NULL DEFAULT 'yes',
  PRIMARY KEY (`name`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wh_wfConfig`
--

LOCK TABLES `wh_wfConfig` WRITE;
/*!40000 ALTER TABLE `wh_wfConfig` DISABLE KEYS */;
INSERT INTO `wh_wfConfig` VALUES ('alertOn_critical','1','yes'),('alertOn_update','1','yes'),('alertOn_warnings','1','yes'),('alertOn_throttle','0','yes'),('alertOn_block','1','yes'),('alertOn_loginLockout','1','yes'),('alertOn_lostPasswdForm','1','yes'),('alertOn_adminLogin','1','yes'),('alertOn_firstAdminLoginOnly','0','yes'),('alertOn_nonAdminLogin','1','yes'),('alertOn_firstNonAdminLoginOnly','0','yes'),('alertOn_wordfenceDeactivated','1','yes'),('liveTrafficEnabled','1','yes'),('advancedCommentScanning','0','yes'),('checkSpamIP','0','yes'),('spamvertizeCheck','0','yes'),('liveTraf_ignorePublishers','1','yes'),('scheduledScansEnabled','1','yes'),('lowResourceScansEnabled','0','yes'),('scansEnabled_public','0','yes'),('scansEnabled_heartbleed','1','yes'),('scansEnabled_checkHowGetIPs','1','yes'),('scansEnabled_core','1','yes'),('scansEnabled_themes','1','yes'),('scansEnabled_plugins','1','yes'),('scansEnabled_coreUnknown','1','yes'),('scansEnabled_malware','1','yes'),('scansEnabled_fileContents','1','yes'),('scansEnabled_checkReadableConfig','1','yes'),('scansEnabled_suspectedFiles','1','yes'),('scansEnabled_posts','1','yes'),('scansEnabled_comments','1','yes'),('scansEnabled_passwds','1','yes'),('scansEnabled_diskSpace','1','yes'),('scansEnabled_options','0','yes'),('scansEnabled_wpscan_fullPathDisclosure','0','yes'),('scansEnabled_wpscan_directoryListingEnabled','0','yes'),('scansEnabled_dns','1','yes'),('scansEnabled_scanImages','0','yes'),('scansEnabled_highSense','0','yes'),('scansEnabled_oldVersions','1','yes'),('scansEnabled_suspiciousAdminUsers','1','yes'),('firewallEnabled','1','yes'),('blockFakeBots','0','yes'),('autoBlockScanners','0','yes'),('loginSecurityEnabled','1','yes'),('loginSec_lockInvalidUsers','0','yes'),('loginSec_maskLoginErrors','1','yes'),('loginSec_blockAdminReg','1','yes'),('loginSec_disableAuthorScan','1','yes'),('loginSec_disableOEmbedAuthor','0','yes'),('other_hideWPVersion','0','yes'),('other_noAnonMemberComments','1','yes'),('other_blockBadPOST','0','yes'),('other_scanComments','1','yes'),('other_pwStrengthOnUpdate','1','yes'),('other_WFNet','1','yes'),('other_scanOutside','0','yes'),('deleteTablesOnDeact','0','yes'),('autoUpdate','1','yes'),('disableCookies','0','yes'),('startScansRemotely','0','yes'),('disableConfigCaching','0','yes'),('addCacheComment','0','yes'),('disableCodeExecutionUploads','0','yes'),('allowHTTPSCaching','0','yes'),('debugOn','0','yes'),('email_summary_enabled','0','yes'),('email_summary_dashboard_widget_enabled','0','yes'),('ssl_verify','1','yes'),('ajaxWatcherDisabled_front','0','yes'),('ajaxWatcherDisabled_admin','0','yes'),('wafAlertOnAttacks','1','yes'),('disableWAFIPBlocking','0','yes'),('cbl_cookieVal','58bd4c569f5e9','yes'),('showAdminBarMenu','1','yes'),('scan_include_extra','','yes'),('alertEmails','security@technicalities.ca','yes'),('liveTraf_ignoreUsers','','yes'),('liveTraf_ignoreIPs','','yes'),('liveTraf_ignoreUA','','yes'),('apiKey','80de82ea8f97a6a1d6b49de6bcf1ddf2b641340f7e681a1f2ff9b8386996acd4e1674a332b829a8dfa1107a7b16c767f1729b605a3402c7594088927235f1281','yes'),('maxMem','256','yes'),('scan_exclude','','yes'),('scan_maxIssues','1000','yes'),('scan_maxDuration','','yes'),('whitelisted','','yes'),('bannedURLs','','yes'),('maxExecutionTime','','yes'),('howGetIPs','','yes'),('actUpdateInterval','','yes'),('alert_maxHourly','0','yes'),('loginSec_userBlacklist','','yes'),('liveTraf_maxRows','2000','yes'),('neverBlockBG','neverBlockVerified','yes'),('loginSec_countFailMins','5','yes'),('loginSec_lockoutMins','5','yes'),('loginSec_strongPasswds','pubs','yes'),('loginSec_maxFailures','20','yes'),('loginSec_maxForgotPasswd','20','yes'),('maxGlobalRequests','DISABLED','yes'),('maxGlobalRequests_action','throttle','yes'),('maxRequestsCrawlers','DISABLED','yes'),('maxRequestsCrawlers_action','throttle','yes'),('maxRequestsHumans','DISABLED','yes'),('maxRequestsHumans_action','throttle','yes'),('max404Crawlers','DISABLED','yes'),('max404Crawlers_action','throttle','yes'),('max404Humans','DISABLED','yes'),('max404Humans_action','throttle','yes'),('maxScanHits','DISABLED','yes'),('maxScanHits_action','throttle','yes'),('blockedTime','300','yes'),('email_summary_interval','weekly','yes'),('email_summary_excluded_directories','wp-content/cache,wp-content/wflogs','yes'),('allowed404s','/favicon.ico\r\n/apple-touch-icon*.png\r\n/*@2x.png\r\n/browserconfig.xml','yes'),('wafAlertWhitelist','','yes'),('wafAlertInterval','600','yes'),('wafAlertThreshold','100','yes'),('encKey','8fe4bd4815764a7e','yes'),('cbl_restOfSiteBlocked','1','yes'),('allowed404s6116Migration','1','yes'),('cacheType','disabled','yes'),('detectProxyNextCheck','1524288736','no'),('detectProxyNonce','173c1dd6088dbbf5728d75c25087439d67a8f3fd2aea9b0b5dc0846e1466902a','no'),('detectProxyRecommendation','','no'),('wp_home_url','https://www.watchhill.ca','yes'),('welcomeClosed','1','yes'),('tourClosed','1','yes'),('betaThreatDefenseFeed','','yes'),('dashboardData','a:4:{s:9:\"generated\";i:1525797107;s:3:\"tdf\";a:3:{s:9:\"community\";i:5481;s:7:\"premium\";i:5579;s:9:\"blacklist\";i:2430;}s:10:\"attackdata\";a:3:{s:3:\"24h\";a:24:{i:0;a:2:{s:1:\"t\";i:1525708800;s:1:\"c\";i:1463052;}i:1;a:2:{s:1:\"t\";i:1525712400;s:1:\"c\";i:1486959;}i:2;a:2:{s:1:\"t\";i:1525716000;s:1:\"c\";i:1519522;}i:3;a:2:{s:1:\"t\";i:1525719600;s:1:\"c\";i:1534162;}i:4;a:2:{s:1:\"t\";i:1525723200;s:1:\"c\";i:1513120;}i:5;a:2:{s:1:\"t\";i:1525726800;s:1:\"c\";i:1521223;}i:6;a:2:{s:1:\"t\";i:1525730400;s:1:\"c\";i:1539804;}i:7;a:2:{s:1:\"t\";i:1525734000;s:1:\"c\";i:1553502;}i:8;a:2:{s:1:\"t\";i:1525737600;s:1:\"c\";i:1512663;}i:9;a:2:{s:1:\"t\";i:1525741200;s:1:\"c\";i:1520045;}i:10;a:2:{s:1:\"t\";i:1525744800;s:1:\"c\";i:1520068;}i:11;a:2:{s:1:\"t\";i:1525748400;s:1:\"c\";i:1431473;}i:12;a:2:{s:1:\"t\";i:1525752000;s:1:\"c\";i:1573382;}i:13;a:2:{s:1:\"t\";i:1525755600;s:1:\"c\";i:1674811;}i:14;a:2:{s:1:\"t\";i:1525759200;s:1:\"c\";i:1651298;}i:15;a:2:{s:1:\"t\";i:1525762800;s:1:\"c\";i:1541940;}i:16;a:2:{s:1:\"t\";i:1525766400;s:1:\"c\";i:1591718;}i:17;a:2:{s:1:\"t\";i:1525770000;s:1:\"c\";i:1624654;}i:18;a:2:{s:1:\"t\";i:1525773600;s:1:\"c\";i:1682720;}i:19;a:2:{s:1:\"t\";i:1525777200;s:1:\"c\";i:1608446;}i:20;a:2:{s:1:\"t\";i:1525780800;s:1:\"c\";i:1549475;}i:21;a:2:{s:1:\"t\";i:1525784400;s:1:\"c\";i:1457320;}i:22;a:2:{s:1:\"t\";i:1525788000;s:1:\"c\";i:1597892;}i:23;a:2:{s:1:\"t\";i:1525791600;s:1:\"c\";i:1550280;}}s:2:\"7d\";a:7:{i:0;a:2:{s:1:\"t\";i:1525132800;s:1:\"c\";i:34618118;}i:1;a:2:{s:1:\"t\";i:1525219200;s:1:\"c\";i:35154627;}i:2;a:2:{s:1:\"t\";i:1525305600;s:1:\"c\";i:38881996;}i:3;a:2:{s:1:\"t\";i:1525392000;s:1:\"c\";i:39065241;}i:4;a:2:{s:1:\"t\";i:1525478400;s:1:\"c\";i:38160358;}i:5;a:2:{s:1:\"t\";i:1525564800;s:1:\"c\";i:38872858;}i:6;a:2:{s:1:\"t\";i:1525651200;s:1:\"c\";i:36122822;}}s:3:\"30d\";a:30:{i:0;a:2:{s:1:\"t\";i:1523145600;s:1:\"c\";i:22909060;}i:1;a:2:{s:1:\"t\";i:1523232000;s:1:\"c\";i:27694225;}i:2;a:2:{s:1:\"t\";i:1523318400;s:1:\"c\";i:25896794;}i:3;a:2:{s:1:\"t\";i:1523404800;s:1:\"c\";i:28206382;}i:4;a:2:{s:1:\"t\";i:1523491200;s:1:\"c\";i:27954601;}i:5;a:2:{s:1:\"t\";i:1523577600;s:1:\"c\";i:26170403;}i:6;a:2:{s:1:\"t\";i:1523664000;s:1:\"c\";i:25527696;}i:7;a:2:{s:1:\"t\";i:1523750400;s:1:\"c\";i:23942000;}i:8;a:2:{s:1:\"t\";i:1523836800;s:1:\"c\";i:27480409;}i:9;a:2:{s:1:\"t\";i:1523923200;s:1:\"c\";i:33225446;}i:10;a:2:{s:1:\"t\";i:1524009600;s:1:\"c\";i:29115751;}i:11;a:2:{s:1:\"t\";i:1524096000;s:1:\"c\";i:24305184;}i:12;a:2:{s:1:\"t\";i:1524182400;s:1:\"c\";i:23125504;}i:13;a:2:{s:1:\"t\";i:1524268800;s:1:\"c\";i:23741109;}i:14;a:2:{s:1:\"t\";i:1524355200;s:1:\"c\";i:30341035;}i:15;a:2:{s:1:\"t\";i:1524441600;s:1:\"c\";i:42203645;}i:16;a:2:{s:1:\"t\";i:1524528000;s:1:\"c\";i:36363289;}i:17;a:2:{s:1:\"t\";i:1524614400;s:1:\"c\";i:37563113;}i:18;a:2:{s:1:\"t\";i:1524700800;s:1:\"c\";i:43789779;}i:19;a:2:{s:1:\"t\";i:1524787200;s:1:\"c\";i:37437949;}i:20;a:2:{s:1:\"t\";i:1524873600;s:1:\"c\";i:35414524;}i:21;a:2:{s:1:\"t\";i:1524960000;s:1:\"c\";i:34717069;}i:22;a:2:{s:1:\"t\";i:1525046400;s:1:\"c\";i:34228801;}i:23;a:2:{s:1:\"t\";i:1525132800;s:1:\"c\";i:34618118;}i:24;a:2:{s:1:\"t\";i:1525219200;s:1:\"c\";i:35154627;}i:25;a:2:{s:1:\"t\";i:1525305600;s:1:\"c\";i:38881996;}i:26;a:2:{s:1:\"t\";i:1525392000;s:1:\"c\";i:39065241;}i:27;a:2:{s:1:\"t\";i:1525478400;s:1:\"c\";i:38160358;}i:28;a:2:{s:1:\"t\";i:1525564800;s:1:\"c\";i:38872858;}i:29;a:2:{s:1:\"t\";i:1525651200;s:1:\"c\";i:36122822;}}}s:9:\"countries\";a:1:{s:2:\"7d\";a:10:{i:0;a:2:{s:2:\"cd\";s:2:\"CN\";s:2:\"ct\";i:49674115;}i:1;a:2:{s:2:\"cd\";s:2:\"US\";s:2:\"ct\";i:42654217;}i:2;a:2:{s:2:\"cd\";s:2:\"TR\";s:2:\"ct\";i:29607477;}i:3;a:2:{s:2:\"cd\";s:2:\"UA\";s:2:\"ct\";i:28450291;}i:4;a:2:{s:2:\"cd\";s:2:\"RU\";s:2:\"ct\";i:26162637;}i:5;a:2:{s:2:\"cd\";s:2:\"FR\";s:2:\"ct\";i:16579004;}i:6;a:2:{s:2:\"cd\";s:2:\"DE\";s:2:\"ct\";i:9296287;}i:7;a:2:{s:2:\"cd\";s:2:\"IN\";s:2:\"ct\";i:5772512;}i:8;a:2:{s:2:\"cd\";s:2:\"CA\";s:2:\"ct\";i:5556850;}i:9;a:2:{s:2:\"cd\";s:2:\"GB\";s:2:\"ct\";i:5420988;}}}}','yes'),('totalLoginHits','1146','yes'),('vulnerabilities_plugin','a:19:{i:0;a:5:{s:4:\"slug\";s:10:\"foogallery\";s:9:\"toVersion\";s:6:\"1.4.29\";s:11:\"fromVersion\";s:6:\"1.4.15\";s:10:\"vulnerable\";b:0;s:4:\"link\";b:0;}i:1;a:5:{s:4:\"slug\";s:7:\"jetpack\";s:9:\"toVersion\";s:3:\"6.1\";s:11:\"fromVersion\";s:3:\"5.9\";s:10:\"vulnerable\";b:0;s:4:\"link\";b:0;}i:2;a:5:{s:4:\"slug\";s:7:\"members\";s:9:\"toVersion\";s:5:\"2.1.0\";s:11:\"fromVersion\";s:5:\"2.0.2\";s:10:\"vulnerable\";b:0;s:4:\"link\";b:0;}i:3;a:5:{s:4:\"slug\";s:9:\"ml-slider\";s:9:\"toVersion\";s:5:\"3.7.2\";s:11:\"fromVersion\";s:5:\"3.7.1\";s:10:\"vulnerable\";b:0;s:4:\"link\";b:0;}i:4;a:5:{s:4:\"slug\";s:20:\"simple-page-ordering\";s:9:\"toVersion\";s:5:\"2.3.1\";s:11:\"fromVersion\";s:3:\"2.3\";s:10:\"vulnerable\";b:0;s:4:\"link\";b:0;}i:5;a:5:{s:4:\"slug\";s:15:\"wp-media-folder\";s:9:\"toVersion\";s:5:\"4.5.3\";s:11:\"fromVersion\";s:5:\"4.5.0\";s:10:\"vulnerable\";b:0;s:4:\"link\";b:0;}i:6;a:4:{s:4:\"slug\";s:10:\"adminimize\";s:11:\"fromVersion\";s:6:\"1.11.4\";s:10:\"vulnerable\";b:0;s:4:\"link\";b:0;}i:7;a:4:{s:4:\"slug\";s:7:\"akismet\";s:11:\"fromVersion\";s:5:\"4.0.3\";s:10:\"vulnerable\";b:0;s:4:\"link\";b:0;}i:8;a:4:{s:4:\"slug\";s:21:\"foobox-image-lightbox\";s:11:\"fromVersion\";s:5:\"2.5.2\";s:10:\"vulnerable\";b:0;s:4:\"link\";b:0;}i:9;a:4:{s:4:\"slug\";s:20:\"genesis-simple-hooks\";s:11:\"fromVersion\";s:5:\"2.2.1\";s:10:\"vulnerable\";b:0;s:4:\"link\";b:0;}i:10;a:4:{s:4:\"slug\";s:11:\"hello-dolly\";s:11:\"fromVersion\";s:3:\"1.6\";s:10:\"vulnerable\";b:0;s:4:\"link\";b:0;}i:11;a:4:{s:4:\"slug\";s:17:\"really-simple-ssl\";s:11:\"fromVersion\";s:6:\"2.5.26\";s:10:\"vulnerable\";b:0;s:4:\"link\";b:0;}i:12;a:4:{s:4:\"slug\";s:9:\"wordfence\";s:11:\"fromVersion\";s:5:\"7.1.4\";s:10:\"vulnerable\";b:0;s:4:\"link\";b:0;}i:13;a:4:{s:4:\"slug\";s:12:\"wp-db-backup\";s:11:\"fromVersion\";s:5:\"2.3.3\";s:10:\"vulnerable\";b:0;s:4:\"link\";b:0;}i:14;a:4:{s:4:\"slug\";s:9:\"wp-editor\";s:11:\"fromVersion\";s:7:\"1.2.6.3\";s:10:\"vulnerable\";b:0;s:4:\"link\";b:0;}i:15;a:4:{s:4:\"slug\";s:16:\"wp-mobile-detect\";s:11:\"fromVersion\";s:3:\"2.0\";s:10:\"vulnerable\";b:0;s:4:\"link\";b:0;}i:16;a:4:{s:4:\"slug\";s:26:\"wp-simple-booking-calendar\";s:11:\"fromVersion\";s:3:\"5.1\";s:10:\"vulnerable\";b:0;s:4:\"link\";b:0;}i:17;a:4:{s:4:\"slug\";s:31:\"technicalities-maintenance-mode\";s:11:\"fromVersion\";s:3:\"0.1\";s:10:\"vulnerable\";b:0;s:4:\"link\";b:0;}i:18;a:4:{s:4:\"slug\";s:8:\"ubermenu\";s:11:\"fromVersion\";s:5:\"3.2.3\";s:10:\"vulnerable\";b:0;s:4:\"link\";b:0;}}','yes'),('lastScheduledScanStart','1525594808','yes'),('totalScansRun','603','yes'),('wfKillRequested','0','no'),('currentCronKey','','yes'),('wf_scanRunning','','yes'),('wfPeakMemory','81526784','no'),('lowResourceScanWaitStep','','yes'),('wfStatusStartMsgs','a:1:{i:0;s:0:\"\";}','yes'),('malwarePrefixes','‹\0\0\0\0\0\0Öy8ï\0ðÙ—»Î;Ë½sIYJ…ŠBR$RI%QŠDÙZHJ!I+…J”¤H‘Š”´i!*)¥EE+Ò&~ßßŸçœyžyßç3çÌ3>ãÇŒ\no>^×ß\'Ì_wBØx³1ãuO¿\ZÞÿ Õ%ïe\rÉ?ðECËÄ)¥³ŽM¾>í²Í8)ûÿ}–ãu×„ú-XïöÿË1ff–æÿm\0–é\0øý\0Ýràa?\0xG7\0?Û )ûô`‘\0ö4ÀÖDÂK@ÜbH½\0Y®+ gZ\0¹p\ZÏê¨›‹\0êß@1¶Pt„ô¡€180å\0ûv6ÀÙÈ. à);€÷¾ð§´Õ¼\Z@U—	¨Ó{\0uŽ ¾\'ÔÏîÂÌ@p_ö€F»Ð\\q4·Æ\0Z.=€ÖÂ_€ö\r0h²êíèŒït&Õ:A‹€!·í\0]ýß€î¤\n@7è\0 ûb? gè]¬–ÙÛ;€aÜl`Ø,[À0ì`¸í`xý,0ü`00¼¯aŒ˜ñì$`d½0Z§U\\\0Œ>ÍŒK>Æï&¶)€Éæ/À¨S5Àè½)€;0ó­€r°Ø=	›»7ë?î±À¸ë­À¸º`\\C`9Þ°*XXÕ€Õïd`üÉ~`‚6LˆXKþÖ—_ÖW–6$`Û÷°»¸˜t¦˜t/˜<$p8·7ŽOÓ\0§ü`šm0mà‚.V!ÀôÝý€kH,à\Zý˜ÞÌHðfœ~Ìx8˜9½˜•ü˜uúà6~à–…³Žî«\\÷Ÿ¹À\\§`îÃwÀ<Ç:`^s0Ÿ³\0,?\0,H{\r,8ã,(N\0\\Y\0,øžx,þxä¦\0žcO«Ó€gö#`¡½-°Ðuà¥­xx›s€·/à]˜\0,¹%|ˆë€ãøl¼øª0À÷,õÔ–Y·ËÖþg×8`Ù×À²Ñ€Ÿìàçžø]ôüêCå\'v\0þkÜ€\0É& `O,:	X©˜&\"@`çH hú4 8ZÇÁÜÕàs`õÞIÀ\Z0XÓºÙ›„A@XPv¹/6\"°J bé\Z \"k\0X§¯Öõ:ëýï\0¶†‘—Q òU5d•DG]\06=]ln¶X†[VÁ@¬.ÄE±ÿ½»Ø$ˆ½·Øúó°õ.°-©Ø¶ï,°íù; ~Îj >éŸNñuç„µù@BŽ#8ºHÜ7H|;Ø.v„¬’œ+€$— i‡?°sä ¹+\nØõÊ	Ø,v4{—Àf7°gëo`ï§ûÀ>Ùw`ßÈ^`_ïN`­R<æ)AÔ=ÉÀqÀ—R M÷6f0\nH—/\02ÆK€g; Ãc\"9P²0%k€ÃÓ¢€ìá™@¶ßD gß= çž3pdQ!p´ý4p¬YäÖÜòÀí@Þzs ï£×çœpÍN\Zþ\nŒó‚t_àT£pª[B±@¡ñI pþm ðá\Z °=(ìžœn»œ1\ZœY\Z{¬Š—{%\'Fç|¦\0ç*^¥&Àù™•À…)ÚÀ…í‰@™ü(›2(OR£³€Ë§ª€Ëw&WÞæ\0•“` Òm=P¹2¨Õ@õôk@õF :ñP}®Õ|®×Ù7:†µ†£€ÚS÷€ÚÛç€[9ZÀ]¸r¨Ó™\0Ô5G÷f6\0÷|åÀ}E$pßð@¿xxx8û2ððÄ/ Á4h¸txtöÐ8S4¡Ï€ÇcÃ€ÇQÀãGîÀŸ§À³Í^@ËÅ6àyì à<xaj¼Øû\rxi9x9Y	¼Ü^¼¬^KÚ–ºmébàµ·=ð:$x1x;rðö²)Ð®c´¯\r¼ŸÐ	|hK:ÌO|€Ï»u/¶³€o‹¢ïç§]ËöÝÀ# [Ïý?ñ@÷Â@ ûˆÐã=í\r¿_…ðÇ¾ø›Uüý¶è»÷ø7c\"ðoN)0 ‚K€àµK 4M„ò?€Ð§û |„c¼@ÄºDöº‚h¼-ˆ/1\'ÄþÎq¬Ä†xÔx6$/ÍEÖ. Èë8(Z;]ŠË¢@ñ”@k@Éð$P2Ù”†ß¥[ß€2»hPöu:H¥DƒTû3¦Ë@f¿\'È{²Íù G¤‚ÜºP¥‰\0UûAUR\0¨ÖêÕŸ€ê‹é úÞ~P-…E© °n8¨™Ujé¥ZÃƒZó|A­ÆM ¶~!¨íUj?ùj?{*›\rêèåƒ:›²Aš-ààÀvpp¼)8D³¢WêZ;º¯úÛÓ@WÐÀóhðò84-zq	8lé0Ðp®4ÌN\r_[€ÃÙ\ràp?8¼X’Ž¸œ\Z}M\0]AãÙ;Aãñ 	”šÈÚ@“8ªÑõë.8\Z\\šŽ}šZÍÂï€æà Ð¼·ë³{*gp·b8®í\0h9v>h¹ûh™5´šø´JN\0Ççéƒ‚û@k™h½þ\rh}À´þ¹´ÙÚìlmN^mÊAÛoEàÄ/ã@;ç~ÐîU8iÑ?Ð>&œÌ/\'?O\0§|D@§@\'pZÙÐÙz!è<ù8=‡]#~€3g‚3¦G‚35\ràÌ+GÀYn€nÁÙ÷€î_A÷œ±àð!8®çºXƒóôÓÁyEÁùêÁùéÀùÿüÁÎà‚È\rà‚$%è!o=†ï=êŸ€­– g…¸pÏ\0¸ðœ/¸°y¸híApQå\ZÐK²ôš´ô:R.¶ß.¾üôn‰—äçƒ¾‚K=ÓÀ¥G·‚KóTà²kÐþúeW¸d‚+ÞOW|ëý7]W>ØžÆÁÀG0Ø¢®²4W]\0WÝX	­…å‚Á{0øµ’?^†½X†uÇ€á#ß‚ƒÌÁˆŸ¶àÚõ!àÚM¯Àu+>ëªöƒëošƒQ>Á¨3öàFø4¸±Ë\0Œ^5	Œ>”	F>nú¡Æ\\]Æ< ÁÍ\r\npóÓLpó«à–+àVf=¸uº7¸mú2p[êWpÛ‰}à¶\'0nb·ÙŒ·Œ\0ã÷€ñIÕ`Â’,p;¿Ll§Á6¡àŽGÁ¤X)˜ÔÜ&¯œ\n&§?w}H÷ø·‚{{æ‚û´‡ƒûæ=\0÷ß¯÷*S—x€©-ŸÀeàû`Ú‘+`Úýr0í©\r˜>hxpõD0ã[=˜éè*pç‡·^\0³RÀlU˜Ýž\0æ„\0sþŒ1›Ác/÷¹“U`î\"3ð8_R\nÿøÌ›˜\0æ5žóþöù÷ËÀüëÁ12° y6Xú,ø»<µxêÃ9°Ðì*XX÷,ò™½`Á3%OÀ³²MàY+sð¬¿<»&<ûÛ\r,60K˜@°´0<ï·¼0lXÆõƒe¹3À‹J°B¶¬0«+æ.+Âgƒ—–„€—)7ð²gxyÕEðŠñ\\ðŠ×H°«+·«FE‚W¿Œ«Ço¯¹?¯E<¯Ï×kòCÁšÿ9u¼ý¬5¾Þô¼½,¼ªÞ®©o÷‚wuç‚w‡^ëÆ¸‚ììÀ‹–‚\'‚‘àÃÿêÐ ï	>\nj¶\0}qw§ƒ=‘`S½=ø-ë{(À\'oÁæià³$l‘õƒ-#g€Ï×/Ê°µž_š$ƒ//Ô‚¯ü+ÀWç?€¯žãàu\0øœ	¾s°ßµ•ïz§ƒïùµà{›^ðCÒðct<Ø1<\0ìv”¹çmÀONÖà§ÙÙà§sÎà§Û§ÀO/ëÁÏ ø¹¦üò~øU´ü>}8ø½X	vÅ]»:°ÛX\nvï{öDÝ{ËN?ã1ðçïbð—×oð×2_ðWÀvðW¶ø«u6øûÂ\Zðï#ðïÃà?Ãõà¿²0°Ÿêûk;ÀW; À“†€47CàÝìp† #ºÁ\n{ž0\0Áv¶|ç„!Äb9„.y¡ l×¯ºæ1€ˆm#!rû\'ˆ¼\Z\n‘!Ñ¼XH²%’:+!é©«ôÆ[HfÉ¾\\€äSÅü•-D\ri…¨ã\'!…»¤hÙ)1Rj/€”w, Î¬â“Û!õ?H0ý	VG!a»$ìð…49¯ ­wAö4_HG{¤óO\rÖÞ\röt‡‡<…ß{\rù÷ÒËŸé}Üé»‡ôW¼‡ôwo„ô¿˜@CÇÖAÃÜžAÃ|AÃJ¡a—» Ã‚+Ðˆ–5ÐÈYrhäÝ#Ñä\ZÈèŸ\n2î%!€Fi-†F‚F\'¾ƒLß4Bcd%Ð˜+ 3ŸdÈœ\" ±ê]ÐØ-éÐ8ã$È²p*dYÆBV¾@ã\'éC,t Û$dmÙMXÙ— ûÃk ûìóÐ»EÃrHQBŽsS ©iÙÓhÚª«³û7È¹ð;äà¹lš\0¹¼\0M\'CÓùhúÅ.ÈÕ³r]=rÝúr}òš5*š=ú$4Oè†æ_<	-øï<ÚC $äIxAžs]¡…Â4há„ÐBo3há=Z4|=´è±+´èÏSÈ«v\'äí”y§ZCK<ÇAK²ã %Õ«!Ÿ!ë ëxÈ×}ò¼¡¥\Z ¿›ß ¿7w å‡â åOfB+Ö\r@+chåž…ÐÊ»Ã¡•o@+{CöéP`Å;h;Z5ÍZÕ¤‚Ý à\"h5­v7…V—‡B«/–Ckà¹Ð\Z×PHÖ(t:…Þ_…ø…d (Âé!±÷;´~ÔhýR	ù,Š	5…brnA›‡VB›+>A[ìïC[w|…â,= I$”03JØ9\0%ü˜\nm·j†«•ÐŽ˜(É´Jšì%mý/¯%½ú\n%_‡vM¹\níºòÚíqÛí¹´ÚóÇÚOA)g_@)/Ú Tq%tÀâ”V˜¥O|\0LºÌ	Ì\ne¸ÅA™fYPæ„(óñèð9Oèpçy(kH”kåøèCG8tditäØèÈ“è(g³»{ûk	_Ò\r?~ÊûøÊ·Ì€ò#G@ùCùwÖC\'à_Ð	‹ŸÐ	—YÐ‰´[ÐÉ¯¡¨*ØZj}	êB…ÏCEˆTä9*Ú>*ú	Ag\n~CÅŠ÷Pq¨*Þ?*)Ì‚JN†Î¹* swæC¥cÊ ó›pè|ž7tþÔTè‚è2T€AW™A3äÐ%/	tÜ	UM_U½q®n]]M•BÕG k	‡¡k§¿C5žÐ\rãïP­Gts÷cè–ÁLè¶XÝí9\0ÕiŒ :Ó èÞ:º×®Ý°€Ð º¿ zÎªj=ª›5nó†·\'BOý@Í÷ë çË@èå¿uPwj3¢ ¶%YÐkê\rôzÊèMÆzèmrÔ¾9zÿÇúqúðÒúðeÔ‘iuš\nuzý€:ãÊ O×Z Ï~MÐ—šãÐ×øoÐ·ýFÐ÷ÔN¨ërÔí	uÇüƒº“µ î{_¡ks¡Þ3zPoUôsÕmègýaWA<R >í{Ð¿žl¨¿FêïÃa4…Á©q0”z†mü`¸¦FôžÁˆÑuËw‚±ë‡`Ü&Æ/Ã„ùr˜ÝÊÿÜ‚I`L¦–Á¢‘‰°(»	µ³°¸[KM†%\'ÁÒKÉ°ô±,\nËö¼…eµ?a:*¦_„•F7`e”VÂÊ×&0C‰`N‘s‰‡`ÕâË°ê×qXX’ÅÎ°ðt5,4Á\ZûdX³Ck¯ºš:\"‚u|&Á:mÇáÁ›Pxð²}>¬»î!¬—Ðë]Üë›{ÂCÅðÐÊýð0ä<¬Ý6t>ï<\04˜\0™Ý9\r½`£Ol\\k	›|÷ƒMþYÁ¦^ž°¹$6wþ›Ÿh…-ú¶ÀV6k`«¤Eðø¸x|É=ØºðlSÛ4¿„mþ6Â¶_ÂíRà‰¥ðÄ—ØnÓ>Ø~°!<9¼vˆ};\\4…\rÀS¯o…§™iÁÓª_ÂÓžR°³Î(ØyÂ\rØ¹èìB?†]£ð*žÑqž	ü‚gN¼\rÏô0ƒgfngÅÀnR`·‚ðìëbØýÌxN°<×PÏó=Ïwœ/Ø¬‚=`]x¡Õxáö>xÑ¹¡°WÉ?x±Ë}xñ[öÖ.ƒ—|t‡}F$Áÿ•öqx\rûô0°ïùPxéíÝðÒCáešxxYåjxYÕ+ØOoìU	ûåÀËï\r‚ýKõaÿ–°ÿg\r¼ÒÐ\0^Ypë	Ú˜ÃkÿÁ«\ZÊà`>Þ¸^=ê¼æE²çòÌµ}AÃaåŽpØ[çÂómáˆ³YðºîÇð†’»p¤±y1	Ž¬©†#ûoÃQ3]á¨Â8êt¼1ù¼1¥ÞøÀÞøñ¼Éló!Žù˜Ç‚×àØÝ¼õÌ;x[Ä(xÛ6Žsy\0ÇøÇW-€ã__ã;†ÃÛhxÇ‘›pÒ´hx\'ðÞ>ÞåvÞ#ÚïyõÞ;é8¼÷ãx_ï{TïIÀû§‡Sà¶qðkà¹Cà7‹á4[N[ë§_n€Óo”ÀéÍ[àƒß\ràs78c¥6œÑågš	gf¬³K:áœÛá#áMð‘£>ðQ¦>zÅ>f³>îLÁyGà¼ëpÞ£ùpþ ×ð	\"\n>‘p>Ñ÷>©ß	ŸôŸ¼íŒ,‚Ž;Â§NØÁ…]YðéE›á\"ãHøÌ°£ðÙšøìmK¸¸..Yu.ù9>·r|þÙ<ø¿.cÏÃSþÀ‘\rpÅí…ð•!p•m\\uæ!|õô1øZâ%¸&g.|£º\r®¥ÂµñýpíþvøæüÅð-#ø62¾ckßqkƒëìžÃuŒàº.søžØ¾We?ôq†<‚–Œ†ëm@¸>ÚnØ7ÄoîäÃâVÃM£ZàÇ§ÖÀOf™ÀÍ»õàæ¿ág5üÜwü¼Ö~Q9n=LÀ/=àW+õáWý?á¶UŽðëHøÝØð»¸^ø]ö-øÝß«w¿Ã‰6øãXøãÒF¸óª;Üù~)ü©oü5x*üõÍoøÛMgø»w±r¸ËÃ\rîÚow½Ûw?6…{\Z÷Á=ísá1ËáÃ½:‘ðÏË«à_Ã#à_»\'Á¿Ìá?^•ðŸKøï¼#ð_ïÍpæ¸?[<Ý\0´†>Ø\"@ÌnÈ>ÀÔ7©‹ So#hÊ}=Á¦®D°åí^q!ÝD<9\0ßND$·!’æ/ˆ´R‘¹9!²ã·ªæ&¢¨MD·Úu$Bïÿ…ÐOî#Jî¢œýa‘L„}ØŠpÖÁošŽðG_ ªsWÕõND±QçGÅDxv\nÑ²ûŽhE× ZÿmÍLD»¨Ñn_‡h\rD‰® ƒ®ŽGt¾ýCt~5\"ƒ§¢ÈàÅˆÞoDïãDßà¢ÿG1ð{ˆ´NF†>ª@†!©ˆ!º1…ÿšŒ\\w1\nŽ@ŒÖš\"F}çãvˆñÆÈèŸ¦ˆ©}bÚ¸³â\'2fà>bVe‚˜K& æ^oÅ]Ä\"u\'2Ž¼ŒŒ[jŠŒ‹š‚Œ»X*G#–­g+ub†Øè©ÄÆß	±%Ò‰u}ˆÝ\\dÒÚaÈ¤c+{{	2e¡âàðq˜{q(õFë†!N:ƒi›aÄyCâ¼c*â|<q>¿q¾rq9}™î<™^õ™þù	2£¡™ÕŠÌü¹™%Yª¹ˆ[¨7âþ1™3ú\Z2ÇÅ™»j\"2÷B\Z2÷½)2··™§úÌ3²Dæï¹‡Ì¯Z†,È„x„ø!a%ˆgäÄsƒx›‰,Ü¾YÛ!^•Ûo¬ñÍ@¼×#KjZßÜ	ÈR}CdéüUÈÒØCˆßÚ2Äïh$â—gŽøõ¾A–¿ +NÞBüUYH€*YÙ½	\\ð	ÌƒžòFëmUž?UÙ4þ(Ð†ÇE‚OÿBV§îEV7CÖLÄ‘5Gí	)X‚„N[„Ö¤#áKA$âúZd­n²nîsd½\"Y‹¬¿T€l\0­‘hó$:à]q‰qöG6óáÈ–)…È¶ÅÃ‘m)ó‘x×j$¿ƒ$,Z‹$¬þ‹$$E¶—íÍw7J‘$Õ,$é’\r²s¬Ù¹ñ’|ñ’ÜÃ\"{œ¿!{Âu½“W {ž#{?mFö]@öSÏý¿> ûÿ™ )‹Æ\")¾’«¤\ZERçÎCRï7\"\"Î Þ#i[Æ uäàä$$sÛxäÐ¸ñÈa«.äpb3’uŸE²¿: Ù½™È{äèÞ»ÈÑ‘£ÕÈ±²³Hî6=äøÉã†!yb‘“J9y¡9Ym‡ ÈiÑE¤hrrÆá\0r&Õ\n9Sø9kô9;ë3rö„R<Í)ÑíEJš,s}<R:ë7Rê>¹P›‹”Í¡‘²¢gHÙýD¤¬¡¹8®¹¸érIã„\\?\Z¹<B.§!W^k#•§® •wâ*Ã&¤*°¹:aR½%¹NmDj†¯Gjân#7:JZ­õHíËHíoä¦¤¹ÙŽ ·¥!ÈÝÔQH]¹1r/[¹÷{\'r¿-©Ÿ•Š4Øö#ŽU\"Í5H“í¤)ŸG{ÀÈ“Ù7‘§{¥ÈÓÞ…Hó›õÈ³,K¤eÈ$¤Åù1òÂ¿yy«yEø!mâ™H›ñ8¤íÎ\Z¤­eò&Nykóy»ÖywÀy×ê´K;öâýH{m?ò8…¼C‘÷çò\\òñ¿úv¤=D:_”\"ŸV|C>½³@>ƒ8òÒB¾,[†|)´B¾œ­@¾”.B¾Íþ†|ûÑŒôÿF~ÌüŽühÔ ½óÞ€R¤7Íé-›ü4{…ü>zù}¦ù£Uüñ¬@þ&; }K¤Hß3äöé²	é_péo»ŠÀ¿™(øü\'\nu¥£°:	Eîú èÊ›(\ZøEkÕ(®tBqÃû(Y‚Š†¯EÅ¢¨Ø´•¼?‰Ê®ODåª¨ªB•3ÚPF/e>c(Û‡r#¼P÷pTsÂd5Ü¨A‡<~‹êŠÊPÝq*T÷‘/ªÛ2Õãß zëP½œRT¯ñ7ª?•FõåèÐìÙ¨¡Aj-B‡ûCGOGÏ¨IúqÔäª:æõlÔLP¢f»ÚQ³C‹PB-¶÷¢]jñã5:¶í\":ÎÁ7ó\"jù\Z@­\\ï¡Va7Ðñ{eè„•¹¨5¢ÖÏö¡¶cÝQÛ}cÑ‰ÂÔ>ˆNÞ²Ç¡ïuPÇ™CQÇë:èTÍgÔiÕxtšÌ¶=u)ŒB]Î¶ Ó±2tºz=êúx:CtÉ–¢n¥ž¨[e;:›˜€Îžzu{	S¨Î[ŠÎëšŒÎ|Ž.0¹‹z² ê¥{õzTŽ.Þ=\rõÑ’£>½E¨oéÔ÷6ºÔÅõ[rõk‹DW4ŒEý³¾¡þö¡þÍÛÐ•ƒþ¡+=î +ƒ`te¯>ºŠÚ„®JnDƒôÑÕ£o «/;¢!c×¡¡Þ›Ñ°\'4|G,\Zžû]kþ]?è-º!xºá¤\ZI8£‡÷ \'ïE7èÆ\Zi.B7»¼E7ç£èæ/1hlc9º5e\Zç*G_¡	±SÐí_ÐÄ/¾èŽ[SÑá5hòLc4ù†šÜ%CwÅÐènE\rºÛ>Ý}åº7nºo·ºÿ‹5š¢wM1´@SÎmBS®X ¦ÝBS£®ÜGÓœÑ´}Uhº‘z0V„fì|†fêÝ@3ÿÕ¢‡l|ÑÃ#ÃÐÃ\nÑ¬1uhÖ­ÓhVó4g„æŒM@sâ\"ÐœìX4çe(šóa$zôd4š»­Í-ÑEžˆæ­(Fó²–¡ù3tÑ|ÿ¿h~ô4¿Í=qFOôíCOæm@X-ÐŽEÆ¬CNÌFO­¯BO{FO¿?ŠÇ$£%þè½½è…ÄZôBû0´L÷\rZæt-›u-+üˆ–×ë£·­G/÷e¡W¾¤ •Ÿ\\ÑÊÞ·èUýèUýèÕaNh5´­ÖrF«+£ÕkÐk%Íèµ{‹Ðk_Õèõ·ÕèõžXô†üzãbZkí€Ö®qBoRèÍË^èÍêzôvä(ôÎš«è½­è½}­è}Wz?&\0}([†>\\‹>’h£IÚØaˆ6þ‰G›¸õh“mÚT€>‰ÉGŸÂuèS¡è3}Vbƒ¶ì”¢-® Ïw½GŸŸ9‚¶®z…¾ôýOr\"ú²5}5¶}eÝ‡¾Zÿ}Õþ}=¾	}=ëúúQ(ÚnrmŸô\Zmcƒ¾OtEßßÈD?ŒÉG;lÐG/´có´ã,‰vú}B?Ÿßƒ~þ<ý\Z‡~i°F¿jMF¿ê_D¿ÍF¿›F»˜\rh—æÚu§íºûíúÈ£Ý£œÐîCÐîs«Ñžâô‡Ã/´×¥ý¥Fÿt¼Bû‚æ¢ÿÖßCû!S´TÚoÖöGÍ@û3¦£ýùè\0RŠ­O0¤\ZÅÐá–cX{†ý‹Àðò_~?\r#Ê]0âæ;Œ¬vÄDðyLlž„‰}Â0ñ²lLb`‡IâÎb²•w1Ù†û˜ì€QÌyŒqS\Z¯Ä¸32Œ/?©jžbªßN˜zô-L}ÄS·…aš®S˜æO¦5ì¦­ç‚içbÚU‹0íë	˜ÎSslˆn¦{ Óƒ0½Õ?1½¼W˜Þ×I˜ÁÁHÌàÈSlhB\"6,~\r6ì[fZŒ\r÷/À†_˜‹°*ÆFûƒü[Oæ°Ñ5¡Øè/©˜©Ö Ì´&c²³/k¾{à663\Z[þgò×TYÀ,Ãõ1ËÚl¼ÉLl|­-6a¤	f3î/f3ëfË¿Âlí1Û¨ÿòôåØÄá¾Ø$ö6©ô6i ³×Y‰MY€M)ù9™aŽmŽØÔa7°©¡C°iŒ6í†;æ’2sùHa®?‚±ªÁØŒ#§±Y5 æ&ÁÜ¨cØì¸nÌsÁæôgbså+±¹†ýØÜßžØ¼Ò7Ø¼o?°ù6ÿq)¶\0¾…-h×Å<Æ÷asÛ1ÏÅ=˜çÞ˜gÁRÌó¹æùÖ[¸S…y±±Åƒa‹—žÁ¼Ó°%?ß`>ŽK°eƒÞaË&]Àü—b+z³°€!ñÈû‹­tÞ­|5|q|{[5e4ò”ý:„Ë\\±àg$Bta!Þ±ò×X¨‡…¾LÀÂªî`ágŒ°ˆá³±ûuØº‡±uñØ†Ç½Ø†g±\r_œ±È]ÆXôˆÃXôÉõXtq>¶‰Ü„mª…m€mN8m>tÛüÁÛ²Û‹=šŽÅþõÇ¶fÍÇâôZ°¸I\rX¼xÿp=–ýK¨þŒm—çaÛUúØö*¶½é–x;Kìý€%Ý·Ãv¦ŸÅ’ÃYlš‹í”b»£plÏ”5Øž§ÅØ¾Ÿ°ÔIk±ÔLK=iƒ¥ö.À\'`éÃÃ°ôØÑXúÍìàï4,3x\rvh÷ì°îì°?–eúËºn‹eêbÙi4–cÜƒ¹ñ;ÊNÁŽ-ËÂŽ½:„å¦c¹—œ±<t–\'Žå©¶byw\r°|h!vâ»;	þÀNîŠ„?Â\nDc§-ÀŠtß`E®qXÑu.ê&±3ºéØ™àuØÙå,V¬JÇŠ›°â-!XÉ¡©XIÏeì\\ÿF¬tü9¬ÔÚ+®ÂJÝi¬´ê¿¼%»ðDŒ•uÂÊ!%VþÛ»ˆÁ*nÃ*úý°KZýØ¥o[±ËzºØ•/XeÔn¬ê;…]µf°«?n`ÕmO°k\'7b×\rc×—ºb×o.Á®·\rÅjb°š={±š¼Ø\r·UØ\r¯cØ;ØæùX-7\r«}ÿ»™»µÍ	»]=»Û…Õ!û°:ËZìÞòØý%ØÃÑµXÃÐ9Xƒ%„5B_±\'…]Xs”%öltö,<k¹V…µü2ÇZù•X«3†µú™b­»¦c/Wb//Ea¯ß-ÇÞ0[±·7±w§°÷Ègì}oÖÁÂ>¹ìÄ¾*ÅØ÷¡õX×ôj¬+{2Ö]õ¸,Â~G±ëÒ°QYØ/,ûµ\\‚ýŠøývZ‡ý±à±?N…ØßÕ#±¿ïH¬oÏB¬¯½û÷æ,ÖßÜ‡;q ª‡Žþ§Ð\0G<Üq\\¿\'M\'ã¢÷qñ	\\rk.å÷àÒŸSqÊö®hjÂY­hœÝÓŠs•›quÐF\\(Ý‚kt×á\Zc®mŠkß¶Á5â:¶à:óýp\rJ|°›>d´5>dÅ[\\·R…ëöøázÛ¾áz{špý­6¸~å]ÜàòiÜàÉB|˜ô>ÌÊV­ÂGtÅå¸q~nüõnrt=>*å<>êD%>úîMÜôòOÜt`â]„é8Œ›Õ¼ÆÍ‡|ÀÍmÜÜã,nÞmˆ[ õøØ„p|lê;|z\n·<®À­ŽOÅ­n˜ããu‡àã—=ÀÇw8áv¯Â\'TŸÇmlnã6¶z¸ÍÎ[¸M-nó­	·à]7ãvƒzp»wñÉý¶ø”`k|JúOÜÁ?w[‰;MÁ½áŽ;MqÇ#\røÔ˜d|jZîÔÝ…O³º;ÿÆ]¸¸KŸ>Ý0ŸnºŸ™îƒÏÌ0Åg®Ãg¡Eø¬\0O|Vw%>;ø\Z>û¨7în·Ÿ·ì,>ÿ¢5¾À>_°e/îñéîy¶÷¬[Š/´Ø/|¶\n_äq÷zŠ{uà^\ZÜÛ0÷vÆ½/Vá>ÇƒqŸOÁ¸ï²KøR§6|éû»ø2íåøòÊø\n»)øŠžSøŠŸkpÿ\'^øÊßx >_µ%_õ5zö	¾iŠ¯^p_½p4:Œ‡}_†‡¯×ÂÃ£àáOjñˆ{3ñˆOðu’‹ø:u:¾aÕy|ÃÆ	xäüuxdÜ<òxYa‰GåÃ7\ZNÁ7Þ¿Gs×ñè?1ø&ÿ5xŒÞg<&­y±\ZiŸ‹oþß|ÿ¾ee4¾åí6|Ëçqxìj|«¼ßzi(¾m	ÇÙïÆ^ÅŽ4áÛát<³Âýa<ñÀ6|GÎG<é¾5¾sË|g[%¾³ÃßÙ;OöuÁ“Wäâ»2ßá»:¶â»2øh¾çÅ5|/‘Šï»¢ï?óO	îÃSÒâ©ZÇðTO-üÀž“xzÎ&ü ~~0x%ž1EŒg,‹Æ3Êÿâ™	ûðÌÔOxfC<~ÈÄ-Xˆd‹ÞÿÏjOÀ³/¯ÅxïÅ\\{„y4ÏEÿà¹5žÛž‡Ÿ óñ“Ê‡øÉ 9øÉT/?/ˆZƒ\\?ôŸÀËçà§­Çã§wOÂO×iá§ßÞÀOwüÆ‹Ø»xQ„Ÿ]nËôñbË\"¼xïm¼ƒ—´†á¥a_ñÒÏeøy™?~¾Ì?å	~þÍ+¼|\"ƒ_Ì†_vÿƒ_ö	Æ¯,}…WjÝÀ«‚VâU%3ð«³xüêñ“xõª>¼:ÿ~Íë=~mÅ0üÚycüúÐ[øõÐjüúÕ\\¼…×8â51µø9,~SÓ‰ßœ¯Æo˜à·¿Xàw5;ñ»Cþs¿»Ãë CxÝpküž»!~ïëoüÁüPü¡,8é þðû8¼ŠÂe.x£*oáû´ð¦µ¾xÓf¼iÞT’Š7Ýš‚7õ1øã,þX‡?±?™Ø…·Ì:„·l·7Ã[îÎÁŸ/qÁ_„á­ñ—¶x›Çu¼-ˆÇÛN\0øëqÏð×±£ð·q)øÛt[WÂàïž.Æß—<Ãß÷Ç?<Â;|ðŽYø§m“ñÏz/ñÏ¶3ñÏgSð/Mð¯g7á_{,ñoÓûñoµñïkÖá]•\Z¼ûÔ.¼gw6þÃªÿqÏÿÑfŠ÷®kÃ{7xoúaü\'i‹ÿŠ–ã¿Þ×à¿]Å¾‚ÿ>ÕŠÿ~Ñ…ÿÑæñ?&[ð¿²øß«x_’ÿÇ;áÿ*@¼³1Þ_ƒ ¦ø€÷r|àËA´_G€ó0Õ„\0K)zw”@Ô?ÄÀŽ@vÈª¨í0ãö˜ÅN?ÐBšh‚04\'Ä-0!™óô$d)úUr˜ w$Ê&;‚Clåg‚½7…àp]‚¼à|	>b/Á—ö*^‹Pe²„0ï0¡y}™Ð\ZšCh%7ÚƒfÚŸÚ_wƒ¡ÛÄ`b\"1xëbˆh11DaCè…}%ôö\ZD,aP3”Z²„VSEî	\"†Ž †ï;NŒx¬KŒ$Ç#i[bäH#ÂèÑCÂxÞUÂDvŽ01ë!FÏF‰Ñ«>£ã„iÔHbŒÕEbLT\'aæïDXœ{NX|ßNŒ‹~BŒÛ÷‰×õ°ä|Kƒ/„¥y\"a9O—°|’OX~]IXö|$¬’‰ñ–«‰	­«	ëá×	•/1±åaýš°ëAØ})%ìõ´	ûýÎ„ý½nbÊƒ/Ä”v„C¯%áèŸILÅwS‡ÄSW¶N6§§–#„Ó·QÄ´™	g­ë„³½+á\\H¸\'\\FU.%,áúî1#p=1h&fžšEÌ\"ˆY\'r	7·I„Û³å„Û›ÂÝÉ€pv\"Ü%î	ÄœÙóˆ¹ãpbîŽ˜ÇTó[Çšµ	Ë6ÂS/˜ðt]Nx–Ì$¥‰¯ñ×/×c„—¯ŠX<=šXbA,~¸šð‘J,™®$|˜W„Ï|†ðó™X*®#–fÌ –æ†KÏÆKïß\"ütëˆÎ;	ƒ\" )šX9d\Z¸.“l¼HÓk‰5Ã¯k¢Ìˆ5Ïˆ	éDèR#\"Ìêö$‘ûfO„çÜ ÖRÄ:v±žXKlð\\DD…WQ?kˆE-Ä¦ð@bAl±>Nl¹2›ˆ]1ŸˆÝ¿ŽØZt“Ø¶Ãœˆ»NÄ=o&â†Ûå×‰ÄÐÓDâåED’d5‘4Ì„H:<•Ø…ž&v‹F»#²‰Ýêˆ=6‹ˆ=µ‰½ÿôþSLì\'Üˆý+Ü‰ýÇÚ‰ý)=DŠc‘ú6“8³‚8pú-qàL‘f´ˆH›áD¤½F¤ö#ÒçéµïˆôæyDzûaâàÕÄ!Àœ8dHr¯\'²`k\"«4‰Èi¤ˆ#“eÄÑˆ£¯“‰Ü¡—‰Ü\'ˆãZ÷ˆ¼›“ˆ¼oáD¾f€Ès‡È_<•8©ßDdcDá¤ûÄé¨#DÑ´ÕD‘‡œ(\n<Ou‡gÀADÉK”(u\\B”î¸O”þ7[çO¿\'.”ü&.ÔÚeÚÝDÙ÷¢¬WJ”ãˆr\'¢ü˜(?·‚¸è¾’¸X§M\\|ò•¨¨®\'.¿!ˆ*‰)QµëQuh(Q½»Ÿ¸¶d€¸`FÔW7Ø\\âÆp	Q{Ù‹¸9}qË&“¸ekEÜºBÜ>¸…¸ýBMÜgNÜY‘OÜ‰xCÜ©_AÜéßMÜcN÷\'÷MkˆûÞ)Äý}æÄýãwˆr)ñ`Ã\nâÁ—â¡-ñ°oQ·ˆ¨ß7‹¨oL&\ZøDCÓ\"âQ²;ÑøÔšh|YL<Y‘A<é»I<Ý %ží!š-ÌˆgCYâÙ9k¢eÙq¢%-xAê­¯@âåö$âü–xxŽxÛy–ø°¾‹øðÀ‡øèÖO|\\FÖD§¬èÔ½Et.J|Ö6#>¦ŸÓ´‰oÊiÄ7õl¢KGt­¯\'º|ˆžÓ‰žãw‰žÑ3DüHÚ@ôÆë½·½opâ·Gñ»¦›ø“ý™øÓ«Eôé{}?~ýÓŸý®S‰µ>1ÐpŸx.%Á/H˜õ a£h.V“ÈÐZ© 1q‰¹Í#qµ‰/ÞAGW“ÄÓs$	äæ9¤8Á„”ú6’rÿS$µÖ¤¾= B8I?ï#Å3’™?…d\ZãHvh)É¾B²Ýy$ç°žäX“\\i3©:ð‡T—¼!±)<ÜOj–=!5N’Zò$RËõ\r©5ï9„ZIê\Z’¤Þ‰•¤¾$ŽÔ/Š%õŸ®\"\rRQÒ Ýš4ø+\'‡-üA«¥HC>š4ÔúO‘‚¾}\Z9bÎrÄÑNrdÞ0rä!¤‘«iäöŸŸIãÕi|c:i|k7iÂž\"MœF‘&±ÏH³2\'Ò<siÁÖ‘c\'_%Ç¥+IËÑ£H+ÓXr¼d9^JŽÙKÚlYOÚ6&m§½ mgú‘¶oH»5ÉÉD9ÙUM:ìyI:ÜÒ%1Òq;HNõYDN%§žùMN³øFNË¯#wÎ©^¤ÙKN€I×³ÛÉWÊI·­‹Hwÿc¤{Séþ½“œ#i&çLyDÎ)NÎ­aÉy²ä<íä‚g†¤ç4Ò³ê¹ðd¹°Ä…\\dëD.*\'½¢<H¯ä³¤×¡¤×ûç¤×ç}äbß¿¤·×ÒgäZÒW“NúÊ!}°¤ïÇcäÒµÉ¥	{È¥?-ÈeeKI?Äƒ\\fN.Ð@®ÑC®¸N®hM\'ý]êÉ€‹É•OƒÈÀ¶…äª:rÕï¯äª¿ÃÈ`Ï?äj#sr\rÓB†Œ\r C\"2äÈw2¬Êœ‡¶’á§‹É§2\"4Œ(|L®Ý/%×>ô&×•©Èu³Èõ›GLf’>O##GF‘n¶dd/FFÑSÉ(ÏKäÆuëÈ1ÏÉhÅ2:y4¹	­#7ÚJnòÞOn*~FnºlDÆ¬LÆ´-\'7;DnNYOÆ™Ý\"Öm$J«ÈÄ±dâÇŸäŽ5óÉ¤_dR¿7¹3$“ÕÎdòždr×¶Nr7ñÜí#&÷É³Éý÷BÈ›dêõÍä-òÀÎ•dÚ=rð›™9ÿ)™¥ß@f™U“Y•ÙdV+™½n\'™Sµ…<²RF…’Èc/=É\\„Ì\r¸Kæ^}Hæþ»Eßõ‡Ìk:OæË´ÈN\nòd+Y°$RkÈÂï#ÉÓ¼-yúD\ZY¤¨ ‹†~&Ï<!‹-F’ç`#òœµynZ\"y®YªåC^ðM!/„m\'Ë&\'Ë¶=\'ËúlÈò‘ÇÉr¯J²<|-Y~ë=y1MNV¬¦ÉKZ:ä¥©/ÉJ·Gd•=yµ`yµûY=í5YâIVço!¯Ó:äõ\"%yýÚX²f¦+YSêJÖºe’7N7ÃkÉ[„š¼ÓMÖé<$ïÍ{K>pJ\'\\t ŠÅäCcòáòaiùðëU²Á{1Ù8MŸlÊ-&›n‘Mí×ÉÇ.ÅäãKÈÇo{È\'kÞ“O=¼ÉfY*ÙlžO6OÍ ›Wo!›“zÈg†³ÈgþŸÉg_EdËŸ·äóR;òùóäóß6d«‡5Ùê÷”|S½…|ó=—|;¨ƒ|öœ|[’ïný!Û¯\'Û¯ÆïóµÈìkòÃ5=òãÌ²Ã²Žü”0œü”QD~6?D~îÚN~9ú€üRJ~[‚ßòæ’]ÈF²»xÙ]æMv?u&{râÉ^Âü…hÈ_êJòW=@þ¾ÙDþbÈ?-É¿V{È¾É¿É~å²ÿò(²¿ê’Âˆ€Ú=\"pÉUÜR.‚¿d‹m\"TvPDL²‘>\"²ÿ–Hlc.Ïz+{­‰k(‘|ý8‘¼ÇQ¤X½F¤xKŠhŸ\"fZ…ˆõu±¯oD‰øˆ‹\"õ´ñ\"ÍÂf‘Îî×¢!;4¢!BDºÊH‘Þ_\"½gÅ\"½·Ž¢aŸ\rEÃG&ˆF:o;œŸ™/2~á/\ZÝ÷A4vm”hÜ°Ñ¢qwAÑxH\"\Z?\\#²6ø!²<Ed\',ÙÎMÖÜM.s9¢‰\"GŸ¹\"Ç–]¢©óÑ´3¯EÎ‹D.ØÑôª¢ùËD3ÞD‹fžˆÍ.¼#ro=&š“›,š;shÞ Ÿ¢yCÏˆær¢ygîŠ<NOytõ‹Z-Š(ZT†‹¼Šgh‰¼oF‹|2)‘O•¿È§m»Èçc—h™â»Èo¦©ÈÏëÈï„½hÅ\\sÑŠ¸?\"‹¢€7E+ÝlD+?÷‰cƒEAC/‹ÖTô‹Â¾6‹Âo.…w­­ÿ\'Z{ÅV´ö‰½hCPžhCÊÑ†*R´ñÌ^Ñ¦nGQL‰B´9ø˜hëÁ¢xì‰(¾ÌB”xÿ±(	>+ÚéyR´³¢H´¿ðhÿÓõ¢ýß4¢”‘ßD)!Ù¢”®±¢Wæ‰ÒÊÇ‹Òú–‹Òsgˆ>>/Ê0_+ÊÈÛ-Êxë&:4¯Ht(cŸ(ûBµ(»)T”#d‰ŽHmDGM\rEG“:DGó>‹r“ÿÓn!:¾æ‚(ïÞQþ;Ñ‰(mQ¡h±¨pòZQÑ²¢¢ÌzQQùPÑñÑÙà	¢³kÒDÅõŸD¥Ã÷ŠJFˆJfˆÎ‹Dç¥ûD*kEe«V‹Ê‚Då‡µEågBDþ3E—äDWfžU&é‹®nµU«­D×®ý]ûüPtÝn¨F–#ª©ž,ªýÆ‰n~±Ý28.º¼Ý‰4ÕY´ˆî…¢ûç²EõäQý§vQC”RôhþOQ£è®¨)ØXÔT0Aô8K*z¢q5+5\'E/bíE/®^µNX.jm¸,zy^½z—,j›é)z3h¼èMôÑ[ù\nÑ;Å4QÇ–Á¢ŽDÔŒ‹>/[(ú¼â©èóÚBÑ—DÑ×ä‘¢¯gôEßÿë½ï¾ïE]ßòDÝ7xÑ¿µ¢¿(ú»ó²èoÆ}Qß&¹èßƒ6Ñ¿®·bÀJ,F&U‰QÇ1šê(&òûÄä‡]bQ›¯X¢%KÆîË¶ù‰eÙ‘b¹l‡Xžó],¯8-¦µ2ÄôøX1íü\\¬?ˆ™=Å¼ÿ\"±ºd¥XëÕFñà±ùâÁ¯VˆõÜG‰õÚÒÄJT<tâ5ñPÏ	bC¡C<|¹£xDõ\\ñÈÉÇÄ#{x±Qõ\r±ñc±YÞV±Y‰ØjŠ£Øª³C<áôNñ„ÒUbkÀPlí½Tlâ$¶üX<Ñ/WlŸ÷J<Å@ç?ÅSÞ;ˆ§z±b§6b§ÄÓÍOû˜.žö÷¨ØeõlñtÝfñô`ØµËP<kUxÖ³/b·=b·Œµb·Ì$±ûžíâ9þâ¹]kÅóŸT‰=ïbÏâÅÛ—Šïš-^ü¾P¼øÛK±÷FkñÒE“ÅK;Ö‰—‹¦ŠWÌm¯ø¾Aì_)ÜÄ•§Å+~‹WIÓÅ«j’ÄÁ¥´8¸‡tDˆCg¤‹Ã4Žâ°Î­âˆöâµfqäu‘xãÕÛâM…vâM¯·‹c€qŒ®x³Ö\\ñæ¾Ûâ-•ÛÅqjSq<tCœà$ˆ|ëÅ	ûôÄÛß\ZŠ“ˆwz4‰“K«Å{!ñÞ–.ñÞŸ×Å©Q¯ÄjÅi›÷‰Ó’ãÅkO‹>JgŒgiâ¬ËíâœÖŸâ#ë§ˆw_çé>ç]\\,>’(.­üÝ*>e(.{G\\Ø¡Ÿ9ŽŠÏnr—nÄ¥oÖ‰ËÆ’âò¢§â‹CŠ/º}W*WÄ‰/{ˆ/o._ÙÑ#¾R˜+®Ú” ®Š;!¾šm-®·H|ýÆqq­«…øVÂñí[CÄ·ÛôÅwŽnß9»U|wˆ“¸Žú(~°¶Pü™%~¸cŒ¸þâhqƒ%\'nðw7ÄM7|Î7\n£Å[ÄMî:â\'Ôñ“ì`qóþâ–Ò[âç73Å/ö›Š_4:Š_ô¾·êí·î£Å­Öâ6ËGâ¶-®â×Æ‡Å¯ëäâ7 •øM÷ñ;‘½¸½·ø½iµø½óxñÇ+ÄŸx‘ø“û)ñçkÅŸ¿“â¯ý£ÅßdÁâoË‹¿[]w½VŠ{–ˆ{>6‰l©ÿÅ?:Å¿¦Xˆû&ÓâþAKÄýÆ×Åý»Å«\Z$ÀÝr	˜.‹ÇKàï%xóc	±¥XB> !Z7HHi„ÜûX\"\"~HDå$¢[Ó%bm=‰Œ’(§]•0A\n	{¡O¢rš(QŸs—®áä ‰¦÷™dÐ\"™dÐ2dÐ†\'¨F‰ÎÆÝx[‰nÉ6‰^¤§Dè ‰Á‰’¡‹]%C?—Ë[\"1<m.No“Œô•ŒüsIbœ{Eb²ò‹ÄäƒX2êŒ£dTçQÉhûÉèd±dÌõ‰ù¶%‹ë=’±Á’±»Í$ãG;I&´‡JlÀ^‰M„Äæñl‰]À3‰}¬—dŠ¡Äá€½ÄqÇ\'ÉT#B2ÕÚLâ4<Nât÷¬Ä©a–dZ ÄYëªÄ¹ì»ÄÅõ½dF,™ñï’dfÜnÉ¬k	·I.’¹çwKæ`$óúd’ë½$~C“ýJ‰GU­dá?Éb“g’ÅÙó$‹KgH¼_6K–ÈI–èDI–Ì<#Y²<X²$Ô[â£Þ+ñ‰Z%YÆÍøï!ño«‘LÏ‘ô8IV“¬\\ÿJ¨n•žÿ\'Yg+	z\Z(	zM²fe‚dÍë½’5?%!îç%aÆÖ’°’$IØÅ{’°G%á²IÄƒ\nÉZç,Éº	’h|ƒd“\0I6õ“ÄÜx\"‰umlåÞJ¶^m–lû+Iòž&ÙiGHvúÛK’OèHöx{Hö¬Ú\"Ù;û¦doê	ÉÞ×%ûæ¸JöÇ™HR}ÞHL–¤ÕÍ¤ÿ}-ÉPÄK2I²¦r’l™½$»·Q’“òPrtœXrtÙbÉÑôLÉÑWI’\\ûe’Ü½’¼Å€$ïõiÉ	}7É‰­í’‚¨S’SóHNeÞœ:üLræÔ!ÉÙ™³$ç>ëIÎõ‹%¥n»$¥>*IéÉùU¹’ó¡%e+Ã$e]†’\n–Tž—\\ú¼_RéòHrmÃÉõ^’[õo%wxSÉÝë%uò­’:Ã5’º]’{›s%÷v~’Üÿ¾XòÀw¤äQñ9IÓõ%’§vÑ’æºÛ’g¼%Ï#s%Ï¯·H^¾ yáòKòbÍIÉ‹ØÉË£¥’—§â%¯®\r•´Ý³´=ì”¼Þé,y§IÞï³”|0è“|„^J>Å¬“|öWK>7œ“|þ |Ùë&ùò3HòmÏHÉ·ôc’ïæ›$ßoŒ–tk›Jz¼T’ž;¦’3K%?‹GI~<(ùÝm+éû›*xzI\nÙ­BSl¤0u]ŠøšI	i¼T$K—ŠO$KeC»¤²á®RÅÊERÆ/IÊ^”ò\\ª”;-Õš(ÕZuKªmûX:\"w¨tDï?éÈ©“¥#ÝÃ¤FÛÂ¥&`¨tôK:J’!5ë¡tÌ†*é˜Ýk¤f‹‚¤f‘{¥æ¶ï¥æÕÑR‹©/¤.W¤wJÇŽŒ–ŽýI:6ÍP:¶»UjÍ’Ú$Ÿ–Ú´ØImg®“Ú6<•ÚäHíâû¤vß‚¤“FäK\'…žÚš#V,œÇJ¦ˆ¤S-B¤S[ÇJfÜ—:e’NÔÒiÿéô\r…ÒÿîJg­:*uÓv”ºç¤³ŸŒ”ºGŒ’ÎqÛ)‡TJ88K=ýí¤ž)C¤-FH½¬Ì¥‹OóRïd¹Ô»¤Oêãè)õm,]v8Pê\'¬’úÜ)õ›Õ&õKû-õ«\Z®½•®0Ä¤þúÍÒUë6KƒüZ¤ÁÜ&i°î9iðÐ×Òà¸\"ið{‰4DV#\rÑ,\r·JCu—IC#>HÃ^n•†uœ”†ý®•F\Z}“F:àÒ¨S¥1û^I7»I·MÉ”ÆñÝÒ„ï¤;&H“–‘&WJw‰é.ýíÒ]‘ÎÒ]\"¤ûmçI÷?É”¦Ø–¦\\Œ—¦Ö”JÓWèK3‡Íöé“fÕŒ–fß´‘uù =zè¥ôøÁ§ÒwéI]\\zò×3iæ*=5í¡´èl­ôl}µ´¤ê­ôÜºÑÒòƒ·¤cii\'½Tä-­ÜþTZ“&½–î!½Ñ\'½Þ»Kz³÷ŽôÖƒÒÛf•Ò;K}¤uáqÒºæûÒ{p—ôÞ¥péýa¤N¨¤õfþÒG+\"¤5QÒÆºÕÒ¦	ùÒ\'sNJŸôß”>½²Qú´ö©ôiý%ióå‘Òç–‘ÒçofH_zºIÛŽ¸J_[“¾ž%}kHßvµKß­Ì—¾’~œ íØ½MÚy%Búi»ZúY·Kú¹6Xúua”ôëÁ?ÒïT©ô{ìni×è_Ò®\"éeC¥½i¥Fß•þÉ/ý›*í!íûýGÚí”öG®•»¯ÈÀ¢/2èJ…~<H†ú¼•¡ûeØ3s~AK&úIÉÄà™D\\.“ŒçeÒ€-2¹i«L~P¦øR/£Ï¥Ê˜rLÆbd¬K¦Œu?.cÿÛ—3dÜOöÉøq™2µvL½÷„L;v°lPÞt™ÎÍ8Ù`tlpc½L7ñ³Lßj¯ÌÀlŽlh°Ì0ÚD6¢ò“ÌèV¯ÌxûM™	rG6ê¿5£Ç>‘öú$35ÉÌ>’™=L‘Yï•=á#[â,wÉZf‰¡²	JG™­ùp™­ß|™}ùhÙä|©lJ÷\'™c²H6m°lºI¦Ìu¿¿læ©e²™­d³*@™[ôBÙ<¨D6y,›—â$›?>L6¿\'EæñFæ9¨XæéýZ¶0èžÌ{ñv™wò6™Ïb‰Ì÷H˜Ì÷\Z óÃ¿Éü¾É–o›+ó÷m‘ù—_–…Ôî“…<Åd¡\rÍ²ð¬í²ðógdáõdkÅ:²uK²dd‘¶?e3e;É¢É¢OúÊ6Õ.’Å¬ß/Û²u…,¶0YÛî(ÛvÍ]g,‹\'ãe	#»e	Ë¶{xËõÞÈwN‘íø³D–T¾K–ð]–¼ÇR¶gîzÙÞa¿d{­\neû}ÏÉöß)‘¥’¥š.;°½Bvðœ ;Xá\";X7D–Ñ;L–ñ\'YvÈ=U–Åò²#9•²cV~²c{]e¹þ²ãÛ>Ëòç¨e÷Ãe§ææÊ\n§<–öÜ•ž&;cœ(+®é“ß\\ ;7ì„ìü„ÙgmÙ…ø0Yù°²ò	–²K—þs£Wv©.PvÅ“”U«þÉ®…ÈjþêÈn˜•ÕzËdwî\'Éê‚žÈêÎZÉêªâe÷„ÈîÛËîÏ”=lœ {<§]öDy[Ö,þ)k¶t—=KY\"k!\\e-ò]²ç¥Ke­Ü!ÙKî•ì¥±›ìe -{óYöÊ<BÖöx¶ìõSZö&ÚQÖ¾ã©ìCg¡¬Cv]öIY.ûlž%ûòV.ûÒÓ.ûv{ìÇÜ%²åkd½Ÿrd½}5²?E¦²¿¢û²ºoeÿ¶—Éþ]2–õ7|“\rÊ‰Fò¨nŸ-GúFÉQï09N¿ãËp9~¢RNìû,\'~-’‹nŒ”‹ÇEÈÅÆÈ%¤¯\\jËÈeîÛå²öyrqGNXÈ•«ålÂ69{\\-çI7¹`\"×>¯’k×WÊ5úÉuš¹Nïxùàç9rÝ{§äúë¹A­£Ü°è­|ÄÍ-ò‘ä#o}–M©–sóå&¯¿ÈGédÈM—·ÊM·5ÊMK¶ÊÍjäf?7ÉÍ\'Qò±À¹e,·J®•[•gÊ\'x—[w¹ËmžÛý,”OùÈˆrÇ1˜Üñ/*w:yLîôq@>mßEù´ëåÓ*óåÓ¡rWí?ò¢9r÷õkäsÇäsNFÈçôî—Ï{§–/°\Z*_tYî±òƒÜã[™Ü£\'Hî¹b°Ü³¤H¾(E_¾(s§ÜË¾@îu×Z¾—{¥äK>‘/Û5Zx©A|¡B|­|õ]N¾&}¢<äé7y˜Ö9y˜Ý#y¸»§<\"ì–|ýˆy¤n¨|£LG¾Q1J¾qà´<:I_ ß4wª|ëätùÖ?”|ÛX¾­~›<nêyyÂàvùÇHyr§§|×‚ƒò]ÿ¼ä»7¤É÷„›Ê÷4˜É÷uëÉSÞ¥ÊS%Õòƒ‹¶ÈÅºË³¬Ë³o“gï~(Ï>÷[žóï‘<×ÃHž›0C~<€’ç›ùÈOÂå¦GäßMäE›cäE/”ò³+Kåg¿Œ”¤É‹\rSå%­åòÎÓäez¬¼\"/G~i¨‹üò¤xyeëyµÛiyuÖbùµ±Æò\Z£&ùÍ†JùÍ·ò[™\nùíš6ùý§Cäš|äß–×]—?úa*onÊ›’CåM5ògfñògï_Ê[YùËe×åmÛÞÊßþ-·W×ÈÛ»Xùû;ÁòC3ä÷UòÎ-iòOZ¹òOËäŸÞêÈ?}ªY>Xþõ4#ÿö4ZþÝçµüû\0 ïÊÐ—÷z£òÞ§ä?ïýÿªø*ÿ{¡OÞWÕ.ï×.¨=AeÙ”J!ø\\\n‘÷PøP\n_Dá›/Päh=Š|ô‚\"ßÖQ¢÷)ñ¬Å”8`<%Ñó¦$¿!J¦XJÉl£)Ùµ­”ìó9Jn6@ÉÏ\r¥(AQïÊ)ÅêHŠŽÜGÑQý”òîSŠ‘®¥Ó§»‘ ØC»(.éÅµ†P¼¨…Rï\\K©û#(MÈbJËš ´šÃ(±7¥£¹MéXÆRCì¾PCŽ\\¤†<¼NéÎ¸Bé}ÙIé3‹)}­`Ê\0~Fõ£ÚSCÛQÃÀRjXÒ=jØ/kÊ0{65ü¼5¢b5âQ 5’\ZG|]CMúMÍà(ãK[(?5e’s–\Zeúž\ZÕZK~æF1\n Ìò%”ÙµTÊ|îyÊb=H=}“\Zg¸‰\Z·b+5nS?5n×>Êj\reuv5á~e³Ì–²‰¢lî”í³ÔÄ‡Ÿ¨‰õ(;ó¹”]X85©óeïö—š2û5eLM	þC9¬YH9äl£zÖSŽ©©©ñÁ”“åÊ©¬‚r¾•E¹ø–Q.‡’)—ãß)—†§Ôt£óÔôEæÔôðÔôW_)×É<åêaCÍx~‘š¹Ÿ¦f-:H¹	{)7¯&Êm§åûžr?6Žro7¡æ9@Í_KÍ÷«¢æ¦DõP¢RÊCœKyþ-¤Ú]¡¼ÖçR^Ÿ\")Ÿ÷)_p7å»—£–n»F-+¾EùÉfP~ñw©åZ?((Š\n 9*àÃnjåüñTàÐb*pÃ<jÕÃ\ZjõšrjuR\rj<›\nË;K…§™Páã©µîµŽO­ÿöÚp¾ŒÚð£›Š,ÝKE^ZLmÜ2œŠvN¥¢£QÑ·¨MŸþP›>o¢6wÛR›ûNR[&Ž ¶¸(©-þs¨8¿X*ÞtµÝc9•˜XDíàë¨ZATÒ¦[T²™#•œ÷Úåð‰ÚuÊžÚuë&µÛ¥…Úý=‚Úû{\"µ¿@DØ¸Œ:pÔ—JŸ™K¥Ï’Pé¯S\rÆS—¥Q#â¨ƒYÔÁ?MT‘Ee8Î£0¦=L:#¢²¾6PÙzaT¶~•ó\\JÙoN¹0ˆ:za•k±„:1$:q7˜:ñ;Ÿ:¹Ç*øz‘:ö‰:õc!Ux«˜:í6‹:sâ+uæ·@yR%ÃÚ¨’ÄeT)µ‚*~:¿åUvzU®ô¤ÊèQó?QðFªbësêr­	uyàUµ=Ÿºj1„ºÆÔu¯NªFg:U³fU»$ŽºeQ·ÞjQ·¨;NvÔ]Õ^êÞ?êÞRê£.õ`ö\rê!ÈSõèÇ ªÑ²Šjü`E5þœG5U$RçSÓ”Ô“êÉÝÔSG\rõLÏ—z–^Hµ¤‰©ç›HêùnõBkõÂtõÂÕžjój¦Úâ/Q¯ÕÇ¨7ƒÃ¨7—qêŽõ.v	õÞò.õ¾¢œê8ÔJu\"AÔ§A~ÔçN?êKdõ5&”úú®˜ú†É©oK©ïùo¨.³OTWàfª«§‚êÚMõo¡~NùAýr- ~Ï·¢þàºÔßè§Ôß_ÆTŸrÕ7*‹ê»ð…êÿºNôR€­ÐÎ•\n¨h°–®RÀß*YKØ(^:[AäÝRÈ‚\nYï?…Ü¨MAÝ²S(êÖ+èµwJ×9\ne¾BYÙ `4M\n¦|¼‚ýòGÁ)ó<uCÁGØ+ø‹£ª²A\nuû9…0\"\\¡=¦Dº(í\\§Ð14TèxVè¾§Ðcúz—ä\nýA†-Å\nÃÎoŠáó—*FÌ^£±«B1âŸ›bäïá\n£ÁM\nãÒ\nãkk&T¾ÂdpÂ$xŒÂd‡ŸÂÔ)J1†V+Æ,WŒ	ñPŒy>MaFlW˜yW˜­y¡0»ž­°Ð8(,VD+Æ¾?­7ÆX1ÎáœbÜò¿\nË¹Î\nËÐŠñ‘Š	7:^+lMÔ\nÛc/vZ“ uŠIç.*&}^¬°7þ¤˜rèºÂá9¯˜\Z®R8ñ{Ó²ç(¦ÝNR8«P…ëŠq\n×è8ÅŒîlÅLÛ^ÅÌÄÅ¬i!\n7SFáöežÂm F1[ÿ»b¶y®bvHžÂýçDÅ<»ŠyåŠùì\"…\Z®ð¸,(<ù …§©X¸:R±pË0Å¢1c‹Ž†(¼$s‹“[Þ‹êK–ÞV,é¹¦ð­Ÿ¤X¦{_±Ìq—bYB¨ÂÏd˜byã|Å\nƒy\nP¢ð7ãþ9cþµËŽCuîŠ€nŠ•sŸ(\\Q¬’/T¬r~¤Ú÷MlúB|=W±¦m¹\"ä½TÚ)Âlá·7+Â»+Âûþ(\"þë…ˆq–Šˆ}†Šµ*Ö®;«Xû¯@±á÷*EÔñ¥ŠM¼›_ŠØ+ÉŠØê<EÂæmŠí»‰Ë+‰›6)+v0;–MPì¬«Hö?¯Ø•ˆ)v\'J{GSìuýªØ[ˆ*RWe+R7MV¤nÓQ¤7¸(Ò;}éßÆ(2|)2Ò6(2­œ™ŽÇ™±2Å¡Ÿ&ŠÃqƒ‡Å*?YfAŠ¬IwÙ?ãGvKG\nâÇRÃÇ…3Š<Ã%Š|›4E~ôÅÉÅÉ½\'»AEv¤âÔbNQ8b§âô˜ŠÓ¿íE[ÕŠb·¢Ø‡TeçW¤]ŠrýZEî¨¨¸’¤¸´Q\\Zí¬¸t¶Uqù}ŒâJ×IEeèE2_Qu´âê„ÿVýèQTÃ‰Šjñ;Eu‰—¢ºûâzÉ\nÅÍÑžŠ›ã‡(n¿¦¸…\\TÜjwUÜNx¬¸ýý¥âî¼*ÅÝ]KuÆmŠ:oµâÞÌxÅý ©¢Þp³¢qˆ•¢qäEc¥hÒ¬hj-R<¶z®x‚*ž°õŠ§ç*Íæ‘Šf§pEsï~Å³¼EKùÅs—ãŠÖÛmŸ6(^/tR¼®Õ(Þ«x´Rñþé~EGL»¢sJ»âS £âS_¡âËÅ—»]	ñŠîêEï~ÅO{•â—ëÅ¯…ºŠ_‘y_Å_a¾âï\"Õî*úÌ!\Z˜VFÿ\ZiÐè\rÍ¦áCu4rI ‘ƒ4º¥—Æ\ZŸÑXÇ\\\Z_/£ñ¨J\Z¿PA“gúh‘^-ŽVÑâÚ=´Ä„ %û/Ó’ÛiYIMOghúã,šÑ²¥™ã›iæoÍ:\04[“Gsw_Ó*µ/­òSÑª·ÿhuH6­Îq§…ui!>®¥…Z†ÖØÕÑšË¾´–I5­}ý<=èu1­SCÑ:¿çÐƒmjéÁa¥ô[Öu«¤õ†œ£\rZëè¡ƒuè¡A0=4¤G>t£¶¾£ö©i£œFz”m\Z]H›\\¤Ç8ÇÒcº÷ÐfÆ‹h³P/Ú…h‹¢\0ÚÒø0m¹0•¶Ò¾H[íÒ§­š:é	E=áÁTÚÆum«½’¶µ5¢mÃ2iÛ_½´ý(m_MÐS*GÐS±ôTj=uýzêÙ“ôÔÖy´S‘=Í¹˜žØ@»Œ¼D»LF»ì© ]îjÑ.ßkééoÏÓ®ÜXÚõPíú/ŠžaÞJÏÜ§EÏ¶8HÏ~Ù@»ëHh÷¡ïh÷—h÷×=\'@ž³n=çäIzÁZ˜öð™E/¾½Œö®O/™ô—ö	Ê§}n¦—Í¼Aû¹O¢—×<¢—?¦éLÌ~Ó+\nãé\0·2:0HC¯ú\"¥ƒþyÑ«ã«è5«Eôš´Z:£éÑwéPG5ök-îj@‡‡EÑáçMèðŠ<zm\rA¯¨¡×]MoP¹Ðúºé¨­\rôÆýÛéè c:úÎ}zÓ{5£?„ŽYèGÇì¸Ho±H¢c­7Ó±³NÑ±Q–ôÖÓ†tÜÚñtÜ/3:nÀšŽ¯]O\'Ø-¤®‚ôöS:qR:8CC\'ù/–}§w,¯£“ò¿Ð;g×Ð;Í¡w¦ˆéäÐtrV!½KØGïò:Lï\nÖ¢w8Nï–TÒ)3ÇÐ)W³èÔ–têÊ\n:uGús*}àŸ#~MNÔ\ZDgN¡3ïåÒ‡¼sèC§éÃ^£éÃùatV¬ÍÝ¢³	úHÆ?úèi˜>æhIk_Iç&TÑyØq:ïÊúäütÁbwº è)]p.œ>ÕÃÓ§“nÓ§k¦ÑÅ®WéÈ‡.‘¢KšFÓçL;és=ô9ÏAt©];}>m8}áÛ*ºüs]á\rÐqéô¥múŠg1}åÌújœš®EÑÕ©»èk=³èZƒºÖy}KåMß2×¢oOˆ¤o_½LßE7ÐuQ=ô½­Öô½‹–ô½>¾O¤ÐõÒº~b,]x†®?5”nØ¾Œ~$Ê¥™ÕÑ\Z·Ò^“èÇŸÑOç=¡›7}¥›ïÎ [†™Ó-Þ™tËï|ºåï|úEÉ\0ÝzN—n½iD·>w¤_n~A¿lJ¿2´£Û`Oº\rÙC¿;”~íÏÒ¯ƒýé÷‰Iô‡ƒ“èÂsúãóññªýñY4ÝžAwl˜Kw´ÖÐ¾ÐËÓ…ÇèÎ‡&ô\'¿úSpýuu2ý5TB½GÿdLw-ú@w-í »\"fÑ]GÆÐÝ¿ÝéÞâÝôÏ=Ïè_¾Îôïåcè>‹|úŸe%ý/Øî‡ŽÓ»>*¡k%:dƒ[8B‰ítSâ`¢R”sE)ÊµPŠ?nRJ‰yJÙì{Jù(©Rþh’Þ*©™”ÔÎ‰J´BIÛLQÒ›£”LA’wOÉõ„*ù“S”*Á\\©\Z“ªTÍ^©TEŽS\nf Rx²G)¼ÖRj)(µGnQj÷?U~²Z9äÊ$¥®ç	¥ž×]¥Þ•óJ}ÓÊÂeåHÍKåÈ9uÊ‘¯‹•F/Ž)­Jc;{¥Éàå(ózåèã³”c´w+ÍÌ+Í¼•æ&?”cy¥rÜ”ñÊqá€ÒÊ7Z9þ{ŠÒšÁ”Ö6û•ÖÙ‹•6±o”¶ý5Ê‰ª•Ï…)\'<WÚ0J»ÿöµ{ì¤œ|¤A9sSN}Réð4Sé$+œW:•V:ý;£œvl±rZ™rº5®œ>uÒµ¨Léz~ŸÒõÃOåÃ™ÊÏß(g½2WºËWº7­QÎ	¤œ³3A9·‘rÞsZél¡\\¼gƒrñIåâ²³Jo¯J½\\¥Ï¶©J_Ÿ7J__c¥ïnC¥ï‘XåÒåÊe³”Ë¾¶+ýúæ(—Ã×•Ë‹F+—ßÈT®µD¹rpµ2HI*ƒÛ•«\'(Wo^¯\\}Ï_¹FºF’ä¬ùî£U_Q†VÊµ	2å:Q®sØ­\\7ÓI¹áí^e”ì‡rSÀwå¦U•›úß(cÄ)Ê˜ë­Ê-š<å–ß¯”±fW”[§}Qn{F*ã>)ã¥Êø‘w•ñsŸ+ã#b•	ÒmÊ[@¹;§Ü¾‚WnOß¢L|3I™ÄÇ(“\'­PîjîRî¦?+wJUîKKU¦²Ê”œ…Ê4ÑseZùeúece—­Ì˜h©ÌØl¨<4ÆQyh}ŠòPëBåá CÊÃQzÊ;eÎâÃÊ#V±Ê£’1Ê£ö6Ê£eW”Ç°Jeî\"oeî[©2/(S™ŸZ£Ì¿„(OŒÙ¤,Pö)œ•§&´+OÍÇ•§Ž7+÷¬Wžù1HyV¬<«=DyÖh¡ò¬Ã/eñÇHe‰z®²df«²Ä§ZYt]YÌ*Ï½§<wy©²´ÛLy=¥,#Ÿ*Ë¬o(/^Æ”o~SVXè*+Æ>Q^ÒÛ«¼üc•òJô}å•ø_Ê+/.*¯tÝRVY¶+«âì•UÙ¯”U]”Õ§ieuÛåµ‚ÊO£”µî¤ò–ƒ§òÖ®å­7”·ÇqÊÛÃ”·³TÊÛ\'Ì”w$mÊ;¹¤òÎ›­Ê»Ë—*ëlb”÷Vÿçi™ò¡ž²ñërecßiåS@ÙÜôDùì˜‹²el›òEÞMåËƒ”¯Ž+”¯Î)_½ý®l3¦|=\'Lùº\'Wùöä!å»ªBe{h­òýš^e‡ºRÙ1šSvÒû•ÅÕÊ¯•Ç”ßþìW~?>OÙ5E¥ìú®PvC®ÊîÛÑÊž¨²wò€²÷e‚ògÔ`å/ßËÊß3(ß—*ÿìUþKÊg\0¬‹fÏa•¯¤MÁ`Û¯3Ò¥µŒ4\'‘¹ÃÈ7Ù2qƒQ0ÉŒâX:£4¹øßð¥0J—iŒòã†Ý3ša;ãÞ©ŒQÑùŒj÷HFØ–ÉhÂãÍƒßŒ–ÇdF[]Çhû{3ÚÏ¾2ƒœ3:£›%/™Ág62Cœ\'1ºFžŒ®Ù4FoÇ;F¯2šÑ{0ú	ÚŒ~Õ)ÆÀ¥ž–º’1t\\ÅþþËŒ¸òñúc´ô<c\\ò˜1™r1I¸ÉŒZßÂŒ^óŽ\ZÁ˜Æ|gÆÄîdÆÜËX$ìa,Ç¼d¬.`Æ{É˜ñË{™ñy•Œu@c³/œ±“Ÿd&ùÚ3“B´˜Iì˜I™·û0Æþp,3¹5š™i1iæÌÔËÙŒÓª\0Æ©êãÔô“qzü™e¦•}eœÓ­ç2GÆå…;ãš;‚™¹n3Ëø:3;ö3ïx!³`ötfÁ²fAæbÆcó(Æ3jãùKÂx[Ìøè1>W2_c	ãkoÍ,ÝªÏ,m\r`–þýÃ,[ÙÆ,»÷YÖìÊ¤²L@])³r{³J4ŒYÕîÃ)Lð\\&8¶‡	Î?Ë¿úÎ„L™Ï„Õ3!±ÞLHú.&ä.ÒbÉ„ù1aVQLXë&¬-‡	7»ÏD|_Ï¬{ØÄ¬kñcÖ}[Ã¬7¸ÃDd\"C\"™¨Õ‡™¨ŸW™C²™™UÛ™­ºLô‘*fcÏÄD11g™Ø½ÌÖ…9ÌÖ÷õÌ¶!µLœ£w0˜IHºÉ$d•3	çõ™íïL˜ÄáLâ+]&±»IŠ‡™Í/™]Ië˜Ýc†3{”Ë˜=ïv3ûÙ3)h5“²ã“ÖðI®2é¡£™ƒN2A9LfóX&Kû“5\rg²noc²#F09ˆ“cRÉY=‚9rm	sÔæ\rsôo“KœerãÛ˜Ü›ræ¸î&ïð\'&¯R`ò^Ocò=_0\'¶OdN2µÌÉ´³ÌÉœLAÊsæ”Þæô¿¡L‘Ñ¦ÈJÂmå˜3¦8sf‰#S¼O`Š/¦0Å¿2Å¦3çB&3ç_ý`.Ðû™/ü™ò}QLyçbæâ¹L¶™©ø&b.Mˆg.­®a®¤Ía®\\žÎT.Ì`*ËåLÕþ­ÌÕå4su‡/S½ú\0Sýzsµc®­<Ë\\»?œ¹žÐÏ\\¿˜ÏÔL:ÁÔìzÌÜ ú˜L\"sƒÝÁÜëcnºïdnVG37_52·\"§2·¿ìeîÌ=ÃÔe»0÷†,eî}ÅÜOûËÜÿy˜yÖÁ<|-gêõ/0õ‘Lý»³LÃ’iü9iÂ’™¦_û˜ÇCâ™\'Õ3™§\'Š™æ£Ì³ÛO™g¿¾0-†Ìóµ•Ì‹‹+™—K—3/Sº˜6¡…y}?‹y«<Â¼ýrŒy§qaÚÛÍ˜÷sL˜÷\r¹Ì‡¥·™‡2™çM™\\˜Ž½û™Žg™ŽwFLç|óyÇ\0ó%A—ùrÈù’K1_Sqæk)Î|c1ß·c¾¿ÈgºÌ®0]•¦ûÊôì¥™žÓÓócóýç.ó«ð<ó»ñ ó7©šù{ß™ùÖÆükF™ÅCf ¢›hñbÁ»2ò9ÉB90]>ËB¿ÃX¸ê(ÿ~Ç\"¿–°¨ãh‹9ÁbOo³¸{<K ½,ë³Ä2/V4î+9 g¥~ÇXù/9KéG²Š†×¬âï2–6îfi“,½~«´R³Ê\rËXå‘4–9|…e¾¯b¹mY•I#«š=ŽU\rØ°j£PVýq+HpVKÅjÙ÷°ƒŒX¡8«“|’Õé4a{¦²ƒ?g±CÜeìúZVWs•Õ5ñcusQV·à«7ÌœÕ·S±ú®z¬AÌXÖ ¸š5èxÅ\ZZße‡ºìp¥;œ‹c‡_ÅŽ O±#,ÝÙìˆ»æìH³«ìÈ´Åì¨aÙQ7²cÚ\'³fºå¬YGk>\"€5-°æ6Ys‡}¬eÍŽ5yÁŽ5£ØqÙq//°V#CØñÓ¤¬µÅÖÚk=k}y%k£çÀÚ˜f±6yZìDÏÖŽÃNZ±“¶Þe\'5d\'õ}díéuì”á(ëà½Ÿu‚Ö³No&³ÎÕ_XçsX—Ðìôó~ìD`ÝN=aÝÎ4³³Ý`ç¬ŸÅÎiÆÙy+Æ²\nBXì¢c·X/óÅ¬×Rž]ìàÅ.öÊ`½§ç³Þ\'×³K†áì’ÿj¿ä›ÀújOe}GT²¾sKØel1»ì»7ëwCÍ®´øÎ®œgÄ%¦²ÁÓ­ÙÕÛ\rØÕçzÙÕõ%ì\Z°–]“¤bC´kØ\rÛÆ†¾Î†i=aÃFú³a£«Øp“R6B±kÛ¿°ë¾G±‘²f6²BÃn´Ïa£mýÙhO6:d;“šÅnn©c·xx±[Û¾²qÈ6îÀs6.o-› µˆMÒMg“.`“šlÙØ-vgúR6yR»Ë{2»ëÂvÏšCìþíiìþêkìþÚB6uÁ^6u×&ö@ë$6mÃy6ír*›qQÃfüÚÁfBßÙìöClÎÌílN†9›ÓëËqƒ=:a9{tîiöhJ>{ôM{li {lÅ;6×d){<þ›7^ÄžÐ°cF²^ÞlaÕhö´Y\Z{:`Ï\0/Ù³«²g¿j³ÅŽØâ?Ù’‚ZöÜ–Åì¹b[öÜ£Óìù•3ÙH[žÀ–ßd/gT²•ðr¶rÈy¶ªY`¯j¯d¯]èd¯ýöa¯O¹ÃÞG³7ÜöFH={óìjöæ€½£ÎÖ‰—±uVWÙûT{k{ÿT%ûÀà2ûÀÜ…}°öû0<Œ­ïia¹š±¢|ØGñÙGÍŸÙÇšŸìã·Áì“A9lsJÛ\\¹‚}6¯}¶Ðƒm¹SÌ¶<7dŸLbŸ/¸Ç¾Ü7†}yr<ûJ5}µË‚}mnÃ¾Þõ}óÉˆ}kïÎ¾›2mosfÛŠÙ÷·~²=0¶Ãr/Ûyá+û	˜Ï~ª˜Ì~Þ»€ýRZÃ~ÕhØ¯î9ì×$ö;|ˆýîü‚ý>a»ºÇ²Ýåyl¥6ÛãQÎþ˜šÉþÌŸÆþš]Àþ¶\ZÌþ‰`ÿÚ{²}6°kâþ“Îþ}ôýÛdÁöé²}Ñqlÿüj¶¿à,Û_ÛÍ(-Ø;û9ÀëlÍ¹$­ëæ ¦\\XÄ!Æw9d<À¡{í8ììsŽ2‚#¦špäÍ/œxµ)\')7ã¤ê©œôd\Z\'Óäq2çŽ–0œrP§üjÏ)ûpŒË3ŽÉ;Ï1Mg9VgÇ¾±â8óŽ÷ÝÊñq|]§Rpªº5œêa6§nÅ	Ç9¡e\Z§Y£à4—pN{g7(½ˆtï0§c×Ì\rîÊátcê9½3œþ”—œAóTÎàK7ôðnØ‘ÜðP?nx£7b˜=7Âd,7Ò$‰y©Y«ÍlXÁMåŒ»—q&Ñ¹QÁß¸Qm‰Üè]nôƒnô£·Üè×³8S°›3\r.äÆ4¯åÌ/áÆ¨¸qm½œå°Cœ¥ùBÎÒÑˆ³ÜÂYý9ÇO)äÆ§÷qZ-8ë¡œMÄ!Îæ`$gûä7±å.g·¥„›ôtgoQÊMÙÂMölã&_­åžâ¦žà¦–ösS+hÎÉ%‹sÚRÇMSdrÓÁœó,_ÎùñÎÅò87˜ÌÍxÉÍxtœ›õç7×`	7wÜDnî9[nÞn^ò1n¾Là,ºÃ-¨Vq¡ÉœGç.ÎS&å<á&*¹…ÿVs‹fqÞcnrK<â9Ÿ£ÍœÏ[Šóu9ßÝ0çûÐ›[\Z,pËnÙr~zÜòC¸å?,8.€óŸ8‰P\'r+>q«,¹À}¹ÀÏ2n•ù&.XtŽ‘àB&Çq¡›‹¹Ð´R.´±[ç-ãÖ£ç¹õ¹?¸È	O¸¨hn“wcáÁÅLÔãb~­à¶üšÈÅ¶¶q[·¿à¶þ«ãâ¢Ã¸ø¿û¸r,—ïÏ%Þ]Æ%Uã’uÆq»T¸=N™Üž;K¸½Órû’çsûþÝãö\'æö_ßÊ¥è{q)¹¥—¸4>…K«Ë¥Ó7¹ôØÅÜÁ§wÈNÉe‰C¸ì?<—37Œ;áÌí(çŽé+¹c=Üñª[\\õ…Ë»ÓÉåÏ^ËåÏå¸ü]ç¹û¶p\'ÎmàNÃ¼ZÁì¶ã\nº¸Â>[îôiWÔaÏvsgŽ¿áÎŽ ¹âY¹â¨Å\\‰[WR±ž;ç Ãë>Ê•‚‡¹Rè5Wê9Ž+Ýù€+½ëÌ•\r+áÊ¦[re¯så~·¹‹ó~pHWAçs—fusWor•[ª¹Ê¯k¸ªÄÜÕÁ¹«ÇÚ¸ë“¹š²Ü‡4W;6š»Y{„»“íÂÝUqwÍNquh&wOÍÝ3b¹{“¯r÷là´\nÜÃ‘½ÜÃ9g¸‡QW_ð”kx´‘{tº•k\\þžkxÁ=+_É=»\ZÃµ,àž3bîÅù2®µg?÷Òä\Z÷2á6×vÚ˜k»YÌµ¿å>À\'¸ciîãl×1]‡ë´íå:Ýp®ÓÝŸû¹Šû´u5÷™üÅ}Étç¾–Îã¾\'vp]–“¹®C×Õ¹—ëÖªãº+¹žg¿¸Þ7<÷ó€ˆû™‰p&¹q÷›rß8s}óçp}‰¯¸Ú„Ø°¯ãó!<èZÏCR–‡.Lå¡Gz<ÔQÄÃw	5äQ‰	öoç±§n<©ó˜\'GÝæIû\"^4¤‰m²àE{ôxÑÃ¿¼„Êæ%ëNñRï^šSÌK”óTFO•ò\nx4¯ˆLäûûxEIOïlà•syîÃmž·íçÕñ›yõág¼ðl=¯µk¯U\'â™ÏÊ_ÅëÖó:søÁ©?ùÁ7óù!G¶òÃNšó†S~ó†§µxÃ2~øÚ_ü—L~Äž ~ä…{¼ñr„7I+âM:ãøQFóùÑ±¶¼éáÞ4çoZ“Î›>ØÄ™¸„ŸÀ©®áÍ”¶¼ùSÞüÛpÞbzoákÌ[ìià-uŸð–WÎñVê8Þjl\"oõá	?þf??¾-ŸPnÏ[·oämjLyÛ ¼íšw¼í)Ÿ=›Ÿ¸%Ÿ·›ó†·ÏžÅOÏO™YÂO)ºË;ä×ðŽ§Òø©3ªù©½søiŽ)¼ó–HÞeì-ÞeœïñŠŸîÖÃ»š—ð3D‹ùy¥üŒ§Cù™cÖñ³ˆj~Ö~V/Â»¹ŽàÝ2êùÙóî»øy-nü|¯ÍüüÚKü‚ï×ø…÷£ø…Ïñ^[CùÅ\'Gó‹+\'óÞNü’éžü’wJÞÏ÷ ï?Ê„÷Ÿ¦Í”à~[ðÖ#øU—Ëø`¹¿:`¿æk8\"_Ï‡‡ð!ƒøo/ùPlzév½‚láÃÏLå#bõùˆg~üZì9¿î‡„_ÿ/©üÁGê¬ç##ÿñQ_\nùíþ‚ßT^Íojuà7uMæ7Gfó[vä·4ùð[æòÛ~á·Õüãã¨,>nøA>Î<ˆKäãÖæããƒøøòÍ|äÌo§+ùíãÓùD…+Ÿøþ6ŸÊïT%ó»BÓùÝ¦3ù=¶ü^ò ¿OåSÓÿð©-ù´‘î|ZAŸVý?äUÉgùóYeÇù¬ŸÑ|¶Ã>Ûí4Ÿ³v	ŸSp•Ï©ðçiSü1×wü±U:ü±2>—µâó.\'òù·«ùü\'wøü¿øz–ü‰Ûýü‰ïù‚*¾`›_pm_ð8œ/hÉåOmãO½œÂŸê_ÂÖGó§Ó.ñ§K~ðEu•|QgIãÏ5üÙü%üÙÎÿâ¯	üÙ»|qý;¾$2“/)ÃŸ{_Ê_ˆjä/4MäËL¦ñeG\0¾¬!›¯ˆÛÏ_Š‘ðWvßá¯ìµâ¯dŒà+ÙN¾zjmþþZGÝ…ç¯gò7¢bù[-eümé`þvsgxgÂß­åï\'Uò÷»óVÎæ.;Ï?,Ï×¯;Î×»Î7ÌØÂ7Ü~À7­œÏ?ÖÆø\'Ž\rüSù`þ©*“j9“o¶Há›†óÏ\\¿ó-³»øçUüóù=üû/ü‹éßøÖ9|kï:þ%ñ/•#ø—»3øW©ãø6~\"ßfË¿¦Ïñ¯UðoRñosÏòï!}þ}û;þcÿx¾=ÈwVÛðmü\'^Í–Çð_þ<å¿¶ËùoŒùoÿ|ø.ˆïöšÇwGËøÃøG_ñ½·_ò¿&zó¿<_ò¿UyüoãÑü_Ã¿üß¾ïÁMþßÝþß\'¾É÷kUðýÇòýÅóøÕy~àˆFèLV*p‘½\nÜ0DnvR»ÝUû_ìä§BïWa¿Î©ðÁWUøá»*¼ÜQEhÌTÄ{\\%Þ÷\\%É®’ä;«äøo•|”½Š\n¡TŠ–*Ú<LE{9©”£ä*¦dŠåzUì§—*ÎçºJ5¼P%0E*áh‚J“)RiN<Si¹OUi\'ViW—©´ïþRéˆ©t&ýlP\rÆ½TƒµN¨†L¿ ÒuŸ«ÒK5Sé½ø¢Ò|¯Ò¿`¢2»¢\ZñË_e4|°ÊØb³ÊdE™jTÊÕ¨ÌtÕ¨ÖÕh¹T5Ú‹VŽÒS™^ËWÑŽP™KRTæmTæÁ·Tæ‰Ýª±K.©ÆV$«Æ%IU–È•eS Êò÷|ÕøÕø¶•µÍ~ÕDD¬²§p•ý¥j²ßN¥©*‡ [•ÃÑ4•£­½Ê±¶Qåø}‹jª§ÊéºZåôà™ÊéÏÕ4ô°Êyì9•óøC*ç”•ó‘Y*C½ÿþö—©¦Ç…ª¦7¾WMèVÍX8_5søtÕÌQ†ªÙµ·TîÌj•{îL•{ÉB•{EžjŽqþêTsÊ|UsZUs~¹ªæ¦¾QÍ\\®šçw^5®½jÁ•÷*;*Ï#ŸUç¾R-\\ôQµ°æ´jQæ?•—ácÕâ\rçU‹ÓŽ©Ÿ½©ZüÞCå}!DµdÞr•Ï*_i¥Ê·ÃFµ,bjÙV=•ßÚµªå#ÒTþT•*€Tl<§Zyï®*ð”ƒ*°8^µª¹Y4d@¼ŠS­>w^µFë»*dÓ2UHB¦*TK®\nÛ¤\n¨Â\nTáÁUk;W©Ö«ãUÆ\'¨¢¼Ç«6\rØ«b¾óª-Íœ*¶àªjë/ÕÖª<UÂ©oªÄŠfÕŽ˜4Õ®¿ªÝÌ8Õ¾Ú¥ªýMcT©²ÝªKf«ÒÌ¨Ò\"«ÒµóUé«#TÃ{TOª,ÿûªlê±*;ÈW•³ó½êèåÑªcU^ª\\ÅUn*­Ê}xTu<¶FuËVt_¤*Xf§*(¹¦:õ_Ÿºõ«\nçìPVu©ÎÌUm°T›ú«Šëç©JNf«J*¯ªÎuS•å\0ªò’›ªò&µª¼{Žêbƒ›ªÂ`ªªbë0UÅßvÕ%+Pu)©JuY·[uÙ4CueÌÕ•=ªªê‰ª«>aª«‡ÒTÕþ_TÕªkCîª®M\\£ºž>ZuãÖYU­æ¦ªÖo›êæóÕíEª{Ï‡©?Q=Èúªªß§ªÏº«jX’©jðÇTMFIª¦ìŸªÇ‹tTOE{TÍ‰­ª–—=ª–®ªÖK“T­î«^†šª^f§©^ùfª^Å<Q½ÚûŸO\rª6×ª¶½ÏToÕ™ª·ó—¨Þ-|¥zÿÑUõÁé†êÃÁ`U‡¾½ªÃÝ[Õ9“TuîfUŸL©>ïY ú\\ò[õ¹á”êë¿qªo\r#TßžÏTu§šªº[8UOëLÕù‘ª‰±ª?†OUqÕŸËTSõÅ«æ~W3F©Ï_jÀû¼\Z8`§ŸªÁïfjÈñ½\ZÊITCÇŽ«W#ƒ§¨qG5qA©&^T©E&jq¶F-s|«–ùŒSËñ÷j¹ü¯šzW¢VÌ\'ÕŠò›jÅG•šöLU+õª™þ}j–ª9\'µj¤ƒZpØ«f5©…?µv\n§d»D=¨N_=èqzðæ,µ~ãjµAðBµáðõð%uêáA:êbCõˆá…êEïÕ#®îR4ÏU|rFmqLmtF¤6–NUè«MäßÕ&i\rj“WÕ£?ªMÓ–ªÇ˜P›7ŒS[èS…?¨Çéy«ÇîV{ûHm9a°z¼û<õ„)>jk&Em=[_m³ QmsûªÚöP™z¢÷õÄ£çÔv£¿þ§[m¥¶ËðPOÚõQ=ù@zJBˆzJ»§ÚA¾K=Õ˜UOµR=õø\nµÓÄyj§mMêicÚÕÎoÞ«]ÂãÕ3G¾SÏÜè¢ž™+UÏ>4\\í>ýŠÚ}Iz©ç¤ÏTÏQ¨ž;w±zîº³ê¹¶ê¹3ÕóžÓê¯6¨=_4©ú.T/²÷V/Ú+R/ºõ]íµÉTí•Yª^ìÚ§^|B­öv>«öÞ´E½$É^íó$CíËTª—RWÔKwÚ©ý2¥jÿ“Ú¿ã´:`x–z¥jª:P.V¯ÊìSëZ«ƒ9ªW7„¨W¿Ôk×«CÂ­Õ!y.êP­ÿèÜV‡çÕk\'ŸQ¯‹4T¯»Jª×G|Uopx ŽZ’¬ŽêÐVo\\j¦Þ4ó¬zÓ¼¡êMù\ZuìáBul‡:öÇ0õVƒõÖƒÿÔq­ê¸\'[ÕñÔIuü¼ê„åÙêí\Z™zûV^½ãÑIu’öõÎ…Uê—cÔÉCN©“ßQïþï™÷8¨÷xLVï-Uï;V¨N1•©S¿¨S÷žU§¾›®>b¤Nox¤>¨½UQ4R}hÇ|õ¡òvõá#+ÔY¡zêìU6êœAúê\\ƒêã=ËÕy!fê¼ÝÓÔ\'6»©O<;¦>ùû®º 2Y}êñKuáåhua‡µºðë*õéCÔ§ûÝÔg¢õY¿u±c±º$ÚS]ÒÝ§>¯ªÏ¿©/ølT—Å°êò–DõE¿`õÅ·ê\nýHõ%Õ9õ¥‹ÑêË³²Õ—_¾R_Ñ9£®,2S_­»­®~¨¯[[¨¯÷Ç«oLQßˆ[ª¾qã¶ºv£¾¹|¿úöÂ\nõcÕw÷W¨ï%g«ïÕ_Wß­£~`€¨rêŽ¶ê—F¨<Q?¼¯§®×tª$Yê†%¿ÕÖé¨¿£ê¦7^êÇHú±dªúq¬~¢wOýä§~Ê ê§Óç«›Ÿf©ŸßÕU¿¨P¿Ü½MýjoºX¯në0R¿†n«ß4j©ß¾÷V¿ËèT¿«º¦n_°FÝ~tˆúcˆúã› uÇ@„ºÓó†ú“~²úÓ½{ê/\'ª¿¬Ww9û¨»ÌW÷h‡©{Ò¶ª8mQÿtœ¡þ¹ÄWýkê^õ¯=SÔ¿Íªÿ,ÍPÿyûQý7WŒœ­x/QôçÀÄ2|ê  óF	èZBÀr;k#`××	8øCÀÇð#ã<oŠ€¿‘	$²L%åâFA²ÉGjŠÙô{‚lÖ\'A>£TP&8ÊÌÓ»e¸À–¼Øs\nAõÎ_Pß\"¨ÏŒ„¿\"Aóè¤ µ\"LÐžDÚáåÂ «RAÇ;EBÍ†ê†½†dŠ…!¹w½Iƒ½û…‚~Ñ-AÿÝZÁ d¸04æª0ìãGÁÐíˆ0<A_~£GÞ€\nF–³£Ðw‚qe¡0êÁrÁŒÛ-Xh¶c·¥\ncw¹cÛü…ñcê…ñþÁÂø3f‚õÖ‚¾‘0qûpaâþRaR´ž0©+^°|{GZ°ŸµY°o;*LÞß.8\0Ÿ…©áK\'Ñ\\Áù²H˜®;N˜¡¿S˜5ñ°àVýHp«	fWÇs¼R…yV~Â¼ÝÂ¼ËW„Ó<…\rº‚Ç¸\"Á“™.,ºóEð2_\'xu7KÈG‚ï¿éÂ²Ð$ÁŸ\\/øë¥	:…Àå3„ÀÂõBàéoÂª‡ˆ4£WºúSªÕ‚ñ_Bp£¯°zÒauéaÍ…z!DˆBáD!tÃh!4­A=ÿQÛV-DD‰…ˆl+!¢Önü&¬Mq6\\6\"åBT¿FØpTØ4á€#9&Ä	1÷Ò…ÍæÂæƒ…-ã…-2…­\"„m©“„¸aáBÜüÓB\\Þ8!®+CˆŸ8_ˆo/â{DBÂ~RHH¿*lŸ•-l	‰Yç…ûZ…$Ç—BÒl7agÈwaçßáÂî?ÿ„=ëW{\nû„é_!e!¤üÖR\r„T=!uÙ;á€ì’&oÒÙ	gþ|#dÌr2¢!cÏR!ã·‹©ï%d–Ë„C¡“„CëÓ„Ã+:…,ÛOBVJ‡M8	Ù1£„#1O„cs{…ÜQË…Ü5Œp|îXáø¦Z!O“÷Ÿ!øZ!ÍQ!?!QÈOsNoNÜb…SnW…B3sáŒÉáì¿QÂ¹qB©ù&¡ôÝráÂ“sB™AœPö¾D¸(	.î9\'\\¼9_¸l6K¨\\½O¨º’(\\U¯®þZ(T›˜	ÕŸ÷×ÙµÂõ³2¡fr¦pjnÌlnDX	µ£,„ÚîµÂ-þ°pëùráŽR$ÜYr\\¸“(ÜEdÂ]¡nØpáÞF\\¸wÚ]¸ÜW¸gpÿ›\\x¸ä¾P?¡U¨Ìês?õåžBã”Bcè\'¡±®Oh\Z¼Rx<ÆBxj7Dxºb¹ðtO“ð,ÛUhYøVhyn$<ßí*<¿ã+¼ÐÛ.´šæ	/Û\n¯8{á•S·ðêk¯Ð6c®Ðv-VhëÞ,¼ñoÞ-ÿ\"¼k ´‡B{•ð~Ù7áC¯ÐY)|Â>\nŸÌÃ„Ïö\Zá½@ø:ó·ðM/Gø6)BøæµJø–2Qøv-Hè\Zó@è¾’$ô¯zß0Bï×.ágòá×S‘ð×UGè»Y.ôýÝ!\\™¨F}Ó\0ÙQ\Z v§xóOš˜kÀí\rdØ¯˜jà\r¾Jƒž­× ï^hða\Züã\'\r9¨L#Ú¾Q#ñH#Mº®‘ovÑÈ¯5häOfkkó5´õ~\r]sH£TOÕ(Ó?k¸Ñ75\\3¦á>ÎÖð÷M4ü³_\ZÕZ-ª×@#üMÒhE«4:Úã4:/Ojt:?h?××èEFkôöN×èýiô5½•š¡NrÍ0JK3lÌ\"áç1šá¥+4FôÑê·\Zã£íšQSÍ(çQšQ×M5£~ÖŒÖ\Zª1µ²ÐŒ	Ÿ¡³~™Æ,èŽÆ<â½Æ|SŽÆ¢CK3ö@fœörÍ¸K±\Z«¤§\Z«Òyš	}C4ÖIï56\r5v¸›ÆNØ©±k\\«™2ô€fŠÛÍ”­ë4{-5SÃÚ4SóM4N·sæsu¯Æå/£™.²ÖLÔ\Z×ùK5®žš™Lf–ÄR3kÐg›§qQ®qÛtTãö|¬f¶íÍ\\ô‹fî¤§šùGAÍ‚ß—5ÏÓ4ï¼4žÏ‚4sfhû¡ñB²4^ƒ5šÅV;4‹£Í’Ù´Æy©ñMØ­ñÛ°S³¼|½fEtŒfE¼¿Æÿäÿ[•&@{Ÿ&Àiµ& §C³Òú„f¥ã}ÍÊ¥Ÿ5+³ÞhV~]¤Y5óˆfÕ¼RMP* 	îx¡Y­¿ú—y8oÇ‘­„Q÷ÎÜ¹sgî:wŸ»I¨¨”(J‘”B¨D‹­•6!R²f§RJö}§\r%T$KÈÒ‚h¡ü~|žó>Ï<sÞ÷œó=3ï!]7A8êPLð¼÷àå9N8‘u“à­EðQñ%øüŒRþ¯^üÛR§ß8N]@8óP—pæcáÌ¯=„€¼ B@ç,!`ö!ðm?áÜg=ÂùÛ\r„º½„zÎ„‹éi„KÜõ„KMÂå[.„«¿ŽBß×	„PD‰~¾˜pýã#B„Y\0!ÂÒ‚pÃ£–p£7Ÿ¥çG¸évžpóXá–ÂBôåå„Û/Þb–-&Ä@9„˜à„øö+„“GHøšIH<áKH,p%Ü‹w’“wf>’–€„¤¬lB2ÖEHÙrò\0$¤zÈRk¾ÒãMVÛ	ón„¬a˜5[K¸+8C¸ß»•ðÀYDxHÐ$<t[Dxè¥Hx´Ì›ð¨Ý˜ð8?šð¸cŽ«ªFÈ-þEÈmñ%äC›…¬õ„¢¤ï„¢6SBñîvBñÙ•„—BI÷jB¥À€P~—PÝoK¨=ð‰Pw{1¡îÕFB½E¡þÌB}-ƒÐp±ƒÐ¢Gh”&45|$<óô!<‹üBxqàáÅ£ÂËÿãyY:Fhnr\'´ÜäZÅi„VýaBëîXBkÁ,á•s\náÕ‘Ï„×Öß	¯÷)ÚJ„¶¹„ö”„ŽÏ„Î%#„ÎˆM„Î,+Â[b¡K¤OèJÞEè6ÚGè.ºJè>FèY]Oè‰m!ôä¸>&Ñ½›	}>K	}O	ýÇ¬	¹gŸ¸\'	ŸD×ŸŽŸÆ•ŸþU—º­.£Þ†v†5¦Ã¢Û„‘Ô£„‘¯u„±ç	_‡	ßö„ïžE„I%?Â$ã	aÒÏ˜0íN˜¾Ç!ÌÈ¯&ÌYMøÅ\\JøNø5Ð@ø]XOøs÷\nav‹0kæG˜ÝWB˜{þÊyþ]$ÊÙGåZ\'ˆòî™Dùv*QÁËŒ¨< @\\¨»¸0­ˆ¸ðCQ-v\'Q=%j~k$.Ù«JÔšÓ!.Ý•BÔ~F&êHŽu¢^u†ŽuÙo‰z«ˆzyáÄµ‡ˆ+~>$®Ü~•¸ò…„H\\mHÜüˆà¾‹DHü‹¹ÉË\\‰dä‘r~ÝÙJDC—©o	D:ùn<!2äœ‰Œ“£Dæ½=DÌâ\Z+\'±\"ö#È¹û…ÈÉ6!òælˆüi¢@G(ž!â‹_qm¢ÈÇˆ(æÃD±(Ù=E”òŽ¥Ý†DY…?Ñ@N4N\"®Å\r„´©D£•óD#ƒZ¢q:qÍ¯@â:«âºš¢‰h\rÑäì\'¢é´<qýÍnâúRœ¸~Ü‡¸QEƒ¸q	h6ÐCÜÞKÜ|D@ÜüµŸ¸ù×;¢ùÆõÄ-ê%Ä-E^D—Q¢Å%¢¥éÑòn4q[V&Ñêh•êA´i¶ ÚnøL´‹0\'ÚLwïºEÜÝ¿›hÙNÜ³b%q“*qÏ¼\"ÑË#:\\8LÜwWè¸ižè¸åÑ±‡JtÚêDt*‹#:›„]ž \\ýèª~–è&¬%ºGÊÛ¿‘\'xLôà½<N½ú\rˆ^“â±7½Äcí‰Çþ-#ž´÷#zßÞHôùy‡è{­„èµ…èÿ\"žªŠ%žÍ‰$žp!,8GØ±—Ð4@T¹AÔÈ#žS%ž[²…x^=•xþ´-ñÂâÝÄ\'Äàü\"bðç)âÅ·õÄKåcÄKýŠÄËËpâeê!âUÍibèòlbè%gbhô1œ“CçŽÃí\nˆá·ÿ¯ï<EŒð¾FŒt=H¼atŠUþ“x³.’»Q‰»-žëAŒÓö%Æ™þ!Æ9!Æ½ÝBLì|A¼SëELº×GL*ØOLÞDL~þ?_ëˆ©n‰©Ï‰iGžÓ.i3Öž\'fx ÄŒ/›‰™†ÄÌ½¹ÄÌ£µÄ,£ÍÄ»Wˆ÷ÿå³W¸³7<$fW¹À÷ˆ9¢EÄ“ÕÄGyˆ/ž!æúŸüˆJÖÄÂ7tb±š±˜~—XXC,‰%ô!bÉm*±”cJ,å? –\ZxËÑ~bÅîNbUø&bUÄb=x’XÏð!ÖsùÄúš£Ä¦³‰Ïå¯ŸƒÏ‰Ï¯ü ¾ V_˜?\'¾°Q$6o|Cl>—Dl!x[­ˆ­·u‰¯]Þ_‡Îß¸?#¶³ï;Uˆ_žüÏ[â;ÐøþN%ñý¤*±+d9±ëãjbwŒ±çŒ>±g,–ø1Ô„ø1\\@ì½vŒØûä=±ÿt+±?çñ“ñÓ(Ÿ8Èj!Ù‡=6‡op‰ŸµÂˆŸ9§‰Ÿ³‚ˆ#~Ç‰£´6âè…ÄÑ¸Râ˜‘ˆ8®*\"~±ì&~m³\"~{&Güþ}’8ñn%qR/qÒëqj‰\rqjN@üq\'N¿œ$þ\\nEüiK&þZuŽøG\\Bœ5&Î:LœË2&Îkÿõ{çaq~=Èí\"\n»\n¯\0Šëµ%‡q@©þ 4üP–¿\n¨l°T¼—ª\nŠ€ªþ_@µÔXxÞXô‹	¨ÅœÔFÅšuÀâx@}Ñ ÎÔÍê¹¿\0Íå\0Í“ç\0­¼›€NX¾AÐg\0+ŒƒN^\014 †]\0p-\0ìoÀa\0L‘à£ë\0)( •/Èm\0œ]PLzÊ	!€è{ˆg-€Ô·hÔs€zF ¾]Ð|­ZÐi\0Sc#À|0?ó\0ÖÖv€5ç`n7À¼\0·Ãàù\0_ïÀgçü»%€ ï \\ú\Z^»Ë¿\0Âj#\0—,ðCÝ€ˆˆž£€dþ: s–dƒyÀ*ý?€Â5ÀàK	°\ZrV8\rœŒ¿Ö\0klk€u\n:À:;À$ÇØ¸/°1/0»µ0g®ÌžÀ–³¯\0‹4ÀrÉ%`kíf`ÛIÀŠ›\nXñÚëÒf`»C°ÃCì¼ÔìÛ€]û§\0Ûµi€Ý­ÇÀîåÁ€ý+Ø³;pÈÌêœ½Ë¾{]Ù€£|°ßí#àà8ÝÎâƒ=õ€ÛÖMÀa8<ÿðÀ¾\0\'ÒO[1à56ówN8›>A€/ã0à[tð;}ð»8ýq8û¿ŸóNÀùÌ> XÏ~ù¸¸.â™À¥¯ÏËàêŸE@ÈÓàÚ`f>„9Láf½@ø‹6àºŽp}kpý»3iü\ZˆL?D–~\"gK<[àÆÓ JMˆò»ÜôZ	ÜzéD_KnG5\0·‹û€˜Žd Vuˆ%Ž±Ï\"€8Â% nj17Ý$Á@¢$Þñû›;â`àÎé[@ÒæJ ¹g9ò¼HiÝ¤öÚi“ú@º—á»ÈxtÈ<K\02Ïå™a@Öm?àžapïW	pŸýÈ&¯²Æ\0V,\0®”÷·9N\'€œ{!@N»ðHÕÈu·ž|_\rä™Ž\0ùµa@þm `¯P˜|(ŠŠîˆ¢<	Pì<ûµ%v€Rò# L\r”\'…\0Ur€ªý¡@ÕŸd fWPs#\0¨]Cê®\ré@cïf iÉw ‰Ð<¥DOÍ·Oíó§žýÀËs€fÝ£@ó\Z3 EÍh©SZƒ7­×~¯»€vÛÅ@‡þ5 c$xk¯¼õï~€÷B ‹.tµºóÚîà=ø8^ô6+\0½3q@Ÿ\\0Ð—ëü¯‡0U` œ\0ŒÃÏŸYK5`äq;0v+Ëñ\0Æ>_Æíû€ñïÀ¡ðåh$ðU^ø*N¾îi¾­¾Ù<&\"éÀÄít`¢ë\"0¹±˜¼èLáÚÀÔiàçÃ?ÀoÇoÀŸ9àßËõÀ¼å`þÁ;`>ŸÊÑçA¹{—Aùg@ùhGPE(.ú]	ª•Aµ7ï@µ‘— ú]+P£ÏÔTI5@Í@*¨9\\\r.Íp—\\\0—\0uèÕ ó&¨·²Ô£3@½h9p…à¸\"¡$ìÞ©ÛARó4Hîöa$D|Í@ÔÑ¤%>iù‹Aºy(È$fƒLËÏ €@6Çd»Ã ×käfæ¼Ï‹Am$(âîE-(¦}Å7Aq\\6(1>J\nœ@ÉÇ)PÊT\0õbÁUú¸jš\Z\Zû€†“·@cÙuÐxKhìè®	ì×=×êÛk_š€ë¶û‚¦‚p}ƒ¸Áú¸qÛ7p£ãqpch¸11´X<n5*·š?·3·žr·†ß·Æ›VW®€Öô[ u‰¸]hn?þ´9ÚîÒMmO:€¶9›@ûÀ.pÏ—ó ƒ tx,÷^w÷‡éƒ”ÇÀí\Zÿ#|e¾€Nº¥ S„3è4©:MþQ\0t™ŽÞzº&2@×Üàaß!ðð §«9è™™\0z--Ž­¾\n*€Ç.7æÇ»V€\'õ+À“¹dÐgµ6è³Åô}\0úf^ýôr@¿N{ÐŸõô?ýô¿ÒžZÎOƒg7(€ì3`Àw0°ÏR^\nž»¡^P\0ÀT#ðBÅAðÂo{ð¢¼4°¼BÜ	†\\Û^;´\rn¯ŸÃÁ¨€s`Ô\r30ª9Œ\Z/oþ©£ƒKÁØÛ`Ü	{0>á=˜ð>LïdÌ‚wJ¬À¤\rŠ`Ò\r`rÆB0Eã˜Ò7¦_Û¦ÇìÓ;ÆÀŒà…`&²\0Ì<uÌJ¹ÞÓïö÷OùÙÒÝàƒÕ)àƒÝoÀŽYàƒÆ ða×y0Çý3˜[ýÌ­=>QLŸ´íóô\rÁ<×80ï¥2˜óã§Àü9o°€{\r,Ø|,pYøFqïÀ‚º`Á‹¿`¡¤,¶\0³»ÁÂ°p,,Z”-–‹p.X´Ë\r,\nþ=±‹y\0X¼q+X|³,NI‹SµÀâì…`ñ§°dg,XrÕ\n,‰K/[‚¥y{ÁÒ×›ÁÒY:X¶åXæÞ	–%ªƒei\n`¹²XN\rË\r}ÀòuûÁòØ,°¼\0Ë¿\r€å¿½À\nÅ°BU¬01+¶l+¶Ý+.T‚RÀŠÇé`E5X1ZV.ì+¯?+§|ÁÊ_+Á*¥f°*$¬º™VåŸ«~­«æ‚ÕÄ`5:VéÕŽª`Âu°Ö9¬=¦\0ÖúÀÚîÿ×ŸRÀ:\r°îÞo°®aX×s¬ëëftÁúú`ý¡J°>Ò¬OëÛ•ÀúN.X?â\r6¬Ì>ƒ\r;úÀ†B>ØP»l˜«ý`£C>Øø¼l;6Îlç5Á&ÅX°ÉÍ\Zl:¾¬4[³À–%°%f\'ØÒ„‚¯H\Zà+n#ø*\"|õ6|5™	¾©‚of—ƒi>à;Ç\Zðý†XðýÞcàû˜ß`—J/Ø½ÖìnÝ\0~ Þ?~K{—L‚ý¾à€æYp`Iø‰bU÷€C–àð49d\nŽÚ?G[ÊÁ±\0ÿèŽÏî¿¸d€_jÎƒ_7ƒ_ÍªÀ¯ùÑà×¯[ÀoÞ?ÁogÀ‰œ\\íN^0§@/pJØN?r@pšpœ>Nû”Ó¹ŸÀéª	ð×žÅàï¸Qðw×:ðÚÎöŽs¥/Á—Øà¿;›ÁùÄUàüW_’œB)In;N’O‘$$…Èf’bŠ¤Ø¼˜¤q¤º8š´Èh3I­/Š´˜w–´ØZ´øŒ\ZICIÒ8’4\"ˆ$šß$.>iÉ•s$-I+iéúnÒR·AÒÒ;Õ$í¿±$MW’N$JZ®æKZ¾Ñ´¼­†¤»Â›¤k|‰¤7Æ#­`æVØ)“V8ì#­8y—DñHÄç&$ ŠL¿ü%AÒ~%:‹DÉ§‘ÐÐúZ‹DSN!1-ªI¬®S$¬ªž„µ†°÷OHìoÎ$Î¢i\'ô‰SøˆÄc\0$Þ5’0·†„‡Z‘D¼Iâ’äÕIò%„$\\K’yF20Iç·‘VkË“VÇÝ%²oŒÑÒÚý¤uÏ¶“LT]I&îI¦§mH¦Á$ÓK;IëeIë+«H²JI:¯‘6*…’Ì¨ÇHf1>¤Ís$s5Ò–ôÛ$zÉ\"ËŒ´ƒøŒ´ãè(É†ž´‹EÚU°œd‡T’ìÛ“ö@Y¤=gv’ö¤†ÔKHÍ$‡W%¤½BÒÞ×!$G›DÒo’ÓÍ¿$×øÇ$×¢$7ÉíåÉ]fJrß1Grˆ\'R-$ÖŽ&~I:òÄ€t<»ä-¾Hò6}Lò>>Hò¾Œ‘|^\Z‘|ÿ\"ù3#ù…}$ù/ÿK:e<C:uÓ—t*F•tÖ÷)€ûŒp#†ˆ$‘[IcÇIAy3¤Fº¤VÞ¤G\"I—†“.ßÓ!]yíNº¶È‚tM¢@\nóL%…ÿ;HºŠI…¤ˆë“¤ˆ®¤ˆ™ë¤ÈùK¤[¶I·?b¥ËH±nV¤¸ôý¤øß¤D8”°tg‘*)IŒRÞ ¤T-œ”¹ù)3®‰”å´’tWN@º>Dº/zOºoQEÊV}HÊ^IÊ_Dzh]Nz}‹ôh…ˆôÈ4‘ôèú!Òãû¿I«–“òDŽ¤<ïFRÞµ¤¼ÂrR¾«Œ”?÷”T qŒT¸ÅTÜpTvCL*kºF*ç¯ •[“ÊçI•„Ç¤ªlˆTõdœT½è©Ús©úÛAR@ªÝ^OªƒÎêOô“\ZÎý\"5®í#5¦n#5>\"5=´!=ÍÍ\"={õ•ôl°‰ôÜç,éy}éùÓÒóÏí¤fƒ¤V1‰Ôúò:é5ˆôzñR›#LzÃè\'½¹¶šô–N\"½·°!uý–.«\0R×þ;¤®ËÇH]ßÂIío‘zü\"õ±y¤¾‚R¿Ö]Rÿ¾RèER‰+ià·\Zipù}Ò Ç;Òì+iøüi8²€4Ü’>/ÛK\Z9<O\ZyÚK\Z½ü…4:™N\Zó\"M¾\"ý{H\Zç#}9BúŠú“¾Y<$M,U#ýè¿Cšv\Z%M?ì%ýŒr$ýìŠ&ýÄH?§n’~a\"Ò‡|ÒŸ3Ú¤YG5Òœ\n™47çEúË¹Iú[|ô÷ËQÒ?\n$·L\nÉc!9CoH^~#$÷Zpù$´ 	„|7„\rb\nRÙºR5k„TÍƒ …®+¡…µÐ¢Ÿ!µG5Ä€4ÜïCK”Î@KZ ­…ÖµVe´ôÝgHûÉMH;ï´Ü”é\Zì€VüI†V\"ò¡6\"¾­€\0f\"¤î€{Sð¦‚Â5 ¨Y\"ï»‘/+CðgˆB5ƒ(kl!t¢ºçCÔˆfþ¢·€íÄ¼O‡X[¦!Ìo\'Ä&ÆCœ„|ˆ\'‡x†û žw4ÄÏÔ†øÿ!þü\0$XÝ	<w@‚fHPA‡ïÎC¸§$úg‰M4!é‹hÕögÐª´hÕd°md0c	­&¤@†æ&aÇ\0døë5d|€Ö,Í†Ör 5k¹Ðšuhí:)´Ž¼Z?C„6(€6¼t‡6øC\'ï@fœ7Ðæbhó?&d¡P	YÆÖB–ãFÐV³uÐ¶ï»!káeÈ:(	²€¶?m€¶Ï¿v,Ž†v8iA6¿ h§;dG¼\rÙíw€Bü }:|hŸÿZhßÍÅÐ~¹vhÿ<\n¹\\³\\ß@n+C ·Ptˆ’\nÞtòØ6\nµYõ°…Ž6¯‚<ÏA^ê!/ òŠ.€Ž›\\„Ž‰¡“Kg ïÏ ŸåqOùdo|ÊîA¾qÈ÷öäÇ.‚ü¯C~¿L!ÿÕ®Ð)“èT½:íÃ†N—3¡ÓMP\'\nr:{?ßì]ž.X*CÁ»¨ÐÅæfèbÛRèÒêkÐ¥³&ÐÕ‹…ÐÕ¢·PÙº6±\nÕ–Baü(ìúI(,>\nk¹…[³ ˆÿs±zŠèè„\"~«A‘©‚ÿI‡nL½†¢ú_A7ÙZÐ-õ èÁºýû%+l‚âp(î{=oö\nŠ?%Ð¯A	ë¡„êïPB_\'”ð#ºó¡J.‹‚R²®@©ù\\(Ãé8”q(\rÊ< LÙ”yç\Z”9øÊr¨†²¢¿Bw+š¡lN4ôà`\Zô\r…þâA	|èq””{‘å–¤@Oþ×eû”÷}”ï{ÊoË€\ný¿A…Ë ¢`U¨¤v*¥X@¥»¡rr+Ty*ÃC ª$T½<ªÉU‡êþ÷]7d5ä‚šðB¨iGô´èô´Êz!>\rµ”ž†^™f@¯BA¯o†^7P[—1ÔöõÔ~u8OCé— ŽéP\'šu~ Î?Ï¡îíû îòÃÐ‡ßÊPÿþ‡ÐÀìè+úd$ƒ>eŽBƒ\'5¡Á4/hðõ*hhÉkèóòès‰4FÝÕûCcí‰Ðøª[ÐøÑEÐ—’aèÛ ôÝú^ZMT;AêÐ¤ú,4™=M]Q†~¸&AÓŸqh&?úµÕú•¿úý¨úó\næ^ÔB_•Aÿ¼Èr³ýdùÇÓdùêcd^Yá»?YñÚi²bî²bÛ$Yy;¬œàNV.„È*1Yd•;qdÕKaä…oüÈj×XdM¿»ä¥£ßÉËÍäe&5dm«²Îê!²N×;òòžßd]²®ž-Y·Ê”¬ÿŒ¼B]Ÿ¼\"z¼¢•O&¨»‘‰7‘¦Udp8€=þN†ü #…ÏÉhú:2šS@f-“±›2ö¨…ÌV8Cæ¬æ‘¹Û:ÉÜ´dî]52¿\"ó‡gÉ‡²àÒy²°á Y8šNŽçñ-‹É¢\"²˜²‘,¶’¥æîdiÚm²´²Š,kñ\'Ë¦2ÈúždýälòªwÈäCd¬Ÿ¼\Z¢‘WÿÎ&¯ñ2\"¯)zL^§s˜¼Þky}‚yÓ¦>²9ã\"y‹¸š¼ÅG™l1¼ˆlùãÙZ÷	Ùºÿ-y{9NÞñ¢ž¼£\"ïÍ!ï’W\"Ûê_$Û^6 Û]½NÞ}LHÞ³Èƒ¼§Æ‡ìàUGÞûà\rÙ¹Hv¬1\'ï¿™L>p8Žì¤Gv†N’“ÉÎá{É.Ço’%œÔ#»Z³Èn‡$dw§7d÷c\Zd÷¨Md÷;ïÈ‡ïÉ‡ï?ºGö@~ZqÉÇTâÉÇ_xÿ\"Ÿè’O®ò#Ÿ|~•ìC™!ûTÖ“}\\ÈþoòÉ§îì#Ÿ6\"Ÿ¾_BÐé\">1\'æ›‘ƒrÈçV¨Ïm}F¾ ×Mþ7E¾¸âùŠ|ùj„6ùjÏ	rH¹ù\Z?ƒzè#9´ŽDí¨%‡]ýŸbkòõ/RrÄË¿äHYùÆÎOä›K«È·ÉähMœ=kI¾=œMŽ]äGŽuÛCŽë¹CŽßGŽ¸œd6CN:MNF®‘“Ý”É)µrêyrÚ9}rÆ=äÌ€käÌ©rV¤)ùîaœ|¯]H¾_|œ£xžœ³l˜œ“ö¿mÆÈÔ7«“M,#?¦n$?è&ç*®\'çªÙ“sItrÞä‚ÆIrAw¹èb!¹(%\\’lA.¥ÐÉ¥a‰ä²y)¹œçO®  W‘äÊ;éäê›uäê1Or…Œ\\“B\'×Ê+’k[-Éµž“ë›È\rzÛÈ\rÔ{ä†trãHù9 A~1# ¿T&’_{‘›ÌÈÍmÈ-ÁÍäÖ,ù•|	ùÕb9ò+­­äWÙªä×œHrÛr[ž-ùö3ò›=wÈí£çÉ”CäŽÍ‰äŽBGò»×Aä®ø=äî±äžm¶ä^5&¹W§–Ükv‘Ü{{œÜÿ3ž<øX“<ìHþ]\'D^!\nŸ“G\r·“ÇšŒÈãÔzòxÐmò—…qä/Þò×­;Éß^û“¿ó²ÉßíƒÈ\rwÉ“|&yêÿ,¿Kþ!I ÿ°õ!Ïm!ÿŒ÷&ÿ,ÚIþÙy…üsêù×ÿýúËÎüknšü;Ø‰ü\'Ò<«6CžíÙ@žíS&ÏÙjçJ?“ÿþßŸcFÈfÈóïÔa¹š)Xž¤Ë[ûÃòG_Âò7…°üL¬pÊ^`\0+ªß‚=	°Rb¬ôä4¬|£V.Ô†U–¯ƒU,`•£ë`Õ¥¡ðBx^h`«ïÒ…5ï…5»oÂKÎúÂK¾l‡—î’ÁËÞðaí¥1°öÖÍ°ö.5Xgy,¬cy^¾b#¬»¨Ö5´†uãm`½b¼¢ô#¼¢y^iy\Z&Œ`ðöWŒW‚Á„ã0ÉêŸ{\r£	#0U¤S7äÂÔÜµ0uj3Li†iR;˜éP3ë¸0ëÚIS8c÷ßÃì^0;ã/Ìqp9ß/À\\ÜL‡õaá-Æ	æ°(ü,ŠÂ¢„*XTd	‹jG`1°–hXÁŽ,ñÛKÑXjO‡õÝÔáUáëaƒUi°¡¥%lä˜ïZ_\n¯ÑÄà5áÅðšæe°Éž°©Ö¼ñÂSxcÄ\"xc²&lö›oþ3\n›/Àæ1Û`óüØ¼´¶XûÞzò¼µç¼mô3l>[?€à¡á]½|x×¯¥°-÷0l›VÛÑ;a»ôx·‡!ì Ü\n;8ýos~ÁÏz`‡y	ì¸;îš‚K‡à«Á&a\'	Ø™ó\nvjƒ]ˆvðAÖcØµ¸vc®„ÔÃ¹ð1øxûÊÁ°ï›ë°ßÖRØ¯q>e&„Ïx§ÃgoªÀgSÄðÙG8 ö2è\"áÚpPRÔŸ[œ\rŸ«x\0_øëËŸ„ƒïÞ†/Þ€/±‚àK»7Â—ßÂ—\'ºà«gXðµwðµ™ÓpèÿuÍó…CÃ¡§á0ø6ttŽ0àÀ7V­‚£~³àhXŽþ¥ßV€c§>Áq¶ÃqRŽ‹á„Ê`8ñ^!œø£\rNRº\'Ûà¤p2M\'ûÃÉQúpò}}8µÜ\0N‹lƒ3üPø^NüÀ€s’—ÀlZáGÙ«à\'{®ÃOö‚ŸU…ón	á‚ÿ5^˜d\0éÙÂE3^pI€)\\úÄ\Z.Ûõ.{¶.?]\n—ß*‡Ëß&ÀåRáÊçáª¦pÕø¸Ú·®X\rW_>Wÿ À5ËTà\ZÏ—pí‰L¸~d\nn\\Ð7.õ‚›4šá&Ú¸É…ŸŸ,‡ŸŸ‚_žÀ/ðpø…¿tq‡_äÀ-¹àÖ—	pk[\'üÊí)ü*ƒ_õ‡ÛÔá¶×‹à¶Oø´n_ýnë†;æNÀË\"àÎuL¸sr\'üîâøýÊA¸k_Üp®€?-‡?\\2€ûîÂ}‹+à~;\"<Ð¡¼ÿRØZò<4Ö­†‡®tÂÃb/xø‰<â®¼\0iß€Ç/ªÃãcRøËö ø«Wüõ\ržØ¸ž×€§†‡àŸ]áŸÉ‡á_¯¦áÙgxnHþÛìÿc¥È)ÿ ÈmRäQ)r‰(ò–û(ò¾Žù{,Êle¿‡²ÀeeAç%ŠâeE)¡Ÿ¢<µ€¢\"è¤¨l¬¡¨ï¡¨Ü±¢¨T_§¨ÔvSŠÇ)\rïP>ùBYÄÜEYÔ{‡¢æRAÑÔI¥,1Ö£,é S´Üµ)Z^í]óíroŠÎšo”åcŠžZ\"Eo8…²‚s‚²â·„²2g3…ÐøžBL¢ï5Q\0G&…Ô8ATÿRÈ_Z(ð’f\nåB>¹3HAªžQ¨þ&ê -…öm…1©Ia…ÍSØ‡×PØžw)ì,O\nû—…ûm7…§»\"Ð~L”¯¢ms(Âk0E$*¡ˆ¶ŽRD­©ÍŠ4¤\";7KÑ·m¦èŸÐ§¬ZÉ¦¬â=¦„¼¡¼È¥¬^³—b(î !O)F›~SŒv|¥]ð ÏQÖ¦l¤¬ÛÎ¢˜4™RÖ«œ§¬ÜGÙ°ÛŒ²)(²éû4eÓ¬!e³!—²åægŠÅ›`Še@±,G±|yŸ²5ñüÿ$P¶N­¦X»·PlôÃ(6w)vNQìžRvÿåSìuý)öi)%\')¥«({•¢){;z(ûvÌRö59PT\\£8_¢S\\L\r).M·(®½3·Ø”CÉ‘”Co_Q<ŽöR<4)ž¼6Š§•âyô!Åóô	Šgþ&ŠA“âuø+å8?å„–€r’z•rÒ2‚â½àÅ{³5Å{“âíÙIñ®Q|E;(þK–RüÉw)þFÕ”Ó/ò(gòÛ)gµô)g/÷SVý ¦¾£av” È”s¢û”ó‹U)çO*P.|í¡Ÿ§\\lÌ¡\\2*£\\ú´„r™7L¹ÜãH¹BO¹òeåZ|#%Tp—Z4E	s¸C	{ñ…ÖrË£\\ßÐ@¹I¹žð‡©aN‰l°¦Ü`ÈSn\\øJ¹‘óžrã¥%Šs‹mbG‰~1B¹½«ž×´ˆ’pú%Ñ1Ÿ’ô¥Œ’<UGI¹J¥¤æ¬¡¤¾¤¤ö/§¤±Ó(éÕ™”Œª”Œ—]”LçLJ–H¹»g%› ¥d³Jöº\0Êƒd\rÊÃ%JÎôvÊ#Õ	ÊcI5åqÕ9J¡Î¥èÆ¥Ô°ˆRÎÒ£”ûúP*¬”Ê‹:”*êeJUy:¥Ú©˜Rð†RãºŸROI©ß ¥Ôç¾£4pç)\r^*”F5SJ£¦¥q[¥éÊZÊS½E”§³_)ÏŒH”g{®RžëõSž£Û(ÏíîR^>|Fi\rÝMi­<Cy­Bim ´mýDi«¹Ki\'PÚe‰”Ž:¥£àåí¶M”·ç_RÞOž¤tSª(={º)=])R>>xJù8u†Ò+Qz7Ÿ¢|Â[)ŸfVQÿVQ†z¯S†•\"(Ÿ­•(Ÿ¯î¥|þeG½z•2fQÆ\n“)ãÊ;(ãÂg”oÄc”‰—½”É´ó”©ƒK(?2C(3E‰”_kc(¿6~¦ü2;L™ý€QæºÅ”¿åïÔ*DNo)\"wJQ`Åœˆ’ê/Di³¢Šù\"32E’.dQ°¢†N\"jGO\"ê5RDc‹¢±ÝÑT¹Ž,qÜ…,y‚,ÛªŒ,;½ÑÞâhû©!:_%ˆîŠˆ®ïD7±	Y¡1€¬\"„ãáQ;\01¼àŒÀ-Éüí-‚,A°_ê« ±Ÿ*|¡å!´2E„¾ì+ÂL=‚0ßä\"ÌÙ5kùFËØˆ°÷>C¸TE„ËnAø9wþ¬\"˜ôA„êF~3	ÂÉK5DúØÑèDV…E «† KÎ!Û#CÆ9Äðˆb¬¿1Þñ1þ?þu+/ ë.\n‘u3‘u}ÛM}ÄäàÄ$Ò1uÐEÖ»T!›ô‘MgÍ7d³‹Ù|Î1×ÉE¶Tq‹›·Ës)È¶º?È¶ïdÄJ¡±v×G¶×Œ ;8#ÈN¿ndçûnd×úËÈ®KkÛhÄŽáŒØm³Aìü‡‘ÝMˆýJEÄþå\nÄQ¿9À=‚Ø<€ÈèGœÏû!/|D\\/f#Gô#G†ˆGôcäè-Kähnâ¹hâ™#D¼î§ ^¯\"ÇÖø#Ç6Î Çê¢‘ãªîÈq+äøÞVäDÕädˆñ–[‹xz Þ™gïžˆõÄ÷²3âÛ\'FüýSï`ä´²=rºü7ræ­	È<†ºGo?E‚„ÖHÐ!=ä|ð?$øVréÓäòð.äò|+rEÓ¹áŠ\\ùÿ×p¥hrÕdrmár­m	]à‡„]„„~ùŽ„‘® a5îÙ„¿Y‰DXþO.±k7u¸‰z6Ü<r¹yg\Z¹U¬‚D@nk[\"·Y3Hœc67¤ƒÄ\r¿F’~¯D’æÝ‘äÞv$å4‚¤t:#©=?‘ÔÛô­HF5Žd.û‰dò¸HfÁ-$ëò rwå(rï};’ÍÐB²…®H®V ’Û;‚<9³yÒIGò4ú‘¼€F$ïs(RÈ¯C\n\'ã‘\"j?Räú)rëBŠÜ E)£HI		)%BJYqH©ëRÚ©Ž”Í) åº!H9ò)oü”ÿ›Dªµ\rjf$RÝÓÔøö#µ°R»!	©ÝÌAj+!uHÒàã„4<à\"\'ò‘Æù¿H“ÎRäiÚwäy¹\rò\"øÒ\\qy¥éŒ¼:Wƒ´YŸDÚÆž\"o®r7õEHZtH\r×6ä-õ>ò^/y0yßP‚tg/F>´Èz+ÒsàÒS{ùh¥Ž|,ý‡|«Czã\nÞ»\0Ò÷Q(=…Ò=ÁnOä³¼òùo2úê2>î‹|	ˆD¾Òo _o/D¾%F&‚ž#“ÚºÈ$³™RíF¦øÍÈÌêd&‚†Ìdv#3yÈÏŽLäWË}ä7zù3>ŠÌV!s³—¿B\'äï¥\'È?Ífd~¯2ô2ÿh*g¶UàG£\n\'ÐqÑwLÑ¥Qè‚§×QEÍ¨bpª˜ðUìhDÿu£Ê¤\\TÙÖUýÛŠ.ôêD½ËAÕÂ¢ÑÅ’¨ºiªa>€jØF5¨ÆÃjTãOºÄûºäòTË¤Õú2€.ë5Dµ¶¢:!—Ðå„Ityg-ª›;„®p8‡®ÔÎEWæœE?”4àB±‰(™Ö„’é{Qò‘µ(·¡0r…Ëž¢È¥ÖM¡Ô&J;œ€Ò\\Pæ©8”ù¾ÅÚæQ¶Å3”«åÙ_DÒ*THiG…ÌTø¨Å?¾@EW7¢¢gr¨XxËRQÉö0T4]%|®êòA\rNk †>î¨Qú\rÔXE]sv3ºvóº6Ô]ûH‚®}õ]¼5yª„š®Ú…®÷Ùˆ®¿þ]ß…n „£faC¨ÙÀ4º‰ÏD7?~ŽškŸ@ÍþF·ü©G-®D-µýP+‹«¨µÛÔºâ:ºÃðjÃŠEwff¢vò­¨}ì/Ô¾g?ºÇaº§ö	º§ÛÝ3}ÝëŸƒî3|†î»¬îK2EAOÔ±ö6z`Õ>ôÀn3ôÀCuú§º¬8‡ìyƒºR\rP×„¨û¥ ÔcS8êq¹õ˜å£ÇË-Ð“7\\Ñ“½n¨³5êsÒ\nõI¯G}÷¢þÒ¯è©DOô´îzôtØôt¤\ZdWŒž³RAÏ/^p¨F/äX¡ºÑà€@4øÿ˜/¶[£geè• \ZôJ¤\Zz•;^ÝŠ†ÄðÐÐùV4Ìg\rë?…†/œGÃ-ªÑˆ+\ZéˆF$ 7nø£7J/ Q¼4jÝ4*ÈúmƒÞœMFo\ríDcKÐX^4Ží„Æma¡ñ£­h‚M\\T€ÞqÞ‰&mµA“¶ ÉkÐ”çB4õsš¦µMÃ|Ð´çhÆö	4ãÚ0š1[Žfñ^£Yn÷Ñ»bWôî»\"ôþuôÛRôÁÅZôÁ•—hÎ¼1ú¨û9ú¸&}üq1š+ÈCs’Ñ\'ßh^ƒZ°³-p˜E\rÐÂHw´ðƒZ¤g­m@‹«Ÿ %‰áhiÈ6´¬nZ.ß‡Vö£Õe0Z£ÚŒÖÜb µM–h}A&Zÿ2mPjC‘hÓ—Vôé*ú´6}ž¼}q5m^ˆ¶\\ÏB[zÑVÏ0ôÕúZ·}ížŠ¾¾?‰¶\'i¡íEíh‡¼ÚÙ†¾]´}»~+ú>§íb„¢ÝJÑîä%h÷Ú=\n£VG¡lv =¬ƒhÏ«}èGôÚ«uí½ë‹ö¡ýEÉè`úÌD‡-ÑÏ¯-Ð‘5¡è˜¬\rßñ¯Z€~Iû…~tA¿+¢ßÀèDB\r:ÉœG\'³ÒÑ)ÍiôGÄôçú¯èO‹<ôg¾úy„þ~Žþ®¼Žþy¢³«¦Ð¹ÕåèÜ[ôïX!ú2@çÉ³èü­—T9Œª€¶RÂŽQ^¯¤.¸÷˜ªÜC]8^H]¬iL]¿Žª©®OÕäGQ—Ð»¨KÖ]¤j…Q—*¥Q—?j¤ê¶ZRWF_£®œv¥TP‰ãÚT\0› ?\n©à‰ET’G&•\\|\nï8I…¯¦Â¹7©Õ**%©–ŠìÛAEò“¨Ô5vTê-{*µÍ’J«±¥ÒÞð¨ôõ5TÆêwT–B7•ŸKÅv…P±#ÆTìç•}‰KeG·S9À(•sn•‹fP¹mnTnÇw*?#*ðÚNb*T<Ý—*V;@¯ö£J`*­Õ¢ÊàEÔU´TªÁ)ªAêoª¡Ë+ª‘üqª‘³Õh(”jœÚB5n]J]£ÓO]sÄ€º.œE5ù{”jºNžj=GÝ¼pˆjÞÿˆºe·:uËDÕÂqÕ¢5—jñS‰ºmërªÕƒƒT«‡bªõ-êöî+ÔáEÔ5ÔžÔ]ù#TÛ†ÍTÛ¶/T»¾eÔÝAª=ñ4uÏÂiêÞûË©ûRR×¶S»>S÷ï\\DuVÒ¤ºm©£ºUÆSÝ-(T÷ü»T÷!-ê‘…Û©/S©ÿŽP=Wÿ¢zž z6K©^FjT¯ã6ÔcÁÔã=Ô€z\"¶šzòKÕ{h\rÕGý\nÕçè7ªÏ±ýTŸ[»¨¾Ü·Tß—ÊTßáýT¿uÿ¨~iO¨þq¥ÔSY4ê©úÛÔÓ=¨göLQB<¨çÒ\"¨ç:nR/ì?@½ÐlA\r6Qƒßq©—Â—Q/+Q©W 0ê•=CÔ«rÎÔ«º*Ôè\nõšç*êµÓqÔkêÔÐ…ýÔÐotjX&5ì›<5ül5B£Œzã•&5*°€\ZUºƒ\Zõ7†z“t˜zs ”\Z-S££K©1ãÎÔXä5Þº\ZŸéBM0ÿGMÔ7¤&:†P“=¨Égr¨)‰5ÔT³~jê=.5õ~<5Í4š~¾š¥ÒFÍÚ®B½Wú”úÀ-‚ú eõáESêÃL	õá\\)5Ç?‚úèjõq¤2õq.úø]:57x-5Ï=’Z0?E-Òt –øzPË\"T¨å§SËÓË©ßS+÷¼ Ö+\\¦6¬Ž¡6rîPó©•Ô&CjSáOêÓü.ê‹’çÔÿ\"©Í±\nÔÿJjË¨9õ•Éeê«½CÔWÝ_©mç7QÛêj¨íë¾PÛSL¨Ø5jÇÕUÔwY|ê»—«©ïþöRß¯l¦v‘–R»6™S?®5¥~üØGíÝXDí;OíoXG4u¦…tR‡\ZS‡º©ÔÏï»¨#_â©£ºG©£ÜýÔ1ûãÔq«Ôo‡¾S\'™7¨“Ý¡Ô©iKê4ÉŸ:#wž:TRgÜ®Sg¼Aêï¶UÔ?*ñÔ?oë¨sEë©s?†©ß þ¤Pÿ¹/¡þ;ò:oãLß?H“;;B“P¦É‡·Ðä›Th\nCkiÒè4Å˜yšÒÑ4%¯o4åC}4åOq4åo\\šJƒ\rMeú8Mµ¦-¼z—¶È\\‘¶(fmÑx\"m±Í6šúÚIšº—¦Þ£@Ó8¡JÓ8³•¦‘HÓ,©£-á½¡-‰~N[’|¦EÜLÓŠÍ£iÏÿ¥é”YÓ–7fÓôLŽÐVêÞ¢ÊÇiÀm\Z}¾[A#M5ÑÈkœhóÅ4D‘HCí QRiÔ¬l\ZÝ ™Fw×¡1L,hŒ–.\ZsÝv\Z3i7µPŸÆò£a÷#hÅ·4ŽË$“ðƒÆÕ}Iã¶ÿ¥ñi¼¢4Þü\Z?øM¼&¼J§	³\ZhøÆ“4ÑÒý4Q?MfA[U”@3TÒ§nw¤­;O3Jž ¥B´5´µÜik·\\¦­7–ÑÖv ­£mD^Ó6²ÆhM¯Ð6îÛL3ƒäifÇ3i›¾ÄÓÌåiæilšy†m‹KmK|6Íbf¹0f9.¤m[©CÛ–³Ÿ¶}IÍfeÍ™¦ÙÜÊ£í¬k£íœüI³]\\D³Óè¥Ù‰Sh»µªi»ƒ\'höËiöv54û\r´=W–Òöú{Òu´ý2i˜\n4§2OšËƒß4×gÆ47VÍ-h1Íý´Í}Ž@;Ò_Oó ¡yÞ©¡yÑhÞ\nh¾«Ñ|.Óü°VšŸS ÍïX1Íÿ•<í”<—vf”àsƒðÈœ$¼N;ww-íÒóg´ËA»hW¦]é§…\\ØJ)úM^IÒ¤…å§ÐÂþEÓÂmßÑÂûe´ŒH‹¬|M»ÑSH»ùýíV¾5-Ú2˜v›ø“ÛþwÆ×ùˆ¥Å¦Ðâ«Ñâ[ci	òþ´„ìJZÂ³tZbó;ÚåÁ´¤œW´¤ÎaZ2º‰–ì”–ÂÔ¢¥<FK[Ð@Ë8oDËÈ;HËÒ’Ð²VÇÐ².? e}±¤Ý=…Óî)Ü£ÝR¡eëKhÙwh§Zi¾ÒqÕhÎÉÓEhÐrýÌhO˜ž´\'åiy\0–?¼ŠVhyŒVUC+|­G+Z£B+j£›@´âCiÅ¡Ÿi¥ÒJZ©µ\'­´FVî«M+OùŸÁG´òÉ7´ŠEZåÚJZÕáVZ5ù/­&2˜Vs Õil Õ­ûDk˜W§5t =54¡=_ó˜öüÇ9Ú‹ÊS´—Úëh/ûßÑZVôÒZ…Ž´Wr®´×VŸh¯ëNÓÚ¼\0Z{êZ\'ÝŒÖ³€Ö9u’ö6ÖŸööŽímÚÚûÉ\"Z×76­ûd,íCk-­wûNZï\'”6€¥Ó>qÚiŸ$—hŸ¢§iŸèÐU¦hƒ_–Ñ†CÒhÃõ¡´Ïêî´ÏÖM´:@ykHg;ÐÆw\rÐ¾¸*Ó¾ú×Ó¾öî¥}Ó¢}÷ÿDûJ MÁWiSé$ÚÚÌ)6ssžö+CDûçIûÃU¤ý)=C›•ÿI›^A›Cƒiã]è\nOnÒ•”Ò•ø¥te=[º\nTCWq§«öBtµŒetµÉ—ôÅ–»èšg\nèKÜ\'éZz|úÒèGôeæþtž]§¿™¾Üê}yÌ	º®þkºù\n]om}@¦¯XÕG_yl}åGô•m9tÀ\'‡Þ¡ÑÁ{™tøM9EG—¤SÍõèÔ€::õû\':}AžEgT=¡3§/ÑYêWé˜M%ëÊ¢³ß$Ó¹a\":÷Þr:oY·ó)7·Î×YGÇ÷‡Ññºûtñ­Fºt‹]v©Š®¿²€nxrÝøÞbºñs”nüñ\0}M¤”¾VÁ¾VRL_û¼œ¾Nã}¦Ý$î\'ÝdÞŽnz÷ }½¼>}}š}ÃÞ•t³Ÿ—èf¿_ÐÍ]mé[†þÒ-¢—Ó·fséÛ–Ñ·õLÑ·qèÛ_;ÓwHlè;v:ÐmèvMºt»iúîùôÝO÷Ñí‹.Ð÷%Ñ,>Ð÷É«Ó÷í¼AßççJwìÊ ;íH¦»ÈÝ »ìv¥<õ„~ðs\rÝS¤»íûLwÇ¿ÒÝ»vÒwEÑOLÐŒo¡=m@÷\\ð‘îõ€B÷zš@?‘J§{ãQtŸSè¾øbºŸw(Ý¯6‡îÿŽM?µÀ–~JæJ?í@°¼M\\„ÐÕ“éÎô@ÿƒôÀ·{èç÷ÿ¦ë9Ò/_S¢‡øï ‡¤bôt}z¸š)=B¤IÒ¬§G%Ðoå¹Ò£¯Ðãj_Ðã†ôéñ|èñ•éô„zâ)wzbÔjzby4=qö-=Ù)žòBO+ë£§}4 gll gÔÕÐ3>$Ò3±¯ô,GcúýöTz¶¾.=»¤gî¢?€-éÖ|£?¼9FÏ]ÚOÏË·¦çýxLÏ›I£ç?]H/ø?Ÿ…ø-z¡Q	½0ÿ8½°J^|2˜^Ü	ÒK87è¥á=ô²¥gèeÆ‰ôŠ¸.z¥¦½Š¾ˆ^UëJ¯þ¾™^Cl¤× ¾ô\Z·Jz­Æ<½v©½VGD¯ÛåJo° Ð›7Ò›Î?¦¿<ëGoîœ ¿‚	ôWÃßé¯3]é¯ß©ÓÛLSémÝlz»‘.½Ý\'ÞB»`1ýã7z×ezOàVzÏ•ûô~Ðûìƒé}á·é}	\nôþí\rô~×jz…9}`óCú§£¹ô¡Ïkè#5%ô/ÚNô/û>Ñ¿jŒÐ¿¯{Oÿ¾¾þ=êý{úÿTjÑ\'4=é“1EôÉÄAúd÷yúÔÅwô5úßíô_Òkì¡ÿÕw¥ÿÝçCÿ‡hÑÿ/§Ïï}LŸwä1äö´2”ü^2”®72”þ,f¨–ìd,|,ÇP;åÄX¬%e¨Ã†õívõßšœ{Œ%ö‘Œ%×=Z#bÆ²mÚŒe‡Ÿ1´-ŒÚ)†Ž‘cù³(†î²d†.ú”±¢´•±rÁ:ÆÊô:kföòD¥9Pw’AÒÑcÀ&‘Jw2ÙòŒ¼hfPG3hî$íŠƒ.w•AOAOSY‡Á<íÉ`/‘18îÞï]Á8™!ø±†‡Í3DnCtß‰!±aH~´0¤þOÒ.†¾—±jÿÆª+šƒíóï«÷O1V§ü?æ¤?bnˆa¥Æ1Œ/?c¬©-e¬­ÿÈ0ýò‡aúëcãV9†W—aæÝÈØ”2ÃØTBdlª\nalšßÍØ¼¥•±ùË>Æ‹1Æ–¿–Ë½ËbÆÖcúkgÆŽ:C†:Ä°*;w¿`ìúºŒa+é`ØŽ0v«-bìÙÉpèå0ö:_gì-¹ÁØ¿5—±ò\nãÀNkÆQo†³0‡á<ÛÃ8¸˜Å8˜cÌ8X¹èBnºnÀ4ãð‰xÆ‘9Œ#é7G×ïax&Sžo;Ç·gßq™qüÁo†·zÃÛ£Šá#\'ÇðÙ\\Ïðõa2ü¬ÙÿøÆ©¢xÆéeqŒ3›rgs\ngÿe\0ÆAŒÀûW_úA.ÕŒsŸç­ÆÞ¹2‚Õ®0‚÷‰ÁçÁ]Œ‹fkÃ$ŒËsKW3®1B;ùŒ°9FxÍ$#‚«ÇˆøÇ¸±ó.ã†Ë7ÆMôã¦ñFôøvÆí˜	FÌÚFüþXF|òOFÂ•|FÂÜ #ñØaF’ñ;Fòì#µˆÄHmÕg¤AƒŒtµ9Fº¬‘ñr’‘™ù›q—îÆ¸›ËfÜ-+dÜ-`Ü»¸q¯,ˆ‘¢Áxðö	ãa¶„‘Ã[ÃÈiŽ`ä®eäÅ,bä¯›aäßÚÄ(Ýc˜3\n3-E£¨r\'£5eA%)£ÄfžQÒò–QÆ;Ä(ûÕÊ(_“Æ(?KfTð¢<F…é=FÅ—fFep£ª9–Q^Æ¨ŽÚÀ¨Y«É¨	b0jž2jÞ\\`Ô.ÝÌhˆˆf4bŒ¦\'îŒg½ºŒfÍ(Fëº\rŒV¯.ÆkñNÆk£Œ¶ãß£=w7££ô(ãí£ÓŒwZW]ÜF×uœÑ­´€Ñ½Ç—ñ¡¼…ñ±õ2£W®›ÑûÀ‘Ñ÷[Àh­c|Ê2>½œe^Vdv¥2† <ÆÐ@,ch(1üÁ‘1Ü“É?Ê5DcÛŒ1/ÆWÊø:ÿœñõƒñMv…ñ­bˆñ}ÇUÆ.dLœS§¦Sù‡?ì2~”³ÓàKÆôƒãŒ™³LÆÏÜoŒŸ­]Œ_Ëú¸:Œ?ÂdÆluc¶3—1ç(dÌ¹§1æÞ§3þºé3þ6‘ÿt0þ¥º1åÞö1å÷é2d#LÅÃR¦Òø#¦r–)Se@ÂTùæÃT­b.Òæ0ý#1üe.þÑÈTßgÎÔXåÇÔÊ%0µ>0—6ª1—É–3µi3uì¯3uâ½™:¿N1—Ç&0õ¨þL=VSï§s…y\rsÅ“ÃÌ•ºóL‚‘=“àTÏ•˜äãLx¦“	ÿÕa\"UùLôÂ:&ÚVÊdÊ`2ÿiü.“Åa2±K=LöÂ…LöÉ¿Lö­…LŽc“ïñ–) f1kß3ñå—™xÂr&^qŸ)JaŠf†™’õ™’ôsLýgæª€@æªò8æª7LƒËû˜¥JLC¦!àË4ôtg\Zé•0Õ¶0)IL“ÓMLÓ%ÃLSÝ‹LÓñ£Ìõþ·™.‡2ÍŽ™07¦37{d3·hÌ2·p_2·œ‚˜[žš0-æ3-oÔ2-ßobZþranó2·ådîØ`Á´IIfîÄ³™;;\\™»Ø;˜»¤FL»¡L»ok˜»71w;Ø2í÷?`ÚJf:0˜©Ç˜o–3÷.³cîÕ]ÉÜ\'\neîó¸ÈÜ43÷÷®eðxÎtj©b:[,d:_HeÌ™_ldºÃtÓ¼Æt_x†éÂtÿ‚0).f\n±gzü›y¨/éa–ÄôH&3=^ÿ`zšžfzY3±Ú™\'öG3}}˜¾g3OÙè2O¼Ì<t”y:œyÆ}šyöÌaæÙŠ^fÀã|f¯‹tc†y~P‹ügŠyé !órÇmæåáÓÌ+™!ùºÌ_bæµÆ0fèÓ0fI“¾*þ,þÁ’qc32o7ó†éaf”b2óVŽó¶Ó36^ƒ›÷û¾„Ws™Àæ1ï$92“†(Ìä×™)•<fjèbfê­fj¼32ÈL³>ÌLÛÉg¦{t03oŸ`fu0ïq÷3³µž1³K™O1y–1E,bæïºÊÌ¿EbæÿÊcD`•¨1‹Ê™Å3‹ç1K4?2K^R™%½5Ì’i1³\\m„Y.Ä™•Ý»™Õëc˜5‡™5¿Š˜µ¤¥ÌZ§%Ìz¿8fƒÆlHÞËlèÉf6Þ0›ˆŸ˜MvÌ§ÍÌçÊ^Ìç}ß™Ïÿ°™/\n˜­Þ ³uì)³}óVfÍ“Ù©Ì|kqˆÙ˜Ïì»§ÀìßÍìŸ=Ìp`<¼ÅÄ÷2‡”G™C6o™ÃVÅÌ‘Ù1æÈ_æ¨JsL•Êü²¬Žù%v”ù•¿šùMÌüPÎü~«Š9Y\01§Ö¨1<ÎœY5Çü• Çüó;—9{N‰9û¬9;þš97–Äü·G•9ß›Àœÿº›¥ mg)<–c)Qÿ°”5XJy&,¥Ž2–²\"KåFKuãaÖÂˆµ°b-*Òb-^ÀZ<îÅRïzËÒ€Y\Zè<K#ð(K³`	kIÙk–v0Kç(ÊÒée-³tÚ±tß¶±Vöo`ûYD\'C0^ÁubX‹\']ÃaQMüY´c1,Úó?,Úç­,Ú÷Í,†÷m³¾ÅØÇb…U±Xþ²Xý­,¬2ŸÅÞ¦Ëâ°8b\r/ï>‹o±øqr,þHKð©’%4ÞÁÂÍ:YxžK´Ë%Q{Â’h-`IDïX’$KzøK&eÉœ4Y²z,ýE–Áò^Öjº-kõçË,£º¬5‡fXkî¬d­[þ†µ®Þ‰eòè4Ë,À2?·eq.‡ey,Œµõh\rk[.Ë*—ÎÚŽþem—y²¶{ö²lŠX6OÖÎtÖnd;Ë*cÙmg9[°œ¼XÎ¿/°\\Ö8±Ž@ú¬£Û‹X^^+Y\'½ï±|µ¬Y~c®,¹^–¿ÝR–Œîÿìc¾b^QcÖÑYã¬À‰&ÖÝG¬wÏ².¼{Ìº$‰b]Šöe]ªna]^²®z¿b]\rNa…äö±®éZ°®Ù	Y¡eº¬°-u¬°7YáŠ¬¨­+ÊÆšu+á+zQ7+z?—}/œu{9™¿.•Ÿð“•¸c5+±¶ˆ•üi)+¸ÇJ›…Xé„=¬ôÜƒ¬Œ(ˆ•ÑÌÊ\\²²Þ)°î.ÿÊº¯ŸÎzà°›•“¶žõ(	a=Î*c=9ù•×”•ŸUÎ*½fÌÜcüÍeÂY…ÅÝ¬Âš¬¢ªBV1é«x=Æ*‰šf•ùîg•/²Êÿ^1s†U)¿‰Uu0øºXU‡Ï±ª/v±jöi°jWø°jc%¬ºkKYõ—¬†ÿóÓtVÕ4ÔÊzÊï`=3Lg=7Sg½p‹`½ð:ÃzñÏŽõ’õ‘Õ\\™Ãje­a½þ=Îz³öëÍŸÖ;Ú=Ö{Î_VÅ‚õáÀê¹ØÁê­ßÉê[·5h=Î\ZºàÅ\ZúÜÊ\Z¹“Í\ZÉd±Fº¦Y£aïYcÂ×¬±û klcww°¾¹¨°&*XSZJ¬©ÊqÖTK\'ë‡škzóÖtöwÖô/œ5ƒžfÍÌ”±~šÀ¬Ÿ	ñ¬Ÿÿ@Ö¯gÑ¬Y‘7kör,kvfýU(cÍ¯eÍÛ³æ£»19ÓLîÏ &o°SðÔÄž?ÇM³1ÅySŽÂT)J˜ª…\0[h—-_Ž-:»[Ô¶S#‡aj\n¦f/ÁÔšý±ÅÊ‰Øâ¸LCÌÂ4ç0ÍdlÉÚl‰ÓlIB¦u¾ÓJZ€-ƒ8˜NW?¶üþ.lùœ1¦ëÑƒ­PîÄVl¨ÅVØù`+óå±•.bD‹J1  æµ1ÒŠŒôv]‹Á ”hŒlÅÅ`žÒÀ{kÉ°Ç¨!%Íù+F»nˆÑ—8bÌ”QŒ9´cmÝ‚±-`œµºÇÖã<·Æ¸A÷òyŒ›qØfb‚¨9L¸ ê~ÆDÏ\Z1ÑH&¹Ö‰I˜´`“í·ÁV-lÁV­üƒpQlu*€îÑÄŒ–i`F:f”è‡½WÇŒ¹s˜±”ƒ¿;€­IÄÖÜSÅÖ´”a&9ç0ÓeNØÿ!l£uföã4fn³\Z3O\ZÃÌïça[aV˜Õ#6f½Þ³ÎÆv^a;¨0¡?¶ó)Û¥ð\rÛmR‰í¶\nÁìÃ0lÇ¶§ê;æpÇÛðÛÛ»	s”\"˜ã*ylçNlÿÀ!ìÀ_UÌé\\æ¬è‚¹p¯b.ƒØAÈsÝü\ZsÇ>cîæ~ý\næ^ö;\ZùóºÕ‚ÛWß…°Ã±“#}˜ÉÌ×óæa;¥Ý…ZkŒÝ¢ƒ=‚ag?Æ‚œaìüÒT,xí2,ø£\'vI9»D»‡]:ä†]î7ÁBÞŸÃÂüæ±ðÕ)ØõÇ—±È;[±{XÝ‹\n¶Ân–a7ËžbÑY±˜î,æëS,V£‹ßò‹wýŽ%\\‰ÆB¶b‰Eÿ3×‹Ý¡ŽbwRcIW+°¤±ÃX\n[Kõ„°4æ/,ío–¾T‚e:7c™õK±ÌE,K¸ËÚpËÚ£‚e¹ˆ±»‹Ã°{²SØýö`³3öà¦3öp	{ØoŽ=æìÅrï*cOŒ³°\'öQX~¶+ aMæX!ìƒ•8c%\nXé½Z¬¬¤«hÀª¦´°š\r&XÍ…z¬Vb‚ÕecõK`\rç5±†B¬áÖð·kTÌÃšb$ØSiöì5{ÞÜ…5Ûa­„ßX+«kí¯ÂÚˆ¬Í¥k;Z€µ5Øz.Ö¡Ü„½¬°·oÃ°w¹Û±÷ò±÷&ãX×’³XÙëfM`¢c=•eØGµ×X¯•\ZÖ¿ÑëwB±þcêØ§6wlØHAæ°ýÏØ˜àö•²ûvÉû.ïˆ}_9Ž}?¯†}ŸzM¶ObÓ6íw›Î¿‹ÍD^Åf¢—b3ã†ØÏ¬ì×\"ì×ë\'Øz4ö§þ5öwÑMìoÆ%ìï´öÏ3ûª‰ý+×aËmµg+g/ÐÛÊ^èÉ^p~€­Èqc+ÚÍ±=·³•ÆcØÊöélå+wÙªZïØª«EìEê®l59”½ØÆ‰­àÅÖØÈÖø»Ÿ­é°µ -l­Ñ\n¶ö²=lm7y¶¶w[û½¼Ï†­ký­;²Œ­Ç:ÇÖ+ReëÕ%±W\\CÙ+òKØ+^]efž±[6‰aÆ&¥m`“…ßØä-OØ”ó8q|ÀFâþ·Ï?³‘ïþlÔô›ê¢Ê¦y¸±iCûÙôêl¦N2›Ù¾ˆÍ*ËbcïªØì|M6¯ÞÍë©bš+Ù8úß¼Ê½©e‹]Ž±Å†ÙÒ%ëÙÒ¤lv-k±gË‹Ùú¾_Ùú©\rlýæöªç\0ÛhÇ$Ûhp9Ûøb{ÝiŒmr\nc›ª¦°MÃŸ²ÍHd¶æÁÞd1ÀÞ4Ëfo69À¶pa[n»Å¶‚£ØVNl+#¶µ¹ˆmýKÈÞ~½‡½£ÙŸmšÆ¶é^Ä¶-wcÛ™±íUì=hÛÁÏ…½Wn-{_h{„:{ÿ—1öØãìb¶ÓZU¶³ÂZ¶³›„í2º„íò/š}H}ûHU+Ûcl˜}´y€}Lo–}\\í&û¸Ø–}b½ûDvûDwûäº2¶·ãr¶/S‡í[TÈö·ÔcŸâ.fŸ¾ö˜}fþ$ûì²Kì³÷ÚØ·þ²/<Ša\'³/“6°¯8}d_©ÄØW½w°Cø?Ù!¯dì0¸™¥ÈŽ»ÂŽìPgßfßš5cß6Ógß¾ ÃŽÁgØ1žqì˜Ä7ìØ#Øq§W°ã†o³fBØI/åÙÉ\rÃì4+vºùv–ëoöÝÕBöÝ·vì{ˆûÞŽ-ì{Ñìûj÷Ù÷÷4³ï²³•KÙujØ(UìGv$öcƒ)öãÊì\'Âì¢\'Eìbù9vq]ÜÏ.žÙÂ.y­À.}PÍ®44`WÑýØUÅìjTÌ®«ZÈ®AÙõ›V°ãìg÷Ù/$ö÷£ìL‹ÝŠ\\b¿\n#°Ûäÿ±ÛôæØmè»Ìn3Žb·g±ÛZgÙ7—²;ÿ×Ê[2ö;Å:öÕGìÛØ=+’Ù=Þ!ì1ÛØ½‹Ýû}úÊ[Øýž†ìþ`	û“á[öð;öÈÑ«ìÑòbö;‹=Vq…ýmµ-û[µ*{²<–ýTcÿúÐÂþQÁþ³b	ûÏ\\,{.p{îf{®ú5û¯®7ûŸð0{ÞB•#gþ•#w™Ç‘wå(0®pÜžs¼.à(¢p”¾÷r”WÍsT|!ŽªËÿx<à¨FsTsÊ8ªß¼8Ïp	sÔÆ8ê×ws4.làhÄmæhÄ¿æh\"!œ%º-PÎ²®íä\0ŽÎ’ ŽÎ!ÎŠ½œ™—8+ÊÝ9+Û£8+ß28ÄŒžç€!Û9$¥Mh1ÂÞzpÈd*‡ÌáÀ9™ÆAFç9è6‡º)‚C½>Á¡;Éqº{9LÒy3ø‡ù€ÂaíYÀÁ§9ì[\nîôn/©’ÃŸà¨¾Að0WUààKk8øfŽ8²™#3SæÈ6§sd>‹9«^Ÿà¬þ°•c4qŒo°9ÆÓZœ5ÄuœuÔ¥Ó}:œ€-gãzsÎF7ŽÙ`(ÇìKgS€³­ÀŠ³c«\'g‡ÍmŽ\rVÅ±‰áìÊ<Ï±ÓÎ±óôäØ]¿Ê±§\'rö6söM>àìg|æPÎåÈyÆq9ÛÄqÕ”rÜjÒ8‡ÍVs<’VqŽn~ÁñâUp¼\ZsŽIhœãW_rN:åx·{p|:ô8¾VtŽÿÁVŽØYÎ)I9çô¡3œÓóœ³¢PÎYwçìíNà†vÎ¹0ç’ŸséàÎ¥Ö&ÎÕóÕœÐôtNè(›®qÂË>q®+\0œˆ3Ndë%Î\rê)Î\ráÎ‚­œ¨<œs«°m™Ã¹\r¯äÄ*[qbo|áÄ»îâ$h¦q’pÚWr>žå$>YÈIÚoÆIšVç¤ÈŸá¤„×sRnDqÒ—&q2G9YYœ»Özœ{oä8÷&J8÷å$œû†9œûƒiœì#œÞQœœJ#Î£‰§œ\\¯vNnéSÎ“W_9y§~qò^Np\n´+9EF9Å”\'œâ£Û8%ÃcœR­NéúhNyøSNÅ©N¥±5§ŠlÆ©I¾Å©}±Sûã§~ùnN½§qœÈi’´qšº×qš&pžz¤qž)lç<[Èyæ©Ìy–ù˜ó¬Bób¯óòg§¥Ð‘ó*Ã€óªý§-æ¼á†pÞ¬‡8opÚ\'ë8Å/8S79o·¿â¼ãI9ïÖ÷pÞoŒåôìºÌé}:ÃéƒÕ9}ôËœþ…nœþeÏ8ýä5œˆ&Î@‘7çÓþœOew9Ÿšõ8ƒ^1œ!¿œaÕ	Î0k€3Ì?Ì•ÛÈ+³àŒ}‚8ãÆ\'8_Þã|õªá|ÛÂ™Ô$r&Ï7r&£9“O²8?VàœiÒ2ÎôÚ4Îô1ÎTÈ™åü)¨äüyz‘«˜‘ÇUü—ËUºgÍUúp†«Làª>lä.Òšåª›½áªgÞåj*|å.éåjorµï8su\Z¿q—ïÍåêêésué®\\Ýæ»\\½ôTî\n{îJ{.aÛn.áãK.ñu à†l./Çw°¹ g¬—ã’Úq!yw.”Ä%_yÍ¥¨üæR’‡¸¨Ñ..3SËR°å²Wjq¹õC\\^m—ŸæËx?ç\n\r¶s…¯Vsqã»\\¼\ZçJp%®Lq†«¿«„«ók0Å]íq»:£»ºz‚»zP…kˆÀ\\Ãý\\ã¼§Üµ£u\\Óg–ÜõÛ·s×ç<ânðæš‘ßp7»×q7Ç\ZrÍ¯r·är¸–T¹Ûv\n¹Vÿûµù\Zß¸»ûörí?xr÷¬˜âîyãÅuÈä:üpå:Ìs÷®zÇÝ›ÁÝÇrÃ¸ŽOz¸ÎómÜƒ–Üƒu—¸®•×¸nŸ/pÝ·¸‡Jz¹‡C“¹‡#Ø\\O§s\\ÏŠN®—Ÿ	÷)ƒ{lÓ^î±¶4îÉÎŸ\\¿L®ŸÞvî)6÷Œ|÷L„9÷¬ÙSîÙÝ¦Ü€Ú?ÜóczÜó“÷‚ûGn°Îî%Mî¥†î•x]î•)6÷ªu÷Z(›{­Û„*È\r=ÒÊ\r-mã†ÜÀ\r{·{§q#u¸}ªÜˆ!=nÄo.7ÒÏŽycŠ{ãï$7jÏKî­2÷Vµˆmuž{[yœ{;÷(7öÊunlÌ?nüIWn©œ›po	7¡ü\07qW7q>€{G˜›‘ÌMÊÌä&e½á¦ÛÀM\'+qÓ›¹H7£æ\Z7k	ÄÍŠËçÞ5YÁ½kÑÉ½ë/æÞ­åpï/½Î½/<ÊÍNÄ}@Òá>\\q^ØÃ}˜ø‡ûè2•ûø››[ý†ûdÙ\0÷Éˆ7Ì-ðçNÜ¢Ò\"nQó\"n1jÊ-qrá–YsËðýÜ²Õ~Ü²Ý®Ü\nCSnå®½ÜÊ\'ÆÜÊSÜªÞÜê…òÜš×ÚÜZ¡\Z·nv·Þ©–ÛpÞšÛø¤žÛ”\'à>½¨Ç}¶Å›û<æ3÷y+‡ûB÷;÷Å=÷%ºƒûòH1·5)ŸÛf3Êm??Êí0ÍâvÜJávL[r»äÔ¹]·Öp?‚AÜwr{O¤q{¯+r{ãEÜÞ¾ÛÜ>ø.·Í9nt·¿¸ƒ;ðlw`ÊšûIu÷“k6wàIæ/îä{Ûp‡kš¹Ÿ/ØsG¦rG~ŸáŽÖ]à~Qcp¿ÜNç~ùÁýÖWÇèþÈýÌsdTrq§‡l¹3¢bîÌx?÷§åþ&s~=Îý¥úžûËä2÷·ñzîŸŒ!îŸOÖÜ9Êyîüí>žü¶Nžüû2ž‚YOá¡oÁ¼2O1>†§ØÓÀS’næ)[½å-¬á-Š2â©©+ó/XÆSPÆSÿ~§éÅ[²¼•§mu„§ãáÉ[žWÆÓe¾çéUÖòV>iæ–ò €\nx„Ù<Èg-|\ZãÁ§xˆÂ+º³–ÇP™æq’Uyœ´z—•Ç·kâ	·«ó„³í<ÉëžŒÈ“‰ód¯vòVŸ\\È[ý¸ˆg¨ñðŒ\"*xFã;xÆ6ŸyÆGªxk	ª¼uÙÏÔù!o}f\noÃö}¼\r/Bxñ¼[¯ó6îKãY¬ØÍ³t2âYV{ó,?<çm}Dämã¦ð¶oâYEÅñ¶3ßòl¢+y;/*ðv^~ÏÛe|‚·ËV·ë¦3ÏÎò1Ï®ô$Ï¡õ>oïã¼}q¼}JxŽN\Z<§k,žÓO]ÞAÙNÞÁygž+o„çæö„çÎ}Å;ò©žwT=œwtb\'Ï+ûïÄúdÞÉU}¼“•î¼“s<ïÂyž¯þ]ž_vÏý\0ï4äÊ;³Ñ‘ph/ b/(Ð‹TàÄ;—õŒwþû}Þ…öL^pÊ5ÞÅeOx½\\y—_à]Cx—\rœxWØ«xWsyWƒ³xWïñ®¾4ä…¬YÁ»WÅõâ…ÙñÂ¼2yá^ž¼ëÁÇy×ï\\áÝ8vµ#”u\"ŒMyÁ»žåÅìzÈ‹yéÄ‹}(æÅÓÂxñNé¼ø¼„Ïy‰¾Þôƒ¼$“N^ò/¼ä¾‡¼Ç½¼Œdo^Æ\\/3x/3ö/k‹	/«$w÷Ì!Þ½Ô‡¼û¡©¼ìoÁ¼ìéÅ¼‡jyâx¹Ûjy¹Mµ¼¼÷i¼|›¼ÂûyEwTyÅ¢S¼â\\”W’1Ë+Í}Í+sðæ•Åüà•ÍòÊKnó*¬žò*2³y•jt^¥Á?^t‘WÕÑÆ«¯óêÖ>åÕ…¶óêI[xõ&^½s8¯ÚÈk¸ú÷´µŠ×¼o¯%z÷\ZÆx¯´òºlry]\r¼®‹ßy]Ù>¼îmd^÷åÝ¼mÞ‡Æ=¼/ÎñzLy}¬`^ßš#¼¾©¼¾ñ¼~¥£¼Oª£¼OÇxŸÎ½â\rž–òŸà\r“xCµÇyÃÄBÞ0bÇvÉá\r‡êñ>¯äñ>¿ùÎûz—ÁûV2Ãû~”Ï›Xó&Ž½åMÜXÏ›¤b¼)ó»¼ßŸ¶ðþ|ŒåÍ2Óx³‰N¼95UÞßQKÞ¿?é¼ù1o~b-o~ÞŠ/ïLåË_\0ù\n:ù\nåùJzb¾RÎ¾\nPÌW1²à«DæóUzÈ|ÕŠü…Çüø‹Çø‹¸ò|5ñj¾Úº2¾š…¯V=ÄWë2åkðÌø\Z•>|._s§&_³c7Áˆ¿,á\'_W§ƒ¯Zóõ®:ðWöó‰,3>qû>1µ•d-ç“ì.ó¡“–|XÝˆO¹öÿâ£„A>JûÊ§.$ó©`\rŸæ®Æ§]¬à3\"I|Æ“x>s¥\nŸ•~œÏê~Ìgÿ~Æçüöäs«’ø¼+d>/Õ„/H÷âãËëø¸%{ìæ‹lšùâ³Ö|	=Ž/5kàK÷Åð¥^š|ýþ§üUAy|ƒm#|ƒ÷æ|ƒ‰?|ƒ_ƒ|ãÚUü56Vü5®Õüµ«–ó×©Lñ×­tä›˜Ìð×§Õð7¨?ã›=îâ›•ˆùfu\"¾Y}-Ó›F¾ùacþ–s/ø’;|ƒõümr*üm¾·øVËÙ|ë3ëùÖÙ“üíGBø;#=ø»l™ü]³‰|[~ßöÊ0ß6<—¿;ï ÷—Ë|ûI>ßþ×C¾C¿–*ˆ€ï´a\rßi[ßåÐ*þÁså|7®ßÍú6ß}Wßý÷Qþ‘:*ßc‡ß£ „ô…ßóˆ<ß«°ŽlG\"ÿø­4þñTyþ‰uþÉçs|ŸXu¾OÂU¾ßV%¾¿ÔŽï¿Óšïpÿ”r/ÿ”S\rÿô›Mü@×Kü Èþ¹Àüó}±üÐ~cþuç?üE\Z?b<…IÜÇÌ?ÉZÍàGÍióoú*óoußãG?äÇ_À™ýÃû¸’ïõ‹Ÿ°ô0?ÁY‹ŸóïD~â\'qƒøIFùi—NóÓ—›ð3¯©ñï¾ZÊ¿w®†ºÀÏfÜâ?œ¼ÈäÈ<¾”Ÿ÷EžŸos’Ÿt‚Ÿf¿P;•_ø±‚_¤VÊ/š±â/\râ?ZÍ/õä—¾‰äWXîçW¸ˆø©‰üŠ&S~Å·B~åž~¥¿-¿Ê\ZâW‡ókVà×±Zùõ&~}½„ßðÿû£ÇøÏ[oó›·ñ›»2ø-»Õù-3¥ü×CMü7Ûnò;Ô;øûóß:—ñß~âwÿò?È)ó?è¾ä¬Wäl™ãì¬à÷Nßâ÷Eóû×}ãhà†ò‡Ø-ü¡ŸGùÃQþg1þ‹Äá¤ñGfóÇRÙü±fþ—­‰ü/5#ü/“¯ù_W:ó¿¸ü¯œçü¯qøßønüoŽòüo¾¹üos+øßØñ\'îð\'oñÀuü^Nü™ÔküŸÌ\nþÏù?\'ÖòµŒòÛáÿÑúÍÿSçÇŸuBøs—æøs«ù¶òÿ‰ÂÒqÂP°@a¶^°à_ X#(~¾(Pa¿¨XèT³ª9wþ^ó,:c)PÓð¨yÓ\ZCGš¤{‚%®Z;ËË¬hÏž,ÿ·@ {.G ›Õ.Ðë—	V0Á\nÛ¿âq¶\0ØøV\0œ|* ­½* õ¸	Ècogåb±\0ùb/@Xô”¥€:uL@[ðA@Kž06	˜\r÷,¢\0³]/ÀnÆØRûîs\'j\\À[Ið|#|³dàøf ¬G xg.¶¡Ñ“\0¸{F ÉH~/¬\"Ñ«.ÅVŸù%0´|(06ÀkïªÖÞ÷¬K,˜¬¯˜ì˜’pé:oé–3‚\r¤`Á†ƒr‚\r¿O6>:\'03ÿ\"0û™&Øt5A`ÞúG`á\n¶>X)ØÖ”!°²X¿%°~ø?7Ûgt6¶I›Ë¦‚]¯[ÚwíVS]ò€À®ËS°Ç^S°çn’`ïâ}‚½:ûÓ,~WœÎ;	œ5\nœ/o¸n\nJõ®Ò‡×7m7ñ„Àý„†À=/BpX1Ypø‡XpÄÖBpä¬žàèþõ‚£eÚ¯Eq/¯ƒ/_¦àXQŽàx‹²à„ÙVÁÉ‘À;ð¨À\'ôºÀçº®À\'¦Ià›KøŽoøÑlþÛÂ§hÇý‚sºGçåë4äÁ•³‚‹ðiÁer–àraœàŠÏ  Ä\"Opm¤IÊ> ¸®¼Tp]\"ˆÐêDÜÿŸR}Aä±U‚ˆ¥àæ³BÁ-“`Aô¾LAt{°àv?]c‚7HsÆL§Ô\"H8E$l$fë	’äe‚$ç$ARÀ  ¹?U¢z[2öHZ¥!HëÒþd.\rdrh‚ûˆ@}ÎLóL,È™Öäú\r\nž<Ú-x21!È»z]×ò}f‚<AÑ¹AÑ%® èE” Ä&YPúó˜ t6LPÖ		ÊQ;Ayƒ· òÁFAe9]PùÙCPÕ’ ¨qÔÔ¦XêGB\r’PAÃ¶/‚Æ\'!‚&Ë:Áó…ú‚ç·×\nž9.xñ°NÐ*IÐš:\"xõ*xý Mð†÷GÐ¾p‘ ½¥SÐáá è~\'èìý.xg<+xwQ[ðîÎà]÷ˆàýMÁû/‚®¤A7\'RÐmp[ðá¨‡ \'Ò@ÐsÏNðÑþ»àã€‡ 7EYÐwôÃ §…àÓ‰\\Á§´>Áàm?Áð£‚áÄs‚‘}g#yy‚Ñ•)‚qØ@ðÅ^A0Á?&˜¸7\'˜øØ)˜´œL~„Sn‚ß~L	¦›?wütIü.èüž¦fM¯	f¯ÌÖi	æŽª\nþ*Ó›‚Ð%Áü\'‚ùX(çvG(—n ”{pP(—÷^(ï/T°•i\nœî.¸—!\\ð•-Tµ”.ºü\\¨–}_¸Øð¬Pý}µPsñ¡Q(Ô² µìç„ZÂ¥ö¯„Ë~µÆ„Úi€P;ÝM¨¦$Ô=tB¨›L¨÷x¡@ë\Z?\n‰úuB	I7	É††BxK¶¾b$¤ä5é!µ“\'¤UŽ	{\\„¬ÎÓBla¤­(äèÁBõŠÃNr+ï\nENšBiE(sx$ÔM\Zèð„«ƒw	\rç›„FDU¡ÏXhdó^hìg\'\\+‡	×Ž–M2ö×z+\\8 \\7.ÜðŽ*ÜóN¸ñ§‚p“nÐü’¡Ð<ÌRhÞì/´¨VZô®ZN<nµY(Üú¶E¸mÂNh½´Rh}\'B¸]ë–p‡Q¢ÐFí–ÐfU±p—E¬ÐÖù»p·Ú]¡½n…Ð>eÐ¾ô·ÐþÏEá^x³ð@òÐùÈ5¡Ë–F¡KKµÐh&tï²ß\"<l¿Hx8ÄYxøíoá‘µòB@¡‡ÅO¡ÇsE¡çÃµÂcVyÂc{´…\'>õ	OZmzG}úký?M	Ïhf	ÏÔ¯†\n„AgJ„A%#Âs–[…ÁòK„ÁG„Â‹K„—®E	/¿ì^1Û\"¼’;-¼Ò ¼2ý[xµÜBxí½Tzh©0,S$û+¼?#Œ„î	o,[\'¼A} ¼ùÈSý;H3]\'Œ•æcØ	5žm	Â;ï…IiÂdß½Â”&P˜VvS˜ö6O˜.ç\"L×ß\'LŸf`Â×áý¯…÷ƒ^³÷ç	³o&	l[.|\">´>¼›$|Ø°]˜³Ý_øèa0O¨(Ì;Š	ó7\\æ_¿#ÌŸÌšÔGž‹‹¯{	ËóÆ„•¢Qaeù5aÕÿÚ®^—+¬…Õ…û…56Ï…\r¦ÂÆ÷Ë„#aÂ§€•ðÙá.áóåñÂ–¡Â–û„­=ÂW…!Â×´{Â7A«…ífÂöP]açªïÂwk´„ï	»4“„]m©Â®ÎJaw†·°gëAaÏn}aŸÿUa_ç.áPÌrá°ÿváð©qáðÍÂá¤oÂÏ‹\n?oò~;±Xø-ß@8e\n§÷Î(\ZjÞþ\\)üuó”pÖŒ\'œ;> œK¥ç*\nÿžÉþóŸÎŸ®ÎW¤àrÚ{p\ZW0½‚+œ=Œ+¼~ˆ«üVÇU§6áª?ªñ…è|Ñýµ¸Úýo¸ÚK#\\­EW\'©â\Zò]¸Æ|i(¾tr\Z×a[á:µør¾®KœÇuËázKúp½ÐÝø\næ8¾R²_¹‰¯¬]€ã„„‡8é¢\ru\\Æa~#Ž¨ÆÑ¥\"œ\ZMÃ©¯~ã´.8­]§G×ââÎ&áŒççqÖeCœßŠcÿ\\pÎJœ;ÖóÎ´ã¼šÍ8ÛnœŸ‚½qA{<.øgŒãQ«qÑß¸˜éŠ‹÷]ÆÅçGq)U—Þ×Áeä\\&øŒËÌ÷â²ŸøªÅðÕq#ÕC¸Ã7:dˆËöâkLÞàkÜ¦ð5SÊøÚ¶7øÚq7‘zã¦ö-¸éÈS|=è‹o°	Å7®Á7º;àŽàfÛ-p³ƒDÜ,l¾)Â7Û§âæ:Å¸EYn1ÏÂ-Í›qK¾Í)ßV²·Z)Å­v	qk*€o?ËÇmò¸Mßéý	ß•ƒïjwÇwÃmcËpÛ\"\'|÷ûøåÕøž•‰ør/¾Ç|ß°wˆÏÇFà{5•ð½z»ñ}Ô½¸ãÅ\'¸cõ|ÿà_ü€²3î´ïîäVˆ;]ãà.«\rñƒÛpWBîöh!îÖî…Ú°?üØ?üïî!Ú‰{¼û‚{Þ}„{V¶ážÿNà^”püøK\rüÄÿu<@Æ½	¸ï-GÜ®Žû™À¸¿u9~êÑWü,Å?Û#Ä–‰ð\0x?6í\\€Ý\ZÅƒ†ãçä^ãçÈñsv~ÞH?ï=Œ_0\'âjÿáÁp:~1Ç/5Æ/ÊðËÏñ«™Oð«ÏôðÝ»xÈxÈtŽªàá²§øõ\"ñÿXqÞx˜ˆGÞ~‡ßˆ9€GiÁ£Þ¾ÀoåDáÑºæx|Î?<ÑtO*>‡\'Ë«â)à?<å‡žÊÙ§¾¬ÅÓ\\ãYþùøÝÀ.üžà-~Oÿ~|‚?T—Ãs‚¼ðœz	žh‹?Ùƒâù;ŸâùyðÂ3Gð¢-xQV^ô2/úmˆc?ñ’Oñ’?¼´0/­>—Näàåxå)\n^½D¯©6Äkíºñº£xƒñ¼‘îˆ7íÕÇŸÞ;?ÏÇŸ\0x³Ÿ5Þáˆ7ÿÚŠ·Üû¿â§â¯ÄqøkîiüµXo·Z€·WnÀÛGnà›	xçò|ü­_þ6Ï;t—ÇÂ»L²ñ®¡z¼ëûU¼[»ÿð°ÿxlèÃûFVàýãýõ¹ø€Å>èØ]À‡;®àŸ‡Uð‘e©øÈÏ)|ÍÅG­öá_VRñ¯Ž\rø×“;ñï—>á“¬ÝøTÑþÃ\'Ÿ¦xáÓÅ­øô\Z>óë >ó§ÿm¶\0ÿ½=ÿííÏ”àskÎãÿî·Šä˜ÛEòN‘ü{@´àÉ‘b(Rõ®©6¥‰\"KEOuŠ^f‹™øŠÍm-6\niœ‰-y³Z´dJ ÒâY‰´ŽÜiÝ½\'Zª4.Z\ZüA´ô¡T´l•¡hYn‘hY©L¤Cø Ò	±-ß[)ÒuòéíÊéi‰Vp£E+|­dÞ­¬Y#\"<; \":Ï‰@ª™Ü¡!‚&1Ùû˜®TQª9®(BúÊDèT¨ˆ–K1*þŠ˜çDØýÃ\"Î•1g _ÄUPqc\"î‹\"oq´ˆÇ¬ñ2—ˆxzD|=–ˆ=òÿÁó¦H°²U$ ,	ªCD‚Þß\"ü‰H4ê ’uu‹ôëÚEÚM\"ƒq-‘áöý\"Ã=™\"ÃÎ‹¢5;ö‰Ö„»ˆÖ¡¦\"ÉœÈäx«È¤á¡h½¦§hý1™h}È/Ñú¯¥¢\r\\\rÑ†uƒ¢\rGEÊn‹6vN‹6þ^(2#Ö‰Ìv|m2	mº Ú²ªG´%¨_d¡j(²X¤\"²¿%Ú\n¨‰¶ÞX-Ú¶·]dåðUd½ÃO´½‰.Úµ¢Jd»ØUd\'§\"ÚR\"Ú³›(r8Ñ-rHIíÕ\\+ÚG[\'Ú·û›h_ñ1Ñ¾–õ¢ýÝ)¢%\"§g«D®žŠ<´‚DÞkDE èØ³\r¢[Ù¢e¹¢“”jÑI;WÑÉ¸w¢“\rA\"o9+‘wÄs‘ÿSeÑi¥Ñé–hÑée¢3Û1QÀ›iÑ9þœ(XíŸ(Øö…(ØS(\n\rßûŸÊÑ¥Sá¢Ëýª¢kÝ.¢PÓ^QXò}Qø<Qø¸¾èú:kÑõ¶JÑõËD‘…#¢x€èÆîÇ¢›÷óE·níÝ¦ËD1ìjQÌ¦nQLæ5QœçQ\\P¡(Qõ·èŽ©—(‰!Jâ:ˆ’+™¢”ÎQ*ÿª(5ßK”–¤$J‡´D™{ûE™7D™iE™U4Q–‹¡è®ñkÑ½…gE÷|•E÷þEˆ²Ç,D´·‹4n=ô+å(¿å\\ûß&‚¢œ>%Ñ£ïEä	QÑšLQQÅQÑügQ±ýsQ±ëQqXº¨dÁQ‰’§¨Ôë±¨Œ®**¯o•wNŠ*G.‹ª®ÿU×è‰jd?DjlQ?NÔ”Â=Í0=Û/=«ñ=Ï–‰šù‹Z<E¯Žº‹ÚÚbDíÿÙÛ36Š:‚è¢ŽÁFÑ;Þ”è]_¶èÝ7Ž¨ë,_ÔÝ²CÔûÌ[ÔGÉ\r¾ù \Zž\r}Öw}þúU4b*\ZÕŠ¼–:‰ÆBÃDckD_øÇE_¶¦‰¾šªŠ¾ÝŠ¦Ì»E?¶ŠEÓZdÑLêÑO¾‰èwb‘èOÇÑ¬Š©h¶ç¬höÛ\ZÑé´è¯ç±œaˆXÎ7Y,3\'^p¿C¬Hý$Vô;(V‚Å‹öóÄ‹Úˆ“,Å‹³4Ä‹+8bõŸ/Å\ZLw±FbˆXóè.±–ÎJñRÓ2ñÒañ²%Abm$Ö±X!ÖÙú^¬ûJ$Ö³þ+^‘­%&¸öŠ‰û£Äà‡…bèŸÐä\r1,¬ÃµbxØMLq®SŽÿ£Õ41µr¯˜æÓ!fP11CŸ.fÜgˆ™»#ÄÌþ41«Ð[Œ­Ù.Æ2|ÄlÑ!1{xDÌÙpNÌ[Ló Ž˜wEÌïˆïZÄÂg÷ÅÂæ1n *Æ×‹N®K2ËÅ’ò?b)rF,›Ú$Ö\'ìë‹íÅÇcÅ7]ÄŸôÅ«]TÄ†[ÖŠ\r“‰\rœÍ•‰…\'Äk«*Äë® b“{¡b“’åb“Æx±I—­xýÐVñåñ†ãÄÆ.‹Í\Z¨b³v9±Ù§±ùÂ(±yœ¹ØâØ±Åko±%;Ll)m[þ2[éü[7ÉÄÛ;Î‰wŒPÅ;·®ï|ÿV¼kí¸ØVÑNlçõG¼ÛJSl¿•(ÞsÕVì@t;Xˆ\\›Äûø‰÷Û\\X‰à;ÄNÕÇÄÎzÙb?uñÁ\\ŽØUG vC]Ån§Ä‡¤ûÅ‡íkÄGöú‰=Þ{=š_qH|\"VO|Òôšød~¦Ø{w¤Ø»û0(bŸ{›Å¾ñiâS”Bñ©f?ñ©©­âÓÄ§¯ÜŸÏx&¾°”&¾ Ë_€RÄ\niâ`~°øÊãFñÕVqÛZòãŽ8”¶Efª/û?7ª[Äìpq×Hy+T|Cë8êÞñÍ¬kâè[WÄÑYÅ±¿çÄq–;ÄñÖŸÅñAÎâø=âøhq|í%qZ,N°Ø/NHÞ/N¤k‹=JÄ‰â;\n=â;÷­ÄIçûÄIwŽŠ“\Z2ÄÉÕ¹âÔh‰8­ \\œNŽ§_*gTEŠ3|gYÌŠïÊ3ÅwW|ß5ý,¾_BgçÍˆ¨ŠÈèâ‡Q=âÆañc?Xœ›ª)Î}òGü„Šˆó8/ÅyÎ+ÅùNËÅ…Ò\nqa®ƒ¸p@Q\\4ñV\\<A\\²âˆ¸Lã¹¸üñuqy«Ÿ¸\"5X\\Ù²C\\¥øP\\åQ\\{k½¸Ay—øé÷qñ3¹]âgÂsâgïpñóÔ\ZñK%%ñK ÷\nÅ/Íˆ›ßˆ›»Ÿˆ[8â–ä÷â×ìÇâ×¯çÄmoÔÅm}>â7{TÄíãþâŽÝdqÇÿµè\\´FüNi¸ko•¸k8_üa¹†øÃ^ŽøÃ‰qOašøcÌ¨øcv´¸—²H<pÁ[<tö¸x¨ÖE<Ôã&þlõD<úRK<6¦\'‡MÄ§«Ä“fÝâ\n-âëêÄ?óÄ3\Z±â™žrñÌØ1ñÏ\"™øg‹‰øW^‚øÏ©ƒâ?ÿ\nÄ³¡¿Ås5â¿«¶‰ÿ]hÏSˆçw:KäÚKÈOHØØJq²Déº¶Dé‘ªDùË‰ªÆF‰ê\n‘DuÓgÉÂ\rC5_êÿ¸JÔòl%‹õ“$êg[$ê‰;$êowJ4B3%šý’%K%ZNY­¬cmõ‰ö^7‰öØÉòÓ]ák‰®8F¢ûK_BØ.!:êKˆs]hù=	¹ÈE«ÔH`-DÓ»%ÔÝ5êžÅºÕq	}w„a±CÂº¶X‚qÿJ8k$ÜÍ—$Ü=ÆÞœP\"Þä+‘ªxI¤›I’UZ%h‰Äàä˜Äpw‹ÄèÕw‰1q½Ä¸™)Y#ë¬iO’˜4Þ’˜nš—˜\r˜¾]&YOÜ&YßƒI6Ž\'J6]L”l†®KÌÅk%–ûf%ÛÎXH¬t—I¬\rkGL²ýþuÉ“’7+$6ì›o$»Öî’ìêø%±Õž–Øžè”Øž.‘ØÅJìŽ5Kv+zHìO=•Ø×œ”ì1û\'qo”8¨\\•ìsñ”È>!qúD’8[ÕJ\\N$—J6OJöý¸NIÜíò%‡Œ¬%‡7hK·ÍH<äç$±|ÉQù‰çµ/KrBÞPrÒ¨Kròµ©Ä[Ñ_âå ñ	”ø2Š$¾ÓÉg¾Ä6^rJù™äÔË)Éi…¿’ÓO§$g” É™Û‡%g>Š%g+$Î$	’s´’s›¾IÎÙIÎÝì”œ+âIÎ«=–œï\\(	¾Ó/	.],	®%H.ÒÿH®°¿J®ŠßIBä3$a\ZÉ’°êDI¸ùIø±äº¥$âÔ°$âq—$’\Z-‰”\rJ¢›$7e’›.Ñ’›ÿ¦%1Z$IÌ:KIÌè2IÜ¡’¸´`I<Ø)¹s V’ÌU’¤ÔëKÒ 	Išû¸$]çˆ$+3Q’õ$Hr¯*MòPï¸äá¬š$Çëœä‘jžä±F–äqE’k²\\’}S’› Ô×H\nšó$…¾æ’Â«Ñ’ÂxSIaÒ¬¤Èñ·¤h¸RRÂ{,)I%¥©Þ’² 1I¹ÜCIEx¶¤2ç¤¤²÷ ¤JÏARm˜%©³”Ô.—“4¬\"J\Z\\+$\rãª’F$HÒ8yRÒtöœ¤)ÿ´äi¶Pò¼—¼(ó‘¼|9#i^\'iQß%i)ø*i}KÒv3BòfåI{ž¾¤£ú¨ä­ì¹ä½‹·ä}ùCÉû)CI×Ë|É‡E)’m’¼DÒ#Ù*éÙÛ/éé{#é½¬/éí×–ð.JD_%ûH>ùÔK>u&J†VæJ†7\\’[NH>J’ŒšyJÆ$c…‰’ñã’ïëÊ%ßÏ×I¾_0—LhÞ”LÐÕ$“¢ÉdØnÉä­HÉÔ?%ÉO]ÉÏPLòë¯’ä÷APòÛÇ\\ò§óªäï¦@Éß’.Éß©/’ùƒƒR9ÈT*¿­HªtRºp³•ta°DºHiNºQ—.:°]ª¦ùCªfÓ ]ü}—TÃ}Dªie#]¢øAº„ƒHµH‡¥Z‡ÏIµnIµ^ÛKµþ\\–jÍuI—v†Kµs¥ÚŸiR|ŠTçe³T§Ÿ$]~ò TW’®tü,%8}F´¥Äó¥ÄÎËRÀ~D\n¸ëH\Z)8â)%tKI{º¤$ÇRÈ“%%WÚKa8\\\n_Ú&…+Ë¥”–)åÿK*J©‡ç¥Ô[3RZl–”ž¾UÊÜÃ–bîªR,kDŠ\rÆKyOÜ¤ü›{¤Ãy©à’§W¿/ÅÛöJÅ×¥â¹©d•T*#•¥KeÍERý§©}»tõ©­ÒÕ©Rã¿‡¥kònK×]o—®+Ó–š‰•nHÂ¥j¿I7¦n–n¬Öš™?—šÅ¥›àíÒMæRsz—Ô\\`\"Ýb°[ºÅ—\'µø)µ¼“\"ÝêÿCºÍm³ÔÊS]jí¨*Ý¾“n¯Õ•nÿ¹GºCYUºã$Ýq5@j\"µuˆ”Úe&JíjRûwéžY¶ÔÁÜVê²Mê„m:Y8J\\Ç¤Î‚RÍ>©Kp†ôà\\zpÚQêÚüAê¶mXêæ“&u”ºÓÚ¤îüté¡`Ké¡_W¥æéR¯F9é1£WÒ“Ø5éÉiM©Ï?\\êgHýîKýƒå¤þŸ¤þm©ÿôié™§Û¤gç¤J·¥_Ü¥ç¨w¥ç²JÏUl’žßÔ/\rþÿ,Á©¤—r¥ÒËHzÅ\Z–^©I”^uÏ”^ûÝ,\rå¯’†ÊPix˜H\Záà-˜½/ÏKo|•ÿ@\Z5,½µ¥C\Z»jP\Z¯œ#÷£KözH“Ó^H“«ÿISU.KSeKÓ”yÒ4ò°4ý%Cš,ÍŒ»%Íš‘Þïs“fÛ†I\Z}“>ºðFú¸J&Íë-—œÉ\rI‹Ž¯–`H‹úr¤Å¶òÒ2tRZ–º[ZŽåK+´b¥‡\0iÅi%<!­ô}\"­ZI«¼•Vo–Vû©H«ËKkNK¤µz¥µ¦ç¥µ¯¿IkgWJë€õÒºí5Ò¦$é‹]ÍÒ—«Qi‹¿³´õì:ik˜±´­r›´mFQÚ®[ mw™‘¶û¨I;úVHß¾ÿ!}7è.}¯ì+íZ*íº‘&í~ðFÚý4IÚ³6]ÚÓT*ííQöEVIû†‹¤ýŽléà¦é²µtˆ·[:tð˜t(U[:ÌN—~~{W:B©Ž:8IÇ”ÞIÇ¯JÇ|¥_À`é×€5Ò	gX:q×V:¹Nf§KgºHžÒ‘þJ)–þêz&ý-¦KW¾•þ¹ðO:«»F:/S³”ÎmQ–ÎßLÉì•)¨ï—)\\”“)9È”r¿É”	·eÊµe*Ø.™êæ}2ÕÛe…±²E®›eê$¦LÝT_¦¡P#[úñ§lÙ¥!™öß*™N¸²LçO©l9ÕD¦{fLO;^¶Bé¬l$/[±c½l¥a¢Œ–Ê€Á<xtPFÒø(ƒ¼A×•dPä^yâ„ŒÂß-£Œl•¡Ý2ê¦…2:å¦Œ~ÏHFv–1êµeÌ“‰2–Q¯Œe—&cyre¬g?dØG\'»àœŒ“U(ã5åÊwKeÂïwdøÿ\0½í2±£²L|Ž#“5Êd\Z“2ÙõyÙª£Ùjœ#3ô¶“­Ó»$[Ç]$3)T’™ÚÕÊ6~{,3{_)3×µ•™WYË,bd–Kíe–Î¡²mG.É¶ýº.³ºÜ(³–GeÖKdÖÛzeÖmÅ2ûÃïe{0_ÙžŒ0Ùž¬«22‡ð™Ó·Ó2W|‡ÌõÀy™«³›ÌÍX,;¤\';tz‡ìˆF‹ÌC/óÈ§É<ŠîÊŽzÊŽzåÊ<IKdžþ¥2/E‘ì¸ªTv¼ðìDOæ/óm^&óýâ-óÓò’ù‹þ£°¾£¹|ß8€‹PHÊJd5ìT¢>ãùìñ|öžI¥\"*šVöHV\"#	EYY	ÉÌH²J¶²\"”ê÷ýû¼ÎûŸçœç¾¯ëúã2‡Ü\"!¡¾÷ç!^:ËY*ÄSñét†øEwCüúe!~Áÿ×U\0§ÃÀÇÚÀâ<Hàl$ÈÙrî;$Ô°*|	½·~rG6rçÝHøûÈ]¯/»åzˆ¿ÈC<Hä»Í(]MHÔåDH4-\nr’‰•:‰Ýq\0rÿ\no›I¼w’dÐ\nI:4I²ð‡$…[ARÔ‘”ÜƒG2žGÆ‹GdGÈãQ*$-Ö’¿’^’>¥yjt’¹/ò¬<ò<ñ-$z’-üÉo3€äo,C\nøñ‚LHÁð ¤P9Rø6R$BŠlÍ!E‰Ç ÅiŸ /»÷A^=»)“‚”\0)ë{)[ºõŸHÅ62¤¢œy½é¤RÐ\n©üQ\n©Z“…Tïx©6Õ€ÔM)C\Z.hC\Z<`†i	H£úH£¹¤ékê€¤å¡¤¥lÒzw	ÒZpò‘ûòqX\nÒQøÒùç ¤«OÒm{Òí\\ùëùâ=\rù’§ùª´2¸þ\r2dL†¿Ê]‚ë!ÃFõaËdÈÈ.=Èˆ‡dT^2v¯2–_\0ù&ñò])ò·ò½T2é›™’ìƒLÇ†A¦ST!Óƒ<ÈŒ[,d&ûä‡´dñ\r²ðTY¤yC¯mƒ,Þ{\rùum+äw¿d¹É\n²<u²j[Y\r£BVÿ.Bþ8•C6ÌÅCs¿g!ýÎ@þ>~\rùwoòïéÈ¿á`¨D<*0ùŸ%¨ôd\rTÆX*ƒ×‚Ê<S†nù“ÝZs*¯²Ý¾kºãTÙ$ª{ªg	U#´@ÕÛâ \Zw¡\ZŸí »ÃÒ¡šÂh¨æåPÍÅPíäÓPí!P\\	T§è\nTwßT7\nÕí/‡ê=o†êï½Õwç@÷2†î½”	5Ôö‚šfN@Í¶©@Ž<€’:=2µ(R†Zük…½ú\njeÞ	=æá	=öí$ô8“\r=y\0\nI„Båä Ð(ý\n{ê…ÿbBg2q®ŠôT€b÷B±3Pœú>(þF;\rJ€þ€¢Ÿ@Aå(øDJ2;¥üj†R‰uPÚþ(íU	”3¥Š‡2ðç¡ÌßíP;Ê>qÊ¾ýÊ!í€r…PnÙ¨@\'*|\0ö€Š>~‡ŠGƒ â#è‰¯ÓPk•ÇÐ“¦/¡§Ô˜ÐÓvnP[…»PÛ‹÷¡Ž2³PG|ÔñÆCè¹“fÐsE=Ðº+PgŒ6Ô¹\ruQu†º¨ƒºt˜@]ã¡ÐKz*ÐK¤ —¯JB//LB/¯ÌAÝ„· îf\\èÕ0,ôj•	ôÆ€2ô¦S.ôÖ·MPÏX%¨2zûã<ÔïU4à»54pY\Z4m\r6ÿ\rÆžƒ†ì>\r¥¤BC#!ÐÐèËûÐ;£æÐ»§f w_€F‘¡‘>ÕÐÈl\Z4ZÉ\Z}ÿ94f@\0\rª‚Þ?j;O™…&¢ ‰Ô.hâôshò•BhòÕ!hòû‡Ð‡ÜhJä%è#úè®\0š*}ì»šöð&4mvšþ@šž·š±©š!§Íx´úäL*ôIB	4³Åš•óúìš°\0Í¥`¡y–ÒÐ<\'h^|4ï\rš7ß\0Íû;Íoô€¾ˆò‡°ïBªR¡ÅwhqÀ\"´8h+´øq9´$DZ’¦\0-~}é	}¥†„¾êÆAËÂF¡e÷³ å°h…ò9èë–4håù!è‰ÇÐ7rw ÕÁ“ÐêÔÐÚ76Ðº‹£Ðúsg¡\r÷,¡\ríKÐ&ÙoÐ¦h³&Ú²&†¶ñŸCÛÌ¡ín\'¡íázÐöäehûç‹Ðö‘ÐÃ=ÐÎ3G¡]Ú‡ ]WŒ ]ÆÐ®!hwÉOhí´Oh\rí›”~þxúyQ\rú¥EÚ~Úÿ½: ó:°z\r:$–€¥Æ@‡•\\¡Ã£IÐQMKèX°:ô›’ôLðÖ…N<Üœ‡N§êB÷Ctl‡þÄ¡óyÐ™“ÐÕí\nÐU³YèÚtíët}¹º±Ùú/hôß°LÂÊ¶éI7Lò¨7LòULò&=\0“jeÀ6ëVÀ¤	ê0™\Z$LÖò/L–}&Ûó	¶åÌlËEKØ–Ñk09Ûë0yÿ£0ùL˜Ï¶íŒ2LQ¦\r¶ýYLI#¦|Z¦¦Ry¦*u¦J;SêSï…©ÿäÁvjÃv‹Caš\Z›aÚ’î0í+7aÚ)§a:F]0‘¦ë|¦wèL¯òl; 	;à¤3Pk‡†TÂŒä¦`F¨U˜™•{ÃÌ³`æuŸa‡BŠa‡Fp°ÃKØÑ}0ËniØ1]ØqÓ‹°ãŸ`ÇßAõ2`°;08¼\Z÷Ì€!?_‡¡Õ`è˜tæH{ŒÃ?±‡ó90R¡4Œš²£kÍÀè®Ã¯GaÌã0¦\rczïƒ1}CaÌú=0jÆê¼cƒoaxŒûäŒW…ñ±N0þ‚\rL°VæÀ„]x˜ø„+L|÷L|?	vn;1º³v¤Á¬—·ÀN±Âì\rraöØ!Ø™n<ì‚Å>˜S:ìb²ìòzØ•Æ0wù×°«*?aWuR`×^ü€]7ß»é´	vó³\nìæ\r˜‡:æ1{æ¶ó†9Ã|þLÃü¿‡ê&ÀÁ;\ZaÃ)°`A8,8ü#,ÄÄÂU……ZfÃBQ†°Ð?XhM#,ìsìî6kXDä8,²-\ZÙß‹Rû‹i²Ý“é‡Ý+_ƒÅYÜ…Å~‹__‡=À0`	ìTXBÐ,1\r„%®Á’t\r`ÉÍÃ°G7þÂRƒKa©Õ<Xjcìñ@,MÂ–¶ƒKƒÜ„¥ãaé#c°ôj°\'’?aOTzaOïÀ27í…eª„=§+Â²sXv‰-,/ –¡V Ü+Ð‡\0…°¢$5XñXñ1/XñÂKX	d\rVê5\0+“‡•~ë•ÎÝƒ½²v•©…ÃÊL|`eè-°2ÿYXyr¬b;VQ,{]~V)Jƒ½á\"aoòzaU\"GXUê3XµVý,V³¡\r«;è«KW…ÕiÂêM½`\ruã°Æ™ý°¦[‡`ïøq°–ž<Ø{	\rØ‡–c°¬.XG™¬Ûn\0öùë-Xÿ®/°~÷°þp#X6x¼	6tÞ6ì7+ÈMÌ™Á&Öra“z°Éï‘°)­NØTO<lúä lºô:l&zì‡ñ\Zì‡½/ìGûl	Àæl7Ãæ5æaóÚÿÁ`‹û·Â¿ÍÀ~ÙÌÂ~#÷Â–UöÃVÌ¼a+¿Va«wÃþØÀþ„ZÂÖ+­aëÕ9°¿Î;aÿ&nÀ%£7à›óÚáÒnãð­ÞFð­µcð­Ëšp9ËE¸<R\0—o‚oÿ\0W”n…+ÂÇàŠ3ZpÅye¸â†\\)â+|‡F=|ÇÈ\Z|\'â|\'ñ<\\9w®²B…«f\\„«özÁÕwœ„«¿ƒïN‚Áw?Á5Í³áš›p-â4\\«V¾çœ|O2\\Û°®÷Á®×#	×—€ï•	‡ïµ^†ï«Š‡ï§¼ƒŒhÀ\rÇ~ÁÍÁêôÀ\Zž‚ÄTÀ^Ã\rÀÍ¿™Ãu‚.À,ž€[*›Â]òƒŸ@Ãá?÷Â­8pJ\rŽx»Žx_\rG=ÞG[nÀÑ¬pŒö[8>ÃN¨h„šþÂ™2Cp–ò~8ëð%8÷»:œw\0çßáÀÁ…¾p‘ë}¸øI8ü,n]ƒŸ4hƒŸ\n–…Ÿ®š‚Ûþ‚Ûþ~·ÇÄÁÏN„ŸÝ=\0?ÌŸMK„;ÎÁÏMòàNtÜÙÝ~qk\nÜUI~9ï/üŠÌGø•ýuð+ÁÓð+oáW†¯ÀÝ~{ÁÝÉ$øÕ°JøµƒøµN=øµ\røMÌ0üfîüfå9ø­¥­ð[}á^Ü+sî•—÷©Ó‡û´…ÂýçáA¡3ð`­+ðàx(ê!<Ô.ê´ëÖ„‡ÀïzÙÂïNLÃ#{Â#ŽYÂcûíàñ3ßà	?xâÓ~xò˜<åñixÊDüñ‘&øãn]xšÄyxšâoxúö~xÆÛqøÓ£Æð§ü¹b7ü¹ÃxnV$<ïämx^Ú&xÞ‡Zx~’¼àïxáæ÷ðâpx‰-^R¢ÉüyZ^:U/ì†WU€W?<¯ñó‚×ylÀëÆðºEsx=ä/ümr	üm½¼QŸo„ºÂ›’8ð¦9¼¹\'þŽ~þNP7ÕoM†À?|Z·¹Ã;zìáêYðÎÇmðÎ·-ðîøx¯Êsxï&¼7Û\rÞ;åÿ¢ÿü þÿr5>p¢>p…\rúÕ.~ž\Z€ª%ÁG)uðÑº«ðÑ{ø˜³3|Ìe	>V;)‡[Ÿ‡?>\nÿ|>‘F€OA›àÓW,àÓÞ^ðéJKøÀðù\02|Q˜_¼»¾[_|ù¾„H…/…ï†/eBà+Náëg–à\'Ýáí›ágåM‡\0ÉR€4>ŽxHgÀYŸe`Ë›÷€Ü•j@®m7 7ôw=	(°«…P øþ6°=õ\'°=ÏØ¾öPúÑìØg	ìÜÚìœj”\r•~@e‰\0¨~ù¨õþÔÛ0€zûI`Wü/`7xØ½ahÕ¿ö.{>{¾ª{E€Þ­\Z@_aØk=ì4\0<;X*\nn\0FýË€±Ù$`²ç`’œ˜šw¦ÙÍ€™;\Z0K¨öØ‡UG€Ã\ZA€…ôÀòÉeÀŠ6X]\0¬\"ÅÀ1½RàXáp|ÿp¼ð!\0±Ù@®Ž°YU\0îRÀý>ð?Ñ\0Â?@~ (­,\0Õæ`êý¬»€Íÿà\0xä%\0ŸŠ€øµ\0OÏ`z7@²ËHÉV\0éé @>‚\0È7†ÊË\r€šv	 É]è<:Àh0˜_&Ž]À;êð¦¤\0!­§»R\0ë %Àº\"8Y{8-ý°•ÚØ98\0ö§žö¯r\0‡3çû€³îù€ãˆpþ†8_+	89gÌà\\H.¢W\0Ó(ÀåÓaàÊ¯ÀíËà6¤¸?n˜Ô7ˆ§[\'Wi1àéxð¦ŒÞ±’€w\\%àpð=ø)ì\0üœñ€_Þ[À¿a(Y\0‚Ø@È4„•‹€;¯Ÿ\0wt€Â8Ò\nDV16@L»pï};|ˆ]ââqŸóøxO ~QHŒ’.ÄIË ™~Hfõ\0ÉÃHàážkÀÃ\nEàá\"H¹¤r×€Ôz7 Mß\0Hÿ\0È˜\r\0ž\"†§ÿöYTàÙ£\ràùçÀó§3ÀóC [F\ZÈ½\"rßzo%‚×Â…R ¨®(¶ßwt/u¶¯£×W[€×óq@¥¯Pùš\nT¾¥o&T€*•N ê¢<Pu…TÕ[Õû”€ê¸£@\r\nÔÊ	€ÚÓC@Ýj)Ð°šôfÍT 9â7Ðœ›´Em©G€ÚöñX ÓhÐù\'ø´`t)9\0]kš@wïÐ#ãôì4z>\0½ÁHàsˆ\'Ð_a|Í8|•jþƒÁÀ ÏŒK›>CÙ›Àˆ=øVµ˜ ¹Ì5`*ò005ÓÛ¸À´’)0}ú;0ýú\00=m	Ìõ.?7·?5‹ú#À¢íc`±H\rø•íüjùü<,Áf€ååßt`e‰¬êùkÒ·€5`ý…!°^Ã\06HP`ƒå\0ü%Ýþ4„Ä‹ƒ‰¹„¤îBòÅ\'„´aBºð\nBvß„œNBÎçb›Æ4b[s(BQ_¡x#±½ø4BÉ$±Sr/Bå€PÈC¨ñòêËÒˆ]ÒÓ\r“ÄnÃˆÝc½ˆ=ÃÚ¦;:/:5|„n¦B/2¡þb¯±7î6boN:b¿£â€Ú_Ä‡Šƒ\r£ª‹ê<ÂäòQ„IôI„É£ „éQY„™.\ra6pq_0O©@˜·œGžÑ@XÜ(GX<¸Ž8j¦…8JŽB<°<Ö‹°<+FX9Î!¬<UÇ=.!ŽÇö\" ž! AwðïËà°€ú €È7$ž†@=Ý„@\rµ#ÐÁ÷èã-À*Ä#°‚pîÔ[1 Aú¸AÞÝˆ _-EPô²”=µd/‚¶ï(‚Öì† ´ 7,}\'‚`OU!8²	NŸ	BðîB0º!< D]câ´\r„5ù2âäM;Ä)BâTDâT_â´è\'ÂÖ aç‹°Í”GØ©3vu„]£\"ÂÞ¢aŸ:ŠpP	G8¤GœÑ?‚8C²FœµA8é<@\\œ#\\È?.³ˆËý	ˆ+ï:nÜîäQÄÕ¦HÄµ’/ˆkkˆëS/×\"®¯Ö\"n¨Ó7–!nÞÑ@Ü,ú‚¸ùý.âÖ\ZáeQ†ðº›ŒðÊ:„ð†f ¼^#¼¿—\"|õ¾Sþæ \Záµáßò„€#‚¥5Á}CˆàÕ5D˜ñ_DÄVŽ¸¶\rqgp>¼Œˆxö\0y$9g‰ˆœ¿†ˆÁ\'#î]¬EÄJCÜÏ=†ˆßQƒˆmB$È\"N¾G$ºF$ææ#«†I¿. R¼_!RÊò<Ã©?i¿¯#ÒÍÏ\"Òc²òˆŒfÄ“`_ÄS½Ûˆ¬Ð4Ä³E&\"ûH\"{*‘Cø‚ÈÉðEä4/!r‹v!òÌ¯!òíÑˆ\n\';o\"Š8{%˜‹ˆ—‡Ž#J\r#¯&eÜD¹Ö^D…ôoD%ÏñFÊ\0Q»2‰¨`ˆúˆˆú16¢Ad€hqD4<.C4µ š$kM¸pDÓ\'KD³ÝÎ; š_ïC´Xï¯\\F´¾‰@´Î!ÚFmß$ÿ³Šh7B´§¶ÑˆN<¢óA¢s!Ñ\rÖ#ºo¬\"º__lû_AD±ñU5	ñU B¹†¿ˆöÉCŒ¦Ö FÛ‰ˆñˆñŸ.ˆÉÆíˆ©]Íˆé>YÄôš\01³y1h˜û!æ®§!~ÂóraˆÅˆÅ˜Ä¯ü<ÄRŽ>bÙ¾\0±\\€X¶A¬Žå\"þ¸=@¬/ 6,ˆ¿‡åm!þ¾)Aü»„øWn‚ø7v)qm)53‡ÜÜ@GÊ\ZHY¤6rKBrk)\'ŠBÊ¹Ö!¶ .á‘Û8“HÅr»²©´/©ä‰Bî­\"w^x‚ÜYê‰T–D*_ƒ\"Õ»F»ÿAjlnBj8!5F\"5/H#5_!÷›!µþ uMj‘z÷k‘{£ ÈýG¦ûKÛHÒ`^iðGi¨\0i¦Œ4\"\r MÕ¢‘f_7GR.!-ªu‘G»|–fHËgGÇá1Èã7\"HÈÍ9$43:v	ßÓ„s¼\0ë#¨ø‰D¾C¢_w!qR&Hœãi$.+	ÆžA’’dÖm$y&Iy;ƒ¤ê}BÒVö\"ézp$C©Éœ1D²%#ÙÅd$»‚ä v#9ÑëHNó7$3ÉÍ‘‚‚q¤ ®)<ó)Ú;†K6 Å”¤µÛyäiéTäit$ÒvÛÒÎæ0ÒÞSyæv	òÌcä™ç6È35‘g¥aHÇ«Lä9¯\ZäE°y1zéRõéòaéúFy©½yYÁyùÑgä•¯Ïnk‘È«9äµîKÈ›;‘7¶ê\"oßAÞŒ1CÞJÆ#oMíEz˜Î =­—ž\0Ò3‡…ôñû†ôY‘þßŸ Ö¯\"wB†¸u\"Cj^ Cc Ã¾!#¶Ý@F8b‘>Ÿ‘*LdTÁdTk2\ZÿMŸCÞªAÞ›|‡Œe%!c/\"ãdš‘ñû6!hîG&Xš!âº‘	ÿ}Ÿ¨ÚL’iD¦ØÏ\"S®…#S*/ 5^E¦I-#ÓBdZ¢12Ãb™çƒ|êÆCfîÞ„Ì,¼Ìz‡Ìªf#ŸÛœ@¾~‹|q|Qô\ZY³„,<š€,„þF–”mC¾<Š,õiC–þYE¾RÀ ËÐÈ2ÀY†­B–=ØŒ¬ðëAV„Ø#+R*‘•‡•Ooö5 «LÕîCÈjŸ1dÍýÈúSÓÈ¥_Èw²!T€lÜ7€lô2F¾‹ÞŒlyùÙzWùAû4ò\"ú¿•ô5òCí(òÃL=²íø²íª+ò£ÁeäÇ «È_§‘íw\\áÈŽd:²óÙYŸ†ìyƒü¤@vyU!»Ò×Ýw¶#{äÓ‘½›Ÿ {ÑjÈÏ#öÈÏÿå|rÀÊ9p59S‰ø[*2@ŽìCŽþØƒÓø€üVÎA~7G~·lCÎÜ…#gº7!çE\"çÕÕ‘óIÈâsä‚C:rÑ2¹˜#‡ü}uò÷ƒäŸç÷ÿS\\cB+ÿ¦{Q%wP›v<Em2³CI:*¡$ŸK¢¤~FmŽYGmý€’N\"£d¼CP²R(ÙÓÚ(Ù$jËí¨­Ç ¶þ†Úæøµm=¥x‰R’HG)µY£v¸5 vr`(å@1JyŽR!!P*ÔÏ(•³ûPªUe(µÍQ\Z.u(Mùh”¦Ë~”V×<Jke¥sÖ¥[ÛŽÒS5FéÅ¢ôcPzQúFÇPú6I(ýÚ+(ýEÔ>É\\Ô\r”TÊÀ\'\neh‡2Úk2Ùí‹2=2Ûg„2£F¡>œ@™_°GRSFj–Dú¡‡:¼ùêpR/êˆC1ÊÂ/eé±ˆ²¼“‡²Ì.EYÁ ¬ü×QÇø[PÇD¦¨ãˆQL#ß5†J£€Ú$\"Ü…à P>Ó(Tm7\n5·†B/H£0ùP¸ûÑ(\\±\n¿¹…ÏÊD]Î£ˆqÏP¤§R(RaŠ\"2CÑRTPôR#tÅ2Ì@q2tPÜð›(ÁÏh”pT%Š9ˆ¿uC*EYïÉ@Ùì8ƒ²ÁÄ¡lhn(›î\Z”íÉ-(;«Y”=üÊ¡Š:3n„:+“:{Žr”ÙŠºÐŠrZ‘D9— .º\r \\¬\"Q.´}(¡Ê%—‰rÉA¹ÆìF]º`…ºÌ{Žºbñ	uu3€ºþ,uss\"ê¦G(êfL*ê3uë}êÖø[”‡ûy”×¦”×-U”WzÊkÆåÓïˆòÕÙƒò5^Gù>CùïtGù?,DÄ;¢‹QÁ®Z¨àFT¸Ã*¼u‘ž†Š&CÅühEÝSÅ¢îeG£îNAÝ_wFÅ:‚Š4D%HY¢\Zö£’¶ ’uPÉw¿¢R¶Ö£RPS¨”v(êQÊ\'Ô£÷Tê)Tûêéž¿¨ÌéÍ¨Ì? *Kƒ‰zf•Žz6°õ<Sõ¼Nõü}:*[ö&*;¸\0•#ú„ÊÕDå–÷ òè%¨<—«¨¼Ï *¿Zõ\";Uð3UÜ]*Q+G½tÕA•jY¢J›2Q¯6¢Peº_Qå˜\\TùÀ ª|‰ª8ªœÍCU›Z£ªC‰¨š&¨šÙË¨Ú‘í¨:W!ªî^ª®èªîgªagªuÕ4í…zÇ¸‡j±BµpýP­ò’¨»ÚQ÷¹¨OjE¨.“\\TwQ,ªûÝSTïfoTß‘Û¨>—c¨þ	Tÿ¢j@4\Z¸¢£gQÃ\ZÎ¨aíí¨á¦§¨‘Ã­¨‘cQ#£F)gP£§TPcSq¨ñ¸Ô·j\nêû_ÔÃ	5uŽšeœBýÜ>‰š·WD-¸M •¸¨ßÝQË{ñ¨åèÔŠ!µÂû‰ZcP+)K¨õ‰ ÔÆy;Ô?‹Kh‰ª>ô¦°·èM±ehÉœ|´ÔÁ]h)Î´Th(Zêczój4ZÖº½åF8z+ã,zëãh¹ä´¼uZ–‚VøÐ‰VX@o[>‹VÌJB+¶©£×]ÑÛ‹\0ôÎo´òõN´rt;Zù#\Z­RŸ‡Vé¾…V=~­šù­&w­¦~½‹5‰ÞuS­qÎ­1=‹Ö´%¡5ï˜¡µ¶å ÷ŸFëé¡u„¡uŠh=½E´þ¿èýûÑOõÐ¦\rh³”óèCW‰èCËôaqÚ’g‚>Þ&‰†<ÓFC^=CCõï¢a\ZûÑ0–\Z~Â\rÄC)Ðˆ‚P42Ùº2†FÍª¢1§úÐ˜˜hl›#\Z¯¼Ž&JÍ£‰\'úÑàÑ4I5M*ˆB“ªµÑTîšêKEÓj.¡énËhzý4›ˆDs¿î@óíuÐòi´à{%Z”õ-úú-Î¿Œ>1GA[k@[Ïj£OÖZ¢m6h›ðëèÓà Úöþ]´í³oh;ZÚN„¶ûa€vhy>Ódƒv,uCŸ\'E_\Z¡/ÝB_È=€vÒø†vÚ?†vB;š£/ÞD»¬…£]üF_¾óív~\ní®ò\rínè„v_;‡¾Úå€¾a7Š¾õÎí& =ü³Ñ^ZÐ^öÑÞ;\'ÑÞw£o[#Ñ¾¦L´oV-Úßö2: ƒHîG<ÙŽ|U†ü`ƒ™DS¨èP¹4tX•}ÇàúN^	A‡w=FGyÓÐÑíÕèÇÍè˜0t¬a:Öø*:.’†Žß„Ž…~ðÐÀ‰B\'Ü9‚N˜öG\'->D?YC?ü€~¼B@§¹ü@§… Ó=Ñ+{ÐO>)¢Ÿz 3×*ÐÏàãèg)éèg/9èç‡/¡Ÿ“ß£ŸgÑÙí‡Ñ9*Ñ¹>t^«úE“úÅŸ“è‚ét!Õ]h‡A—´ïD—BƒÑ¥Áéè24]ÆÐF—o°Ð÷fÐ¯×Ñ•†kèJîqteÛiô›©rô›…Tt•¥1º*Ð\n]U‹EW½¡«{Hè\ZQ8ºöV;ºv*ý¶B€n·F7?F7ßE7YÝD7·z£ß!\\ÿ³~?€nÝ}Ý\Z%F·>z„þ°öÝ¦¶ÝVd†no2Bw\ZDw¦ù£?	åÐŸþ^Awƒvèî\0ºG¼€îk“E©¦ ¿,<F´ÐÓKèÁ–èa+>zxh=²==ªU÷ÎAÇ]FÛûý­[\Zý½®=a\Zž°¸Œž„­ \'ÌÑS»ýÑ³*Æè¹ªNôÏ IôÏ»¶è?z‘0^Ì?†^>–ˆ^¾C/{ß@¯¼«F¯²ÓÐðAè{òè¿ˆ«è¿(_Œ„i1f“LfSówŒôÉi¿TŒÌ†\0³å€fëCŒœ>#Wø#C£ðáf[³fûAŒÒL;Fiáfgˆ<FÙvF¥ë+Fû£ZÝŽQWÅìÞ¼³ûb\ZFS«\0£6ŽÑ‚†`ö¸ú`t:ç1úWÌÞÀÌÞž˜}GÚ0û\'1û¢1¨Ì,KÌzUŒvc¸5cx…†1ü[1©rÆ˜šbL19ÃóßÛ0‡N¹`Ý‡9ÔÝƒ±0ga,\Zl0Gyî˜£n0–ßÎ`ŽU–bŽ—ìÀ@$ú0U(n—OÆ ó0ÈJÖƒÚÅÂ Ä2T°\"•°	ƒ3Ãà\"ÿapcVÜÜ\ZÁ7Lb6G1`\'CZÎÅP’\Z)CG`˜fæé—ù2†ýEÃY4ÄðŽebø—Æ1Ò-Œ J#<2}õÀX‡œÃœTmÃØô?Âœrå`låa;ƒ.ŒCÌÌ™µAÌ™Ì9…>Œ“ÔYŒ“¥Æéf.æâ—WWUkŒ›ª2Æ-nÆíÍ(ÆýX=æ\ZIsí¿º^ÒÇÜøl‹¹Ù˜Œ¹¹ ‰¹•Y‹ñ0y‰ñp\\Àxøb|<ã1·µ¼0¾œã_ÿ@Œo·ÆwLãsÅø—yc\"O`>dc¥ÏaåÃ1A¾Z˜à¡2L(®JºŠ¹;‰pPÃDNc¢\rå0÷TLÜ¿	L|Z>&Á*“ðr“hx“x6\0“8?IsÃ<Üy“R™ƒIy\'‰I}iˆI×àa24I˜ŒWý˜ŒIOLÆòaÌS5æé¡L–¦/&Ë!“óñ&gq\r“³ÆäÂW0y™ß1yBLþnOÌ‹ôÌ‹¿0…buLáÝ`LQîOL±™)¦„ñSr‹y¹qóÊ\'SÖÕŠ)çþÁ”{yc^wGcÞ|lÆ¼‹Å¼™JÃÔŠžcÞ:%c\ZüÑ˜†¨lLÃR2¦I÷¦¥÷)æ½Çæ}€/¦•RŠiýŠi]åbZÿa>¦6aÚÃÍ1=%›1}7\'1}ñg0_†*0ý‡²0ý÷Ë1ý%o0_Ý›1£˜Õ%ÌàÄ-Ì	3üÒ\r3ü÷\'fäÌÌ(ƒ‰ó0ÅŒw`¾Ùb&ôŽa&fr1S\\fÊ‰™Ø†™•ü‚™MlÁü”óÇ,ºc~±ž`~eêa–J7c–†Ã0ËçÂ1Ë˜åÖ˜KWÌšõKÌúif=\r³^×Ùà]Ål¼ûˆù«tós+©y\0+Å˜ÁJ9ÅJ];ˆ•ã™båT±òKýØm¹¿±Û*z°Û¾ýÃ*ÊÆ*ž<ÝÞò»½½\n»Óâ&v§+ˆU	ñÄªüšÃª	èXµè¬:Ù«²»ëUv÷Z4Vëà?¬–•VËóvÏþ!¬þL>vïÿ­Äî;ÖÝ…ÝWw»_b»ZŠ5¬‹Â\Z•A°ÆjVXµkX“½ÎXÓÃç±¦U°f	X³%-¬ÙÆ]ìÁ´?XóWuØC¶6ØCg¤±‡5°‡ÝÜ°G“naa+µXx`^÷,fafóXÄ9,â‘2ÑïŒEmvÅb.\Zb±ˆ‡Xl‹	–pyKøpK\ZÀ~ñ°ä²~,õf–&3Ž¥™WciªXö6/,ÛJË1ÎÃrŽÂrM¬°ÜS=X0åE`ùÍ|¬Pº+|cEaEe±\'ú„XkÝ¬õÒ öddÖ¦ü:ö”â3ì)ãFìéP¬íÿ´<…µŸ\rÄžÙS…={yëèœut©Àž×abÉO±Î‚`ìÅŒìÅÑX¬«%öªcöê×)ìuÏ0ì\nì9\"öæ—q¬¼ëö`½&r±^k>XïŽL¬ÏÖZ¬Ï]>ÖgÖ{;²ë»;ë{B\ZëŸŒ\rtã`ƒä`ƒý`ƒ§\\±!2°!¬“ØµIlÄ¶ØHM,6J|\Zý£	³(½ÿü6~×GlüKìƒü+Ø„\'¡ØÄ\n6éÝ;lÒ}Ød	l²…6ù™56y<û0Ø›òŽˆ}tS›zÄ¦·}Å>õ×Àf²[±™o¾`3We°906\'L	›r›?ñûbk0öÅþ;ØÑdlB\n¶Àê>¶€|[ø>[„ØŠ-î0Ä–îkÃ¾ÂÕa_eIbËXØ\nÅëØŠ¶¢Õ\n[1\\…­”†­¼ÅV6îÄV®·`«{7ck¤-±5Ð]ØÚç½Øú“l}m+¶~\nÀÖÿÓÂ¾\rœÃ6\\ýŽmhŸÇ6âý°MUVØææØwÄŸØwÿ°-R*Ø™Ø–%Ø^¶åÊ/lK…:öýg#lëlkÊKlk—3¶MŠmgVc;Š§°ÝW‰ØlO@¶ï·¶ßÔûµÚ;¨÷;x1\r;Xe¢<Â=‹Ä¶a‡¯{b‡7R°£/%°cÍ¯°SŸÛ±S¿wag6!°?bagµÏaç¼¾b>òÀ.¼ÁbS³°¿æ‡°KñºØ•êaìêûç‡\0»öâ*nK\Z·©Ï\'ù¬\0\'µ/\'µö·y`\'½²Œ“q5ÂÉFÀÉþ2ÇmÁ©ãän;ã¶m^ÇmsÀmìÄ)ŠŒqÛ§p;‘q;ñGqÊ‡¾âTÜßãT{`8µ×pjŸqj?Ä8µÅs8õ=18õ‚Ý¸]Òq»Žà´ìup{ô>ât0n8—;pzSÓ8}•<œþ>N¿ÿ$no··ù(nï(g²Ó\ngb~g‚ŽÁ™xÄ™ô1p¦aXœu;îàEwœ¹4wè+w˜Þ†;¹wÔÀëˆÇA\Z/ã`5á8ØÔ=ü›>™Llq¨ÖZ†QŠÃrq¸¸G8¼¬Ž`AÆ‹pÄ˜ÓŠ#ÙŒàÈÙƒ8Š•ŽRê…£šÌáhkn8ú},Ž±ÉÇ2×Ä±‚þÓ~Ç®pÆ±»ßã¸õp¼A8ÁËû8!ó4N8Òˆ)áÄ¯cqÖÓLÜÉÁ\"œ\ri\Zg±‚;å¸wê…&î´ùyÜé¸$ÜéñFœmÒVœÝ!mœ}×cœ})îŒý\"ÎQ~?Î‘ðçè§Š;—GÀ9®Æ9ÇqNo[qÎ°œóÛ×8çÑpœ›ÛWœ[æœÛëœ[-çá‰»¦[ˆ»®’†»™ócpu–8Ï=¸Ûe·p~£­8N.@¥\ZpbÐ\"tÿ¯$ýa¸ M)¸ £í¸`‹\\°0:8‹/Gã\"\nCp‘s¸ÈM¦¸ÈM¸{Ú	¸{,%\\Ü~\\Òå;¸dz5.Ùn	—ÜÙŠ{ø‰K¹ÔŠ{¤ÍÀ=²QÅ=ê”À=v·Ã¥A¹¸\'·’q™é¸¬on¸g›qÏý¯â²¤ã²ßàrÇàr¦,p¹§ìq¹¡ÇqyšP\\€Àå9Œâò[qZ³¸‚ê‹¸¢I+ÜKí/¸—{]q¥j¸W7^â^%|Â•…ïÁ•+¨á*ôeq•Ù¸Zy®–9kúï]ÍÞ4\\ó·“¸X<®ÍŽk»{×ö=×ŽZÃµO#pb\\ù7®ãÓN\\×¹o¸®p\r\\×È=\\/‡ë\rÚ‰ëýã‚ë#9á>‡ùâú=žãú[™¸–-nPY7ŒÙ…>Syi©Ù‰yw7òûÖ«^/n\\+7î>€1Å}›©Æ}§ˆp.2¸‰f)ÜdåÜ”ÂsÜÔv5ÜT17Caáf¾(àfæ!¸²_p?¶Uâ~hÀq³šF¸Ùãq³ÅÉ¸Ùe&îg(€[\0ßâ’¸EþcÜÒ‡VÜ²á0n9\Z…[~ó·B‡âVAÜê/ÜŸgÅ¸µ¨0Üz8·ÞÅm8ºá6‚¾ã6fµqÿ›±Ñ_qÿfÇð›®ÜÆozp/¹ë^Òf/Ùã—ÒÁâ¥.PðR¹óøÍªzxé/[—éÅËj¦á·îÃË®àå¥rðÛMñÛ&ÄøíeaøÖ3xå„ox•úA¼ª0¯:SŠW]ÊÁ«õ	ðê^³ø]($~×ÉR¼†ñ]ün;m¼ÖÓ	üö^üž*9¼¶´^-Äï»•€ß‚„ßo[‰ß¿T?°4‡7TÆ™ÅàÆñ†qxc(\Zo|Zo|á\ZÞ8 oòú	Þôˆ\0oÚö	oú‘„77Þ‹?TèŠ?²Ùd­o>‚?Æ¤àoƒáËã¡–ñÐÂ<´Üûaƒ‡\']ÀÃ_CñÀ”\Zõx\Z~¡Š\'íÆâIE9xRË[<ùl+žâ¤‹§zâi-Òxº{?ž6‡gÕNáÙ\'òñ|œžïPî2ÂŸØ”‰·nDá­7ðx‡óøSAdüiñ:Þ6h3Þþ{þÌx)þ¼R9þÂ®¼“ýk¼“ó6¼ÓÂ1¼³9Ñ)ï¢\"¿ÜùïFÅ»yÔàÝ‚Yxwý5¼{`9þªvþ:\'\n=1Ãä4þ÷3þÆÂü5yüM½xÏP\'¼—9ïUøïí{ï}_ï+†÷óAà‚$ð‹Qø ¶Wøà„x|p®\0òYæs¡¢Šh;ˆ<Ð‹5ÁG!yøhÃ1|Ì|Ìo|\\¡>þùþŽþÁ‘øÌ|BðK|Â\'üÃƒñ³ôñF†ð©šAøÔ\0Yüc¨þ‰Ãü7}ü“§Åøg¨Nü³Ëaøçþy\"ˆ>kŽÏ9¸ˆÏÕ²ÆçÕÅç­ãðù»Çð¾0‘/:ƒ/¶Ø‹/~±‚/!´ã_ZüÃ—‘\\ðå;÷áËêðåOâ+ôLñ\r§ð¯“<ñoÞ¦à«|ÜðUßñÕ›sðÕ[\"ðÕ“®ø\Z™<|Íö9|\rÿ)¾f®ÿöÁ3üÛÄ`|cþ¾yÓkü;R¾åh1þ½mþý÷³øÖb|k“;¾u\0‚ÿxm¾=†ïÁ%ã{>êâ{kø>Wþ³\"þsa\0þsévüçž/ø¯Pü\0â7~°(?Ú‘ŒcâÇ*ûðc\røq½bü÷G\nøïu£øïmðß&á\'Uñ“d~Òö~*D?íx?=¥ŽŸÙàgXeø9I&þ§M\rþgy\r~AÌÁÿ>€ÿ}m¿DQÅ¯èø?}\'ñ†‹ñk:þøµš2üÚg+üzûVü?ë›øs‘„MË7’n6ÉBkÂfsÂî^ÂÖÁù‚ÂWÂ6åUÂ¶iAQPFPl› (N·”ŽCJ¸B‚R @P\n™\"ìØ\\CØÙ}– Ú5@P§ç4Of4Ãn´*Þöp6öÜ/ ì©%ho½KÐ\r{AÐ›œ#èÛëôWZ{/µö¦‡ö.Éö}Ë%ìÏ~FØŸó°ÿý=‚AÕÁPÎ†`Èñ&f\\\"µfŒ~<$¿ÝE0™W$T%9F°¨+%È ç	0®\"ÈŸ# ÷vÕádÿÊï3c!`À)–¦JÀægpÊ®¼ä:o£HÀ»÷ð+Aq/(5L žøB Ü\"P+Ÿh´#Ú½›VÕ­žGà|«&p~¥¸·“ÜUs? ˆõwÄâ$‚¸ìáÄ™L‚µJ!ÁúõQ‚õ°+ÁF­šp\nM8Uøƒp:*œ`»M“`ëz`ûsÁö—à eF8›A$8š.ã_û×	çãß.°_.Äž#8EÔœ…J„‹W¿\\z ×>ÂŠà¾ÙˆpuË9ÂÕ˜bÂu»k„›å\0Á#ê:Á#©™àõ«ƒà}®…à]Fðîä|.|î/<›Ì	A¶Æ„àúM„$‰RjBƒÂfR	aë§	wÖs	áubBø½‰\\¨!DŸ&b´	÷do¶¬Ó‰½ÿåª!iw:!‰Ø@Hz‘²c¢OHYÙNxÔ²BHmxDxÌ\Z ¤INÒ_&¤ËJž<*\"d¢‚	™?žùÏ\"AÂs½=„ì(5BîýtBîoB^t#!ßÔ—ß¸›P°Í–PdRG(*’&ÿp&”ø’%¾„’ÚÂ+ÖvB¹ÖOÂkôáµm#¡Rê¡²¾ˆðæÂABÕ˜)¡óœÐð9‰ÐøÞŠÐ¸Exw{ˆÐâOx(Žð¾ŠKhuÝAhý)\"´þµ\'´à	m¼TBÛ¥;„v,¡ó‘áS–Ð+¥KèÃ¨ú\"Ö_üò	_é	&Õ„îaÀö\naÀóa ¨0jO\Z\n$£L	#³Æ„Ñ|ÂØM€0®èJo{DøöLðÝ\"’0ÙœK˜>¹Lø1Â%ÌjŸ%Ìem%üüêA˜±%,(û<F‹u„_uÂ¯&á·àá÷[YÂÒ8a©þ:áÏCEÂºæ/Âú‡„\r9+Â†0‚°ÑyœðšIø7\\G”pN%nÂ\\#JY#ˆ›÷œ$JGe„.D™@}¢ll?qË‘-D¹Ô1¢|ä¢¢£/q»cQIz™¨Tq™¸Ãøqg”<Qùx!QUðœ¨îœOÜew“¨áZMÔü9GÜóA¸ç“Q?†OÜÛÿœx`@4DÄ˜¯‰F‰ÆmëD“M2ÄC±aÄCMXâáo_‰GJ{‰GY|âÑo™D«»æÄã`%N:CDê‘/g‰¨‡}DôŸ\"f‚ˆ9?HÄ¸|\'b\\ß	éfDB“6‘(ú@$&Ú‰CzDRq\r‘\"ª\"Ò°›ˆ´¬DæQw\"éLd­cˆÃ7DÎÁb\"çž&‘3Känw\"r\"ïa‘7–Kä«ùÆCD!¢žhíJ<©K#Ú\0KD›{%D›ßû‰§vÄOU3ˆ§þ–O‹#ˆ§ÓHÄÓµ=DÛ\r5¢ék¢ýÑþ¾6Ñ!Ex¦þÑñ ñÃ‡xþà9âÅ2xqLLt™^&ºÆ²‰®SÁÄËÊp¢›Œ9ÑšJtg8ÝËºˆîu(âÕ‚WÄëÔóÄâ³Äµ*DK\'ˆY¾DÏ‰/D/	¢Ÿá+¢½žèçL$úŸ¨%úÏŠ‰AS3Äà‡‹ÄP÷0bè£—Ä°£Ÿˆw\0\râŸÃÄˆ›þC%FÞ¯ F)3‰Q.£\rÄåQâ=¿bÜéUâiCb\"CL‚\\$&p‰I_]‰)oÆˆ\Zˆ©ûSÃ^›*3?Ó×ˆé_ÉÄÆmâ“zÄ\'…ÖÄ\'ïŸÊŸW…³w> f¯]#æ½ÝDÌ×0$æïÞGÌ÷zI,(/ }³&1%–T~%¾Äï!¾Št\"–…¾ –¯&¾>-K|ív…øºÊŽø&ö)±Zf±Ör;±î¤€Xç@\"Öï%Ö¿Ë!¾½ÜNlÚýƒØ¬£HlU÷\'¶þ|IüpßˆØ¦bOlÛ#Il›ˆ#~<dOìØ,Gìhž$~R{Fì‚{T‰=Ý<b/&„øÅÎ›øÅ½‚Ø¯©Jì/ê\"œs#ã[‰Ã“}ÄQ|6ql—ø-Ö‹ø­ÿ3ñ;Ö’øýñiâ÷Õ}Ä	§Ä	D<q#Eœ2úJœ:[LœŠ‚§ÙaÄÞâÑâ,T8÷‘8ûøqNSHœ[Ð&þ,»Hœ¿×L\\¾Iü}#“øÛû5qÙú\0qeîq­Â‘¸Ö=J\\¯?FÜÐƒ7Â}ˆÿd<ÀMÊwÀM7ºÀMÙ $Š	J‘þ€›}Ò@Y¯bpKí\"(¯\ZÊëö‚ò‹e Â7;Pqh\nÜ¼··•l@%×ƒà½%p§Épç_P9LTyÕ’	 ZÎuPFÕYP#´ÔX›w_15Å4P›óÔ¶}ê(€º—ž‚º±hpï=p_‰6¸ßfÜï&÷7ÿ÷¿;è*\ræAC[6h¸¾\n\ZñdAãDÐxc4)Üšüw7ÓÃ;@³QUð`’h®Ÿ	ÖÐ-Hæ åÅ*ÐêüðXå\nIùB70ÔãÝa±å ,o+øš€À£ B[\"éý Êè\nˆB¿± ö\nÄŽ†øµX€ÿá¿Abª1nšÁ´:dSôŸI*+RL€T¯\0vØ¤Íª€ô­ ý(ÒçA¦9d ëü Èš³\09$+8rW  ßó%ÈŸ¸\nl¼@S5(4v\0Ežr h^K¾\0OXSÀSN í~WÐ63´3Ží,CA{Ãÿ\\¿Ú—2@ûv1èpÿ?•àY:x–Óž-øžíö[¦ÁŸÁv 3ö!x‘Ùº|7/á÷€—\r’ÀËÑþàÉdðŠl(xÅ9¼êõ¼ú\"¼º~\0¼æQ^Á€757ícÀ›gMÀ›‚7ûž€*;AÏ<èÙ\rz£[@o°\nôþaÞÖ\0ýîk‚þzv ÿŠ\'ª3†‘À°Ök`Ø÷0ðÎó*0¼ŽÞ-@ƒw‡7ÀÈO`ÔaY0ZÞŒ9.Þ[c¥õÀX‹c`Üê50^¹Lxî\0&Zî]jÁ$©0)í>˜¼/|¸z|¸¡¦H7)rçÁ½!0…¨>rüO-LÝÔ\r¦N7€i/õÁ´\Z:˜öi7˜žÒf´YO¶Û€O¡{ÀÌ¿ÀL¿Hðù&Eðùçp0;õ(˜eæ$•€9ÅÍ`Îè0×ÊÌ#ß\0óšÀüv;ð…æGð…é9ðÅII°PâXxÝ\n,ðgŠÁ¢tXôs,Ye‚/“2ÀRU#°´ë	øêç°,D|³V½ukdƒ5A£`m:¬Û³¬Kÿ¾=~\0|ëŸ6È€\r±!`ÃÃã`³\Zlî‡‚ïn?\0[;Îƒ(Ýà‡¼X°-?vAÀvó\\°½8ü¤Ù~Bi€Ÿî¼»¦äÀîäJ°ûÕS°·£ì‹èû2î‚_ÆÒÁþ=®à×<ø5éøµx8ÆòÝÀ!g88ô>}¶\rS}Ž¥i“}tpŠ]N­\0§÷®ÓCàœìøs~8\rÏ½›YàbÇAð×Ä¸¤ø\\Úî.-¥ºzÁµÍ[À\rÃP’DÙ]Ò&½ÿøl!É4Ú‘d/ú“ä¤´Iò\\\"I~LDRÈÐ$)¼É\"),rHÛÊbIÛ©XÒöÄÒŽŒ4ÒÎ%$ej4Iy±†´{”DÒ´ë#i­“öè£I{ŠHÚ×%H:È\\’.ðŒ¤ûKŠ¤ß1NÚ§u›´/2†t€®O:P‘L:0D2t¨&G¥’Lß#ü˜F2?ûˆtÈÕƒt¨ÁŒt¨é\"éÐdéˆã8Éâ\Z™tO:Š#õ#2&YB<I–Ô	’å´\rÉJN‹d5J:~n‰t¼þ\r	j²Ï­$Á_¡HÀN\"È‰„Ô“†’$¤ð	ùVŠ„Â/P“{I˜©³$\\R	7Ã\"\\î“ˆ½$Ò±S$òÖ8uÏ~4$ÑL’ª$¶ü{ÛØ•Ä®è#q´IœK;H<ç)¯0›$„ßÕI\"~#It¢tB^™t\"ctâï0édÇÒÉ!tò‡d³•G²éÐ%V(\"¾SI²µc‘lo“_“.Xé“.dM’.›’œÕHÎÁoI®©ÿH—òRI—CnJ\'’ní®#y4Z“¼:X¤Û·±$ÿ	R€Ì$)à…4ð2¯F\níµ#…h‘¢4¾’¢ÌHQ‹ê¤è;HÒ½âvR¬±)vnéþ]RÜ‹bRÜÌR|À%ÒƒÄ›¤DûdR’<†”¤ÑOzHþÏDéáO)åJ)gHJµá’G“’ÒÛRIy¤§õ6¤§r¤ÌÆ_¤¬‰EÒ3©¿¤ç’\"Rö11)Û•@Êö}MÊõ{Lzß èš\nâö“\nëjIE;ßŠü\nHÅË¤B(©tYTæÒG*ß+Az}ô5éu2…Té>Aª\\+$½1œ$½é†‘ª,FHÕß’j¸É¤šk¯Iuk¤·Ó“¤†t	Ro©Yj©ùt#©ùª!©û‚ÔrªÔÒJjYÕ#½?å@jå©“Z¿›‘>lßCjË„’Ú²‹Hí/²Hfò¤O§Ÿ‘>¾ u=í&uCçIŸqOI_†6‘¾Ì®úýdIý÷¥IçUHaé¤ÁÎo¤!Ñ&Ò°Ui8Ò‡41;OšÜñœ4™w‰49À$MÎ=\"M~Lš®&Íœ’\'Íêï&Íù¿%ý<cEúõ‡ôó¡i^í	i>»´t’´h•úŸç¤E<™ôÛH™´ÒAZÁ±I«R*¤Õ RÒjz3iíÉ_ÒúÖÒúå!Òú£¤¿šWIÝ·þÝ·$K†‘%»\0²”‹6yó…déšd²L?…,;’BÞ’PGÞ’Á!Ëd9j;Y^2ˆ,¿ÖJVî +š\\$+>o\'+öÙ’·+´‘·»KÞž½BVº›KÞI#+W4“•ûO‘Uì“UÎ‘Uï–‘U{Äd5‡RònC&Y2LÖŒe’µ´§ÉZ0Gò¤Yþ¬ó¸‘¬;FÖ1\'ï5ÙIÞû·—l\0K\"\\Y%	[ÈÆY‡É&wkÉ&¯È&ãÈfgÈfƒd²¹m>ùððùHº\'Ù¢<|Ôwƒ|´ã3ùè¯Jòñ-ªäãß!Êždˆõm2d!‰‹Ÿ#ÃÚçÈû‡ddHF®´‘QrwÈhÏ\Z2º«‚ŒQÏ$ãöç‘ñ”Kdr—Lž S6ÁÈ”¢x2”Nf¤ú‘9£2g\\†Ìu.\'óucÉü»2dþý\r² Þƒ,Ì¸ENÝ\"‹Þk“Åÿ>‘O:÷ŸgäuédkãGä“+ò)g4Ù6”O¶MÜF¶-– Ûé‘íY)ä³®4òÙ\"ù<¾ˆ|!}…ìä{’ì¬ãGvÞ;I¾è“O¾8ÔCv±ö\"»4ì\"»\n!»r‹È®µt²ëª\ZùÒ#€|©°ˆ|YvŽ|¹~Š|­¨|­Ñ•|}óò\r”ù¦<Œ|ËCöðÓ&{æº‘½5\"È>`\'Ù§B¾­‰\'ûú\"¸œ&\\^!º¦‘ƒfƒw“ƒ¿$“ƒO“C çÉ¡ÔprXl=ùÎŽErÌµoä˜›Sä{Õ“äûÑ»ÈqugÈ®Æ’øf“À³äÄ+ÞäÄô£ä¤-‡ÉIÚ,rÒcgrrþUòÃ-&ä‡Æfä‡á8rŠTù1T–œ¶ÿ*9ý€9Ãªüd§/ùIhù©ìKòÓédr&y?9sÎžüìV(9›_CÎ® çpÃÈ9ÅÝäÈ…œBrÑ–nr‘!—\\´q€\\|žN~ùÒ™üòã}ò+ÔCò«çÉeí7Èå†!äò³zäŠ`Cò· rUf2¹Zâ¹ZÒ‡\\½Wž\\›H®ÎÇkT¯’ë¼¤Èo1oÉÚäÆ¯ÉM./ÉMoÉM³³äæ¸yò»Zä–ìûä–õò{£ä÷ÃrkØùÃO)r[À#rG/ƒÜ¹/”Üõ_ºý‚É½GBÈ}}ãä¯æä¯¼ò×Ó&ä¡šÝäá3¿ÈÃ[È#ÿõxôä	ò¨ýòè\0–<:\r\'uÂÉã~{Èß¶¾$O”‘\'\ZƒÈ“ñäéýeäi+yFÔNþ9Mþ‘Mž={Š<û5<\'xDžßZIžWýEžoU#ÏzMþenAþÁ‘Ÿ’—³’ÿÜê$¯‘“Ékuöä¿+nä;¬)çØ©/Š4J‘¹þ˜²Åº›²ÅY™²Å­‰²%4Ÿ¢pãE¡æ1EÑû\"eûÖ&ÊösK%Š7EUöEZLQ_‘¡ì’Ê£ìºÓGÑH{JÙM,£ì.v¥h®8R´û(:uë”½¾\Z”Ü&Êþ6ÊJ8Åp—%Å0¶šb„ SŒ’¬)FóŠÉ1Å4=ŽbúNšbFRÌƒb)æe\\Ê¡W”#ÆK¯ŠåŠ}?Åê­)åøÎzÊñÌ—È¥\nP§\0#|\n\"P›‚ˆ­£ ú(˜#›(øi\'\náä	\nùl>…ú_¾¬¤g/QhäWúGi\ncë/\nsHaÑpã…åLa\' pU®…ûõ	EðÕ‚\"ÜTD¹ÇPNë´QN×õPl·ü¦8\\ÞM9ãü‚ræ%œrVÑr–|ŠrÖZ‚r66‰rN³›rÎÝ“r>Vžrá¤å‚CÅÉÔ†âtÔ‘âltââº“âpŽâºcƒâêp”â\ZÞO¹L¸E¹RùšrUz‘rUm„r5ŸO¹vHƒrí|&åZìÊõõyÊ\rÓ`ÊÍº«mg(žrÎO“â)p¥xzò)^½”ÛE¡ß;•¿/N”€KJÐUJP˜4ø_éRBj(!#Ñ”°¿)w”ÏQÂ¹û(w6(‘º$JÔétJô•jJW‡›ò’û)%¾Û„ò\0YMyàìMyÐK¢$JRï±(‰©‡(Iy£”\r<%E·Œ’?By—@y¼ëå±É0%­½’’ÖË¤¤_\"PÒKz)éÕw)R“”°‡ò$Wò”«NÉ¼Æ£dí<HyöWƒòœÏ <ÿ(AÉÉÆRr:ßSr9a”|ùPJ~ÜÊ‹í.”‚+”BD-¥ðÝ-J‘Žå%!ò’º‡RÚšIyu¯šRvð¥œ´N©x{•òÚD“R©ÛGy³ûå\r-‡òÆµŽR•\"O©éyJ©ù®O©e¬SjÛº)u§r)õj”·‡¬(oûÊ)\r=2”f“¿”fÇÊ»Ü‡”–Ûã”÷ò”÷Š(Ê•~Ê‡‡Z”Ý‡(móû(g•(m?)N³”Î™6Ê\'ÊJ—‚ˆÒ#¦ô\\¢ô†)}¤PJ¹å«¾eà&Š2ƒ¢ÎZR†m”!N)eH¼Ÿ2t²‹2ô©€2¬*¤s§Œ*QÆ¶…QÆ|.RÆ¯HQÆ=åÿ“@¯§|ÇºQ¦þ”©38ÊT[eºÊ›2#sŠ2ó7ŒòÃ¢Šòãj åÇÍ”Ùª\0ÊhJùµg‰²ì|„²|íe¹9‡ògÛåÏ™û”µ¬g”õMí”\ruÊ§ò·Ä•ò~™òï‘*!«@•¹LÝ”ì@Ýôþ.Uò¾usêZµ©[d©òý	Ôm]-TÅN&uÇ×T•¸½T•—ZTUõwTU·(ªêõWTÕŒgTµMXªÚÎ:ªZ¸!U-ù=u×VªÆè)êîìª&Ù‰ª…\n¡jŸ•¤êÄÎPu>£êQº©z—!TýûKTýQuÍ2uÿ·‹ÔMTƒ­ËTH5ù{žjºÍ“jº=—jvLšjöü=õà­¿Tó<8õÐžêa]%êa&õðU7ê£\rªÅi-ªÅ÷kT‹ßpêÑ¸*ªõ#ÕêÔÒþ›\nM%Sa«›¨€WM\0©hÏ³TÜ–.*®ä •0œH¡4*éé•¼f@¥Hí¦RŠŽR©û\n©4îg*}Ê$ý¤2›PY=ªTÎA*•þ òRù-¨¥vª â\rU;O})¥Š·¨Q­Œ¨ÖÏÌ©¶S©¶9bªU\ZÕ¡XžzæÄ\'ê™(Wê™Õ`êÙäWTGX/õÜ—!êy£Ô\ZÉÔÚ¨–ÿRê;¨N_ßS}Í©Î5êeòAª›ÅªÛå­T·¶\'T÷¬}Ô«{c¨W¼©WƒË¨×õîS¯ÿÙE½d@½‘TO½y%z«°”êp‹êóÇŠê»#êÛàK\r˜Ô£*yPÅÔÀ°ÛÔÀ¢%jpŽ\Z\ZTA\rÍv¤†þ QÃ^¿¡†Í&Rï´¼ †‹­©wû‚¨×™Ôˆ»óÔ˜-ZÔ{¢hê½ÌXê½O¨±«Ô¸ã[¨ñëzÔ$mê£·û¨/vRÓ†¯SÓå©éâ÷ÔL…š™RAÍl˜¥fÙ:QŸíW¤>?ü‹š½ý5Û+›š½zšëÇ¢æí’§æ7GP‚¦©ãÅÔÂ“2ÔÂõÏÔ¢WúÔ¢u9j±Zµø/Z²{/µ´³‡Z&SËéÔ\n«(j¥n>õ\rzµJ·˜ZõTZRkù,j=}ƒúV¤O}r–úö1µ±{†Út@mò¹I}—B}77B}£J}ÿ{µõö_ê¤õcívjûÉjÙ€ÚÉåR;cj©I	ÔÎ™ýÔO—J¨ŸòÑÔ.™\"jWZ\"µ»U‡ÚkhKíûoús¨ýmê Ä)ê`‰-uXòuÄt–:º­Œ:^ùú-Ê†úÝEH²ÙD¾¾—:ý!…úc®’:{iu¶º•:»âGo|H]è¼Bý…¦þŠw¦þ66¡.ÑØÔ¥³{©Ë÷ü¨+ƒQÔUðu5òõR=õÏ}uÍ÷u}Ë#êºÎuýfu{ˆú×·…ú·=ˆúOç#õ_…-õßHMsš¶ÉÝ‹&…;LÛ,1MÛì¿@Ûü­ˆ&#¡ÉXëÒ¶ìAÑ¶†ÚÐ¶¦†Ñä>ûÒä5·Òäû‹hÛ\\WhŠ¯ëiJ	4¥¤K4¥Fm\'3•¶³äMEcž¦Ò…§©×ÑÔIv´]2tÚ.ÍRš†Â*MSáM³qŒ¦`h{”nÐöPi{Ò ´=Ïƒh{zçhÚ¨Vš¶W	MçÆ[š®a,M_!‰¶Wð”¶×ö$m¿Ê\"mÿ£%Ú4ešAËOša¤4Í(ñ\rÍxä\ZÍd;‰fæG3•ð§™¥ÇÐÌzð´ƒ˜ï4sÏ@Úa¿\nÚ‘y4‹š¥f¹D YÑŽ™ŽÒ IT\ZH§[ŽÓÖ4ä÷4‚Ö\Zqû\Z>¦‘M:id\Z9n™FQ·£QÞ`h4å»4ºß<x˜ÆàÑ˜ì&\Z[¯ˆÆÎ§±WoÑ8tÆ£n¢ñÏ£ñ¯–ÐÏÆiÂ®û4:&\neÓNè<¢ø>H;y¶‡fs=vúYÍ.ÉæÐrŠæÐõ‘v&þíìõFš#Ü€vní)íº›vá.šváÙ]Ú…wþ4\'‹_4güIšsw\"íbÍ(írÂšûn+Úµ»6´ëè‹´ëqƒ´ò´›ûRi·Ž§Ðn-n¥ydÒ<QÏhÞ™×i>ßÞÑüÎ| ù[ÙÑ¬#i[üi¡³¦´¨WÁ´èe:-fäíÞ‡5ZìZlC-ög-ž\"K‹Ï×¤=€>¤%Ü/¡%¢i‰ç¿Ó¯÷Ò}Ø´Ä-é¨-¥ñí±¹–™AK+¼@Ë€gÑžèß£eIŠhÏ¥hÏ•%i9ÀKZîr\'-Ï¨•–wNË{ªFË·§½0ãÒ^˜+Ñ\n|Uhþ‡i…ÚY´Bê\Z­°û=­ôà>Z©ç3ZeR>­êá+ZÕ\')ZÍƒ&ZÍòwZ­ÖYZíë\\Z,‡V—~†V7ù†Vÿ%†Ö@h\rBiZÃ)ZS‚ÖôGö®†Fû ,OkƒÄÐÚ®-ÑÚîÐÚí@Z{@­}¹Ö±e/­#1“Öù°˜ÖY¨@ûíNë†ÍÓºŸ…ÓzÎGÐz.ž£õe+Ó>JÓ¾ìÖ¡õ¿|Hëï8Iûªw6pqŽ6ŒÔ¡D^¤Í´±šÚøeÚwæÚ÷‹´‰\ZmØ M>q¥M\r7Óf\rgh³6C´Ù÷hs§hd)Úâ¥eÚ’Ã5Ú’3¶TÉ¤-T¢­)ÒVÕ·ÓVwÅÓV{nÐV“iè_h:?ÓÖ_¥­ß\\¡­céÊ·éRhúæ™7ô­T]n_?]¾â*]ád}›ü]º¢Ë(]1Y¾cÿVúÎËte‚®¼ñ–®bâAW\r¾OWÛlB×¨ÙB×>ZN×~M×~ÿ~àÖÝp‹;ÝðÑOºÑ¶º±ßºq›nÒSJ7íâÐÍ.ì¥›=Ð§¼:N7—ûL7Ï¹D?”†§ÑO¢[pbègêéV8kºUP-Ýª}•v¦Cg“ép¤#àUÓ‘c\rtT÷:fñ\ZkèEÇ†Ü¤cÓ´éØZw:ŽnLÇM£è¸ù5:þÝN:þƒ-h¥ƒ_žÓI3:©IšNŽ3£“«èôÑktÆ©Y:#¿Îzþ‡Î–þDg«øÓ9tÍƒÎºBç\"ÿÐyjè¼K³tÞB:A¨4Ò…~›é¢?1tñi5º8=—.Î£‹ŽÐO<«¡Û$UÓmÚué6Üé¶3út‡Gú™—ÁôóMôóo/Ó_µÒ/êxÑ]Ð]ƒt7øUº{y3ýšF)ý7™îqc+Ýc´†î)}˜îuåý6S‘î««N÷ýE¥ûéß¤(¿  }è¹éoÚèAíAô`‰9z°×6zá=ÂEì§G.xÐ£´è÷NÑc‘ôûì:zÜ¿ez|pýû]úƒw\ZôâUzBÆ)zÒÚ/z²ë,=ù†=¹,—ž*%¤§ªØÒG\\¥?n¿HO¤§‡ï§§ÏÎÑ3vÑèÂú“¡Ýô§;æèY‡Õéy^ùô™Ïè…ZfôRÙyzi–^æ©I/‹	£¿ÞaDãœE¯µ¾C¯-ùCo¾Å¥·„ž¢¿_§wº&Ñ?\r£wå_ w¯ŽÑ{†íè½‚ôÞØ‹ôÞ„(zoÿ5úgÛVzr(ý«’>7GHÌ¤Àô‘òpúè[€>æüœ>æÞEß|“>±™>^xŽ>Þ¨Aÿæm@ÿîÒFÿÞ&AŸ8y>©èLŸ¬èÓv5ôé[\"úôýG‚>}öÒ_ú¬—}n›}.×‘¾hvœ¾hîM_t„Ð—Ü£/Y‡ÐWé+‹é«šôUCúŸ{2ôu¡}£¤‰!q«‹±i,Ž!é°Æ²ÙÂØŒ«aÈøÿ`È¤Â²¡¡Ù‡4†ìbc‹aCn6C>“ÆØ&zÄPt-`(.80vj1”O¥0”ÏÒÊ•{*e•Zc†šñc†\Zì)Cíž˜¡Ö+ÇØ%{›±»4•¡ihÊÐìdhY”3´H­Ñz†¶Ã%†ŽMC§ÉÐ=Æ`èÞ|ÆÐ{RÎÐ7cèÿ{)Œ}$\ZÃ@V•aàÃ0’\Zf…¾`÷ÞdÄR‡…G„AŒ£ŸÙ«ú«×ÝŒc*ŒcÿDŒãõûÐmïÐŠ\\5xÏ0¡”‡#ÆÀ°&q·ÇžA|ZÁ\0ý2äBõO5ƒùÀ”Á|±ÈàÎ>`·Í3„þ2Ä!ïÖ¡êŒ“äxÆÉbÆÉrŒÓpã´§?Ãvõ>ÃÞÐ‡á ¾ƒá\0{Çpðd8¶|dœ©1Îóçg®2Î¯§2.üf0œ¬_1œ:*N\\†³\nÃe%…áZ&É¸¤Â¸L2g\\®™g\\î…2Ü¼Ÿ2Üuv0Üs ÷¶AÆUrãša\rãV•ÃcÚ‹á=uŽáóƒÈ¸XÍð£~eø«¦3ü363iŒ Í`F°ì#4Z–Z Í3b„?bÜ-0\"TQþŒ¨ðMŒ¨ô=ŒËFÌõŒ{_3â`UŒxõÝŒÑÃŒÿFâYFâò8ãáÏýŒ”[Œ”GŒÔÒ	ÆãÍ²Œt|	#ÍÈÜñ”ñì²ãY¾7#{º’‘½lÊÈ1í`äà9ç\'¹ë§yRïygzùíÍŒ{\\\"£Hç£8.ˆQü#™ñÊJñêÕF¹ÞSFE6À¨¨fTtU0^›92*eW•%•?õop?Ui\0£š‡dT‡z2ªÛ\\ÕëŒš®6F¯„Qç€gÔ}^`ÔÍ[2ê{“oÏ)1Þz2oß¿c4ä63\ZkŒæÝjŒæô¯Œw5ŒûYÆ{\rÆ{>£Õl‰ñácãÃº£Í`|dº1>fJ1ÚS¬†ŒNîãSs?£Ë‰Èè\nÿÁèúx˜ÑM¶bôDù3z²ú=Õ»}O¢}ÝÆÛzÆW‰¿Œ¯®RŒ\n1´.Á®ngŒ<ÎgŒo¡1¾‹Œ‰Ã·wû“ö½ŒI\'[Æ”Q+cðaÌ&<cÌmþÁ˜Ókeü<”Æø|‰1ÿßY<ÛÈX²ìb,\Zb¬Š]«ÉÒŒ?ÊöŒ?Õßk®›kU\nŒ3íŒ\r9Æß´<Æ?{\Zãß:™)¡§ÃÜ”pœ)©u„)Ù‘ÅÜŒŽaJã¤™2Ô˜²²˜[/1·Ìê3·¾È`Êa¾1å®¾cÊË\\gÊk\r0d/3\\Æ™Û¦™ŠG{™ŠP¦’i4s‡þ:Sùr5S¥7Œ©¼eª]]gª•f1w]òfîº&ÏÜ••ÊÜÒÇÜý÷=SÝÀÔ¼ÞÁÔ|9ÅÔê^ejý±eî‰Odîùs—©½ÖÏÔw…2÷BN0÷íÝÄÜÿà.Ó ‰Æ4¼QÆ4Jqb\Z5¬1c˜&Š¿™&œd¦Éß¦é	+¦YÖ=æÁCsÌƒ=ÞLóH}æ¡ž8æ¡^æaZÓ\" –i‘hÇ<Ê{È<š¤Î<Ú¢Ê´Ô6dZ©leZg0­ÌckLèç½Løæ`&¼(•	ÿ¸Îx¹Làö&\"ÜŒ‰,ëbb\Z¥™¸íû™¸=;˜8Œ*_}”Iìœe’†àLòŸe&õ5ŠImKfÒ%ùLzåI&[æ,“Ý­ËäÈU19³îL®—,S(Áa\n½¯1E7iLñí¦\rüó”^ó´*È´¥O2í²™vý³L{Û¦ƒÀtðxÎtð9Çt<’Í<ç/f^hzÈtBW3MÍ˜ÎõñÌ‹­ÑL—ÐóÌK¤bæåMhæL·K;˜n›™î6ÌkC$æµ_·™×³˜×\"˜7Ždz8D1=º·1=	W™žÿ|˜^‘AL¯^o¦í¦OV&Ów/Žéw¸éçQÆôßÛÇôg\\aúóÞ3ýÏó˜þ¹¨ÿ¬3¶®2ÄÌ€¯kÌàÅqf¨™3lh€yGîóN‹93üy.3BqQw•‰MbF>xÊŒ¬d1£™1üDæ½CzÌ{™±ô\"flÿkæ}]æ}·rf¥‰g]ÌŒsŽ`Æ¹v3ã¯Ä0ØÅ3Ä´3 ýÌÄÊf’ÏSfrÁWæCw3ÅIŸ™òM™ùÈÎˆ™º²‰™1¸Ì|b£ÌÌTNef^ÏafÑÖ˜Ï°^ÌìÆ3ÌìÌœßŽÌÜö#Ì¼ûDfþ¥fþçuæ	}æ‹ÛÎÌ‚t_fÁ¸%³ìÇ,\\gh3KþÌ1K³L™¯\n>2_ý™a¾Z[c–½b–Çœf–)0Ë\'0+Ì}˜¯Gª˜ož„2«sú™5QÌ·Fç™o‹n1×‰Ìf\nÙÔÌlšc¶¯evRŸ2»o>fv?YbvÿÙÇìyÌaö9‰™_\"k™_¦=™ýKÑÌ¯»™-jÌ!SæÐ^sèÃ-æÐ—gÌ¡¹Tæ0»†9b÷€9’HcŽEC™ceLæ÷¾Ræ„Cs\"J†9õ•9Y(ÁœÚËœv¸Çœe?aÎÝ™cþ¬ÌeÎƒÿ˜‹\'<™KyFÌåðæòà\ZseŸ¹òe7sµês­Íž¹®1ÀünËüûp\'óŸ\rÀüªÏ’ø™Î’T.bIÒ²¤ºûYÒ¾±¤K±dÉ³d<n°d\nY²û\ZX²n¬-’Ž,9ÕW,¹w?XòÜz–üõ/¬m2*¬mj±¬m,\rÖ¶€H–âr7k{ÀCÖö¦rÖöq–²‚µãÕY–ª\"¥¶ÿ7Kí·&K“ÍR/êfíz$diíöaí‰HféÌè²t6lXz×ÍYzñpÖÞ AÖÞþpÖ¾=çXûo¡XÀ5–AC/Ë`òË`YŸeð§™eØQÊ2jmcCÐ,ã+,“ËLÍ:øøë`#„eîÕÍ2O‰b\Z`qúÅ²¸Ã:*˜`íŸaYM&³Ž5>a[&°Ž7¶±Ž/ÑX°-*,ØK`!d²‚3,„Ï\nQœÉBªg¡ûŸ±0†,P\'‹ŽobYd“ç,JQ‹ªûšEõ²YŒo\'X,\rÏ×Å{Àâ7$±ÜR–Ðv™%ô™a	›ËYâš,ë±ÖÉ™K¬“‹–ÍÍ~–·<ËæÉ1Ö©[{Y§Mî³lÏO²ìUÎ³ÎþúÎr¼a9Ù]a¹€J,—%Ö¥“bÖ•7ö,·ü<–»e>ë*5uu%†u­q˜uCéë.ŸuãRËÏò¸Çò\\dyC±|^<fù|+gÝ&•°|ÍJY¾GÒX~Ò«,¿wY~ñx–ÿù–Ó<+Pc’ìf}ÚÄ\nëwaÝ9ÐÊºÃ\n/8ÂºÛúafËŠÀ~bEt™±¢ž~cÅ¼úÀº÷už»Ë«ÌŠ?eÅ{³YñÙa¬ø±$V‚r+‰´‰•ËJú$d¥$e¥ld±RgÔXiv¶¬4_VZ„•Þû„•‘WÀÊøú‰õÄí?ßÊXOUa¬Ì_YY¿î²rŸXy>¬¼ÄVÞYV¾ì!V~N<+2‚õ‚°ŸU4ù™UŠÓc½:Lf½²ªf•k¬²Êo±*†Xo–‡XÕ5š¬ze_VÃiKV£;«™óŠÕ²ï?‹¬HëC‰õ1Ç—Õ®¥ÉjOðcuh°:±9¬Î‘JÖ§Ï·Y]Ô·¬n¶3«GcÕãÅêÝ²úîL°úþJ°ú!r¬¯û”YW¬Ú~Ö ÿk°b‰5ä½“5sb\rßµg}n`M)°ÆSüYß/Ø±&§YSÝ×XÓÖtxëÇ‰§¬ïÞ³f÷½dÍRSXsæ\\Ö\\“%k> –5ÿuŽµXgÆú…Ìú5÷‹µd+ÏZ¦¿a­lF³Vbw±VçìYzGYë\ZY6³%t‹Ù‡o±7=mdKýdKñØR!|¶Tôq¶ôv)¶ô.¶´&-sÊ-s;™½¥)”½QÇÞú|[n÷[^ÆŽ-ÿè2[±ÂV²}ÁVzq½£Î€½°U¤ylõ¨lõ_*lÍj¶Ï—­šÉÖzeÎÞÓ\'ÁÖ>žÍÖfcë(]`ë¤²uµÚÙº¹T¶žHÌÖ÷´ü{_]Û@­m`Î6³Ù›Ø‡¾<a±a	±f[D.²é²å>gC?`CíúÙ°Zlø|3Ég±QÒ¹lt)`³qúilœŽûêÍÆ#VØx¿e6>õ\0›(±‡\r¦N±ÁþëlRà›ôã+›\"UÁ¦œ›eS¯9±©þZlÚ=›ŽwdÓFÙÌý…læp6Ó*‘ÍÞWÄæ€³9œr6Ç­„Í¼Åæf¬²ùûÊØü[OØ|¿E6!Ÿ-HXb{Ù¢$<[4ãÄ¶¾fÍ>õV‰}šóŒmk^Í¶]¸Ì¶MdÛe´±íž6³í>ícÛv°íÿÜg;À—Øç‚Ø™4ö™c?Øgí`;¾©fŸó\'±«³f8lgf2Û9o7Û¥‚Êvc±/5d_Ö·d_ª³/;ïe_®˜d_QWf_ÙmÊ¾r2›}mÒŽ}m£˜}=Ê€}Ã€Á¾åÜÁö0¢³=[Ùv²=Z7Ø^cWØÞ»3ØÞwÜÙÞoÙ>É3l_;Ðû;Xî;;DÆÐf‡ÕÆ³Ã\ZzÙw´\nÙáÏÂØwO±ØwóŒØ÷\ZØ‘»4Ù‘gÙ‘Y$vTƒ	;êS1;ª÷	;:4Š}ÏgûÞ¼ˆëþ”}¿ï;÷€ObÇŸmbÇßhc?ðèd?hg\'Zß`?º5Î~ôÚý8z7;mÛyvš¢4;íø=ö“®Ïì\'?ŠÙ™<væ‡ýìì˜óìœ\Zv®ò\'vî©·ìÜàdvn•G8ÍÎû0ÄÎç?gç_ÚÎÎ¿Ã~Quœ]d¡Í.êlgû6±Kn¹²K¼O°K\n°KÑoÙ¥ô×ìWÕXö«žv™s»¼³•]amÇ~Ó³‹]eµ•ý6<‘Ýøà\Zû=Îþ¨‰ewª°»\"ÆÙ]­Îìn«ûìÏ±£ìÏŸØ_n|b‰Mg÷#Ï²ûíØN8ö€ûoöÀÌeöàs]öa{¨®”=¢6Äž@ù°\'ØNì	á\"{êÒ {êÉ+öÌ!öPgöOÏ@ö¼c*{þü7öbÔ\nû7£Šý›s˜ýû„&{i«<{i{é0‰½²ç\Z{Åi„½ŸÃþƒUd¯é·±×NE³×9#ì\r	öF*“ý*ÇþgùŸè3ì¥Ž„·G²Ã‘\nÖàlî‚q¤Ÿpd©–Ù{åœ-ÍÛ9re\nùïu™|Žb$š³óàGeëGeàG•mÈQ›>ÍÙõ¦£…1ãh_âèXpt/¶pô¯›sö*]âìí¯æì³»ÀÙçþ’³ÿ¬gÿ5.ç€ïkŽ}\ZÇ ÙŸcüë\'ÇLs€cö¸‘sÐ¡”sÐY–cnÁã˜ŸœârÓä¹´™säÚCÎÑ,Ç<÷Ÿ8Îq=ut{0z@‘×ØàÀÓ>q\09\"H]ã\0³ƒ„‘e±ƒÞdÏAg>ç`x%<ÝƒƒÈàà¿pRâÁ\nñŒ‡øLJ¹sÀ{¹°ÃCÊrHK6r{>‡ÜÎ¡X19”oFÚQ‡>¸ÄaÀwq­õNm ‡Ë*åp¹,×!–ÃsìàðýU9\0ÍµsÄ‡â8â*ç„ã.Žõ‘ÏkJ5Ç:«s2õ(çt›\rÇÎõ2Ç>ôÇA‡Ëq¸aÏ9ãÉ9›õ’ãxÃq´Xçœ‹+ç\\ÈHá\\xJâ8é<â8K^ç8Ëýå\\¼RÉq±¥r\\*s\\SÑœKÈÎå¦zÎåž6Ž»àçêkÎÕÕÎ-KÇS#ãIMãxžûÎñ\\päxwÚs|n.qünårü•Ú8~\rœ ³DNÐÀ\'Xæ\'8ô7\'ø=œ\Zòˆzßƒ¶ÚÈ¹£´Â	×âqîþ×ÿèN.\'z œsÏ…É‰•8±Ëœû…xÎýe\'îX#\'ÎàÄEãÄë{pâÏþäÄÿKá<hs’¬Žq’ÞÏsþ÷ž”žaÎ#\rUN*™ÁIÍùÌIs9ÊIûfÁI›Wã¤-â¤_á¤§Kq2ÜœŒkKœ§gaœ,]NVäSNVÖ\nç™õ~N6§ƒ“}Ò‘“TËÉŸ2å¼HŽàÙá”Ý9%iO8/£t8¯Úðœò(NEn%çuÇN%íçŒSMòàTÿvãÔmåÔ]¿Í©‹ãÔ/xrÞŽ 8\rw|8\rÏe9ÔœfE\'NË3á:9-ÿ*8­¸ýœÖ|NkƒçC¡;çC›óañ§-a7ç£lçã¾tÎÇÏåœvä-Nû(—ÓÅøËéâätoæô`\n8=I×9=Êœ^ô0§÷þ!NoËNßs#ÎçüBÎçq[Î——ºœ~ŸZNÿ·Çœ¯ÓéœQ#gXjž3¢{ž3j‘Á½/æŒ-—rÆ¾qÆsÑœo\r)œï\nQœï¿–8ŒbÎTI:gúUg&Û…33¿óc¥”3KPá,zÏr~5ks~\'\'q–dÄœ¥´`ÎÒKGÎòŽóœ•ŸÎŸuÎßÈ&Î¿x®ä³^®ÔHWÚàÞþre4V¹2-S\\™…«Ü-¡B®\\ŒWîSWÁ®•«x*˜»}e7WéÁwç¬W\\áª\\>ÍU-Wâª-\'sÕKD\\\r££\\Í€c\\­(_®v\\4W{HŸ«ÛkÈÕÃÝãî5ýÉÝ¿”{àV×ÐOÈ5léà\Z|á\Z)ypÊ‘\\cè)®qT×äL	×äÞI®I=ŽkjrÍ%*¸æ3lîám§¸v¯¸Gõ-¸–\ZM\\Ë½\\«#;¹Võ6Üc°Üc³(.Bê=á°ÈEDnç\"oús1JI\\á)s–ÎÅ„^åbªÌ¸˜ßR\\ì\r;.ø3œKîjâ’Ç¹Ô !.mûY.3å/—ud—USÏe7*r9­>\\®z—{Ä„Ë½Èârg,¹B¥í\\á%Wôê8W|å\"×ºì\r×æ¯€{*2™{Ú+œkkvžk§ùœkG\råÚ]á:W¹öéÜ³¸g½OrÏQô¹ç¼Ö¸çÂº¸N»T¸Îë§¹.«®k¨2×õž÷Ò¾«ÜKå«Ü+wÛ¹î²\"îÕˆÜ«oßs¯Elå^›­åÞ`[soTfp=a\\¯£ç¹B_nÀ)Gn@Ñn`Ñnà8—¼îÃ\r9²Î\rIËâ†¶<àÞI»Ë½Óvž{gã7<î÷®ç6n$“ÎÊ–åF}Fq£ÅTnÌ)OnÌª	÷>µŸ{¿9œû`,›Œä&*å&êå&{ØpSì/sSfîrS¹ÒÜÔÑfnúÛ\0nzë]nÆõíÜŒçËÜ\'ªÙÜ§F\nÜÌ(47³j€›5»‹û¬B“›­£ÄÍŽqææìvçæB~qsÓƒ¹¹UJÜ¼q\n·¨ú·„Eä–åp_¶à¾\Z¿É}õï7·ìònY¦\n·ìÅnyæwnÅuîk·›Ü×%\'¸•)Üª¸nÕÚ*·šUÍ­Ý™Ç­íòæÖ|æÖ¯·rß:ã¾íËæ6’â6Ïç6†]á6¹èp›Þôp›M&¹ÍvŠÿiã6—ôrß2¹í{Ý¸ÍíÜ®öËÜÞ|n_~#÷s-…ûeË\n÷Ëz1·K·ÿÄ·ÿe<·¿v7÷«E÷k›w’Â|u‹;¼ÆáŽüâŽ®ÞåŽIáŽÝapÇÍÇ¹ßÞFs\'÷q\'ßˆ¸S^q§*Ïqgo{sgs‘Ü¹Ow¸?÷}åþœþÄ·ðç.¬Ïr7up?Þåþ>Šäþþ»‡»|àw5šÄýóžÏ]Wuâ®SC¸ëþ0îúÝiî_N÷ß‘Ü$î¿Ûr<	¦7ORæ3OÒXŠ·ÙJ·9Ïš·¹¯›\'-cÉ“žÿÈ“=¨ÃÛÏåÉS1<÷ç<ÅŸ]<¥hÞŽ¡W¼ŸryÊó^<Õ—î<õ˜<õ:OƒXÈÓøÈäíïàíNÍæíž¼ÉÓ„Ÿái:¤ó4Ï\Zñ4¯­ò4—ûxZ’·xZwæx{nÕò´«Üxº’Ûxº¬ÿ²‘ÅÓKÎäé/	yûd›yû5ð|ÞÌ3À‚<ƒ†<Ãýž1Ö‘gLuáG}â¿GñL£<Óû<žÙÂ$ïý[Þ¡‰Þáóûy‡ã±<q:ÏJâ,ÏJÏ;&?Ä;&<Î;vî\rþaŽ‡À²yˆÞ<Ô}úl\"UÁÃ¼iäaêy˜¶e–\ZÇÃ—kðHÖ%<2°Ä£všð¨“J<úå*=7Ç”¸Äco]ãq-GxÜÁ[<á¶<qÍ4ïD•,ïD—-ïÄZï¤¹\"ÏfKÏƒáÙ$\"x§;òlÁZžmµÏ®Ï³ÿ®Ás¸ÒÄ;‹?Ï;[ñ™ç([Ås$\\ç9>LåÃ•òÎ5$òÎ½?Âs²±â9Å¸ðœÙÒ<ØÏ5z3ï’Š7ï,ˆwYº„w¹éïŠAïš/ïæ¼[„xž‡ñ\'ž\'É˜çEæyÅhò¼]°<ßðDžß–BžŸ§=Ïïé}žÿH&/@ç/à¥/p[%/Ôå…|Êã…óBgya¥h^8‚Ë¿ýwWR‚‰›ãE‘fyQ¼^TÕ/Ú¦•³û/æ¿ÚÝ—HäÝ_”àÅKöñâ#Uyñß¯ñJx.úðÒÍÝxéwßñžºØó2›>ð²îVó²ªÇyÏ4ðž	yÏŠŸðž—ûñ²ÍÜxÙLx9ô]¼Ü\nïEö_^i3¯ÐÀ†W¼k?¯xú¯Ä¸“WbbÊ+±”å•Üèä½”úÅ+ëå½:VÌ{•UÇ{Õø“W¦Â+¯°åUh]ç½ÖtãUšPyof¹¼\ZÑ^ÍË;¼ºßÖ¼zh¯žðÞJó\ZŽœà5¢nò\Zûp¼Æe€×¨ËkþíÂ{g¡Ì{|Ÿ×¢z˜÷¾n…×z<–×vÎ‹×Öµ‹×î>Âûäö×åº›×í²Ìëkx}¥6¼Ï!bÞçñ·¼/:\'x_O|â\rœå\rÝÆ©ÿÉÝýœ7Jñæ:œæ~|Âûf»È›D(ñ¦¶]ãMýãÍäðf	¼¹jÞÏäÞoÞï×\'xK‰xKÏoò–>`yKêyËØ	Þ\nþ7o5›Ï[ýËû£ïË[7¦òþê yñ#¼«ÿø›nð7µ,ñ%kjùRËD¾º/ËåoÝ>È—íåË›xòåïlåË·4ó=TùŠyk|Åš§üíþöÈRþöWßùJÕ|å‡ù*k|u0›¯þw™¯q™Å×ð\nãk4§ñwó\nøšËr|­DKþÙ3|m•p¾6-•¯Í¯áëÆ:óõ¤~óõ_¿àïõ\'ñ÷¼Äß÷ÍßïÜÍ?À¸È?ÐRÊ7zþ“oÜ@â›@~óMÈª|Q(ßÌûßÜmÿ°Âþ›A¾E˜ÿèÝ­ü£IP¾Õ±Í|«Û¡üãÙ\'ø@Žq…ÌG4å£ûø˜ck|Ì7»U“Oräã{Ìù„èO|¢»%4þÃ\'ùó)2‘|J,„OóáÓ+¾òé½‰|f¿>Ÿ{p7ŸËkàó7‡ð&ã|Á™i¾]É2ZøÂ._T2Î·áÛ&eñí~êñíþ|á_XÎç;Erø.£ø®#pþ•\0/¾[Ñ%¾»ÀœSZ–sÏÿÖ‘¯|›Z|!ßc²‡ï)áÃ÷D-ð=ñŽ|/Ÿb¾Wíq¾WsßÓÍ÷ÙáÏ÷É~Á÷\rãûýµäBñÉ;ùA¢1~°†!?øü?øêG~ÇoNàße}àß]~Ïx¼ñî\r?j„ÓçGqøQmüè\'Lþ=36ÿž¿4ÿÞp7ÿÞ\n†ßéÿ~˜>?N¶Š§$ÇßçÇ_GóüÂò–<ø‰?ùë%ù©ÖþãIü´ãütü>~:÷:?Cþÿé/~f¢ÿÙÖ$~öŸa~ŽÝE~î£7üÜ†6~SŸW×ÀÏ˜ÊÏOÅñó3ø/ôçø…osù%ø~É÷8þKã/ü—¡§ø¥KüWÃGùeç3ùe¯óËùëüòN~ÅË-üJsuþË‹üªòoüê©#ü\ZÝ¯ü\Zû2~¿Vö¿®~ßñ›xãüæ5k~‹/¿(à¿ÿ¨ÊßÎo•~ÂÿHtâ·«ùípO~Çˆ/¿sÜ”ÿI æwÙMð»Š·ñ{ºþðû£øŸSËù_®ƒüþñ]üC. Åä¿ämæó‡\\þðƒ)þˆ>š?¦§Ï—‰çþá;AãsrçO¬ëð§î–óg†üø³RSüÙ~ÿ3oŒÿóÀŸ¯‹âÏ/\rðZRø‹Ãüßíüß_ñ×´îñ×--øÿž˜	¤0[Re(ÁæßËé\nš@ºë¿œy\'Øúû¥@Î\"T ÿé‹@áñ¸@¡ý“@Ñ®_ ¶ßü(PºC(¥$vœ\rìTèì4i(«ð*‘‡*žT«§j×O	ÔŠê¡úŸ‚]Ã½“L–J U•#ÐÝÅèïèŽ¬	ßÞEÜ\r</<˜Ž\nÌô6f¼™B`n¶[pèhºày³àà àˆsàèßÏˆ¢\0Š¾.€ÉÎ	à¥(ð\"V€Yà	°Öá|¨›€(yM@¬2€Ê…PÕN@–Pâ/\n¨ó\Z=[@gx©×Œ@óNÀÚR+à|pÿîðí6	Y†¡Õ´@ø/Ñ~\nN8=X›¬nX|œ\nNi–l/Ðö\\CFàð}ŸàÌ¶ÁÙrœÀÑV[p^)PpÁn³à‚ÏÀIF,pÒ#.\Z<¸vÔ.Ô	.›®O®ôûÜOxÜÝíî!$Áµ5ÁÍÏ½-4G8KàùŠ*ðÕ\'	|\0_B‰Àßò— èt› ø:(Uˆ„z¼Üù`*¸ó§^~RMp÷jš bR_ýÈH\nî½Ä¾QÜ7û\'¸Û$ˆ»&\'x°oC°ëŠ A¿XÔ$HvO<ün,H™¿&xÔÝ$x4R H}°\"HÍ‘<F_¤Éí¤A—¸‚Œ6¦ óW‘ ç(ÈÕ-äé	òŒ?\nòD^Œ½º«ŠÖÕÅ¦‚’Ú$ÁË^ª BºSPq_[ðº3SðzD$xcT½ZTÇè\njöÔ6Gê¶¤	ê/¿Ô§§Þº!\r’“‚FkAãµhÂ/	š-¤-\'©‚–_ÁûS­3C‚vë<A§|„ ó‡ª ëv’ 7ÃCÐ·ÏJÐwî’àóà‚à èW1Ø\'ï†C3‚‘æ½‚‘¶NÁ(:E0š,|y	¾-³ßµö	¾_y$˜8-˜hG	¦<Ò3Û7	f*­?r³úí‚ÙžFÁBÖiÁï¹‚¥µ|Áªç\'Ái%ÁŸ÷“‚5›%ÁzÓÁßk\"¡Äo‚PrßáæKBi‹?Bé8¡tá/¡ôôO¡ŒÒg¡Ì¹[BÙ0¡ìL‚p‹Z‰PNæ¤PÎÌE(×‡Êû\'	å_8à¡‚ûf¡BÚpû«sB¥™xáŽ ”pG‹pgF¬PUž&T}rA¨.qS¸û8T¨;²U¨/Û.4rÛ)4z£(4Ò\Z¿pšèèÿZÊ8­’àÂcPW!hBÃM„0u\'!ìx^#„g¶	ŠæB¤ç†E?)D	n	QWú…˜ÌJ!¦Ï\\ˆ¯Ñ’»k„{	!­%¤ïš2i\"!ëJ‚-²rÒ„¢ŠBë¸­Bë•áI3\r¡Ïá©²0¡Ý¶ÐÞCUh¿úEx¦iQx¶ú¨ðìÄU¡ã‚ÐQ,#<\'8.<×µ(<˜*<*]è%¼\"(¼Bºe¾ºÜ^m\r^×bo|¹)¼5yEè1ŒzhztzËŠ…Þ+—„~0¡ß‚Œ0pG¢ž.EC„¡Q9ÂpSYaøo²0BÕZu¦G}»D£V\'Œy­)¼G{\"¼?CÆ-N\nÐ„|ã…	«ÂÄ¦(a’I˜l\'Lö‘&æ\n“7~\nSU†„iðAašÛœ0ƒ…>¹\\-ÌT?&ÌŒ¸$ÌÏféH\nŸk>/x+ÌFífû·\ns}Â¼O®Â¼›„ù2ÂæmÂ‚‹›„EK(aqÈ°äÌaÉÍûÂÒ›ÂWY6Â²ö2ayîáëúçÂ7ß„U„U_ó…µ÷Ç„uŸ„õ¦xa=ç°^\"|;E6>6|6™]6—6m6›P…ÍÞRÂæ¢°¥/|¯ûVøþ¶‘ðýáûþRáƒÂ/„*;…mªŽÂ6O_a[þoa»¤‘°ÿQØþ˜-ì¨¶v‰N	»I?„½¿¶¿ù#ìOó~=El©F\r3L„#—”„#¥šÂ‘µáèñÂQ_P8®²O8®\Z,ü&]-üÖ³Møm¸MøÝ<Zø=¡T8a!œú*œÐÂI¼®p2þ»p*±N8sG üyüp¡ò˜pÕ%\\“·®­g\n7¼ØÂç–E°^‘Ä…Ñ¦2?‘drŒhsÚ_Ñæ–‘lû}ÑÛ£\"¹=4‘\"%Rœ–m—­)½ãˆvx8‹v<Ù)Ú1%)ÚI,í¬‰T²Dª^ý\"µ‘ú¢h—+S¤1×%Ú¼)Ú£Ii/Ÿéø	E:\rd‘~Â!Ñþ*wÑþñ¢›P\"C¯\Z‘³Pd²ÛNdR?)2fE¦_ˆÌ\nDåEæÛŠE‡´E‡†Š¿ðY´…E–ˆŽßf‹ŽçA\"«DÔo\"xÚ	<3MD‰Ua\"ÔáJêíaZ -B_†ˆ0/ãEØ}í\"ìH­ßä#Yc\"0FGN‰Hó…\"ŠÑoõ5QDÃ‹èÍš\"†ßC£Þ\\ÄêPqžÔŠøÈ~¿P(ü^YÛYŸ—YÔŠN:T‰l–5E§s‡Eö?GEŽÅJ¢sø Ñy7Ñ?¦èBž–èâ5e‘«ÔG‘ëë‹¢Ë[¾‰.E¢+t‘[ŸÈ=\'ºvxMt}äŸèÖ‡Û\"²–È‹~AäP$òú– ò¾Jùo(ò/MLÊlFªˆBôLE¡(]Q˜·ªè®iŠ(â¢½(jo…(öNŠè>‘\'ºÿ×RÉÅ§¾=È‹%ä6‰\rEI.Ò¢¤àK¢”ú4Ñ£‹×D©²Eé‡¢œ™èéî¢§F€è)øWôôy‡(3[W”µ=RôŒ@e»–Š²_È‹²«—EÙQîŽhÑÛ½¢7JD…¼\\Qá¥PQ‘‘¬¨¨pTTÔ+-*šó.‰Jë‹^]y.zøŸ¾uQ&ª¸›&ªˆ¿)ª{(ªñÐ5Œ™‰\ZÍŠ\Z‘Dƒ¾¢æ$5Ñ»ÜQËÍQÛiIQ»Ï9Qç¾¨ûl­¨çÄ¸¨çâQ?ÝUÔï\Z\"úúµGôõ×²h\0Y.\Z*\r\Zû‹†–.ˆ†K–DcÛÌEcùÑ¸úfÑxÕNÑ÷WLÑ¾R4qš\"š„ÓD?þ›»æ·D³vª¢ÙEEÑÜžÑœN¤h®iY4÷[R´ðV$Zú‰~ƒ¢ßM<Ñ²³h•5#ú“Ñ+ÞdËoZ-o¾].–VðË”«ˆeý·‹·Ê°Å[¯;ˆårpbù¬,±Â/±âZ€xû­ýâíoüÅJÇ´Ä;XŠwXÌ‰w\\?#Þ‘uJ¼ç(ÞÉ++#abËy±êú˜XMÙT¬fþK¬†¯«Ç.‰5¬PbÍk\nbÍ!ŒX«ï²X¥&Ö=\'ë~ú\'Ö›mëËmëÅ‰÷níïåîï={V| ä–Ø ÈAlÔµKl,Rl|Ö]l2½IlV“&6%‹–§ŠÍ?;ˆ—Þi\'¶¸p\\|´÷¶ØÊ+C|l[—øX¤«z,_ÍÖCëN‹áªZb`Ÿ¦‘¥\'F®žãt¬ÅxC\r1žÐ+ÆÛw‹	Ç*ÅDg1‘Ó,&¿Ú%¦à%ÄTž—˜.¹\"f^Q´žŠÅ\n­bñÑ\\ñ	ÿ“âm€ØÚe§ø$0-¶|->uñ¥øô×¿b[ó)±-o·Øö¢†ØnLZl÷ÛYloŸ.¶÷ú+¶ÿN;xb‡WbGÎ{ñ¹Ç=âóß¥Äç§+Åàâ“JâSâ‹ÄcâKªyâ+áeâ+£¿Äî@ºØ}dV|M›.¾v¨\\|i(¾ÖqX|m*¾®xM|Ý/]|ó\Z]|ëž¬Ø£­Mìi -öŒ7{\Z‹½€$±×“(±WÅN±÷±Ïÿ1\\ŸñXQ\0Àe§aÙ\"Ñ”d”\r´Ð³÷Þ{?vÙ+-+\"’¥‘­\"”™†ŒEÊÈèÿñýÜûòwÏ9÷wÎ\0H–\0!!;\0!ïÁ€°Ol@Øx œ(„?\"6¯\"|ê\0þ7‘z7\0QÎJ€(Ðu@Ô›Í€¨¾e@4?sBˆ{b>*\0b?S±²€¸^ ™Hé(\\\'­\0n0Ü8c¸A\r\0Ü\\™\0¤/h2ü[™y€l­À779ê¯9EI€»¸)@Aö@áÍã€â^ $ð D|P2…Tl\"\0*†þ*÷e*_|<Úâx<åx’Ý	xJ³<MÞ¨®ø¨ÉŸÔüŠÔ¬%ž]=¨u³Ô¾þ\n¨k\0Ô€\0êÃ¥€çu€FÝ@£ÑC@kV$ õc% ÝEÐQÆ¼4Ü	xuÞÐõ$ÐmmèFª\0º__ô(–\0zYî€>Ä^@ß,	ðvcÐÿº0à²0hÉN†N¬††”\0CŸ#I\0#¿÷\0Þz\0%€eþ€Ïx	`,Aðex\Z0™L+&{ø€É¥eÀ”ÇfÀÜ0\0ð=ã=à‡R4à6ðóÒ\'ÀÏ&eÀœ¹\'`Þî3`žOüºs°P{°(g\0XÜÛXvÛXAæVVÏ¾\0¬vö\0ÖÖŽ\0Ö\0Ö›&®DÀFm(àß¡À¿c;€›ÜÁ@9(_ Ê¿\0®þ*ÄÚ›ï\0•žæ•s€Ê-€›æ›ƒÕ€[,ï·ªà[-ØÀmzw€Ûn€jI€ZÚR –Î\nPçšP÷äi ÁÀ(Ð¨ùÐ¨_h|öÐ84h²·hvÇ¸{ôÐÊP´29´:phÅŽZË…­;wm_,íM1@Õûÿ{tà¢û¸Ÿ€FŽ\0˜²k~*îñó:h:u€NÓIÀ£-²À£ó›€ÇþÂ€.ög®ËI@7ýÏ@·æs@w„ð¸R8ÐãÍo ÇG çÕO@Ï¦C@/6èõ[xòèÓ·èKžÚ›<ÅžýVt€þv€þe`À×Às÷çmö=\0^tî^|g¼8£¼”ÿøü0Hõ,0èçIàåñ@@·òØMÛ¡{î\0¡é@hÕ3 üf)ÞõˆŒaQä ª¸ˆÞbŒ¾±Åh î„Ä»|â?ÊÓ€„ç•@âÇ@ yhHº¤ÎÇiJ7€´XK m2H[2‚ºÌf*m¥\rd_\0²œ€ç-@Žà=g#ò§€ó?@K>PrÞ(ù¾”Ú=J7º€!ao!õJÀo€!ÓíÀð¼cÀð7>Àð÷CÀß­À+>ï€WÄg€1žŠÀø$0þz0¾´˜X<\0L*=LÖI&CñÀäè7À”>Àk9G€i‡¾¯ÏÞðòÞÅoþ‹¦«cé1ßYõÀ¬p`öùÀì`vÉ0çùq`®˜+Èæ1ë€yI›€ysÚÀ|í_À{ÄEà½¨5`ÆX¨©\n,¼(,Lù,lþ	¼ï˜¼:,ªþ\n,ö÷–žÑ–>»,¿š\n,ÏÌVÚ2€=gU¡À\'ýÀjK°æ2\rø¹XNÖÕw\0\no\0wþoô;°™ï\0lÑG[lâ€í÷K€ÿ×S§ŠØ™ûø²7øŠ™ìv\n¾ù|Ø¥	ìé~ìÝ5ìM>\nìûÜ|§—|—kìÏD\0D?ÏGvšßÿµŽ~}üà´ø±ã$ðo	øyÜøÅ;\Z8±épb&8YÛœ\\Ûœ2Ýüšœ®¼œni~¯°\0~ÿÝœÙ•œ	Çg’ê€39‹À™µ$àZ]àOägàÏ(GàÏ[nÀùù·À_r²À…—ëÀßzõÀß\'Àß´À?‹´§À¥7ýÀ¿m×k—Î7šœA2¬7 £û åõ\' Í¶Q Í’<ÐæÞ Í}& -¹% ­b%Zõzýu†éÆ%æ:Vù~V{H›ž\0ÚqÉ´#þHwS7Hwg1H·a¤çµ¤÷\0\rÒO4í<Ñ\0Úùþ\'È4àÈödú¦d&x2/e‚v!‡A°ý Kç.%\ZÚ}‚Úc¢ÚsE´ç´gÐdmb²Îv\0íS­í3Uíû‰íŸ:èäkB«•~€wIAN[UANÇAÎ Ë%U«Ü?ûÄ7Ðñ“# ãeî @GÐ‰¹ êÍ ñb·B\0èdqèd»=È§Yòú:#Œ…ÚÎVö‚ü7VAçmt@çÒ@ÅÐ¥^((ð4ÈÂ‚Sƒ‚$S àÊ00æ&BÚ‚žA_½Á$ÛAˆxCâ·\r±D!I© ´`„i§ƒpì= Ü­n>g„_šD·AÄSª b¦,ˆbW¢8QÎãAT‡W *í>ˆ:›¢á½@Œ1ˆi™b(Ø»nƒ8Z@Üü þmÁ\n$LpIr@!‡ì@¡‡›@¡•Ñ ÐVyPXìQPd8tåÆuPtc(fé(V2ŠCƒâ/çƒÒû@	¯•A©r­ Ô($èšz\"è:ü	èzÑèúÇYÐÏ<ÐÍÀÐÍièÎ”ãÊØ2Ê¼5Ê*leßº\rºƒå\ZðAyQf |&(ÿÆPþ‹iPþr7è^¯1èÞÄ9Pâ	PTPrtßÂt¿ÍôÀÊôÀö0¨86TRÿ	Tje*½•‘>€N¸*¼@•àQPåÚÐ£SÐãím *u è‰·èéw?Põ­S ºPÝê/P£ÔèQj\\¸	jzXj~jþêj5rµ&µQ™ ¶Œ P§ê|ñôJøôjp;¨Ëj7¨ËÕÔ•ó¿#P·OèîèÍµPo5Ôgšê{µôn|ôî_¨ÿV:h0à	hðîcÐà’h¨*4œ•\Z±z\ZÍ~\n\Z³ü\rú²õ*hüÈcÐ8ù)h<Ý\r4å\rš¸ašÈìMÚG‚¦B‘ ©„Ÿ éër ZN \0!h¾óè·ÍÐo\Z	ôýYd‚\rw–Ÿ­<‚þ¾°ýV­ï{Z¿­ÿ¾Úèvm|ü\r–q9–%É€e¯+‚åÙ`…êR°¢¥X1\rVì,+AÒÀJ5É`e³ðæhxË¡Oà­8_ðVñ:x[@x[„#x[jxû™i°ªÔ¬ú¯¬fVƒŠÁêë?Á\ZÏ‚5>îk:€5µ¤ÁZá`íÓë`”°Î‹°Î›x°®QX·ÖãÙ‚õR‹Àúšá`}ûI°~½;XÊl¨Û\n64À€\r—.‚XOÀFq/Á¦ˆý`Óá\'`³{T°ùðsð®Ìdð®O½`‹˜;`«Ëãà=ÏzÀ¶!ÏÀ{_YíGºÀöß’ÀìN°Ã{ð>´/ø@ŠøÀGU°£øØ±¶\r|Ä¶|äÞ4øÈò	°“ã øèŽdð1)øó,Øeµìú9ì¶l>^{|B„{`Î€=-–Áž­À^jÁÞf¥`ïÀ°wÅy°w/	|²RìÓ¢\nöY	\0û&Úƒ}ö€Oi3À§Ú:ÀgŽ&Ïª†‚ýþŽ‚Ï#wƒÏ‡Ëƒ/,‚=šÀË!àÀÕYp°î~ðeº¬ž\0†ä¹€!¯¸`(b;GÃZãÁ50‚èFi½£ŸAÁ˜oÖ`|@+ŸžÆw^dÕÁD ˜\\T¦ý0ÓíæÁô&˜ñ Ì”§€™E0û˜ß\ræ<~æy¼ówlº~€Å¾?Áâ%`i‚=XÚŽ\0KÇ®‚C^pÁ!CàP£:p(Áúå8lÇ8\"b‘§\rŽŒ4GN.¯*©€¯<_ýÛŽ1Ž=y/~NˆÖ\'zn\'ñûÁÉ§Á)8\Z8ÕCœ\Z¹œúù*øZÿ&ðµECðÍSÀ7ïEƒoƒÿ‚o\'Lƒoß›§—D€ïœ¾¾S1Î±ç”&sÝ¢Áw!Æà»˜dp>\n\\°\r\r¾ïw|Ÿr\r|¿.²>.r:.fe‚KÚÁ¥ÊùàÒepùwp¹mÀÿªÁå6ƒ\"ŸƒFƒ+Ü\0?ÖšWýÉ\0?ñ\0?9—~Ê`€«-Ÿ^?ë*?[k±æàº9)ø¹ÇSðóK5àçÄ)pƒ×mpC[3øÅ\\¸i­ÜbTn=ÿÜšlnýH·Ý¬·_Î¿² ƒ_­=w}î\"´€»fGÀÝÃwÀoÜáà7,pOÁopïß7à¾€ð;3&ø]é4xàäx°f+ø½y<ø}¥\0<Ú§\0þàbþÈxþXþø´<–vü±<þæ0xbð#x’KOfè‚§\0ÛÀ_ÙKà™ÛÁàŸ¸vðÜðÂþ,ðÂ›à%¹(ðR-¼<¶ü÷zxÕ\0þ·‰þ—ÿ²IŒ€È]ÖƒÈ_‚(€nB4@”#_B”oÕCTØï *BT~×@¶x\n![®„l©…lßÞ	ÙÞq¢f^QËÃAÔJÊ êuS\r™6ˆ†ü&ˆÆ2¢¹ü¢…‘B´Hÿ :DKÈŽA4dÇ§ˆ®»6Dt\0¢Wÿ\n²óR-dg“Ä`i\'ÄP—1Ìÿ\01ª:1ê‰…kUBL(å“ªIˆÉp4ÄtÿuˆYÎ>ˆ¹9bNyÙåÅ‡XÍWAö,¦@¬ïŸƒØÝ­€Ø•AöZþ†ì½gÙ[k±ïƒØ¯B¶„Cö]ûÙÏCCöª‚>Dƒ8¶„8y@?ŒBŽˆ±§ßµcìs×5Ä=šq¿}\nr<Àâ±òâ©<ñDjC<Ã5 ž\r\'!ž3ˆw|\'ädæWˆç:Ä\'õ(Ä÷íQÈ©Ö3\ZË3™ gm& ~ª{ ~V€Æ$È9ÕÈÅm6KÖ!UZ R¬ëË@`êL3!ðÚý¼ÁD}†`ª\\ ˜eOn›>/¡@ðE;!„CëÒ‹‹òÏ:åBçœ‡05f!LÀ*„W\ra?ACØ‘Žÿ~ˆ þ6D”›	óq„„_ß‰0PD„m…DiÔ@¢>¸B¢\rS!Ñ»áè˜Ã“Ø€ƒØw(H\\»7s	¯y?™‰Ÿ®$l\n$ÊP!Ér$HJû:$UJ‚\\“ñ†\\¹V6¹• „¤» ééhHú]kH¦±<$k+’ÕÔÉ&@îÐÆ!w6‚!¹9‘»g+ yv|È½‹‡ ÷n˜C\nN³!—Ã …J­%HI-¤tÓ)H¹¼:äá•gGüýÇnVÇLyÈã»ç UlGÈ“½Ê\'v\'µZ§ÀTHõ¡‡ê£\Zþ3È3ÚfHmÞ+H]/Rç%¤áF\ZäÅõHÓðKH‹ü3H‡B>¤£›yyÈò²¢\rÒõ;ò&ú1äM\nÒcÞé5q„ô†î¼5¹ygƒˆÞC$¡(Èˆ[	d“\0­¨€Œ~øùøü$ä3÷\'äK\n\r2~ûdâ9\r2Éõ†|=…†Lë„C¾ÿ\Z…Ììˆ€ÌfdA~R\n ?ßyBæ7á!óA-_Çç ¿µE²˜YüÔY.xYî?YÑK„¬ˆ!+ÅÝ¿ÎÓUÙKUÈ*$²ÆáCÖýö@Ö!ß!ÿJ.Ce¡½P¹}÷ r³P9¨Â—E¨¢šT±fª$ƒ*ågB•šPPeeUèæ6\0T¥Ý’¬ÝNÎ‡ª:)BUƒ>@Õ4EPõŒ¨F´T#ÕÚÖÕY8Ý8\nÝÁAuEw¡º¥Ÿ zîÇ¡zm>PýøH¨¡‰ÔHý0Ôè|7Ô¨ÿÔÔ¼j.ßµ°Ë‡Z:9A­h‰Pk‡ßPk±ÔöÖ>¨m•\0º]Ý7¯Ýîô€c6ô`Ùkè¡ÀÝÐC?¡‡;¶@_éA<@CžÒ8=šcu¦ý‚:pãåCÝÖ4 Ç3ˆÐã¥.ÐòzPã¨§s4ÔkÓS¨÷nu¨÷Õ\"èIžz2†=9q\0êãã\0õ½sêûú\ZôÔ>è„,ô%\rzÎg;ôÜ÷¿ÐK%ŠÐËAÃP@M=ÂCaÙ· ðÔ,(‚´E–Ü„\"×™P”)Š‚7C1CuPìšŠ)…âÿ%B	Ù(á#JJÙ%¥Ÿ‡RPÚÝPft\'”£ÿÊì‡\n¡JPñ‰‡Pqy<T²9*µ)ƒJ&ÐÛ5hˆ‡4äòKhèM\'hhËahX?\Z®\Zþm74R£\Zikìx¼ÂßFUŒA¯lü†^Eœ…FûhCã¦G ñ—¡‰Ö\\hb×4	XMEC“\"ª¡)ÐkÈ2è5üô†®ôæóÐÛÙnÐtYUh:÷¿EhFX4cžÍôð„fiiC³QÐðmhLš›í½{æ4/lZ€x-hñ…XB‹Bü ÅTGh	ÅZ¶ÓZùrú¨2úØÛZEû\r}BÝ\n}’¦\r}ò~?ôé§XhM€´fzZ{HZwñ6´>ù5´¾¡ZÿÞú<÷´áR´ñN0ô¹ÚÔm>ºÚöè\r´­“\ní05„vŒÙ@;ÏB;oX@_ÝŠ¾ª\rƒ¾j¸\0}½5ú\Z’\0íÚdíbŽC»Bd¡ÝŸR¡oæ; =m¦Ð¾i/è[£³Ð·ÎÏ ýÐæèûý©ÐÑkMÐÛ®A?ý„8\0ýT†‚Žm©€ŽùBÇºû ã‘7¡ã7¾AÇïD@\'O«@\'	[¡“O’¡_Ÿ=ƒ~¿|\nú½­:sEÒ¡?Ðùí÷¡óË ¿\nžA3 y!ÐßfbèâX%t	ï	]>º|\'\Zºüœ–ß¡¡Ëk†Ð¿6<è\Zq+t­]&#Œ‚mÊ Á6ý´ÉY¸Âäº‹a\nƒƒ0Å«\Z0å„\Z˜JqlË—ØV¬6lÛþ£°m#Øvb5Lz\r¦¾+¦‡i^4‚i)ÄÀt¾ˆazr\0ØÎÓ¹°Q\n0Y#˜ÁŽ˜ÁÕ&˜±	flS3N<3³`¦ûK`f\ZJ0³>˜ù“°]‘Æ°ÝÍPØîßî0«ùV˜=EæððÌá¶ï¬ìÀû.ØAò%Ø¡¶˜“¼ÌyÐv¨s9–sÛ*s³þórVyÿ„´½\ró	7ƒùVÀNMDÁÎ<Š»óãÀüÃaþ0ÿ¹—°st=ØEKX áàÂ€;\rDÂ\0¹%0àž`ì§á\rCVˆ`ÈÚ[0¢†>¿ÃÞÜÃ¶lƒžŽÂ(ådõT!Œš\\£é®Á˜WÀ¸êO`ÜwÖ&ônƒ	?í‚‰t¦a¢k0±Öi˜˜m\r“¢\naáZ`á–›a\0°È£ßaWNÍÃ®ÞDÃ®þ1‡%ž{K¤¬ÂR¦žÀRG«`×ƒ6Ã®¯ŽÀn¸î€Ýt2‡ej>€eÒ±°,‡c°,ä}XöÖ>Xö2,‡p–{ì(,ï‹ìÞ+¬ ê8¬ÐµV(Ø	+ÿ+,ø¿j+2¼+ú\r+¾ü	V\\ò\0V²õ\Z¬¤ÇVºí¬´ÑV.äÂÊK\Z`¡:°Š¦0XÅÄ:¬òº¬Ju¬J	«‚OÁž”NÀžThÃž’ÓaO³oÁª‘c°\Z2ö¬‰{öŠ\0k¸khÛ\rkxkþµu¾„µ\rb`íñ¥°>Öq-\rÖ9zö’SëÙ\"ëýlë‹R„½­cÁÞùÄÀúÛÁ°Áw®°áhØˆ{#ìýÊ5ØèvÂÿfa£‰¿`äNÂ>¼Ï}t­…}y<›°»›´ƒM™¶Ã¾­?†M«<€}ßûn}ÏbÁf=a³s`ØCØ#°¹È|Ø\\—:ìwð\0lÑ¨¶x2¶J…­‰°uÞmØ¿±­ðM±à²¼U¸lŒ\\Þ]®D¼WÙq¾Å»¾¥¡\0®š\\W«ö„«õ@àj¿~ÃÕ× pÍ)_¸ÖM\Z\\û½\\7j7\\¯ý\\oA×¿Ÿ7	€¹7RŒ„=Ù	7ÖJƒ_»71˜„›>€›ÊÝ€›:•ÀMÉ\'à¦ÃÑp3“Sp³W¶póÚ)¸ùŒ|—áÜ²_·úq¾R·Î€[ÁmŠ‡àv8,Ü^·no÷îÀÇÁ»?¦0à‡WÍáŽÆ¸£w,i™tƒ;Ý=\nwúË†å8Á.í‡»šÃÝ÷ÀÝ&ïÃÝ·l‡¿J…{ÑáÞ1~pŸòl¸¯ÝÜü~¦M~±ª	h	¶Â»¿À\'áÁíÓðËÉÍpÀù68½‡9™Â‘³fpÔw;8FCŽ¿óNˆ‡„ÂIºpWN“«3jçàŒù\Z8û{œ·£Î¿ªM‚áb<.fÏÁ%“kpé¿rxHÈixH÷xè¹Pxèí@xØþð°,<âº><ÒK¿êà¿\Z¯\05ƒÇ,®Ãc/ãá±nð8Ç]ð¸É:x¼Î2<^â¿w?¡O8O(<OLÒ†\'¥à©!ûá7kÁoŒî‡ßÜû	~óeüvÊwøíz#x–m;<—üž›.†ßÕú¿§/øx^(FÀïãáÅ›€ðâØðâ´ðâ5?xÉP+¼Ôõ:¼Ô×^>Þ¨i¯¸š¯X¦À+MQðGØÏðÇ‘sðj‰#¼æA?¼6\Z¯Ëo”\\‚7\r”Â›|„7/ü7ÿ[€·Ô¨Â[8ðV“ÿÇó½:ðNU¼ó8\nþZÇþz¢\nþz#ÞmqÞ©ï@ÁûÄ÷áïœFàï\Z3àÆBøÐ×Løp|$í\Z|¤Ï\n>ê¸Û\Zÿ\"÷þÅh>Ñ\nŸ¬&Ã¿~ƒÃg@ð™âÏðÙCþð²Ñð9­Aøœ·\'ü×X>|z\r¾€‡/i</}ó¯è·ÂW3ákáDøzØKøFPü)!Ãx-;“¹‹ß´Œ?Rˆ_ \Z\'JÁEå^oÄæÊÿ’[T_ ¶Ýþ…P5µC¨©Cê\'ä\ZÌ­¢„¶…BçDbÇë;ˆWºnûú\'4;Ã«;3m‰·+&C+m„a¯ìÿD“ã&³še„yâQ„ùC\nÂ¼VaÙv±ûóeÄäM„uá,ÂæX8ÂV†‹°m?…Ø»ÖˆpPA8œ-D8<ŒGì‹èEìçû!]ÝŠ8”éŠ8òÐá´ù$Â\ZŽp® \"Ž…íA¸F#\\¿è ÜÒkî#%3„Ç³Y„Rá•æ„ðšƒðµjCø~ä\"NMŽ!Î¼Bœ%ò—”Ñˆ@9\"ŒRQ@ÝC\0\\J@b28ä‡€»ðsztÍ>f­\nýà…ÀÁUøè×ÂÅ±AIf!(óTí¥‚±\'ÁüD°ÂSE‚S<‡àjØ ¸Ý¾\r!‚\\Aˆr¬Å&Dˆ›#\"TJG„…¾B„W1WÍ×1ûF1×.!b±É5ˆØêDìçvDìd=\"Îõ\"®«ú	‘à{\0‘X˜‰HbÉ\"’nC$w^@¤†&#R°×\"­i+g7ün nÜœCÜŒEÜÆ¶\"Ò­’é)éíýˆŒç$DÆz=\"Ó,‘\r¸‚ÈžÚ„È!}DÜ•ïFÜSFäýiAÜCy#\nÓÚ…¯z^$#J¬%ˆ\nM3DÅ•yÄc¹DÄã‹{¼O?Ë!ªs³Ï«½\r+¹ˆFø1Dcd=¢±h\0ÑøÌñ‚wÑ¤hr– Z.˜\"Ú!uˆNÑUÄ«¶ Äëã¯Wš]rûÝO5oÞAôüßÞßÊ}A¼\rtC¼ëWFô=sˆA®1Tkxïc…ø ôñÁÐññqâ“ÂvÄ¤Ebj?\rñµûb\Z²Œ˜ýÞ˜Û9˜?CÌÇN#æ¿”\"~9mF,¼Ô@ü~˜X<YXä7 V,1ˆÕKˆU±&íG¬ýÞƒX×¹ŠØ†\"6Šmÿ_!þåX\"eT/#eÊ”òvJH…Ó‘ŠÓäæA\nr‹ìNä–¾)äÖX:rë½	ä¶¤j\0©úÔ\n©n‚Tçª\"5š\ZSHÕ7H­¨³H­èÏÈ	&H½=¾H}~rgz?Ò`ç?¤á/u¤‘iÒèh1ÒXŠ4æ×\"MüG‘&“5H3w1Òì÷&¤Å¶d¤E¦2Òr¸iõ$¹GÍ¹‰GZ.#­Y¿6QH[íãÈ}{!¤Š‘‡Õõ‘‡«þ!“¤È#›N\"ÌÎ?W.9úH—þV¤+_éfõé‘OFz:¾BzÅ©\"½2®#½Ö‘Þ³¯>ösHßz1ÒwmyÊ&yÊ<ÝøyöÀò¬¯1Ò,ƒô‹\"ý—o ÏÙìCž79<ïúy^\0E^4!…/A\rHàŽH`\0	‚É#Aâ$Ø‹; ÁHð&òv	ÕWCBƒÍ0ÂÆø‚D*–\"‘®HÜñQ$þ°’\\£Ž¤Ê9 ©aãHj	’v+Iç‘ŒS}HFò^$£ê\r’×»É[{‚ä#‡‚Bƒ³HÑ¤8¤)±x”ŒBJÓÒ²‡Èmodè.2d:\Z¦ƒE†¿GFðAYÈˆ|däöÈ¨ô_È¨{6È+YÈ+O°È«F×ÿ7ƒŒ»$DÆ½òFÆ\"ãó‰&2Í¶\Z™V»™62‚¼í/ƒLß\"A¦Ûõ ÓÃô‘™˜pdVà5dÖøä2WP„¼{H„,E©,!‹´lEÇCEÝ$äùä5yd±ë,²â¢\0ùxÏ>äãðtäãñ}È§ä5äÓÔ9duK²vYK×EÖJÝ‘u×#^ _4Z\"_ŸG6=kF6­6 [´Ž [hQÈI7²5ßÙ¶»ÙNÎGvº×\";a{‘#‘¯.ÿC¾%!{]î!ûŽ}™oå’‘oC. û5ãýÞ•ÈþûÈþi]ä°Â,rdñ2r4á6òƒÖiä‡ÖdäÇTòÓGcäg,òóE+äçšäX29Ö”‡|FN22“ÁÈ)¹(äÔWoäôÂäw;1r†EÎB_ Âš‘sìqäok,ò„ƒüÓø¹HÙ‰\\ªUF.}ÿŠ\\q>Žü;\rB®¦\"×µ\'ëûN\"ÿÝDÉ*£d·¡dÉ¶(y‰\nJ¡y\Zµ™RÙR±¨F© 4Q[î¢¶®~Gm»†ÚVö¥\nNG©–ãQjïVQ\Z	¨[ÆQºNÕ(Ý^O”ÞŽx”žù.”€ÒK¸‚2ÔÜ„2.ÊBE™›£Lý¬P»Ö\"P»ÕÝQV!¨=r\n¨=*¹(ëÚ(›c¨ÿç=Ô>³ƒ¨ƒ›ÛQ=íP‡6íGÙËA9Mw¢œ³=QÇ¶–¢ŽA¨ã©s¨·P\':-P\'&†QžïQ^ß[PÞE(ïVÔIGê$=å\0¢üBPçÍ¨j\'PÏG]úœ‰\n)¢‚~Ž£‚ƒŸ ‚_@¥ñ(ÈÄ\nš¡€‚éå `­Ã(Œ&…ù‹Aá:Pø=çQø© )ÎEnqGQ6šPÔb6Šv&Eë7@Ñ™WQÌ*(±gJ|­%IAIÆäPÒ”/(i%d BŸÚ¢\"ö¨¢\"û¢b\\mP1§ËQq/\nQñ€ß¨D…pT’Æ(*Éí*âŽJ‰‰C¥þ®B]ƒ¡®IÚP×êÿ¢®õ	P×ÕZP7®W¢nFÿEÝØŽJ‡Æ¢2¨Œ©VTæÞ	Tæ¡tTæÅZTfª*k[*Ë-ugØ•ûD•gW€Ê+IBå?­Bå¯žF[W¡Jž„¢J»²Pe¾ÛPÓ]P‡¢* Z¨Ê¸:Ô£Ë8Ôã×³¨ª+QO\ZbPOÑe¨êÝ7P5i*¨ZgTUÇc¡\Zj·£^ÐQM;ÿ š÷ÝA5ç¡Zõ¶£ZÔP8]TÇr\nêed/ê• Õ¥Õåí‚ê×¡ºÖsPÝù¨7J¨7˜¨·êA¨·÷i¨·n¨wÆ¨wÄ!T¤7ªÿ~6jàÞfÔàÑÔÈÙ}¨‘œ¨÷&¯Q£fn¨7Pî/¡>ë¡>\'®£¾ìE}Á\r£¾PQ_B/¢Æ¯¢¦zo¡¦«ÿ ¾+X f*P?µkQó¯ëQóo#Q¿‚“Q¥ÿPÃ!¨?O²Q‹\r›P‹ÃßQË_PËãë¨å?‰¨Õëq¨õ¦¯¨èMqïÐ›ú†Ðrg\'Ñr;´\\wZ¾¡­GG+žc •~D«ôÑ[¶õ¢·8ÞFoyy½´\r½5Å\r­êž€Vý´­±Ö:QŒÖoBë5IÐúEÅhýeÚ@fm˜ICV¡\r_œ@émE7áÐfŸÑfg´¹sÚÜ£mqÝmQ¤…¶(Þ‡¶ôø‚¶¼àƒ¶ÄCïŽ¼„¶	EÛLÐö\'zÑögž£÷ÛÑÑû9OÐ,ˆèï<ÐÏ»¢&9¡ªÉ ‹mÑ./ÆÑn[Î¢ÝŽ§£Ý~ô¡ÝÝÐîhoôñj9ô‰–Q´—›ÚË\'}rG:Úg\ZÚÚ†ö=­‡>¥•†>JAŸµ×Fû“EûÛüA_<i‡¾˜IG_œïA_Rä¢/íy¾T\"E2î¡ƒtß ƒl4`À\Z\r¬á A%ûÐ ŽhÐß#h°¦\Z\\èƒ†|8†)lEÃ•2Ñð=Éhxù\Z¡î†Fîå Ñ|4NpûõÏ×A8hâöq4Ñ¦Î3Ð4chºÍ/4}Œ‚fÚ†fz!ÑÌŒ}hæ+4‡F³(_Ñìo{Ñ\"ÍM*Fó\0fhå&ZPçˆôE¢…ãhñA=´ô¬2:4„ŽP¶GG\\ù„Ž\\þ¾ÊÊFG7qÐ1]t\"\"rj:VNÕÔB_WA¡oÞë@ßìŒDß>®N\'ýCgïUCg³:ÑÙå\"tn~-ún~:OE/¼€¾gõ],@—ðÐÅSÏÐ¥í†è²¸QtÙÂ]t…ÉWtÅÏïèJŒºòÏô£gÑèG?xèÇ‰jè\'ÒnôSÕýè§aè§)tí-t-!]ØýÜgÝh@7æ$¡_Ô¢ÑMš£èfÕ\\tó$ÝþwýêY\Zú5ñºËúº«3Ý]ÝŠîqèA÷pèèžº×‡îãÿF÷õïA÷¶¢ßYlA¿+g£‡–×ÐÃò1è‘@!zg†ÍþŽþ°n†þÈCA£ÑfôÄÛNô”ýí:ým9=ód=óâ\0úÇÖFô| =?sý[Éý+‡^Šƒ W2Ñ+opè5óÝèuåiô†dý/Fý¯ãúß¼#ãö#Û‘éÀÈÌ®bd~…aä-Œ0òîƒ…£åÿÁ(]àb”Ïc”—vb¶ø·c¶Úªb¶«tc¶KOb¶?¯Àl_wÇ¨]Å¨/bÔn`ÔzoaÔƒ1Z”ãígÇ0:ÞXŒnª9Fï7£·´€Ñ÷ªÀèßÛÀì\\JÃÌöcm1#,c*AbLG¸˜]}ŠK¥½KMuŒU†c²ÅØlÓÄØÖýÆØ!aöÊœÃìÃ\n1ûã\n0¨9˜ƒÓ¯1‡ö¨`«)a[e0G‚Z1Î›²1Ç]Æ;9öc/Æ%¦ã™ùãM}Œ9ÀÇœì¹…9ß‚9«9=vsÆn;æLaÆïõ.ŒÿZæü^]Ìù¿˜—>c.Ý‡c½Ïb%˜ qUÌåSK€ˆÉb1àG#ðËlä);×ßÆ tÝ1¨¤0ª\r‚A+þÆ û1˜^\\Äs¾¾Cr­ÃÈg0¤«w1”ÜzC¯ôÀ0—0ìc%ö*Ã5Âp»bxÎ0ü±RŒðHF(¡cD†û1bÜ\rŒÄÛ¶¬ˆ	Ïåb\"î¿ÁD!îa®ìÂ\\¬`® v`®´.b®š÷c®’µ1ÑWp˜¸ÕÍ˜xLü?L‚m/&±Æ“¬6ŽI•ïÇ¤&R1i#9˜ô°Lú$“ƒÓÁä…V`òÃÍ0ù¥˜ü®#˜Âæþ¼7¦)3VÄ”¹€)çLaŽ£0•8˜Ê¿ñ˜GDÌSåí˜§÷‘˜\Z+0æ™óõSk÷SkÀÔ•¿ÇÔ½ÁÔoÛŒi•`^˜0/õ1MzL“K*¦ùÝ*¦E”ˆi}Æ´mi¹Œyu0óúÓÕÃtõbºþ(aº™(Ì›€vLÍÓ#ÈÄôúžÂôYÅbúÃô}}ykìŒyÂì:Œpù„˜[Æ=‘ÇËÜÅeb†¾Ã¼R0£~ï0Á˜O×0cc‹˜/ÇÆ0ã®`&•1Mý˜IÍ\\Ìd€f²mf\nU™ºï‡™Z;ƒùz‡ùZý\róu9óíL<fz«ff33ë¡€ùq[3—†ùµ\nókéfáûoÌŸ&=ÌbFfñÁkÌbµ?fY Á,g»aV1kš&˜µë0ÌZ™#fŒÙ·ÇlØ£0ˆƒ˜—®˜B±2±²p¬üyM¬|ÁV¬ÂH>V)f»ÙÊ\0»y©\r»µå4v»#»}íV5•UMûƒUŸÃj<\nÄj:\ZauTc°:þo±;¶ªaw˜Ûc\r´Õ±†>²Xã;¬IÉ\ZÖdàÖvkÞX„Ýµ8‰µ<i†µÊBb­å°Öj\rXëªì^W¬=^»Ÿ¬ŽÝÿj{`Çmìà~ì0wìÊ;ØCMaXgÓ\nì1Íÿ;ã¥p¬Öë¦Ýu‹´ÄºÛÉ`Ýébì	|¬§òw¬ç\rÖ«Ñ\n{2Õëþë3rë{Öëûú%öÔEìñ)¬_ës¬ßlÖ¿&pj+6àÕ\rìÅŸÖØÀÏØË3¹XÀ·,¨ü\"š¡‰…¶±Ð±!,|g:á¨…E\ZÃ¢|±¨&-Bc1[\\±½óXœ}6åc‰87,ñÍ,ù·\'–Òb…eþŠÂ²â°¬Y,;åPna¹e…Xîw9,Œ2Ã±\"ùT¬‚ÂJÔ~b%,V\Z†•~8ˆ•ÎÄ†fßÁ†\0`Ã†IØ°y46ÜÈ^¾ˆP`#¿ÇFrÆ±QiØ+(}lÌÞBlL7ÕŽMò\'a“É…Ø”–Ø”£9Øéslêÿ9»¦×ƒM;‘…½y\n{#È{ãuöæÎãØ›+™Ø›ëëØÛ\nÿ°·ŸÁfdûc3«J±YavØ;^SØœ/&ØÜ½ýØÜÊlnÓNl~š#ö^¹¶`¯\"¶Àå¶°\Z…-6ÏÂÇÊc‹—ò°ÅëÆØËmØ’˜»Ø2p2¶œ^ƒ}x[[áÞ­¯Å>Š½€}4=‡­*cŸ¤2±Õ‰Ø\Z$[ëñ[·±[ßj„}ïˆm4¼‰}¡÷Û\Z×†mí+Â¶¸bÛêR°mK°Z›°AÞØŽàlçí}ØÎ‡·°¯¼€Ø.Ô{l€íê¥b»¿Mb{wÖ`ß:ïÂ¾’`ßÅÝÃö§Yaû§|±ý_cŒ±ƒv°CNÕØ‘¾›ØÑÕ5ì\'‹£Ø±8ìXû\rìØHö‹q+öKT#vâNvÊ\r‹Ê\"a¿Z~Ç~}×€ýæéý¾ÁÀÎˆÆÎM`g†}±³ÉIØo`¦8bç”8Øùx{ì|¹vÁp\0»`2ý]…ÃþÁõ`Ò°«M}Ø\'G°ÿ®¸cÿ-oÁÉ˜+à6ñŸâd‹ûqÊžU8å©tÜ–âZÜVÕEÜÖÝçpÛ.)â¶oRÁ©ÛàÔv“qj¢9œZf?NíÉ!œ†^NÃÑ§éÅi­ŽâvèÃéÞ\rÂéö|ÁéÇ·ãvRÎàv–`q&Î °g00Š3ŒÛ3ŒÅcãŒ?bq¦‚Bœi|Î,ö Î,i3Îœb3O<†3¿»€Û5ÃYäÎã¬|Ÿâ¬(\n8«$mœÕ£Ÿ8ëæƒ8m2Î6ƒÛ«e‡Û;ñgÿüÎþOÎÒŒs˜«Á\\zˆ;ôçxÌw¤%\0çt+\ZwÔnç,ãŠsáÜIí8Äœ§s	Îóöoœ÷n?œ÷Þ,ÜÉ’w¸“¯¥8_“eÜÙÒÏ8¿cœŸW\rÎÏ_çGÎÇù…žÅ]hø»Ø»‚,¿ˆ^\\Á]Þù\rwyWTÍÀA¶/â jó8È+jP‡ƒNÂÁ¼q0F?qP‡@>Ä!>2pÈ}ïqÈ[xÊP‡ùáÃNhâpÖ8ÜuW~:\0‡ÿ¥…#H_áˆgpdÝ\'8ròE×G9ê‹£êàhÎ®8Úõm\\Ç¸3„côUá¸ën8Þúœ@%\'8ˆzùâÄ.8ññË8q\'ù¿yJ>pa[4qá)pÀn\\Dr.r²	UŠ»ÚðÓ„‹=Rˆ‹M¸…‹Í­ÄÅUíÅÅõmÂÅ§©álšp	p	wÎãÿ*ã’N*â’ðj¸ä—ûq©êa¸´œ¸›Ê¸tß\n\\úu.#ƒËòú‰ËÕ.ÅåÕÌàò–Oàò÷ûáò=qù“Á¸{A[pÖ\\AÏ>\\ÁÜvÜ}×\\‘Ä	÷`bW\\Ö€+›áÊggqÇVpãÝ1Ä=þé‡{z W½õ®æŸ=îYz®Îô\"®ÎuW_®‰kÜs×xâ®ñÁy\\ý®ù×›Çµ¨¹àZ–òpm¸vùp\\{Îg\\gýgÜËzÜËéû¸W÷~à^Í›ÿ/÷úÜ\Z®Û¿\n×}ëîíŠ<îÝÊoÜ\0§7{7´)7Ôw\Z7ìq7ÌÖÀ\rGá†ëoáFVqï=Ãpï‘!¸÷þ¸÷Y¸O^,ÜT|=îë7†û®¡ûÞ·‚›”ãfÐ¸YÍS¸YÆ)Üïs¸¨yÜIsÜ\\H×ÿÏ”QÜßº2Ü†³\nn£u3îßCm¼Lêi¼lÌm¼G\r¯˜]‰Wºô¿îÍøÍÆð›ÍÈøÍ/‡ñ*œSø-‰Çñ[[¾à·YîÂ«úàUËæðj¨½xõ}X¼úÔ^c\Z€×”y„×)pÆë,´ãuVÛð;búðzz9x}X^?ý+ÞÀropƒ7\n;Œ7úFÀHÇûðÆSxE¼¹‹:~×¾l¼åà~÷>-¼ÕíL¼µ‰=ÞVãÞvÌ¿~ï W€wH5Á;”‚ñûƒ/à÷÷Ç;dàÛ[ðGvJðN¯öàgeñÇ{ñn^\'ðnóøã}ø—†ñ^ê\rxßš/xßYü)¿³ø3÷wãÏ¶=ÇûikâýL®ãýŸ\ZãÏk^ÂŸw à/ÀÓñAV®ø I>øzþrÃ\" ôp÷ÃØÎx`c(‚1ÆC\rôñ°£}x˜OBâá*ñpg	qQlÇ£RSð¨f3<:\0‹Ç*mÇc\r‰xÂT2ž°úOÔ;…\'ÁœðäƒWñ”ƒ—ðä<åÏ<Õ’„§ÎÛãé¡rxú÷r<ãò<“#‡gMèâÙN×ðlÂc<§ÇÏ‹ÂÎxâ…Àkx‘\"/zæŽ+ÅKì]ñÒÅÃøæ6|¸¥,>ÜJžêÏ¥à#ëƒñ‘Syø+7ÌñWËñ	Z|‚ÿ\0>!ù>áO>qó,>ñÀ%|rŸ\"8ƒO…á¯¹hãÓ\\“ð×9EøëOâo´©áo¿!àÓsXøŒµøÌ\Z&>‹µŸýð>þ®ñ>Ïë$þ^_8úÿk2þ÷¾ØÄ_ì—/a7àË|Ìñeþ³ø‡šzø\nÞ-|¥ÿøê¾ZÇ_Ó`Š¯s]Ä×ácðõñõøúÑ×øç]ø‡ôðÍƒð-‡¼ñíãÛÓLðÕø—ë·ðÿß1|÷¶<|w±þz>¾w[3¾hŒ°¼’â‡~Çÿ,ÂpÔÄ´ â?ÞÒÄÒQÆºãÿ¢?ƒÿ–ÁOœ¯ÁOIÂOžÆà§>ñ_íœñ_ñßþÀÏÊÞÅÏ\Z>ÀÏŽ4âH*ñ?²îãd‡áçr—ñsu[ðóiðâBð‹éQøÅW¹øåƒ‹øåŸzøå•møô~¥©¿ú¿QžGØt•KPF”ßÜ&(¿?GØ¬_IØp† Rp—°Ý·…°=ý*a{ ê\\CPMŸ#¨ö9T‡‡j¢^‚ºA!A3b† õÞŸ =àJÐ	L\'ìût/“ú²‘„—¾v–êŒ\Z£Š~‚¹s9a—[=Á²B@°¬×$ìFí!X5hl6yìüC	{ƒµ{…„½¿2û‚Y„}Ï6Œ\r?\"ú‚#8~\'Q&Až#á°G\"{	Gß¸œy^„cL6Áå¦\ZÁÝ¹špÜ6p<õ1Á£Mðh8Kð,ê\"xÝˆ$x=3!xÛU¼Iw	Þ%`‚S0áÔþ	ÂéWw	§ßˆ	g´~²q?­)‚¿‡Á¿v•àßô’pnx…p¾zŒp¾õ+áu…pQF™pñ˜\Z!¨D‹ô£‹ÜíB¸üB‹\0¸iK\0–©`¸¯¸s\n1Ê! Õ«È·Œk/[N%àÒ\'	„k^b@ryJ ]#:,	d«<yœK øv¨¿´­ç	lýHûÑ%pç#¼äh‚± «„ù£Q¬%AºbMˆTÏ&Dß#D’o¢”ªQû¢Î+®¸v®Ü©&\\)9O¸²aG¸Ú™NˆŽ¸Kˆ^\"Ä{+â•„ä<2!%ú3!¥~ƒp]Å‘pó€2áÖæÂ-páV^	!Ýá\n!=ç-!ƒšNÈ4‹ d&-²³ÙÙ¡„;ËŸ	w1­„»s=„¼²\\B~L(¡àÿ|n{C(.ØE(5F(•êædÑ–„\n¤¡¢R‹ðÈ¾‚PÕYOx2ÐNx\Zu–ðtú(¡Æ>‘P¬J¨+i\'<?:Ghd¾$¼èT!¼x%%¼Ò±\"¼ªQ!¼.yMè~&tOÞdÿ ô<CzG“½_¢o«ÿ¸\Zü	ƒ¼RÂ`z:a$ì&a¤Î•ðþ¢”0úºƒ0:L$|8ÖMø°~šðññuÂ§)8ás\\áËÑ“„ñ%„ñ±nÂd½*áë%Â7îeÂ·ÂUÂ·j6a\ZÜIø>[@˜ÝK˜#»æøz„¹\"_ÂÜ‡Ÿ„yÕ\ZÂBÐwÂïÝÂïGò„E “°¤ÓGXZð#,ûÖþ&Öç¾6@ˆ2»\"‰²¯˜D¹=`¢|ï9¢¢MQiú>qËÑcÄ-Dgâ¶ýŠÄmÇê‰ÛH+Äm<8QõQdBÔÐ jîØAÔ4ùFÔ<IÔºµÞn\"j[ð‰ÚSíD¡Q<DÔmÀõ!ÅÄW>w®™\rÂ÷\rJ{ˆ†ÕD£‡¢ÉÌ0ÑÜÉ˜¸Ë—I´¼ç@´òn\"Zý»GÜÓth½Ç‰h}f‚hã\'ÚZ¨m³Sˆv-ï‰{!\\¢ýæ\r¢}šÑþ.¸oëUâ¡c_ˆ‡2µ‰‡ôÞ#ù¡OtúiHtŽÜKtÑ{Ety½@t»œHt‹?G<î C<±-‹xâò1¢Çu¢§rÑ³Õ—è½õÑû}ñ$ï8ñÔ\\ñ,A†èç.%úaƒ‰ç¦ìˆçE±Ä»‰žÇ/¼—\'^TGUâˆñýD\0c’\0A:DˆÚ4ê\"$Â	ˆ³d\"âÌYp„ˆÊ˜$¢•uˆhç—DÌ±D\\Ú<÷¢’HˆÍ\"R…ˆÔ;\"ÍtHkw\"2ÌmˆÌ!:‘•°ÈÊ$Ùrgˆl·DNü\"‘[éNävùy‚<¢Pº(\"½\'ŠÍê‰â cDq.ˆ()X%J!‡‰RÂKb˜Z1b×bØ—Q‘IŒ<=CŒŒüGŒŒ×%FE÷£c‰1±HbÌ8†ÝIŒEn!Æ9Ü Æu$&›>%¦ÜQ\'¦üˆ!¦ÒˆijöÄ´[‰×Ç.oÔ;oÛº3‰b&e‰˜åx„˜­kCÌÖ7\'æÌ#‰¹çwsÁb^n%1ïn1¯ú ñ¸ƒX˜.\"ë<’\'>xO,~¸—XæRM,§$VÞ½L||á0ñ©”C¬®Ë%Ö˜7Ÿ)œ!Ö\ZÑˆµÁÑÄ†â‹¼Db“l,±ù`±eûbË½XbkÍKb§F#±Ó …Ø‰ï\'¾²h#¾¾;Jìf§»£z‰=*÷ˆ=vÏˆ=³/‰}iaÄ¾%4ñ³#±¿Ûœ8ðgq(:Š8ôþ+q$»†øþäEâGîñcÜGâ¨ž8öü7q\"h?qäGœ<¦AüŠ	!N{¥¿¿#þ«U~#þê7!.Pœ‰‹Übâ’Šq‰˜L\\Ô ®¨Wv&®k×·º×‘BâÆÖ<âÆÇâ¿\"iÓ¦¤MáûH²E$¹G’ü	IiFRp\")´^!)\"åHŠ\\Iq,ž¤”@Rº‘”H¤Í÷p$•ËbÒÿ’Ê+’Êx#iËÛó$µ²D’z¬I=½—¤iûˆ¤åEÒŠÕ\"iÕ”’´ë\nH;¸ó$½­C$ýi\Zi§riçY’ªdrKB2ùK2ý[M2óP&™!.‘veg’,Ð¾$¬Ébí7iwXi÷\r%Òîú’H²zÂ&í	;E²¾ìL²þ* Ù9ž\"Ù‰\"Iv\r4’½¾+iŸ‘é@Îé`±é0¡tD=†tïOr©&¹4×“\\º‘ÜôÜ}_“<»y$oÝ½¤“ÇµI>—ï“|îh|ÛBH§˜H§·Æ“N›>$qð\'óP ]P‹#þ[%½zL\nú¼F\nV¼L\nÞ]Lº|Ý’Ü{<p€ŒºF)õ@FI ¨}˜±à“ Žƒ$Èx-	zá	:¼„°U%¡óH˜Î1¾ÄD¼2H\"t!‘aÖ$òO¥Ô›D…G“¨\\%=÷#‰ÑTAb\"±*“ØVGHœÞygf™ÄK}JulÄÃÞ$Éå³$I¡)IRò…\Z7D\nœ\'…_Á“\"°XRDÂÒ•@\"é\nFºúr\')ÚÜ–½CŠÆZbþ~\'Åe‘&I‰GŽ’šII/ýH7ûH7†«I·&Ù¤ô¢ó¤ÌÜ%Rf	’”}{ˆtÇè%éÎÇrRnõÒÝ_ßIy~Hy×UHù&¤ükq¤üéÖT`þ€TØ|ŽTÔhGzp6„ô \"‘T¼‹C*¹Ê •ô\'‘J&óHegHežE¤2È\0©,GT>óTqjˆTÁX%=Úü†TEÛIz©OzJS$U[=$ÕlÏ$Õ,&=ß>Mzî@%=?ÿ”ô¼é#©É¹”Ôôí©yO!©ù +©¹˜Gj^¤ZeVI­û!¤V¨:©=Nê`ý¯q;é«„ôªã.©«\nAêš\Z\"½ñâ’zL”H}i¥¤¾\rWR¿-žÔ¿¸@\Zàþ$\rž%\rm]\'\rÝÜN\Z>r•4<PA\Z•&\Z†’F·’F[ÂHþ¿ŸP\Z¤OÜË¤±ö\nÒ„O%iâk%i’OšüÔ@úú¯„ôí‡.i6÷inþé÷7\niéçYÒÒ‚1iùï=ÒŠ´R7LZéøNZ™-%ý½hCZßßJZ™‘Ö{¬HØYÒ?72YvSYnÂ”,7gG–ç0Éò	,²Òžbòæà¿d•kÉämÚCäíÞÊdM§d­\ZY;Y¼ã£	YoBHÖ·ž%ë£dýµKä¤\"²¡Â²¡ø#Ù86„lâ€\"›Zû’M½‚Èf6L²™s.Ù¼ÂƒléË [žÏ$ïa­ƒÓÈÖwÈ6^çÈ6c&dÛwÈ¶•ådÛ‰l²B Ù¡iÙá%¼oöùÐg²£Ò²ãÕ%òQÅ/ä£Ÿ`ä£käcQäcÍãdÒÙep7ÙuM>¾ÝŠ|<Å‹ì}þÙ;‘C>9åFöø’}÷‘}‰…dßOPòéÇ·È§{wÏl{@>Î ŸEZýöôýNùý	8ò9pùÂ¡£äMäKGŠÈ—’’o·ƒ+áäàúrpó_òåØT2ØS‰1‘!Ì:24iš}C!Ãc‚ÉðØ‡dÄ))1ãNF¾Ø £Þ¨“ÑU»Èè÷zdL°ˆŒ¡9‘ñr02þ°*™ø¶Lfÿ#“£“©F©dêP-™ú}?™¶QGf¦¦‘Y²)dVH8™5iLæ\\‘¹-êdî|™÷û8™¿’C†ÈÂk«diÔo²´Êšòï/9¢ì\r9’ùŽåôŠ|%ƒD¾R¾DŽvûBŽYˆ\'Çjg’´“.“ÊDÿk\"\' §)Ô¯ô‘¯ÿ%ßÎ’o/ÿ%g\\O$gŒ¯’3w­3ïŽ’³àýä¬®dòÔ`rÎå%rŽÈ”œS GÎYýLÎÐÈy©0r^…9ï<9ÿÝ4ùß/rI‹ù¡¾ùQE¹ÊŽA®:¬C~ƒü4ü9ùiV¹ZÞ™ü¬(\\Û†!×y¬’Ÿ“O“ŸW|\'7LË‘¾!7–fGåÈMh>¹éÜ¬`InéD“[íÞ‘[/í%·fÂÉ­+Èí*§ÈíE¾äŽoöäŽù*òKÊù¥ä\"ùåäW~šä×½ä.`5ùMØ\'r6ÜsgŒÜß¾JîÿŠ\'ôn%ô¡Éƒ˜òf\Zùã™(ò£ò—©ËäÉRmòTá?òŒ\n‘<£QAþQSKþénHþ)Í ÿ¼sŸ¼ ñ\'/z-“—\Z“ÈËŒcäåiòÊA?ò\nö$y#m/ù_|.Eöo%EN;\"×nF‘·°¢(U¡li¦l3ò¦¨~Ê¥¨ïÎ¤¨×ûS4vP´Úò(;®©St1-Ý>#ŠžP†¢—»—¢¯¤AÙiö?sŠÊ	Šá\ZÅðþ.Š&‰bL¹I1þŽ¢˜wPLÛÎQÌ»:(ß¼(V‚-k7Åú‹6ÅÆí6Åf˜A±\rt¡Øn¦ìS…Rö½“¡ì÷~@9\0.¥˜õ¤ŠÜF9,€rØKâ¸óåhæ7ÊÑ\'úçÀ”c{˜”cÂ1ŠëëŠ[øŠÛ/<ÅC&‹âyqˆâ\\F9¹iŽròêådæCŠ/f†â[×E9“{Ÿr¦qÅÏà0ÅÏ*•â7	¢øçÝ¡ìP¦p¢(å&”s%E”‹úÊ¥€\"J`óEJÐ!\n%¨î%X°´•^j¥@PG(0v(>:JAüÿ}ÈkÊÔÈ\nö†=»¶›‚«X§àk)„Ý\náÖ0…XlL!‘s)‹‡Jä\nU@¡§fRè¿wS¬(Ì—ÁÖ•N\n÷÷y\n¯t3…ˆ§/¼ ˆŒæ(â»&ñlEÂ\n¤„ÂÚ(a%üb%ü‰åŠî_JÌÀ8%æ“7%6j–wà%®d–’è°›’8Œ¥$×”SRe()]”k¦¾”k‡•)×<G(iíß)×i)×¿ZRn|¤Ü\nQÒãžSÒR²ç+)¹EJî‡?”»÷œ(y(\n%H¹wbžR M)°Í£<\0£”lºO)Ñ¡”m«¡”Y¤RÊÒ„”²{Þ”òE<¥|ù\'åao6¥rŸ\'å’Fyl´—ò¸ÃŽRÕ4HybmA©îbSjÙ÷)u\nw(uÁ\0JÖŽRÁ§Ô+†Qê·Ÿ <¿ñ”Ò8¿ƒÒ$/Ki‚\0)­z(Ú?(c)mª”Î™\"ÊKÉåå ,¥Ëþ.¥ìJés¯£¼uÎ¢¼Û·‰2˜mKyÿ0ƒò~ˆCùx{œòé-eL¬HùRp“2y]•2ù:–2U\'CùºB¤|û—@™æC(3ç¼)?,ª(svU”_\r”_ÿÂ)Ô(F\')‹\'Ö)Ë&•”•€=”Uo5Êêˆe­k‰²nð•²Þ@§lèÌS6XÊ¿Ê9ªÌoê¦/¯©²(>U–{*OJ§*Ø¸SpéT¥3öT%à3ªò	U%ÏºåÕgê¶_¨j¨j>NTíùTM…ÏTí«½TÝ†cTÝ&UïtU/í#U/ÿ)u\'%‚ºóêªÁî5ªÑUÕÄêÕTÓ˜j:>L5³{M5o8LÝ–CÝÕLÝÕdAµ,9MÝýl–j½ÓŽj}7˜j“}Žj›	¡Ú–8SíŽ,QžQÜ, êDR{P]~n¡ºº?¢º^üCuÍ6¦º®`¨ÑöTÏuª×zÒR™êSº•zZdM=«½‡zö‹êO0¥úÿð ˜ÿ¢^P»@½@Ù ^\nÌ¥^B‹¨–[©yÔÀþlêåÚt*Dk†\n}ÑGE¸%Q‘±©ÈGåTÔ\'e*j:ŸŠÖ£b.S¨Ø‡©x/ŸªB%¸ü \ZQ‰¨Ä^1•:¹…J³ð¦ÒŠd¨´vs*ís(•~b•:J¥K®P#AT–Ÿ\"•´ÊAP©œP2•é¢\nƒG¨B*V|B?T¡JÎTIw(5¤Ê‹\ZzN\rO}K\rI\roºHô+¥FW¯Sc{¨q`jÒA25¹Â‰šr€JMÝ©OM…ëRÓžRo¥4So‡úR3²ÏS³ß§ÞY*¢æˆÂ¨w—3¨ï¨…¹g©÷_TQX€©Åî`jIø.jÉwCj©^µ¥F-¿õúÐm’Z•£VvSé\\¤>ÅSŸÊ >}B}úÊúôçYjmC=µüú#¡6¸©/ÒP›jÜ©Íï7¨mª…Ôö>µ£cµkÒ™Ú{´ŽÚ_dM0¨¢<±¦Ö] ¶ˆ©ƒ_S‡=èÔ‘ížÔ‘´zê¨Zu¥Nýò‘ú¥=Š:¾ÿ=u|1†:@~E¶h¤~kPg´‡©3Ò9êL€úÃ%‰úã>“ú£ú\Zõ§æmêÃ‰:WžLGÜ¡þ6u§.qÏQ—øÇ©kwP×†îR×õ#©ë›©S\"ê?‹cÔõgi›p4YSM^H§ÉgbiŠ)4¥\'Ž4¥oÚæãã´­ñr´íjiªrBšjB!Mí¦y\'Msl”¦Ã|EÓk~DÓßâD38êA3\0Ñh0šÁš¡§;Íô•fH™§åyÑŒ\ZvÓL–âi¦¥tš™ù Í|s*m×5EšÅëZÚî4ëûe4ëÎW4ë•Û4›Ekš\\?ÍnÆ˜f·øœ¶Ï­”¶ˆvàÔí`Ž.íðú}Ú@ÍI#šæ¤w—ætêÍYÃŠæ’RHs\r¿NsZ§¹ç_ ¹ÿÙ ÏyJ;¡¹ƒæé:Cóô©£y!KhÞØ34o&‘vrß(íäL.ÍGÜDóY…Ð|·,Ñ|­Šh¾)\\Ú©ð+´Ó^–´3:Ú™	(Íß\\Jó/<Eóþ‚ Ñ@;gL;GÑ¦‹½J;oÍ¦Ú)Ó‚åà´à»0ÚåMQ´Ë¦i—!x\ZLö#\ræs†m¥Áï1iHY\ryX‰††ÆÓ04Œ×\ZZEÃ­wÓð1_hD\0F{¹ÆÐî¤1u«i,ÇX\Z‹ñ‡ÆVÒØ¹Ž4Î•\Z§h3²™ÆÛ&¢	7ˆ4‰ýqštÚ–²MJE …Ñ´ð™#´‹iñ¿ÓdZdì4-jÔ†v\r Å8í Å\\ ÅF|£ÅW§ÐäÔiI>bZÒõc´kâß´kJii»Ýh×_™Ñnìõ§Ý`VÑnÝO»É:IKW\0Ð2ßÒ2)ÿh™}´,®-{cvgïZN­-—‚ Ý=TGË‰¢å1¥åCßÓ\n6li…[©´Â‰W´¢€ÚüfZñv/Zq°\n­D¯‡VçÑJ‰¿h¥©£´ò¸_´Š‹´ÇÑßio7Ò{C«Òš¡=¹?A«nI£=s³£=Ã¼ ={¯E«ïÊ¥=W|EkðÓ\Zàõ´Þ ­az/­ae‚Öô!”ÖÌo¦5¿m¥5½Ok‘\r µä¼¡µ»öÐ:HZÇT\níeËÚ+UÚ«i­kçZ×>>­+ÜšÖ](G{C:DëÑÛOë9äEë}}ÖwœJë+»L{{.ƒö–¢F{glK{w\\“ö.|…öîš3m@ß’6ð~ƒ6¼F§”ËÓÞKÂiï+ëh£\'Y´ÑÏ¿hXßh{RiŸtKiŸž¿¢}š¶£}®~Iûüa6XKëÿH¤·Ñ&¶lÐ¦Žì¦McÒ¾AËhÓÔ4Úw™í´ïëlÚÌ\"6[,OûÉ}A›ó†Ó~]¢Ò2Ó~Ïï¡-=9J[j}I[>åB[y¥­š¾§­YÀhk•ž´uýzÚÈ™¶‘ÔDÛh{LÛXh§ý³§Óþ}u¤Ë•iÑ+°t%­júæºJQ:}+¤¾Ý	DßÞ4D×Ø_G×hÿE×˜—Ò5ËlèZ© ºÖ5º6L×–¢ë*ŒÓu{­éú\'ªèúé	tCSºÙÅ,ºhŒ¾k+‰¾Ë¶¾Û£—ne§O·ú¦B·Þ\ZG·L§[ƒ~ÒmÌÖé¶T#º]Æ8Ý®7’n7J·[ÛGß+I¡ÛÇ\0è2^ÒóuéG\\At§ø<ºSoýØôÝå®	Ý=hî>w‡~(¢{šNÑ=)wéž}ƒtÏiº¬”î°N÷ÝdL÷e×Ò}Û°tß?·é§”ÐOKEô3¢Íô³À£ô³=éþÆt¶&Ý¿ŒHP¤\\»M¨ë¢Ÿ÷¤ÒÏdéçÃ3éÍ¨ô‹{+èïOÑ/);Ò/%ÄÓ/å¡ZäÒÆÓƒòSèÁ¿yôËAÓtà+:˜N·¿¤#7ÓÑ¡^tLP	3x‹Ž½èKÇ>o£ÀD:Ùð7ýÿ/ì¯N§~ ÓZàtºÞU:ã‚?qû-ñ(“Î¡„Ò9ÏþÒùøtÁc}ºpAgWÒÅ…£tÉÞaºT)‰.ÅLÓ¥-9ô—hzÈÛz(ÿ$=ú‚nr”Î¶£_™ê£_½I‘_¡ÇÍÓã?=£\',ü¡\',ÊÐ»­é©{ÞÓ¯™€éi¢Aú6=ýø\"=ý²==e=ãW\rýÎN=×f„ž[\r£ß½}žwp\'=O§çqèù“ûè÷îï¡´áéÇéE“ô>²ôÒ¡ôòó(úÃd?zå´\'½êßýÉáúä_ú“o3ô§\nNôj³môê“öôjt&½æL<ýÙ©iú3I=ý¹u\n½ÁGo8žEoÀjÐ_ÐÎÑ_¤pè/ÆãèÍ×Ñ[ìÖé-ÙÉôVjz›‰?½íÎNz§½.½sñýe„”ÞUªFïù?Oï6—Ñû×¬èƒÕ_éƒ\rô¡Øfú0aƒþžkNŸw‚þ¾,˜þAþ>ýÃ	múç—6ô/;~ÐÇåþÒÇéã\'ƒéã7îÒ\'«éÓÆîôïPúÏ}^v™þGñýü\n}ñŒ¾|Ó”¾\\B_QäÑWÚíèúÒW¯ÑWÎÑWÁÕôµ³^ô5–\n}Ýh•¾îz¾¡SJßXfÈx#2õ\nÙ}Ùw;rÛ\nÁç\n-R†¢â†bñI†RbC9å+cs\"c‹M?cë2cÛ5e†ª„¡úÜ…¡yÍÐ¨ûÈÐLeh¸3t6Õ1v„_gèÑ×úžÚý1ƒŸ»F/¯3Œ‡Á“ôH†éõE†ivÃlù!cW˜Ã²c·|Ãªn‚a}}˜aýðÃºòc¯3”±whˆ±wÃ‚aó%Ã¾ú+Ã¡uc·š±ÿâÆ~¾\rã\04‡qðÝSÆ!«Gï^Æ‹4Æ‘è$ÆQ«JÆÑðH†óKÆ±kW8áŽ:ÉðÆG2|<¾2|}Û¾1õŒ³Ž3Î–¹1ü†¿ä¯Œ€KÉŒ€+&Œ€æÛŒ€™=Œs’AÆ¹<ãÒ¹%FÐ\\(#øä>ÆåJPÝÃ\0þ 3€QØ‚õÄ3`ÉÛ(íST¹;£9ÅÀþ~ìºg_ÍÀ=´dà?Œ3ˆ”NQ|AòÕfÞV1ÈÅ÷4Ø=.›Áð`0>1sGlß-N¤#ƒç,C<q‚!mA3B/1\"œ·3\"¢£ùíŒ«Y“Œ˜ù|FìÖËŒØŒFükEFJ³#ÆH\01ÒTŒŠÝŒ›öÖŒ›ûw2nP`Ü,KeÜÚ,fÜj±eÜzÈHßñ–‘~é#ùˆ‘‰¾Ê¸cgäô_bä‹¹¿8Œ»öŒÎWF¡•\r£0Áƒqß;–Q”³•QÔ•ÅxÐúQ\\þQÜqQbšÍ(½Á(m‹e”2ªÞÕ3žà¬O5J-ŒºN1£Þ!Ñð¡†ÑxÃh¤üf4Æ´0š¶ä3Zw¸0Z]ƒ­\"cF{ËwF§5’ñ²ü!ã•ŽÑÝŠf¼QŽg¼^c¼¹†eô©u2úð§ïöÞgô¢CoIŒá§åŒ‘m!Œ‘‰;Œ‘Ûï\'	Œ÷¿Ì£ZrŒåÞŒO?ŒŸ1>«3cÏÕ‹(Æ¤í<c:P‹1ëÉ˜IßÆ˜½Äø‘¥Åø™»À˜èeü2³aürºÃXŠ|ÄXÙYÏøû³•±zÊ™±ú{ƒ±Vgl@v3e«‡™²Ï­˜rÏö3™g™*VõÌ-{>3·F~en“ßÅÜfšÈTß•ÍÔ`gjT15Üfj²•™ÚÆÇ™:õÍÌ\\<sÇ+L=ï_L=€©ÿ÷$s\'Â¹Ë`î¤íf\ZNc\Z+m0wi¤2­vßgZÝÔgZ_ 1í&\Z™ör;™ö\'™öD¦C$‡¹¿óóà<•yØÉšéhëË<rÇœé¤w‡é´ÁtÖ>Î<&cºøé0]ƒ´™î¦÷_LoDÓ;ŠÎôN{É<Åfúx‹™>Â˜>KÖLß’¦ïûëÌÓÇü˜gÈóL‰Ó¿ÿ*óÂ®·Ì˜læ¥?™Áé$æåO©L@3™	Ä³˜`n\"¶™Ç„‰J˜poe&<K†‰X)a\"}Ò™¨\'MLtÙ£•ÁÄ–1‰k£LºžIÖÓgR‹Ó™´¸E&ÝÁ¤Ÿöf2Ho˜Ì“L–’“å•Èd™e²‚²™,¸“Ýö–ÉS\Zb\n>ú3%Ò\\fHïyf(ã3”;ÁŒ8s–`Ì¼\";ÌŒ®ÿÎŒy{Ÿ3¯ÌŒ¥=dÆ¼eÆUÉ3ãÆ™q;˜ñî—˜ñ]™‰}õÌ$å,f’Ÿ93åîofêm&ózð7æ\rsóÆÕÇÌ[òÌŒ™ëÌÌN\rf6]ÈÌN<Í¼óÈÌÁb™yÎ fþT.óžN\r³Àë-³Ð¨•Y8ãÌ¼1È^g>Xg–èÖ3K`ÊÌ’šrfÉŒ-³ôàWf¹{1³Rá\n³r)ó11šYåìÊ¬Ê[gVÍf1ŸÞ‰`ÖäÃ™5?¢˜5«G™ÏêJ˜Ïê˜ÏÛhÌ&o\"³ée³Yv\'³ù¤3³Mÿ³í…/³Ý¸ÙNrgv\'1_mQbv™^cvA¢˜]YƒÌ‹ef¯–ÙKšböÿ_›™ƒ÷»˜õàÌOn÷˜cVÌ±*æ—o™Ž8æL9/ôaþ†—1ÿLê1»¾2—¦_0—^Ì¿#‰Ìõ‰1–Ìc(kS˜-Kö;“%wøK‰ù¥üÌÚZ{µMV‰µ´‡¥^«ÁRïÙÍRŸ÷bim$³´ƒˆ,m2›¥ó§¥³âÂÚ‘¦ËÒUaé©¯²ô¬šXúýçX;ÏÄ²Œþîf™àÏ±Lïù²Ì<,³ç–¹B&ËÒÙ‡eÉêdYÖ\'±¬L­XV	b–Í!u–Íç«,;÷(Ö^ûDÖ¾ýU¬ý§ÆXû	‰¬¡é¬ÃÖ“,§Ç/YGV³œÃN²ŽéXÇ°YÇ¾›²\\R+YÇÂYíÃ¬“ÉÕ,Êë”…å7t—åß’Ë:G3a“L°.&gžà²‚ó;Y—7e².›JX\0S]à ‡x6Æfõ²€åù,ÃäýÔt…s:ËB\Zú²Ð	wY*Š…õøÌ\"ÄÕ³ˆßÞ²Èâ19ÃŠEùôŽE]ÎbqY¬Ûa,VáA{;˜Å¹¯Èâ†°x;è,Öv–\0øŽ%tmb	³Y\"ŒKÔ4Á\nóteE ³\"wÚ°¢›YW¼¦YW5Å¬«IÏXÑµlVœ±€wÅŠ;žÍJÖ³’w|`%Ûh²Rþ±RªY×ê6X×ºcXi[óXi£¬ë*Ù¬—ˆ¬[¦Ú¬Û\'%¬ôÃ™¬L¹^VÖŽV¶œ3+û~#ë¼ž•¤³rm¬œ¹HV^‹6«`à+«•Æzq‘UlN`•¨Ö²J.Î³Êä¸¬2\nœUnàËzØ‘Ïz¸ÞÄª8·ÈªxdÏz$ûŒUušÍª	YÕ7Ÿ±j\rôYµ’«¬f™¬æ{BVKB«Õp7«\r5ÏjªcuDmauôg½ÂO²º.±zY=Ž\'Y=î&¬Þë­÷\rÖ;b?«ß€Äê¯–°úkËYCvy¬¡•Ã¬áù6ÖðêwÖˆîNÖÈ¡dÖ¨F\nkôWëC‡õÙö\"k¬Þ„õEFŸõå_/kü¯˜5QYÇšXA±¦4\\XSÆY¬o]m¬ï‚Ö÷ªRÖìiÖìCë‡ÏUÖOÖ5ÖœÎ<kþ7‰5ÿç5k~ÅŽõgç)ÖŸxÖß‰Öê§iÖšdk=ÿk½kŒµáŽõï‚½iv€­ðv­ä¼ÀVú‘ÏV–“°•\"Ø›7±7Ã|Ù*‘ªì-ûMØÛôØÛÇ9ìí²lÕS¶&Ä“­…½ÀÖZB³µ-Ù;v°wVßeïìÙ`èay	Ù¦Æ›Ù¦®l3ÏÝl³‰ló8Û²¯ž½;Ážmcz‚m»p‹mgâÆv¨	fï+bïëªbª_gJd;	«ÙÎôlˆ€íze‰í:y—í&w}Â“Ïö(²a{v~e{)HØ^;lom[¶wÊ%¶wíNöiígì3v@ö™Êì³…=ì³•ûÙg±ý.²ý®QØþÎöìsg™ìKrcìK:ìÀì`b&;øêsvð×Ïìà\r?6`UŽ\rô“²!³[ÙP›lèy6Â—ÁF\\Ía#U¦Ù¨ý³ltÒG66Z‡W­bã=Î²ñ(96AužM\0k°	MÃl¢î16ÑYMvªfSjØ,i0›Û7ÆæÇ)°c½lÑæl¶hä[¼ö„-1‹eKƒØ’’slÉH[ZãÍ–v³CÉ‡Ø¡­»Øa·w³#ž÷±#o°£â¢ØQ«löÕ/“ìhõýì˜¿eìØçGØqS+ì„P;ñÕCvòfUv²Aû\ZÎNóæ²¯[ Ù×\'mÙ7WmÙ·¿F³³•ÜØw2 ì|o);ÿ»pÞŠ}?îû~úv‘¥»¸|™]br™]òÉƒ]–[Ê.W·g?Ôµ`?lÝÂ®°sgW0&ØUöXv•Ã~\Z¶›]c¯Â~†¿Â®eE²ëä†Ùõ£ŸØÏ-Ÿ°U±›^f7_f·‚ÝØ­ŒZvÇ‰-ìÎ.!»ÏîúVÈî9®Àî¹SÃîûÆ~kÌa¿›£²û‹²ûŸµ³ÍN±‡Ln°‡ô³G>y³ßÇœa¿¿‘Î~ÿÀ†ýþ‘ûÃ– öÇc2ìÏ6Øc\r§ÙãG³\'ïÏ±§Š†ÙSÿ˜ìoÖÿó1`OÓQìéø>öw³6öì§\ZöÏ»¶ìŸ}ì_Aµì_Irì…³7Ùì¥‘·ì•¡0ö_eSößc±ì\r›‡™­\\ŽYŸ##üË‘iµâlJOæÈeæräQ8òíùÄjŽ‚«G!²‡£½•£P{Š£¬üš£|è6G…RÅÙÈçl5»ÁÙ\nŒâl¥}æl{0ÅÙnÄÙŽ|ÀQÓas4å¢8Z·~q´îst·¾çèb½³78z?Z9ú679úà`ŽþTg\'Ã1fÑ8fŸ­9–!:+7g\'˜c]äX?0áØ\0?slïÙqì4g8v	ög¿Îg?ççÐÑwœCÒÎá÷#ÇE\Zç¨`/Ç¹ÐƒãRÑÏqyîÀqÕlâ¸ad9ne›9î²Ï9\'Ê9N¶/-ŽwìuŽï9ÎiYç´K%ç¬§\rçlÁ ÇÏÄŒãçSÊñ#8püO›süç\Z9äN@o/çRP=çRL\'øÏàõ‡èã€ð<Ô\0ÉÉ8ðGß8¹×Ô\'úº[‘Á!ËyqÈ–Š2‡ª*æP÷Ös¨WW8ÔuWM5ŠC›”å0†i¦åMsO‡ÙCâ°-Ô9Üc_9¼eWŽ ù*GD7æˆ¾ésBgÿpÂ¤jœð×O8‘“œ«g8± [œØt2\'öG3\'!³”“òÇ…“xÏIã>ã¤s97-87Œ³9·§Ç8é¾Nz›ˆ“>(ÏÉ(zÉÉNØÊ¹ƒ1ääžÞÌÉí£pòž¤ròÞZqò_£9÷\n‹8U\'8…Îý­O9Eçœ¢Öçœâ41§üS(çÑå‹œÇ²ç9Ño9Õ\',95îœ:·1N#Àyqò%ç…O§Å†Êi‘B8-É9-7z8-ÓæœVGNkœ§\r8Éi+}Êi[Žætœ9‹•œ—¯b9¯\nç8¯/9¯ÃÖ9]Í–œ®noÎ›»LÎ›_#œ^²€Ó›ZÃé~Èé3¸Åykã¼Ìä¼£pú×^rÊosúr=8CÓœ¡—®œ‘îXÎû+_8£‘œÑ8cÎè—ó!!óásçÃòÎGOYÎÇgç9Ÿ‡8ãgã9ãeÎ„5–3y:‚óõ[\rçª‹óíÿœOoIàÌìzÊ™ùÎàÌÞÍ™=¥Ä™½ÌçÌ²ÿ_S-8o÷q–¬îs–Ï9K_ßsV,ösVNpVðƒœ¿9PÎßÎ\nÎêŽ[œÕ°3œ5§Î†9‘óp˜»)»€+AæÊÞ¬æÊþØÄ•«_áÊÁ¸òŒR®|IWÙ¿«<9ÉÝüÂUá®s· Ü-ñÜ­	ªÜíNB®êW8W½›«þ³Ÿ«‘ù—«ñÄÕŽòäê8©ruçÏpõÊs\rBV¹F\rv\\£ÉX®IB%×<ÄµÏäZî•ãÚì%qme“¸vÚ_¸{Ÿ)r÷~r÷é´p÷E¹û>krB¦¹‡XMÜCÃ¹‡Uk¹ŽHo®ã›óÜ#£­Ü£ˆ&®sð^î±³¹.„ƒ\\—×Mo×ÝË=¾§‹{üÄ?îqÆCîqi.÷øÛÜ*»¹\'ž^ãzx—p=Í¹žI\\Ï?ú\\o-9îÉÝDîÉÚ“\\Ÿú­ÜÓ\'?qÏôzrý6©qýqý¹þ\ZŸ¹þ¦\\÷X®ÿ›°mˆ ¿Â\r°½À=g2Î=×¸Æ=/På^œóä^êÖâšåGFpƒË\n¹Á?¸`Ý[\\ˆä²xšåc¹Ð¸8.² ‹ªèâ¢Ï¹˜¸»\\lÊ_.ùÞa.¥]À¥Q£¹ôó.ãÇ¥SÞp™Š¹l/.»ú —ý&€Ë),àr/	¸¼F-®ð^\0W8ÅíQæŠÍ®qÅyd®D;‘+­­æJ_irCÖÜÐÔÜ0†#7òÅ$7rˆÄ½Bsã^á^}¿™ý ˆ#ÃàÆ(\'rcÑÇ¸q?Îq÷s?Æs“ô½¸É 9nròsnÊnÊ¸=÷\Z>„{mµ›¦Ê½¡t…{“ßÏ½ÞÈ½ÕÌ½gÂ½Ýáf¸_çfÚ¸·\r¹YVmÜ¬âÓÜì	%nÎÓ!nÎP7OÎ’[°^É-<\'Ï-ì[åÞgõs‹ðmÜò˜4neF·Š÷ˆ[•)Ã}‚òå>\rå>1ä>3Zã>s°ä>W\Zã6œ!r[¹­1eÜÖBî«åGÜ×[r_r¸¯†¸¯?sßÔÍs{Îºp{§¹ §ÜÁ`yîà]gî°w¸\'Ÿ;bƒæ¾×mâ¾w›ã¾?“Î}¿îÈý`åÌýDLà~úò‹ûùÂîø^+îø!îxÄEîÄîû7wjÝˆûõs7÷ý3÷[a#w¦{•;«‡çþLgqþÛ¹qWî|f9wáZwac\'÷÷_\'îÒ³=ÜÕsÜ¿\ZO¸«y(îÚ¡îZ‡wý €»mÏÝ(úÂý·½Ÿû/ä/OÆxOfàoÓWž|õAžBížÊ+eÞ6t\'o[vo[{2OíOÓtŽ§Åæíð­ãéu>à„lð]•yÆ®<Sµ<ó€_¼]žÏyÖ\n÷yÖ\0Ï:t˜g³¼Ì³­àðìªòìêdyöû ¼}{yÍfxGd»yN†Š<W/ïxM:Ïc7’çyyÏó[\ZÏsyŠç…ïäyUøó¼:3x§^òNÓNðÎ\0îñÎ A¼3ïL¨ï¬ïžv”°1Ã»0à]T\ZåÉnåwó‚ýöó‚Ã²x—Ý&x—½{y—G¼y€ãP ö%PÝÄbyÀû<E4çOZñÀé#<ô+jÂƒþÒæ! *<Äb¯ÛÌÃßHåNëóU:<btál1Ë#W¨ñ(øc<ÊôCÕJ›ÇL•á±Ä4ëãwÃ\'ˆŽæ	^˜ò„jŸxBæ4OøÁ¥rxâDž¤úOêŽà…Œþá…|1ã…¾ÞàE¤äEÜ)åEŒ£yQp>ïJ_ïªÊe^¬g/®ÏKÚLå¥ZòRƒnó®/OónDýâÝh~Ä»5µ…w;ú2/Ýï/½ë:/ƒ?ÃËŠ¿ÎËÆ*ñ²¡¼;º“¼;Kxw­òî™ãÝ=±ÂËkñçåû|áÝ;yƒw~”woþ¯ x…wÆ+ò‘ã=H<Â+£æU^ˆåU>¸Â{ì<Î«rùÂ«zŸÊ{z0Š÷ôÑ~^5§šWÝð“WÃˆäÕªñêŽDò\Z‰^ã¸=ï…b¯iÀ•×¬õ’×¢Ïk±—áµ$ðÚ0y¼¶L\n¯ìÃëò†ñÞ\0yoH¡¼žîh^o¹”×_Hã\r¼žä\ryÃ[y£1Wx˜Çycýí¼/\Zx_æxß£Kx3Éy³Æ“¼›‚x?2è¼Ÿ ·¼ŸùÞ/ÙÞ¯òo¼“2Þ¢ÂsÞÊ×Þ_8†÷wæïïz&o½ Œ÷ï’/ïßTST\"SÇ4_.Ä†/Ï®å+xóe³ùŠ»ùŠOeøŠó`¾Ê·Ëü-§lù[\"õø[Ê\'ø[–óù[çœùÛî~ço{¿‡¿ÐÈWÝÈä«·*ò5¾…ð5=ýø;Ž;óuwÃøzŽ£|}Ò6¾a‡oØSÀ7ò¿À7Êfòå;øÆjd¾q’o®‹¿ë|ß\"\ZÂ·T‡ñ-/çó­Ð7ùÖñF|O<ßÖX™o[r“o§¯Ä·»²‡o7Š¿×S“¿Ïà-ÿ€ýmþÁF<ÿÐÞAþ¡Ódþ!1”Xéÿðô-¾£Ùi¾ã+&ÿÈ\nïä¶Îwê¹Á?ªùÔ?žï¼ÅïÜÂ?v\"Ž¬yßÓ>‡ïÙ¬Ê?upŒÊ5ƒêúÿôÅÝü3å–|¿$?\0×ËÙÇ?\'¯Ä?¿\'†>®‚>ÁÜ6Ä¾Ë¾õ‰y‹”ÙûÿòÕ#|@çY>˜åÎ‡~òaOÎðáZC|¸Þ$“áÇÇ}=ÅÇýúÈÇŸOäã36ó‰‰>©NOò)†·øTù“|Z<›O÷ŒçÓñ|†‰3Ÿ³ã0ŸóDÏ3dó…½ù¢Áã|)ê	_ºz†²-š’Ë\róÃÔ“øa«™üHð;~äÒþÕºíüèû™üXçE~õ?q²”Ÿ´7•Ÿ,yÇO®¤ó“W²ø©ÏTø©¯ø×N,òÓ\0ütˆŸ™ÈÏbyó³zuø9Ôy~ÎC8?w¦ƒŸÄÏ/3â‚ù…Ï>ðK¢wóKýFøeÂür¼?ÿ!$Ÿÿ°a–ÿðÏ2¿Ò=_åÌá?ãóŸj$ó«/ÔòkrøÏà_øµžü:›N~ýÔ2ÿ¹ò1~Ã¼\Z¿ñÛ~~ã:ß\"·ÊoY7á·iDðÛ‡øµü—·7ó_Ë¾à¿ûÉïÊìãw¾ÆïîÖáwà÷/à+ùYÃüÁ—LþÐ!sþpp0¤¼›ÿ¡\'€ÿa@žÿÙÇÛ|€?á…ßäñ>ÊŸHÑàLò¿Ž»ó§—5ø3Sù?ÆnñçÎûòçåíø¿þóÿ¼zÍ_„¸ñ—µCùËëoù+—ø+CBþ\ZB‡¿Fà¯½¬È•^È•AŠ4ÒX@õ]°}3@ †i¨÷X\n43Ÿ´ÔMZŽ.ðwÞ\'þí‚„%ÁÎ‚?@mBµÀ Ò\\`è)0¤¢†wFr‡FäR±%[`ªüD`ÊÎ˜«ŒÌ‡‡Ù‚Ý¡—VÅo{”6Ï¶}p>J`å °{NØuÜØ_z+pÐO8ˆ·öë~ìwsìŸYô·úè%8ÂÓ¹Z/pÚ2(p‚ÂG:.ÀBÛ`«À½GàNü-ðØIxž¾,ðüô^à­º,89¬(ð)÷øT=œi$ÐYœF\\¸2\"¸Dy.ÔO¯	—À¡Èù©\0ä(\0µý€™àÈ¸fU\0±=$€x 2RÔxA\0z	à‡­3âO…\0µ°,À\'%	ˆ:TñW€,£  ^NP_:\n÷êŒ±sá³€Uî\"`¥8-ªÎH‘€gø[Àÿ¾W ðþ*@„GÒ¢ÐN(ó­@ìm\"‹Ûtï”{UÚ.ˆ²ÓD…›®ªý\\=´KËÄŠ‘‚8òŠ îN± ®FC¶Ið|BHX$fn’~ ÉÏžR†•©ó‚ë!‚ë_ä×gy‚?/\nn»ÓéÒéÑ[™‚NAæZ­ «t‹ û|—àÎÛ$ANP ÷„ ÷kšànÚA^ä1A>vŸ àf› àK³ `$(Ä}Ü·ÍÉ¿yf	ŠJ–¥‰·e×åõ²‚\në·‚Ê\n¾àQ°@ðøaœ \nLT\nª$»Õ³ûÏN£»^\Z»è‚Æs‚ÆOY‚&:\\Ðœp@Ð<µGÐÖ÷KÐ.x.èÈú,èx¦ èdr¡]‚—Û/\'/ý™‚W?A÷´Š ÇrXÐkt^Ðëá ècˆïš5ýOWy~‚A‘`¯#^QŒXå	FúGïsï>¸?|8/|–íŒQËco&>‚É£‚Éâ-‚¯F…‚ogv\n¾õÄ\n¾s	‚ïüß‚¥NÁL\0]0-ÌTzfÉ>‚ŸùbÁ¯¶@ÁBhŒ`á«`éÒ_Á’Ð_°,”µ¸%”½Ñ&”A„\nPo¡âèSáæ`ŠPåÈ}áV›YáöÍÕÂíµ4¡ª\\’PÍÐ[¨öË\\¨~ØQ¨ÙvX¨ÍØ)Ô.j¯š	u´™Bž\'Â	Âïõ‚iBýFKáÎ×CBÃKyBc½ÃBã\\¡	¢Hhº 4×©š×žî28*ÜUo%´\0-}	B«¥váž§…Ö»o\n­SIB±«Ð6¸Nh·¹]hwZWhw®F¸÷ŒH¸·(´OÍ:xB…ÉëÂ}»t…ûS„ûûg„‡de„‡ÎŸ:^Ü#tÄ…N§\'„Nþ6B§2žÐ¹H,t¡y	]ÝyB7WáñsxáÉž½BŸ˜³B¿¤Ð?=_è?†ú¯X\nV./ì^œ^ÚR\'¼fÝ…A.Â ÍÂ`¤º€®V´…À»BPÎm!¸ñ§ò.P™BUnawBØ»GBø‰ÝB¼Wˆ$¨\nQÎêBT¢Pˆ¾Ø/ÄÄ±\r_…Ø}B\\.Iˆ›z-Ä\'V\n	‰_…$Ý!‰i!$Í\"…d§óB²ÔLH~R¿O	Y‚.!++\\ÈM¼&ä)\nùªBa‚™PÄnŠ/‡C–f…¡=„aaøJ¬ð\nÂHxu°Q­!ŒÉ«ÆâvÎ\n“«†„É/	S…©}×…ig\Z„×7O¯;U	o˜b„7soÛìfìfåé\n³Ù:Â3;aÎIyaNj¹0OFF˜OÓæß6æÿÞKšZ	ë«…÷çÄÂ\"å.añ¡ÂâòÂâúEa‰íŒ°¬-DX%jV©	kb±Âgog…µ+a}m›°¾×Vø|W°Ñåœ°iò°å¹¡°ÃŠ\"ìx$ì…/K}…/_;ö_¿™v?à{vê{½„½ßò…o-	öI„ƒ.Lá XC8£$%:?:m~”Þ~ü÷Fø©ì–plÄR8ÞZ _Ú-œrÙ$œº\"üÚ‘(üæÖ*üû(üþüpöŒ“pvñ”ð‡ÉŠð‡w ðÇi±pî ‘pÞp\\ø+/ü}*üÝ­$ü£rQø‡µ,\\šHþM~#\\Eí®…¯×¿©	ÿ}=*ÚÔ–\"R85.RøðP¤0ñN¤xð‹H1%V¤X1\'R:)RÂ¶Š”Ê“DJß¶Š”~m©Œm5\0‰¶;‹¶ßžmO©ú5‹TË>Štˆ_E:¼\"|¢hÇŽ¢«‘¾s¡È€Ë¬=Zë‰Œ{~ˆL;ŠÌ¯Í‰v\r\Z‰,ŽÇ‰,-\"‹ÌN‘Å\"+;]‘UHdµ²[d\r‰l|­D6,‘mXd»,Ú;¼Kdo4.²¾YdÿöhC¿è@e¨èà¸èPìªèÐã}¢ÃŠË¢Ã¨‹¢Ãñ¢£ìiÑÑ¡\0‘sõ?Ñ1ÉˆÈUy§È5&Räæè&r‡¾¹çÕŠ<’@\"Ïs¢“ÞÕ¢“cY\"êf‘Ï?„è”o˜èôþ>Ñu¬èlï_‘¦HäßùMtN½JtÁ|Ct©ò®èÒÂCQ°,J\\š-\n~Å]îQ]þ¬.ÈŠE@ùr°f›d¼GŠk\ZšD`/Œê».‚*Áš/‹àº]\"Ä9R.S„Ì¿*BGD‹Tîíá”«ˆˆŠëªD”Ø&%=CDë.ÑæˆØ›\\Eì6W%EÄñFDü”Û\"¡Š•HÄC‹ÄÎ\"‰ß‘dÖUeX%ºz5PSzKê)Jðú J²°%WˆR.NˆR³/‹R»Ei©OEi?zE73o‹nV-‹n>Ý¶6¥me´ÀEwŽÊˆî”lå4Šî¤‰\nŠï‰î_ÎÝ/\r¹TŠŠ;ÿˆJ–è¢RÜWQù•K¢ò;‹¢‡«f¢\nž·¨âævQE^T1þ@Tñó¨è±òÑã¬eÑ“×EO.Ý=Ý|Zô´!ªæ DÏ^Dõu1¢ç2¢÷?¢¦$yQÓ¢³¨E­OÔ¢_&j]:\"êP<&ê¸,ê½äŠ^‰^PE¯~w‰^ËrD¯\nD=ƒE}‡wŠÞ)Èˆ†>Þœ6„%ˆFb¢÷$SÑÇÃò¢ç¾‹>>Í}!¾ëõŠÆÍ¡¢ñ¸hüÝ’hâÒ1Ñ%šš}“×}³i}+< šNˆ¾«qE³†)¢Ù¿í¢Ÿâ4ÑÏW¢Ÿk¢_*\n¢_GzD&äDË¶OD+÷¡¢•…*ÑßÃk¢¿G>Šþ†­‹þÞç‰V¢Õ…vÑZÜœhmH Zû6&Zg¾­¾&Þä.Þ´lü¿P±\\ðm±\\s§Xî}¶X¾¨L¬ P¬Dˆ•âw‰·’‰·ßƒŠÕIbM/±fYƒX+²X¬u,Ö.4ë¨¿ë–ÓÅz’bý¸Ø(¸Zlª©.6M‰M¯cÅ¦E†b3{%ñ®!b‹ÒN±Å‹U±å·Uñn%w±Õ+¡xOA†Ø¦PFl33(¶MñÛÞtïU-ïÅµˆ÷\nRÅö~–bûÂ±ƒê˜xÿïKâƒuwÄßÍ‹ü?•y–+v\nÚ#vúõS|ô`ŽøèE±3$Jì’ôYìšf*v­[»Ö§‰Oì–ˆ=vË‹=¾‰Ä^nb¯ïÛÅÞ°bï»hñIÒW±ïößâS‘Dñ©fSñé©>ñ™]»Åþ®ˆý	½âsšæâ‹ì^ñÅ¡qàÔqá³8(í°8øG8{UDŽ‰ÁÆ…b°¯¦ü‡/†TÄP\\†\Z?+†tÃ:¾‹asnbÔfŽEº%F+÷‰ÑGÄ˜i¡ë¼\"Æ\rÄ‰	A¿ÅÌM1¡(&++‹ÉÝþbÊíy1õÄq1Í²]LË}+¦k.‹™~›Äì@k1û÷W1çð€˜sO]Ìëjó>6ˆ…Û¾Š…¼XØ.¶¿»¿ˆÅ½Íb‰-q-‡^ê‡æ•‹Ã¶ñÅ‘{µÄQ•×ÅWÈÄW»—Åq‡_‰ã\ZÊÅ	MHqR„¥8ÅÒSœÚY\'¾¦§ø¿ò‚5ÅiÿŽ‹¯\rß>ß²§Ë[ŠÓz‹3ÿ·Ò+Î6sgÛú‰³{~‹sFNŠsþåŠsµtÅy²qQº¢¸Øz^\\|Ü[\\\\9(.‘&ŠK¢Ï‰+ßŠ> ®bÑÄ5ä/âgÔ›â:q}Í7qý¿5ñóáBqƒ§¸ÉeUÜ´b/nñŠ·Ò â¶cÄmL°¸íÁq‡s£¸#PGÜ‘ ¿„üwÿ_s½—~‰{[Ä}Î¦â·¼{â·W¿‹ß–ðÅï¶¿CMˆû¿ˆûgÄC‰}â¡ÔLñðÑ\'âÑ\"¬øƒâ!ñª¹øã\nDüÙ’+þâ:,žèþ)ž\\pO…ž›¾(ž>µ$ž¾rVüý«—xflV<{&K<›¨*þ]\"þ­&žk}!žkgˆç]ƒÄ¿Ò6‹JÅ+ñïúŸâ?˜qñ’i©x9\'PüW§\\¼ö+^ÏSo\\&ˆÿ­8I6ŸIä¯œ(éì“(Q†$*Vé•/9’­›¸’­öG$[Cä%Û~Ü“lŸú ÑØ-Ñ¾rI¢ý8W¢ÝwO¢cóU¢s\"Ñ™É”ì°Ú)ÑåJôP};¡D%1ôxý¿a‰Q5Obôf‡ÄhÄSb4.1–Ñ’c{%ÆBˆÄä…ÄdÈ[b®úGb8,Ù5}VbaÜ.Ùm‰“Xµí–ØhÃ%6ˆ‰Í»í[3‰íâ‰ÞMÉ^u/ÉÞÆU‰½Rbº\\²_÷ ä\0¤KrdjFâl}Fâ¢Z$qóH–¸“¸_	‘x\Z`$žÞß%ž>‰çÙ,‰çu˜ÄëT·Äë‘äTÚu‰ßü1‰ÿ19‰ÿ×DIÀ)‚äü^ÉùÔ×’ÞÝ’Ó?%¬${ÞK‚\\ÞH‚.«H\0Æ‰ÐŽ?ó ‘+\'A)ü•`2_J°þ|	Ž—n%dð\'	e.¡ïÛ.¡7p%ôn˜„ùXÆÖ¿]vŒ¶„+a¯>–pìH¸rQ^¼¬„á›D\0\0IšD y-Ô„ID7$âðU‰ääœ$dO®î+‰èž•\\i\r“Dm•Äé<•ÄDHâ¤G%qubI¢º±$yGª$u~«äÚ‹³’ëâ_’$7»F%é“IÆËnI¶$SrgAM’Kä.“ì™”89H\n¾K\næI\nš%…§’ûF$÷Ú%”l$Å²I±÷gIY+ER¾Ž“<¤£%76IªÖIê\'$õ{Ò$õy’†«0IcÂIcý¢äÅÎ%É‹â³’¦3O%Mçð’¦ZwIÓœ¼¤Y÷²¤%#i•½+iS5´9B%í~\'$/îK^}“t\'VHÞlz#é)¾\"é)é—¼¼û´(pcH¨\'%ƒ¾	’!%¡d84F2‡”¼¿h!ùàT$ùügT2&|!Ž|¡|”|)˜“|5”Œ»|”Œ‹«$“v.’o*’ï~hÉw‘ždFÿ¨d¦é³dæm—dVédÖý˜ä‡ÁnÉËxÉ³Ã’Ÿx’ùë’_;e$¿z’?ýY’Åb¨d	8/YJáI–%‡$ËîHÖ”~IÖŽVKÖ®¤JÖ¾€$kS.’ž%ÿ€cR™iÒM¢ãRYA Tö³†TÑ÷¼Tñ¥TIó¶t³u¶T…c-UiL‘nßã&UßÇ”ªÿº\"ÕðâJ5ò¬¥Z·¤Úo¥:¼T÷{ŒT/IWª/{Nª¯Qªú…TÿÃ¢t§›±Ô$2SºkÇ€Ôrï©å•yén9©ÕU®tÏþ$©õ.€Ô¦p\\j—= u˜aJ÷¹·K÷çÌI|Ž‘ÔÌ’r•:¡b¤G¹£Òc®SÒcÙ\rR‡n©›Û€ôx‹‘ôÄé‰•íRÏÒF©Wû{©·\\½ôdVžÔw£RzÊ JzŠ¿Gzú°«ôLàMé¹í·¥çü®IÏ—â¥ç¿ûK/{K/Ù–J/5ï•ÍJ»‚¤\0{)ÈcJ\nB5KAÒ3RXÆ n~VŠä	¤È÷O¥¨fÐ/E?	”båRl¼¯ûÄHJPt•Ï–’”ˆR’Šƒ”luPJþQ*%ÿ©“Rjj¤L)sÔCÊÒ¬“²,Ã¤\\°‚”ûø÷Í…÷\0<”É*QFI¢’\"Y™©ˆDf!QôÝ{ï½GeSv	%£ˆ†\n!‰ŒH‘øÿÎÿÅç</î9÷Ü{ŸçÜñæ²sÛ9{³\09_U\0·ýØ€;=–€\\Ø{@nã}@îäK@žY4 /np÷\0X¿\0(¾\0r³ÀÉ\0¸î8\0¶ó\0ÙÐ@¾ó ¦1\0L¥\0k˜Àïñ©\0âŸÛ\0Òé>\0é~5€R1 \\\00ÚØq‘\0n¼€û¥À$0\0Bd@bä\n\\ßàÎ\0¤_\Z\0ò®\"À½ˆ4À=ô5@á–\"@áÝÇ€\"ŒPô¨\nPì,”¼×”n¿(Ýã\r(½Ð(ãï”3\r\0JV½Š€JMg@åT7 ªò: v½:àñ>(àÉb0àic	 !¬ÐLá^¤F:N‹‘ÿÅ\'|@g¢\Z §\0è2E\0Þ;x{u\'à-FðîÔ$ Çoàƒaà£ÉNÀGšàSï3@oØ< ŸvÐ_­\n¨»hkŽÄ\0†PHÀ°ì:`¸Ã0<‘øR7q:©{Ó•\0¾^ù	˜ØLÞñL2\'Sû/¦×»¦¹\0scJÿÙø¹íàçòà·J?à÷§+€åï§\0·]\0¬V\0V/ø×ý¼T¸T\"ûüw\"i7_n8x¸á¤¸ÕÜ¤^T1÷n>éÜ\\3TÕúTMüT³¿ÜÂÈª_¤\0Õóf€[cÿÅ·v}jujm—·w8ïîp9ÔƒÓz/€;Ÿ\0\Zvvƒ€FK%@ã¿YÀ½þ±ÀýçýÇc€ñÀ/@ÀƒÐíÀC OÀÃnê@«w½À#õ§ÖNm@C{à±.ÐÎ¨xü¨Ð‘Ü<ctÖÆ\0Y‰ÀS¸õ@wÐc Gæcà™ðcÀ3Ÿo½¶…ýê]g·ÆÏê¶ý5—€þI§ÁúŠÀÐ¹MÀóëÛç±¯€·\Z/6^lÜ¼ØŸ»é[ý‡Ã+ŠáN/‘ÀÈ/`”S:0êço`´Û0º¥c Œñ,Æd¯nf¯†Ÿ^¥k¯>˜^}çŒÆáÜ€	Ñ0`\"î>ðºcðúIàõ‚?Àä)0eL[ïL‹Ú	LßÕÌ(ÿÌ–\03ŸìÞÄ[o\n;€Ù¯Þs^›oW2€y÷³€wl€\0P(°l\0zÖ\0AÇs èX ˆ§ºÁCOàÅE ÌþÆrÂ­lð²k@xˆxÈ\"A\r@Tˆ^Mâ­½D-K ñ0H¼®\r$b¬Äg…@*h:¶ÈŠk²À@à%žänœrmš\\/)÷äù&€‚Ãö@Á‡—@ñ:)P|’×ä%Àn tÏ& L«(;:¼oh\n|p­\nXüæ+°d—3°¤ó?K§¥5ÆÀG·ì–‰ÀjÏ£ÀZõ»ÀÚ“Dàco!ðé¦EàÓ}FÀ§âÏÀ§ÍO¿çk{€ÏÂ¹ÀçÏpÀfÜàg\'`+ÊørÇuàK<ðå“H`\'ä%°så9ðõý`Wù\Z°kp°û{<°{Éøfã°gÓIàGÇàç 9à\0)øE¿\Zø%ñ9ðËpd›\'päöuàØÖRàö7p¬ò-ðkágàø†TàøÖpà·Ôyà788¡ÉN|Ê~ßhœ¬Ûœ:N=oþXZNïƒgþ¨n^þœ{œ?#Î|€ó÷¢€úë¿zÜ€‹ÍÀ?!*À•-	À³»À5K{àÚ¿Û …áXÒý2Ð_hCïeòIC2Ô´ÉD´É¤’9ÚÜv¤ŠÜ\0R3ºRË©Uw€Ôyê õšxzûIÐVÞ†>¤9Òx\nÒŒíiõR@ÚÿA:>n¢¤Ûã	Ú¡ÿ¤oÒû\nÚu`dXºdÔÏÃ˜ ãÆXÉúDÉ©ß )Èä_$ho‹>ÈôüwÐ¾<YåIÐþ·Pyá:EtÐ›\r²4YiYmý²z´dµÐ:šö\ntôæg:ÈÎGdÿ=t¼Kä 4¹¢€Ü ¡ ·_gA§µA—·<¯öƒ¼x /ÿ\nW°ÈûI5ÈçhÈwý(×\nÞ>u\0§€‚Ü|AAµ\Z à¸÷ Ð7pPèr$è|³èüäÐ…gëAa»®€ÂÐ@á›‹Aá¥ PÄ)(Ê\rºâêŠVPEÿŠ¹šºjºÚÕŠ–þþ\0%ªÔ€7ËAIÖW@)0PÊµû Ü%PŠ`”ò\n\0J=z\rtcö,(ý“3(£å1(£/\Z”É‰Ý|å8oå\\òÝYôå™-‚\0×Y Às+Ðjè¡>½‚ðgA°Ç@°¼¦„¬5aŽaò@Ø‚^nü/ˆr@DµÜ¢–ú‚h]AÌa\0ˆ]â0I þsŸÆñCABµa(#$úö$6P\0É6s@r¢”ßS\r*(oV:‚\nAÅ§·‚Jé‘ 2D¨¼ª\Zôð¢5èaòKÐ#`?¨úÄOPmØ)P-OÔˆÜ\rz¶¯ôì|¨àz¡\nz!¯½([j_+uün½·2õDá@ÏYz¸ ¾öP¿àèsnhà4—ú²ÿ<hd/\n4º\Z-þúj{ô\rõ4ñð0h¢þ(h¢54ùÂ4ålú±}4}ïhÆ¥4{:\04\'ºú=ÓúÃÎýµŸ¯Ë1¯#ž¯üVM	V}º¼Åô X3È¬™´¬­T\rÖñðë$ÈÁ:·ÁÛŒ[ÁÛ[‚·}[\0o/\n\0ë À>`ƒþ°×l|´l¸¼û\Z\Z¼û¶¼ûîðž+OÀ{füÁ&\nAàý¿Ä`‹“‹`‹q{ð+ÑàÃÞ÷ÀVwìÁÖ/ð`[Ãn°mþØ¶çØ.¦||Ã=ðqÀð‰gB°Ã•B°Cì81\0>iH;m€O	a`×Ü`7Ü[°{ì2ØÃñ;Øã¹2øÌ­`¯¼X°×ØçRØ×5ìK*û> ‚ÏºýïÌ‚ý\'ýÀAY­à Ê^pÐh\n8ä}	84oæ—/UGz\0Á—ÝÏ‚£ü€cN×€cðŽàXo*8ŽœŽßF\'Zÿ\0\'¹~_kf“—>ƒSÀi§dà4ºøQ¾ñCœ~ë\n8£J|óú8ûø?ðí”mà\\ä,8·¹|w~+.VBÀ 08é^CgÀÐ|º\n†®€QGö‚QÖ3`Ô}F×;ƒ±s¯Àø©0áZ,˜ä’&[ºÉýù`Šg\Z˜Âü¦ê2À´²«`úÙ=`:¨\ZÌØªæ˜Þ\0sÌ­ÀÜí`þžÿ°¸`AXêi\0–-%ƒåjnà{­ÿÀ÷Ÿ®ç[<nH:lÑÁe©Ñà²[Àå*ãà‡yàG_<ÀŠTp…h\0\\|\\åHWÇ¶‚«§!àÇ8øi$üT¾\0n²xn: \0?Ù›­€›¡`p3³\0ÜúTÜú\rnËk\0¿”ß¿RQ\0w<ŒwÌ@ÁZ»À:Aà×IÁo5î€?x‰Áà[ÁáàOÊ‘à>x\n¸OîWX÷«½\\º¸¹<Øz³üåüxd3<¢-`mÁ£›æÁ£È.ðØkx\\Cžˆ_Or.ƒ\'_÷ƒlO÷zƒgçÀ³ƒÁ³á¹àYÑ9ðÏxíž¯:þ¥öü‹Ûþ•/Æi€ß€€—×šÁ‰Ÿ!ëÞBL$E…yˆ\"»¢XÅƒ¬?ÙÙ0i	Q¶üÙœ‰‚l®ÜQcMC¶ƒ¨›}„¨\'/AÔÅ`ÈÖw‹õÍ;úM±2D»õ;DÇ±¢Ë¼Ñ[?Ñ3¨…è<ÑwÉ„èÇ÷CÒu †»V {¶®ƒìé†ALœÜ {¿CLï-Böm?	1GC,^¾‚ú±Ü\0XöGAÏ¸C¬6‡=9Z=±nQØ$)AlC- ¶‚ˆ}êäxÚÈ‰Gg!Î÷j!n{÷Ð\Zˆ{=Ä#|\0â«œ±CÎt‡AÎLtB¼lý ^¨ï’\"ˆFña©@|3Œ!þ•HÀ›\\Hà^2$å	Ê)†\\2Žƒ\\JC.ýˆ‡DôI!‘_k —Í?C®„´@¢;-!qkF„¨0HÂ•„kº¤%9äZözÈµŠyÈuƒqÈuHZÕ6È !äß\n’	¥C2r 7ã!YÕ Y3¾ìŠ­ÜqHNk8äv«äv?rg;\n’«ý’ëáÉ-yÉÛ¦ÉC¿‡\0N@€£µ	ˆ…@È`Ú²ÿlA;¿†`eìïsüÞ!xôCˆ#ñç(„Tl!7@¨\nKªA,„úL¡yåAh‘§ tÅ!ãøOƒrÂj~	aßAØ	›áÈÎA8£ ¼*DÀ^„ˆ´f \"§\Zˆ42\"ýû\"3¼	‘¿¿¹y°‚äÇ# ù=Ç!ED1¤Øã¤dRš¶RfyòÈXyÄ6‚Ôl€Ô¼þ©µ÷„ÔÒ#!µ\r>Ú	\n¤®Íò¸½òÄi¼x\nÒ”V	yŽR€¼°I‡´èXAZW!­Ïÿ@Z;ï@^í\'A^‰{ ]ÒHW/ò¾ò.éan„|jS€|ú—	éÕ£@z}4 ½OAúŒ!>Ÿ\\H_Ò÷°Òÿ¹2ÐU	Úù2Ô‘Noƒ|9/†L\n=!“ß“ ?´: ?B.@f~êCæš s«\"ÈOßMŸ³My[mÈüê\"ä¹ò;y/äwýmÈŸá“¥œåõé¿‰q¿?r ÿ¢ã!«>dÍï\nTqÝ/èúJuèFÙT…PU[‡ª­O€ªáyÐ-™¡êG@Õkc š‰»¡Ú\ZÙPm-$T»›Õ£A·íQ€n÷ªëñºã—1T_å\"t§itç›«Ð]°H¨Ab	Ô5Ù59„špwB÷†ºAM< ¦Øè¾£ýÐýÖ¨…Å9¨-jÑ„8~zðÌ=è!×è!¿è¡ô°=jEp‚ZÑs GlÐ£»ÁPë‡-Pëo‹PëßP³dè±ŸiP;‹7P;Ú Ô~½7Ôa—Ô!,	êÒ	u½:Uü†:o>uÖºu=¼\nuvºÆ»C]‹í §ÍÏAOúuÛauÿ¨õèð†zn|õT#BÏ°”¡Þ±\'¡¾ãP¿´CP?.êW‚ú;›@dnÐ½%ÐsÚ=Ðs¦ ç¯CÃ´·@ÃA/]J„^þ¯¿(Âôªçwhç-4!šMò¹Mú~z]óôz4š¢?Mõ.‚¦~r¦¶Coøj@3R´ ™è[Ð›\'b Y[j¡·.ÿ…ÞÊþÍy¿½½;8¹iAAÐýPp\nIj†Âö¸Aaÿ­ÂÎŠl‚bÝ ø+PBå(Ù¥ì¿¥âZ¡Ô·:Pê´.”32\\‚²¶œ…²t‹¡¬?@(§ŽåŒß€r÷ƒ <ãÝPI*Ô«ƒ\nr¨èüO¨x*\r*Q*‡JnhA¥oiP9¦zòšÿð.´È´Z\Zâ-}m\r}¸±úùZáµ­ÒC«2hU´Z+	Z£­=±­å` uÆþÐÇˆFèã5ôÉ–×Ð\'ÕóÐ\'Ÿ„ÐúŽ&èÓsÐFm´ÑB\0m\\†>ƒv@Ÿ¯Ù@[´|þÛZò -áÊÐVy\r´µ4Ú:½Úº²Úö4ÚÖ\rmÿ=}9å}µ}ô•Xí8ß\r}gÇ‡öÄ_‚ödí€~ò…~jÿ\ní½ªˆ{\r<²:¤¡bÜ‚cœ Ãow@G #ÔqèˆÜ:\Zh\r6‚Ž.ˆ¡ceèX	ú5ì1tb:y\r–XBgbÿBçžüƒÎ\rúB‡zB÷çC¯e@—f=¡+ìèZ]t­c¦àµ¦t¦¦ä¥[¯[¯w¶¡òlcžl#s¶iï\'˜JÆ^Øæ¶C°Í+Ñ0ÕÍÙ0µm/`jÏ˜0µæqØ–d0lK)¶åñL=U¦Nø	Ó¹“ÓU˜‚í?†í(ýÛ1>3°+‡”‰a{¶mƒí!a&Ž\n0ÓÛª°}sÞ0ó×aæG)0ó¤6˜ù5Öêaæ™°ƒì`ï,ìÐ,vh%vX³bÜ‡Y\'ž€s0„ÙÉôaö7ra\'ŽÖÁ×;ÀS’aNÞoa§.`®û^ÂÎ$ÀÎ|€yÿ€ùÁ^ÀÓaA™s° Âß°`x=ì§Z5;·vA¡Þ4‹Â\"k\'aÑ‚û°˜M—`16°« X¬ž,Ž¬‹+³…ÅUƒ`q³XXüíyXüüCXü²–(#À’´W`I§$°¤n ,Õ –ÞËðYƒeÔÃa7eÊ°¬æ°¬\n°¬4,;B–³§–û­\r YÁ gÿÂà¿œ`G-‚G†!¦Òa¨Ï.0Ô÷<ú…gëÃe*Ãùça„ïa0Â?%	óFVq†‘“nÀÈ9ëaäú9%­FÛêclûcÖÁÜ\Z£WÆ¤jÂXçô`ìÄ{0öws×¸\rÆÅ»ÁxË0¾FŒ¯c” `‚Þs0Ár/L¨u&šòƒIF00iuL¶îLæ‹†É¿¿„ÝS^†Ý×K„å¿†å;}‚Ø‡Ã\nŸ„ÀÊæFa­íaðŠ°\n7eXÕ§°\Zã.X]úì1«ð\0Ö±\rÖ‹5åNÂš RØ3»nØss¬Ù~¬ù6Ö<À‚½TÛ	{io{y/Ö1ôÖ½û ì\r{7ì½#ö>ÙÖS…}¨~ûèÙ\nû¤ë³,‡}Þ¾ûœs6|çlTý\'lì_8l|ËOØÄl2·6•7\0û!‚Â¦wöÃf\\½`3ÐjØì‚lNÙös°\r¶`„ýzq\Z¶xV\röÛ0öûÝiØß;•°•OØ¿ðØZyl­¡¾ÎX¾Îw®”_?·WÞlßDÝßrá\\s\n×\\›k9	×5+ƒë†[ÃwœŠëûÞ…ï¼ü\nnà’74Á6$Á<á»ìà»ƒlá{Á÷Ž\\†›*äÀ÷Ål‚ïk„›=?7ë¿\r7ÇSáÞXÂÌÀrÓá‡íßÀÇ_„îÌ‚~í·²=·šØ?²ñÜZ¬·±º?Vè·k·àöáö³pG|¸Óö¸S×9¸{èÜ½·îvîâ÷¦nûì„Á}ŽƒûdNÀÏ¾«‚Œà:wáA™ð/<ôˆüB1~‘•¿X2\0¿Øþvþ\r<,Ú	¾á<ê@&üÊ‚üjå	xÂaøµ£wàÉz?à)Ë%ð4<ÍožÞË…g¾Û¿‰u‡gù^…ßò¾\0ÏfKàÙ÷¢à·sZà¹wxî½+ð<àcøÝÑT8€¸¦çÀÁ›/ÃÁ¿OÁa!¿àˆÝ 8òcù¹ŽŽ”ÃÑûà»$8v÷—¿ÇGßƒã±pü»8ñ»N:…‡“xFpÒ\0N±j€3úMà¼02\\&†çðpá¯¸9\0—Ø…Âå×Ãå,c¸\\Ôðkž¯ÏgÁllá\ZàÅ9ðâÅ‹ðv:¼äW¼œû^yå¼Zt^ã¾þ8÷!¼^ÑþôÞDX‚7ßø19\no9†·ÜÂÛ\Z’àíf¯á/W‡á]åŸáÝOÀß8¡áoÊŠào¾úÂßÞ Ãß‰*áïšóà=›à÷§Á?Ê,á½u.ð¾<|¨é(|Ø‘ÁG~^~ì„½Úÿúù>|ü÷\Züûávøä>*|òÄIøT±\'|Z÷|f8>³z>{p>ZÿÔÞÿ¹Í¾ÐÿþËö ü÷ÕpøŸÿêjyŽXwt¡£ƒPÔPG(:ÿF(ûë/è!ÖßqBl¸hƒØKA¨¢n\"Ô0ëê’ê\Zl\'„&Ï¡ù1¡£ŠBl{ÐƒØlØÞ|¡‹©@è™L!ôÂ¢zá—úŠ½ˆ›¿!v¹|Bì’ú!v5Ô#œ¥ƒªX„¡õn„q¯=ÂxB±\'ª\0±‡…0¹‰Cì­|Š0µ³A˜½º…Ø½0_~ˆ°p!È¶ ,mHˆÃjIˆÃZQˆ#O ŽÕ#Ž6W#¬DXƒÍÖDmÄ‰ó¯‘ïØ\rÇç›\'K„\'Ÿi„óñ)„ë)g„kN\nât;áyÕqÆŠ8Bxéó¾„oñv„ïoâ¬ë#„ÿ¶mˆ€•*Dàa.\"ðèIDÕuDPÑDpX\"D#q.¾ªÃ@„æB„Né .ToE\\¼ÌD\\”Ba^îˆ0Œ\0V¾¾‰Ž?¨„¸ôŠˆóBÄœˆCÄÄX#®žCÄîIEÄEä âòñç‰f¦ˆDï.DâØiDe\nqÝ§\Z‘¼g‘²%‘–ŸHç#Òáˆ×qDF‘qî\n\"³L\rqÓø=â&Ã‘å¿\r‘u7qËè<\"ç‘ëÁFäY_BäáÍy#Eˆ»wS\Zw¹)`|xË­G€f#À×UPå«øn6q*:t?E\Z¬Dù_E8† òášÂ~m×]ðÁ<\\†`2¯#X§Ü¬È¿Nç?ƒn9ƒQâ7¦©š\ZBšHFHK¿!äž*ˆ{Â÷K:äºÒ…þIˆBˆ¢ðg.¢èñDÑ\ZQm„(~=(h#J~†!J!pDYœ&¢<¡\0Q^„xXp\nQyªñ˜¨ˆx\\vñø‡ñä…ñdrñTyÑx \rÑXõÑØHG4~‹E4å#š~; že Ïˆ™ˆf¬¢Õ|/¢íx¢ïŠè0m@tl@tß©Etã%ˆ·gôoI:ˆ·«Û=ûï!zJÃ=‹0ÄÄ‡ÈýˆOäˆ¾{0Ägß/ˆµeÄP1ŒYB¿@Œ(à£+)ˆ¯‰«ˆq³Ä¸Í/ÄxñÝ˜šÚø1¯ƒ˜=ÏEÌ>­AÌ]ôGÌGu#æë>!~M»#~;‡\"–Ô\r¿BÿìÿÂ%ˆÕ¿k_k—¦ë›AÈõÿôNœC*¯KAn<©ÚÕ†TÓEªM ·@Ï\"ÕUš‘ê«¡È­ŠÇÚ‘ÿé{†Ô1ÜŒÔDîÚ‹4LX‡4Œ!k#÷,@&t,Ò¤E†Ü»•€4Õ>Ž4o=Œ<”=Š<¢!DìDÕÐAZ«K6MµH»‡sHûÇ­Èã-¤ƒÐ\0éÔé¼%éª‘‚<­ì…ôÜX‚<ó\'éåB@zù˜!½þ.#½Ûb¾ûl‘¾l¤ïRò¬2°ñ2 €˜€!C£42ÈªäùµZüy~Â\ny1îòbV12ìãFä¥+áÈK·È…dÄìcd~Åg!¯_ ¯,9 czqs,dÂÃÈÄâTdÒyòÚÛ]Èë 3ÈdôdÊt62ug,25‹L»9ŽL+ù€¼!ý„¼ÑGf¾Ã#o\Z«\"³Ž¯Gf5^EÞN2AÞÙCæÞvGæ­—\"Y×@F†tDÂ˜û0Éc$Ü3‰Ø¹ŠDv ƒ‡‘H»)$2Ë‰f\\CâÜÕø¢5$át’Ðßƒ$•r‘ä[‘”½Û‘ÔkíHÚž$-î2’žc†dÔŒ#Ù9¯œo-H^æ’\'\rFò•l‘‚cP¤àf=R0y)ä>AŠ¿!Ep4R„»€—úÏ¤øÙ\"RÜ+FJ_BÊ©!eI±H/)ÿd‡¼’…|p|ù€xY°ï ²àT²\03„,h@!ViÈÂÈxdQ”YµYÌhE–hú ËvN Ë\"úrô‘•Y‘UI—‘U¿#«ÙÈêøÛÈj`²ºYçb‹¬cÆ#ãÞ#ëÐ\rcRdÓU&òYä-ä³ØNäóŸÏ]ÆÏA†È–Ó\rÈ¶›3Èvc)²}îò%Ôù\n’ì8òùZgò5¥ÙÅyˆìz†Ev+Bo«oÛ÷#ß,#ßýWóï±ÿï¿Ô!{î!ŸÈ?½çG}¯¿6\"‡¯nB~ÓóG~;=‹œXÜœÛOFþl& çgaÈÅçQÈ?-uÈ¥}zÈ¥?är–rùžò¯®\'òož*rmÄ¥´p¥KF©´Œ¢TMO¡TL¢TÏ5¢¶Â&Q[Ç`(Íõ(ÍûGQZ{!(­7j¨íÆê¨í=6(ÝÌÔŽÆÓ(ýÚ‹¨5Q†Žž(£ó(ã–Ý¨=!ŸQ{·P{ýÇQ{‡¬PûNÔ öÁ(3ÎÔ~{j?\Z„Ú?¶eáõ\Zu°î\0êà{M”åu\'”ÕøI”Õ¯c¨#]¨£s‘(k‹×(ë‹X”MñÔ±|”­ä/Ê¶a+ÊÞ;u|ãêDKêdÏ8Ê¹üêíÊåd-Êeà\0Ê^€rìD¹‡æ£ÜpPžF;Q^ÒV”ÏºeÔÙ-E¨³KÛPþê\\T@ÝTà>KTÐ5TPî8*Øä*Øâ	*ô4ºªŒ:¿í\nêBG,*lvuIŠ<úu%\0º\"Â b¼†PW3mPñûw âFÅ?Ç¡zè¨$ß«¨¤©0ÔuÇ¨äk9¨áWP7ù Ò_(¢2LÝQ™¯£2Ç\\QÙïä¨ùêÎùXÔDKÔÔ÷¨Ü_•¨¼m j€û @…\n(pôMx‚€‚Ö¿EA_¼DÁÓ¯¢†Ö(ä››(Ô¡z\Z;ƒÂJ®¢(Š(Ê\0E5¯D1zx(6¬Å1(@q‡Q¼à7(¾¡ŠO×E	­C	JQ\"ê$J¬ù%é{„’&ËQÒîë(i¿%J®[…ºç @Ý»ÔŒº¤„z@/BÎj¢Š¯:£JÖß@•Ø&£J7£Ê(¨²‰¨‡Ò\"Ô£çÖ¨J«Tåý2Tåt0ªÚ>UP€ªn\n@ÕlþŒz¼æˆz\".CÕ_”¡êãP\rðhTãu¨Æ‚xTc¡)ªyñêÅª¥ê\0ª-¨Õ¶üÕ€£^>Ë@u¸N :žŽ£:Ãß ^{½C½¾ê‹êÚÜˆêzöõænêíˆ\Zêƒg/êãû#¨PŸÏQ}.¢ú†D¨Å$ÔàV9ê\ZM[A?@M\0¯¢&Ý­Q“´¨©“Q¨©G\"ÔT×ÔŒÞ]ÔO·u¨yÒnÔÂòÔ/å=¨_y2Ôïº.Ô’ã\"jù°õwû>Ô_ôê/±µ²)µ²f‚Z[pE+½\\VúãÞ¨v½©U½iõ+zó™Iô–z,ZÝH	­î\\ƒVod£5ò\'Ñ\Z­hM.Z³É­ù‡ÖŽBkCþ µËÑÛb\0hÝÏÛÐ;ØôŽ9+´^­GïLÑEïR®GÄ§ \rÞ¾B¦8¡<&ÑFÉÊèÝ°rôž*Ú4Ñ½/1\r½o­m&¿ÞŸ2ˆ>h±mœ…¶zÞ‹¶î~‹>æFEû&C;¹¢Ž‰Ñ\'‡Ñ\'\'FÐN–QèSQ™h—KhWûçèÓ±R´›B?ÚýJ9Ú#ƒ>“·Šöª\ZB{—Ú£}Â•Ñ¾F.h¿´_Eú¬EÚ;\n~8ü$ú‹iªDŸ[Ú‰Ý;‚]>€¾`G_ˆ¢/Ä.£/,‡£/ú¨£/f[ Ã‚ûÐá6ýèK&èKtÄ¬ú²?}9²}¼}y©\0%¿ƒŽV¢cî ¯ê_F_-ÿ€ŽMy‚Ž]þ…ŽSÉDÇßA£¼¢M¾£¯]i@\';‹ÐÉÑGÑÉ×è”ßŽèÔÕ·è4ÿZtZE4:môúÆ±™Î8\Z†Î„}Fßt*Aß¤/£o>ƒ£oØ‚ÎþŠAçlÞmG-2Ð@K\ZÔœŽ§×¢ÁÜD4¤¿\rõDÃyûÐðÁ“hä•óhäíb4*–…FÕ—£Ñ‡£1Çþ¡1h¬ÝI4®YçžG“ ÉÆšh\n§\nMyæ‚¦Ã»Ð,æ{4ë¡Í¡ÙÐ\"4Gåšs±Í¹ì„æ½SCó·mG÷¡Å\'«ÑâR´xÄ-©*CK·¥ ¥/è{’Ð…ñ<t±]‚ÓC—m\0¢ËÐcèòMÛÐå{³ÐåfsèGûÌÑ×¬ÑÕÔ­èê\rtMÎ&tm]÷€~¢÷]ÜŽnÔÿÏÝ„”¡Ÿ%¾G?»æŽ~vg\0ý¬jÝ,UA7Û~a³	ýÂî!ºjnE,£Û¾ù¡;CÊÐ¯Ežèn¥{è7—Ñoµ&Ñï“éèžûèËèÞètÿñAô@—+zð\Z=TúýesúËîô÷ zÔ°	ýõª1z\\¯=î5ˆþ–ÄB­EOš|@Oþ´BO®ýCOÿ1FÏXŸEÏ¼T@ÏÆ;¢çŽ>AÿÜ?€^8ÔŽ^LE/DF¢ê?¡i,¢ÈÑ¿/rÐKž§ÑËÐ+ÌŒB«FáG6FIõ)f½i+fcÛfãH>f[ŠQŸÀ¨1ÎaÔ]‚1[Ûº1[»ï`4íµ0ZÇ£0Ú¯M1:3$Œ®fGðcŒ^¨5FÃfçæÌ®ð*Ì®›æ˜]ÌoãkÓµxÌ>Õ5ŒYE+Æ\\1s@Ð…±åc_>‹±jÚ‰9‚óÃéžÅX³Ék©;Æ¦Yc{¾c{cg2‡±_ù€9þ´ã °ã@ÒÀœLõÅœ:ºã:q½q»ŒqÏb<væ`<üV0çÊ0g¦·c¼æb|ž9`|ÿ`ü1þH_LÀP.&PÊÃ~ÈÃ7Ä:`‚7+cBÔ¯aBÞäcÎémÅ„2h˜ó\Z™˜m˜°ŽbLØŒ1æRm(&B©sÅý\n&zû2&v²Wµ“¸~&ñÓL’¡&¹ö&Åþ&õr&5I3z‰IÁ¤›—b2ô_c2ÕNb20™¥‡1·\0L¶6“üŠìÂ€íu1ñýÈß@Œ|)ÇÀ+|0ˆHrýI²?ƒuÄ`+ÞbðÜß¯\0C½ÅPoÕahézÉ)ã÷“.Ä°\ru0l®3†ÝqÃ5pÇð0B¦6FL+ÂHâf0ÒÁEŒl×1Ì½ì;˜û+É˜×®`0»1*˜‚\'LIº%¦´ð¦Ì.S®˜y´ÆTœ	ÂTÝ±ÂTï±ÁTw´cjå˜:ëÌSÏ˜§I˜æ3×1ÍUPÌ‹íS˜VÓLkûUL;ró’ôóJÙ\róêÝ#LG©¦s%Óå¡ƒéz^ŒéNÙ€é.À¼©ìÃ¼ë¾y7ß‹éyõó±¡óñ«¦·í¦o)Ó¡búÙ˜þÂM˜ÏC9˜¡ke˜/‰0#;ú0£s©˜¯¸\0Ì7Qfâ*3ñœƒùÖ†ùþë$fjƒ3u%3Å!a~q˜é«|ÌÌEgÌì9%ÌÜ˜.æ§v:æçí·˜Ÿ²k˜ùõÁ˜ynf^Á,½ƒù¥>†ùeIÄ,ÆOcþœ˜Ã,\raþ\Zc0³1+Gl0ÿ¢!˜ÿ”0kSë±ë¤G°\n¯±ŠÇwaCj±Š¿ža•Xï±ë=Æ°ëaÊØ\r]7±–Œ±*ûô°›]ÞcUÍ°ª\0K¬j­vËç¬vÌ6¬vö4VÇàV‡ð\r»-ív{ã7¬®5«ÍÂêö…cu¿ÅêåüÁêÁ¼±;öbwyÆ`wµÞÃ\Z<\nÆ\Zj¬`wÇ±{>~Äš„ë`M>·c÷.½Çîû¾k¦ï5{»€5ëßˆ5ÿ\\ƒ=tòöÉk™ë€µºñ{ôÝ4Ö–ÅÅÚßÃÚ>ÝƒµKðÆÚoHÄ¯lÃŸÕÆžðŸÁžHHÃžX)Ä:„™`À½XÇØT¬#A„u6vÆºŒbÝÎ„`Ý7(b=\rwc½zš±¾Ûª±¾?€Ø³NØ³Ø³E0¬ÿ±6lPÎlP›=6x¥šƒ\rac/Ìc/†$`Ã6bÃF»°aóÃØH˜*6rÞ{y]8öräyl”Ézl¶]×nžÇÆðf°±´_Ø$[lù)6i®{í¼769$›üþ\"6ÍC{#ô&6C.ÀfZþÁfú¼ÅÞüh„Í\ZØŒ½•\0ÇÞúp{Ûê67¥›Ë\\ÃD:X ù{,ÐŽƒÕ{c![V±ðÉ`,bå7i#Â¢?þÄ¢®a±w%X\\Âa,xKðoÅ›\"°d;,§‹¥wÛ`Ä6,ãY–i£‡åÔ÷`yÚ\ZX¾çW¬ðXVxÝ+ü†•œY•©ïÆÊñŠØû»®bï?¨Ç>P_Æ>Y‡-;Š-[sÁ–ÛecfLbµïÆ>zS‡­TLÁVê.c«2ßa«ÖØj«ØšªÓØºbl]n¶{[‡»‰­{í€­›üŠ}üèöÉ»+ØúüØÆ3±1tlÓ¡\0l“¿öUˆ}6ªûßj‚°ÍEë±-©LlKÉlKË\n¶\rÞƒíÌÜ„}­í‰}·»ûžî‡ý°?ûQ•Žý(˜Æön-ÅöÝ)Æö}Ç~æGacG±ÃúJØ‘ïç±£û/üÿÛÒÑ¿&Ø±s<ìX”-v\nfý±c\'v&É\0;Ÿö»P7‰ý¼…ý•c×)a—–³±Ë{Ò±Ûž`ÿ¾ÍÇþíÅb×Š­p\nÐœB§xðnÃÓ)œ²qnãÈKœŠh	§ºŒS]Å©mDáÔ÷¨áÔOòqê^Ù8Ëe8ÍS•8Ío¿pZSqZŸátò¿â¶õÕãô¶›ãôŒšqú¾Q¸]±,œÁvœG6ÎæŒ3ÖÃöãŒoæâv;îÆí)˜Äí=‘„ÛÛÝŠ3M:‰Û§e‚ÛÏú†37z3>Œ;hÿw=‚;d>ˆ;ä3‹;ÏÃ.½‡;ÂgâŽî°Æ=ôwÔ=\nw4«gÍ¸„³Ù`Œ³i³ÂÙ>yŠ³ýÃÙ­_‡³Ë§ãŽmÄ×Ç9&vág5qNâFÜ©G8×i=Üé}ïp§ãRpnºé8w§%œ{^,Î3ÔwæöAœWU7Îë÷Î¯ýî¬âœ?¿pî2.°f.È÷î\\¥%îü=î‚ö1ÜEv8.ìY!.¼¤þ‹_ÙŠ»Ô¾wµå‹»’ÿý ýlCÈÁÅÿÀ%Èsp	¯tqI÷®â®‘Fp×ñp×Ÿ qÉÆ÷q)jÞ¸ÔºÃ¸´+i¸ÌÆ¸›gšqY¸[{Þã²ÿ”árJ\Zp¹¿7âòVà\0Á…8P‚©À!z3pHÕXr÷6Êþ$=S„Ã?ã°Œ`.æWo‡ÃŸ¼‡#œnÅ¢}p„¯Î8¢¦ŽØž#îÂ‘>dàÈ´\ZÍÏG*ÀqŽã8D§§ÇK¿ŒãÃ±8Á]œÐûN(1Ä‰u…8ñ•w8™Hˆ“Ûpd®¸ÂX.®8ƒ„+qÁ•ÆÏàJ¿\rãSÂU4ká*õâ*ŸNãªµh¸š¨\\ô*®vë*®–ÆÕþcâê4p‡†pOþÚâê÷[àêo®âžú}Ä=MÀážþ½Žk‹Ä=;u÷‚ï†k¹Õ„k™ôÂµªìÀµ}îÅµÏp/]jq¯*nâ:®„à^WŒâ^ÿy‚ë2SÃuù9ãÞédàÞ?šÇ}¨Ã}Ü®‚ë5|‚ë-z‰ë£&áúÜgÔoÜ`+7`€&;â¾¤Šp#:0Ü˜l7îë+î[’?n¢…›¢Áýxq÷cÐ7]«›~v73›)TÅÍ†uâæ?\'á*Rq¿ö‘q¿Üªp¿~ôãýq¿Ç¸¸?\Z—pÄŽ¸?ËOqßiãVõàþýWËkùxÅÑ\rx¥/¼²“¯œßÈIÄ«¼†áU7^Ã«>lÁoùãƒWÙƒßš}¿•½Š×¼Ãk,Åkúãµ6ýÇä^ÛR¯\rú†×9„ÃëØÇãuÜ¼ñ:)VxL^§ê^·×¿ã\n~ç‘sxC½<¼áõ‡xÃŽh¼‘oœÖ7f=Ãïyk„7	ø€7¹¢‚7i¼7¥fâMkøxÓ§Õx3ìÞŒÁ›×ãþáá½³Â[^³Ä[¦qñ–€Rüaëx+ÍGxÛMÁxÛ6W¼=’…?Þ:Šw0ñÆ;DãaÛñ\'YâOÚUâO^ãvˆðN‹`¼ó;%ü©Àü)¤!ÞÅ&ïÚã†w«/Å{ýHÄ{›¬á}³âýž1ð~_?àAðA”ø \Z\\DÃ7}À·9áƒ¼Ç‡Oâ/®ÜÁ‡kèâÃµNáÃC\Zñ—ÎÁð—ÂZðEøH­=øHk|äá	|TŸ7þJS4þJ»\r/ÃÇD+â¯ºlÅ_}ÀÇ\"ãã›Uñ	wFñ	3­ø¤Û—ð×Õ¿áSµxøÌøÌ,w|¦¨	øKû>[«Ÿm¥‹ÏÎ\ZÀç¬ÿÏ©ãoÞÆß†·àï\\ØˆÏÝ]ŠÏ=\Z‡Ï3¾‰Ïó®Åç=¹Ž¿´÷µ¸û4©ÇƒN,à¡µúxØy\n¾çîOÃ#Nãëx”åC<:ä\0«s›`àñ¹Çñ„0žðÀOXÞ‚\'FåãIÌßxRÉ8ž¦7§÷ÚáÅ<cèžÙýÏÞÏŽœÀó7Ùã….^X<Œ—ü{‰—2÷á¥.xé„*^†\"âåkü}ä.|e_ðo3¾tý|yy4þaí!ü£4\"¾Âj_qã5¾2Í_¹v_ëþÿ¸!ÿäÿ4³\0ßpé\'¾éÿluÿ\\ù\Z¾Y/\0ÿâò3|Û›q|û°?þU®\r¾{÷Güæü›ûoñïð=ÎæøOá×ðŸªøøÞ½-øÏyçðŸçã‡ŽÑñCnñø¡E{üˆòüXæ ~Lþÿ•t?n\rÿ\r¸?ÑjƒŸ,º„Ÿ\n(ÂO•–àœ¶ÅÏ ~âgDßð³oBðst	~a‡þ—“7þ×ÝOøEJ	þ·Ÿ6~ÉØ¿ôYŒ_ÕÀãWO<Â¯^UÆ¯Ù„à×ü9Eš°þp6aý›vÂú©6Â&k!a<€°©âAµ–NPGÔBþ4®…4 —ZÇC	ZIš­\'Ý„mÝÂö§(Â;‚^ù1‚^ÍS‚þ¾J‚áÎUÂ˜°§6”`\"v$ìåö	¦ö½L0ûÉ\'Xì•,Î= XÀ+üç·	“î>¿G8d3I8l&\"~\'^~D8\"¦ŽÈj	6ç:	ÇTã¶6$‚ýÜyÂ	c	ÁüŸç#\'¼Á…¯Ip™œ\'¸Þu#¸ëÜÿ•<ÎBžéQ¯§.¨/Á–Ið-é!ø™¯§ÙBP™!˜ØJ~~‡ÜŸA}šG¸0ãF“áå@Bä›»„Ë;+	Wöµ¢›+	±Þ|B,Nˆ=#Äù1q.âÚ·*Ì‰£Ÿ×´š	ÉL!Y®@H¡¸RÛŸR?ÒìÓ4.!«~+á–ÂBÎŽaBŽØ‹ó¾ƒÓßF¸­Ø@ÈÝL¸ëõ\0ä\0ãà•Bp¦˜\0ÂNÀD˜ó\0ãPÍótˆ€Ó‰&à©h.#>VÈZ!²I W«( QeB@;ö€@+»K ¦è_ôÙW†ö\ni´•À2ÃØ}¶^ñ-¯Ä… ÈŽ\"HôxizAZœK¸·”D(ˆÈ#vrEn.„âN„â;Bié?Béç»„2½u„rÈVÂC#9á!šPÁŠ$Tv•#rBõ¹ÿDèªŸß TO>\'ÔuÜ„ºy,á‰‰áIA\0áI•/áÉp¡¡3‡ðœ\"!´0-—mùÛ	íÊê„WÿÍÿÕ¯jB‡Î,¡Sá+áõr2áÍd2áí™^ÂÛæDBŸ¡ŸJHW!æ8¾À®¾oFÌ¦	#w£9alw\náëÏÓ„ñÌ×„i„é§ú„<a†Ç%übGé£„?ù>„eÀá_\'”°6ó€¨ÀÐ&*ýc×Ò‰Ÿ—U¬+‰**D5ÇÝD5^¢\Z¦¸e’ETßŸDTg•ÕŸœ&jô²ˆ\ZKûˆZkG‰Úg†ˆº‡uCW‰º‰µD]¦„¨ûØ“¸CVJÔË½EÔßnLÜµñq—–qWÇc¢AÀs¢áœq÷ô¢ÉKÑtœhz}Ñ,äÑ,JÜÑFÜ¿¬O4Ç‰æÍáDó_§‰=\Zˆ‡<ž%Ú-¡‰–R_¢•ÁzâŠÑF™K´¥>#ÚMí•–‰Ç÷Ú{›·¼\":šM¬t‰ÎnÄS£ID—Ä&¢«Î¢kÞu¢kÉÑm}ÑÝ¯†èž{‡èÞqƒèqo?ñÌ¿!¢÷ÊÑ·µŒxö]ÑßîÑ?§ŽrÝ“2ŸI<÷A•ºÏš:­H<¯UO<oeA<_G\"^„ü%^¬zMë$F\\zKŒh\'FüI\'Fšm%FíþF¼² Æä—¯ŠŒˆW[¬ˆñ®Öû“8™Äk:RâµÕ(bÊÉ6âRb:ó1Ãö\01£é41ó°ñæEkâÍ´<âÍ)1+C¼õ·˜3ü™x»`˜x»k?ñö×Pâm«Ä;¹ÝÄ\\ßbÞñGÄ»N»‰w‡@DÀ¶l\"DÔA„Lì$B=íˆ0§;DñžÕDDð…Ddµ7ÙPJDN×ñZSDB´ˆH¨Y wI¹:Drl\"‘üv™H%Ø6·ˆÌÐDæ£&\"ó5ŠÈnÃ9z§‰Û,¢ÀC•(È#\nDÁ/¢ðâ¢ðkQr*‹(¹:G”fe»ŽïÝ$Þ“î!ÞwI$>íìˆ±Ä\nïÄŠebw±â‘”XQÕL¬Ü–A¬Dvkâ¾kÞÄ:£bÝ%±A©˜ØH\Z\'>×½N|ÞíAl6] ¶¨®[÷Q‰íN±ÄÎîjâkMñõÉvb×=-b×7Mb×Ô\Z±{:ñ¿&â[ø¶{ŠØÃ ~ºË%~zøØ·#‘Øç»ØWò…Øª…Ø¿2Jül£A0M%©¤Gì]ˆ£¾ÇêÿÇ§	ÄÉ€âÔñ‡Jq®pˆøs›q›LüUiFüõ;–¸Øˆ%þð%þF!ˆK[f‰Kv=Ä¥g†Ä¥•zâ2Î˜¸¼ìNü»CD\\±±\"®œ?FR8ØCRX­\')jPIŠ×ôHJ÷×“ÖGü$m8ªLÚp@Úx¿’´ñk*ióxIUèIR;H\'©¹þ\"mYì!©34Ô´|IÚ%‰¤j(Ò.6’d ®B28À$¥’Æ$$ÃÒ$ÃÊ$c5*Éøi	iwå$É$¶dË ™SH¦5ƒ$3{Él!›´÷QÒ~‡’ùá«$ó¦$ÔO’Å³aÒÕû¤ƒ9épØG’Õ¡\'¤#¸*ÒQ;\0é(õéèÓ$k¦Éz­Œd³³št,\\‡d«L$ÙÝ+\"/ûN:ñB@:y}žträ8éä´>É)8„äÌ:Hr.À\\£Ð$7m	É Ñå’|>†“|í¦H¾A$¿ÄÒÙÿÆì¿É‹ ðxÖŸœ¥E\nÑí!³#ïÊ&]àóHubHa]ÇHáìH— ú¤K²qRd§3)êí<)úŽ)ÆB…tÕ”FºzÌû0€÷·Ï<FJìßMJêºFºÆ~Dº^åIºþ\"•tý»*)y[)U?Œ”¶é\"éÆ …tò‰”Spžtû…/)oÛ0)/¤twýPï:	xê=	ˆùD&ßº“ ¾›Hp\Z	ýù	½œAÂVD“pUHøs½$R‰|»œDÝ!Ñjw‘èEõ$fH‰í§Db) qÍÆIü¬0’@ÿ*I2úš$µ“î¿xCzààM*\0·“\n]²HEëIÅöûH%°AR)ö2©lg\r©<WƒôHº‡T‘>Eª¬Ñ\"U/Iµ{žê>âH‘KD¤\'»ö’êö\Zp±¤ç¤çC‹¤–­¤¶ïn¤öƒLÒË\r¤—y»H#é¤®¯xR×ÂÒYÒ›Ò¤7\rëHoWHoO™Þe4Þõÿ%õôˆInŸ\'}²ˆ#}º®Kú$Ö%õÍ‘úko“>›<&\rl@‘Ü¯“d$Ò@¾6iÐaž4ˆ$\r[‘Fc£Hc‡\\Ic—©¤±¨tÒ×ºVÒøQ3Ò÷My¤Éê¤É~é‡§	i~GiþöižJZÐÞEZÈÜAú¥µ@ú§Cú·Mú7û´ºN…´–’NV^¤7ßÐ!«\Zü&«RDd5ŸOdˆdíò¶²&ò¶·7ÉºÓOÈ;Þ‘õ(d½N2YßÀ¬Î!ïÜ¦LÞùÏ“lŒµ&ï.³\"ïn‰&ïž’÷D:‘÷@pdTyïw-²é¡U²YmÙäB6oÞM¶x©E>øéÙRŠ%þÐK><ÒM>fÌ óV ƒ¾\"Ÿøpì˜‚ Ÿü1K>®@>E¼Avý½ƒìîÎ!»4ÈžËödÏÕïä3—³ÉÞ×È~¾ä³7ÉþÉþ_¡ä€\0%rÀður…*94 ”|þ@-ùBö&r˜	’6w“~<Ÿ\"_I›%ÇÔÈÉWþ‘¯h“c7G’cU·‘ã/‘ã5‚ÉñÑäxor|šœàEN,úLN¬É%_ÓÉ×ÊÔÉ×\'7““+ÉÉ}áä´H9c’œ!ß@ÎÊö#ßrª ßz½DÎŽ™%çj¸’ó4Î‘ïzfï¾{F¾û¾šPÙMT‘Md¸Íc2âØu2ÂmšŒ8·ƒŒä”ÑMÑdÌ‰çd\\¼#ŸK&˜yÉå¿Èä¶P2\r…$ÓO¾&ÓE}dúò%2C¿‰ÌT“™2ù’Ì\\) ³\\èd6&–Ì@‘¹_“ù±d~ó%2L˜ü$…6dIà^²ùˆ,yµ,õö$KÁádÙ›cd¹òùÞŒ”|ÿÉ%rþ.	9È™\\p°ž\\bG.¨›\'ªÉ…*äâàJrI›\\èG~ô¢‡\\ÔH®Ì\0“+{ÈU¿†ÉÕrMru£	ù	ežÜpá¹ñL6ù™rùy_\Z¹¹ÿ¹åòKrKž-¹6InÝúŽÜ ¿T©!¿<I~ëF~ùì ¹#ŸH~m3O~ÝO~“”C~gM~7»‰üs–üiÝ<ùSk¹÷E\n¹OINî[~HîM&úß&ë×“‡-Ç¶¶’¿qÔÈ!Óä‰\\4yâ—<u·üãGyúÎ(yúŒ<ûZ<¯Hþ…î /–Ç‘×ì\'ÿ™\0—òÉ¯j’Wÿ»9­{’JQ¨úAQ¤P”ÍQ”žzQ”¦wQÖ/P”-T)›º‚(*Kcµ“õCÊÖg7(\ZM\nm£ý”í(º;R(;¬Ð}»»”jó”S(»öøPçRŒR—(FäcãY>Åx‰N1±ÚM1»©@1››¦ì?{‰b±ö–b¹îÅòÂŠeÖ ÅëK9¼äL9j I9jiK±Ž0£XS’(6^(6uÝ›–iŠÍÚkŠmÅ;Šýš>å¸VÞÞPŽ¿L 8h>¦8NZPNJÜ)N\rÉçäuçw/)§ôvS\\6I).µ&”Óú¯(n0}Š{@åÌÍÊ™§¿)>‡ÎR|Î$S|ã(~¼‚ÿ´SÎÌ)g>Rƒ”ˆ8Jü8%4È†&ES\"´Ü)‘”ÈK…”È¤yJdûÊåñJŒJ7%ff€rÕ0ƒr5t’rõß(%ñÓyÊµçß(Éc”e“”ô3J:LI¿O§Ü„NRr¾øSnßí¥Ü÷£äkRî¦¨R\0²(\nÈ¦v5¦@lÇ(Ë]hØ7\nÌ“KAXSïM(È^O\nŠœ‚ùÞHÁ‹bT9…8=@¡èR(WŸP()\\\n51™BÛ~†B{™C¡_±£0T(ŒÛ_(Ê\nc5‰ÂŠ}IaoW§°¥ãö£\n\n{ŽNáî=DáW)ü7w(‚©QŠÐ¼‘\"$¢ˆöSÄá‡(â›(b€\"Ý=A‘:‘)ráMÊƒÕvJ¾á_JÁ„*¥p\ZI)ŠeQŠ±”R¼¥li˜RîëGy(³¥<\n8C©8hO©Ï¡T.n¥T·¸Qª‹)5&í”ÚêJÝÎ J]“\"å±½;åqê6Ê“„5J}ù]JÃyJSJ\n¥©¬„òŒïJy6²òÜJi%ó)m\Z”vw*ååÚMJGþ[J§n¥ÛÉòž¸ÒÓµBéYŒ¥|˜Í¢|\"\\¤|ZPz·‡SúvFPúh4Êç3»(Ÿ½I”ÁKŠ”ÁèUÊí<Ê—}½”/×Q¾LS(£çå”ÑÔxÊ×[§(ß {(ß\nÎQ¾ãæ)“Nµ”é]ï(3)sÊ|†ˆ²ÐZEùµâOù}W•ò»<„ògÓ)Ê’™*e‰OY\r¤¬½U¢*D7S–Ò©Š[†©ŠïT¥#Ô\rnÉÔh-ªÊVEªÊÁ\'ÔÍ\'û©›ßŸ nƒPU}U¨jÖû¨[§¨[dÔ­1¨š¥_©:-ç©:/ùÔí\nñÔí‡/S·çŸ¦êž>IÝÁw£ê5UPw*Ê©;oS©»ò¨†:›¨FÃcÔÝ1ç©{¾wS÷,¸S÷¬`¨{UvSÍÆvP-¨v§RíûHµÜ<O=L0¤öR­+Ì©6¯ÏSí6Š¨v~bª]\\ÕþØzêq\0õø³ªÃÎ?TG0ÕqNêd¿FuÞÈ¦ž‚Q]¾A¨®»nROo¥P=lÎP=\nÀT)Õ3ú\rÕgd/Õ·ÿ+ÕÏEõ[Š£ž\rM¢úëo¥ú{ž¦ú{R6¨P5Ô`Š\Z\\8L\r?L=b@=WM¡†-šQ/ms£Fì?ArøJ½¢rˆ\Z½S\Z£Ì§Æl£ÆÄPc¨q\nóÔøçÔûj¢õÚ.}j²ãajò;,5Õjœš:IM‹Ñ¦fôúS3¦OQ318j&§ˆš9ô–zóZ\n5K+†še\'¢f¡Ê©YâãÔ¬û§¨Y?6So=ñ§Þ\Z>M½µ¬EÍ~QMÍÓ, æ½ÇPïrs©àÓiT(a\n3]¡Â’Ò¨°ÛîTøå£TLÖe*¦ô»Í˜Š_J%Þ\Z¤û©dU\r*9všJ!p©T •ÂS™Ž*³g;••Kå #©\\\r8•ïuƒÊ÷£\nŽYR³O¨\"ÕhªØñUìT@•™;Påç;©÷œÔ©÷ÈËÔ‡?Qº]¨…7.RA¨EF¨Å»*©%òCÔÒµ,åµ\"5›Z•YI­ñ¼O­;G§Ö·í¡>½ØLmÀVS-P›’±Ôç3$js£µyRúÂ1ˆú\"²•ÚÒžOmSž¤¶/R;PáÔNÉKêëdSj—çgj×\0‡Úí‚¦¾3ï¦¾{¯Fý ùšúážúgFý‡ÚVOí›0¡~¶®§~Ž¦ªÚQw;Qû§¨Ã/ÅÔ/Ÿô¨£äêh[õ+ã7u[D$ÄQ§4îSl¸Iý1ÐIFm¥Î=ù@]¨1£.Þð¥þ&|¡þfþ£.¥•R—YG©ÕxÔ•åoÔ¢C´uš4EÒ$M)RHS]¤­o?FÛP˜NÛP¦OÛXð‹¶±î\rMåœ¦öÐ—¦VOÓØº@ÓŒÊ§iÊÓ4;‚iZl]šöàÚvÉš®`¶ccMïLM¿ì	m—m\rm<…fh”D3?¡í™ÙO3éô¢™âÂiûÓö½I¤™y*Òö7ž¥™i“•´a^´OWiã§i‡!HšÕÖ,šÕ¶c4«S4+*žfõï/Íæ›íUf«±f›=H³ûov4û}Ÿh\'¬ÑN’i\'þÝ£9ÚÐœƒ4ç¸{4çÜQš«­/ÍµñÍõµ1íôSÚiûÃ´Ó‘i§_inÊ­4w(Í}¶˜æQ³…æù£Œæ=±žæ·î<ÍoŒ@;{8™æÿ…Nì¦£ýh!–1´þZ¨ÊZèž\ZÚyÄ$íÂÖBÚ…„LÚÌOÚ…ºC´‹×kiC´‹Å9´°ZxÑ(-Bk’“üŽƒŠ Å|u¡ÅÞL Åœ¦Å­ý£Å Å÷i‰zwiIû¾Ò’Ü¬iIœO´¤\'\0Úµ¨M´k±Oh×Þ¬§¥ÔÞ¢¥^½JË@Ci™þ´,ÍDZv®-[ø†v»¨†vÚJËÝ‘JËÍ\\G»‹P¤Ý]ÆÐ@/­hÐìX\Z´»‹†H´¢!Ê7Ñƒ4\Z2œCC9í¢¡2hèÐ5\ZÖê\rçû€†·¢Òðø\\\ZÁ|7pèôRŸF-ž¥Ñˆ4º“„Æì;IãX~ q-h¼ÐXšð™&\\!Ñ$fÅ4ÙF!M¦¶‘V¤F+š\n¦•˜¦•ï¤•gÑiåeá´‡ªiljiUÞ+´*úñVûSö8áíñ°œÖ5OkLœ£5Žl¡51ôh-UbZk´­-É™ÖN9C{i£½,§½œßN{X¤u,o§u–Ñ^øÓ^Ÿ»I{})”öF;†öf8›öÑd•öÉCûÄ\\£}šÒúú}iýJã´!g(md´‚6û‹6Vz„6Ö}ƒöµ$–6^šIûöA›@®Ñ¾Ë´É\rÚÔU4íÇ<–6KT¡ÍJüh³ëhs\n´Ÿ\'hó%Ý´E÷TÚïâŸ´ßKiµ/ÒþêÐV^ÏÑþ-uÒV³šikWºhk] ÚÚL.}=ý	}Cƒ6}ÃŸ(úg,}kµ˜®qÍ€®©¿B×tH£ë ×Ñ·™î¤oW÷¤ëNºÐõìRé;\r=èFDSºqU}Ÿ{}¿ùú~Þ-ºEÒgº…´~0è4Ý’”F·:¹‘nõ ‹nó#”n§ŸJ·;¸“nWK·?XN·O¦Û3Ëé÷Ãè\'™wè\'§<è®ë€tWâOúé„9ºûÍEº;Ï‘î¡ZI?³ùÝ{Ã[ºÏØÝWqÝÏÕœ~6)ŸhÔFñ¢‡$NÓCFèçô¶ÐC/ï§_ÐT¤_8B8O;çMË¥‡·ÕÐ/]§GØdÓ//eÓ¯h>¡_	©¡_9WO¿òê5=öJ=îõEz¼u=r†ÿ[L¿]MO¶{NO¶o §è3é)ôI=¥ï5=õD\"ý¦Æ,ý¦®ý&ø6=ëÐFú-Ífú­ýöqeúíMúmI=W°@Þ£ƒÞ&Ñ!WéÐ•:GÇDÞ¢c™It.†N<ô“NŒÏ¦“6¥SCïÑi•¯éŒû\ntf¼¥¨OgoØFçøÓ9×*è ‰ÎÝîLçíÌ£óNÒù_åt{+]¸{]”TN—ìr¥KÉé2/Eº\\á-ýµ~_¡~ß|œ~?ªž¤çË›èùuÕô¢ƒ…ô\"˜\n½X=^â‘H/§—³–èS°ôÊïdzÕn%zUï?z]¶%ý‰â)úƒkô¦ý)ôçEôæTWzË®ôV=mzn½=!‚þj9ýgŠÞùƒGò•þúÜ½k/†þF¡‰þ6©þÎr†þÞp?ýã…yú§¯pzßFSúçSôÏ¥Xú€?}\0ÚEÖ[¥	ˆ¡×ÒGé#@úÈ/cúØfgúW­uô¯>íô	ý;h3ýGõúôðAúŒ‡	}æS4}ÎIŸûâIŸ[n¥Ïç/Ñ€ú¯§é¿C›é¿»{éKO¯Ñ—CèËUßè+¹púÊƒNú¿X}¿‹¾*ë ¯~ë£¯Î÷2@ †Â§†ÎØà\'cl¸u†¡¼û\0CyÐ“±‘2ÀØ”8ÌØôœÇØÜÅPµµ`¨ÈU‹¡fòŒ¡öÏŽ¡Îk`¨ehìóbh\\ª`hð734;KÚçŒmÛ2tÓo3vL]`èµ°;µŒ‘;c»\0\"†%Ã0w×˜Ó¦EžÓ_ã³îTÆþ‡†9Z•aÞ`Ç8 ¸Ä8 «fü®Ì8dË84Ì°Ü„fXò–Vå™Œ£JG	%ë)› £›kÇÇ\"lÇê®3ìbvO÷3ìåúŒãÁ*Œã‡&Ã1¨•qrT‰átháÌßÄp^›gœ2¨d¸úfœ~Æp¾ÁðÌ~ÍðDàž$s†§ ŒáùxžáU¥Ãðš,bx{2|.gøždœ•Ø0üõÿ0œ„ŒàF/Šj’qa5^šÊ¸tÃˆœG3.gÿdDYÜaD÷j2bÔþ2b“w2bsDŒ¤ð8FÒ;cÆµ³ŒTíŒ´\\FÚÈ8#ýÙ~Fú»+Œ›o0néžgdÒûOãŽO\"ã#7ò#—yšq÷r\n¨Äf€ñ?ÆEÜ¯Þ{ˆ}ø‹Ë™e™$iÇF9‚È þ»Â`¸{3ytc…Á`ºÝg0¯fpÓ\\@ƒûc;ƒKeðïG3„C”²…!º‰dHÜ¡ù5S†üæ-†œšÆ¸¯lÂx°í:ãÁ½Œü¯þŒv£`h£ø#›Q²¸™Qþ¸ŠñèÑF¥²£Rÿ7£êŽ£z„Q}‡È¨‰xË¨!âu×÷U3ÓuõŠHF½ßFýCF}û4£ák\Z£q€ÆhR.f4yÑÏ[Œ/hç­VÆŒ—Œí|F§’5£s›1ãu´ãõ÷LF·f-£›Ggtw2Þèš0Þ$3ÞfY2Þæç1z@Œž?ÍŒ¾FßWFßÚVÆçGSŒÏñŒA;Æ`—1¸²•1œûƒ1RfŒÝa|;ÒÄøv#”ñíac\"šÈ˜X¾Çø¾ï+c’‚aL10¦ØÆ,Î˜½aÌçé3->0cÿ0SsÎBKNŒƒ«Õ½Ìuû™ën™ëšZ˜Šyw™Š˜X¦R ”©Ôw–¹>ÏÜPfnè²f*+h0U<r˜*c]ÌÍ3	L\róD¦&§©£xŸ¹Ýh†©«t‚¹#ôSïH2sgA\nsç€¹+{Ó M‹iˆŠf\Z²1\rG&˜F¤X¦±Ø—¹çòsæžÞLSá,Ó¬Ñš¹?I‹¹ù3ÓbäóÀlóàL\ró0á?\0¦¥à9Ó*¹™iõ»‡im¼Ì<¦6Î<fXÂtºq—éÔÝËt¶ùË<5äÈt9Ât»ü•éöùÓñ›éÉ)bžqšbžyëÌôþ÷…é£ÀôÁ_b´Ï0c™ŒÌÀWf]ÄÙ¢Ä9cž»zŠy®7’êÓÉ¼hö˜y1%ŸvjžöZ~¤€îòŠqÖ™yù´3êƒ×%bÆOD2ãÿê3îô3¯Mg3¯¯ÿÊ¼~;™™|O‡™BWc¦Š<˜iŽ`æ$fÆ|>3so3sä3k¥›™Mµfæþ~ÍÌhaæåÖ1ïî0#qLF?l>Éç0!Û¨L˜ý[&òf	ùd‰‰™hæ\n“GbbMÔ˜¸ÛíLõ>“0w€I:ÝÄ$]D1IÍ_˜ô7yLVB\n“}à	“}fŠÉÉÉerÛ‡˜Ü‘5&Ïì(“?TËeð˜¢?W™âíb¦toSžEcÞWègÞÿÌ|P´Â|ð„ÎÌ÷5aÊ~3‹ŽX2‹Oæ1K÷]b–¿¾Ã¬lÖ`V~D0«ÜJ˜µ©\'˜µ¯Í˜Í0ëC¿1Ÿ:¼e6ª‡0›ªj˜Ï=ú˜Ï—2›s™/¶3[Î¼`¶Ä(1ÛƒÝ™¯{™¯ú|™Ühf· €ù&éóí–&æÛsÞÌžóÌ4CæGmgf/ “ÙO­g~ö÷fl|ÈpÊbÄ<`éª1‡2·1¿:Û3¿f#™_óó™ß6¸0¿…b™ß&XÌïôæ¸s\ZaÎ™1nÀ1n1çQ/™¦ë˜‹ÈÌÅOæo¿æŸ­ÎÌ?º³Ì?éQÌeƒÝÌ¿*˜+¯™ÿ”š™«ÏYŠ7&YJÂXëHXN7±6\\íb)Ïžf)/`m}ËÚt¾˜µI ÌÚTƒ`mZ;ËR‰.e©LV±6Ûïgm†^bmî0`©>Îe©­“±Ô”…,5¿,µ4K\rŒc©uÍ°4#¶±4‘/YšY,í–K,­¬]^J,Cú6–¡Ë2úfí¹bËÚ3ÜÂ2‰©b™<ÿËÚ»¤ÉÚ·ë6Ëì”œµ¿î!Ë|Ñše‘•È:°C‰u ÿë Ôuð¹ë›Œux±eå`Y1:XGŒXG*-YG\r±lT‡X6=î,›¾Ö1½\\–mæ#–-;€eûïë¸Ž)ëø6Ö	ß8Ö‰rËáÌz–ƒ@›åL÷f¹ü£³\\ß¡Y§ä¬39.,/ÉË¡Ïò.6fùÄ(°Îú„²Î^D±)¥¬ sVÐ\nVp+‰’SÅ:—É:¿¹Šuž¯Í:?oÈºðÌƒu±eî—Ç\nÿ<ÌŠ|t‡}ÌŠ\rs`]\r½ÅºÚ˜ÄŠíºÀŠýxŒ•H°®¿—±ÒfYéáoY7\'lYÙí¬ì”$VÎË—¬;5¥,À5ðã_ôÏ’lÈB1XèÖI6é	›óš…«¾ÉÂ=ÑaÒw³(™Y”±peí1‹úÎŒÅˆta1Xì”qGþ—Å]›eñ´³Y‚¡e–Ðú?YfK¾É’ÿIaÝƒÌ°îcŽ±î?°tê±ò_@YX­¬‚„+¬‚—u¬\"·[¬\"b«¸Ä*¹Žc•9À*\rÜË*ý²Æ*ƒ±ÊòƒYåam¬‡ê›Y,ÇYo±*ð.¬ªC6¬êcV\rÏ”U#Ç²jF¬Ç…§YO:úYOóX\rá+¬†DVãFEVÓ6eVSP«)^ƒÕÔèÎzÕÃzVƒc5¹ÉjÉ?Àjm}Çj©euôqYã»XÆLÖëƒ;X¯k¬î°aÖÛíWYëRXŸ¬KYŸ>[°z›Y}ás¬}kÀÏ\Z °†<O³¾|ÜÍ\ZùÀúºéë›á\"ëÛuÖd¹)kª8‚5ÍgÍ<\"³f}{Y³Ü¬ÙoÖÜâ8k!É‰µ€yÇúåmÊú“c-a„¬å³¬åKØë€%l…ùlEk[)è[é²-{ý‹B¶ri:{£Ÿ\"{c\"Ÿ½±ËŒ½iÃ\0{ó”[uÕ˜­¾`ÇÖØš­¹SŸ­yÎž­ùï+[s‹­Õ„`ëênbë:U³uß°õ\r?±w2|Ù;ÅlƒOoÙ»u«Ù{ÕÍØ¦mlS¹”m¶«’måÀ6âØgªØ){Ù™elËfì£Ì1¶YÛ&ë	û˜ÏÛö†œmûžÈ>,eob7Â>±úœí°CÀvœœbŸÒÝÊ>UbÅvÙö”íúI}ºî,ÛÍAƒí¾ï$Û}Ìœíyd/Û,d{{HØÞi!loI>ÛG\'‘ícMbû»e±ýá]ìÀ±RvÐö%vð¶\0ö¹¿×Øˆfì‹¾‰ì0±#;ìÙûÒû÷ìˆuìÈŒÿn6±vT[!;êÓ&öÈ1ö•ESv´é\n;FE•«ÚÎŽwlf\'ì	b\'ä©°“r,Ù©G;Ù©özì´\roØi¼Ø7âÙ7:÷°Ó~³3‚KÙÍ:ìŒöÝì›zdö-Á$;ûæ1öí˜NöØ½ì¼Ýtö]m\"x ˆ\rô¯fƒ)lH›œ\rÍ5bC6¼æ:mö‘1bc¦ÒÙøÓMlÂb›8Âc“›Ù”¿Ílêë—lÚºlÚ¶h6“ÌftIØL½ClNÁ0›G×aóZ•Ù|à%6Ÿv•-Š³a‹›¿°¥:	lÙ›P¶<?ý€jÅÎà°‹ÂcÙEJì¢ßkìâ3v1\"Ÿ]bû˜]®’Ä.ß©É~xÙ†ý(Oƒ]%bW¯«gW¿/a×la°kg×~9Ì~ìâË~¢YÎ~B²Ÿâ_°ŸÖ¹²¥Þì¦í÷ØÏ¨+ìgÇÙÏë„ìæk®ìÕSìÖB$»mÕŒÝ®\"`¿¤ì`wìå±»ÓÙo\Z´ØoÞ}a¿·Îg¿.f³ØŸ7°óŒØC\rîì1îöØ‹Çì±…Ëìñ,wöT²\Z{nÃ>öÏß+ìùØöüT{ÁÄ‚½P¶…½è*gÿÙ´›½z¿ˆ½öå+{mÅ^ûöš£àÕÍQX.á(¥ná(åŸæ¬·ïæl\\˜åljTålv^ál~ÅQ»œÄQ«ÝÊQ×sç¨GVqÔÓwq4Ž~âhjq´eÞœí©§9ºq¯8ú,G9c(>É1îïä˜á˜,NqöÚGpöoÜÁÙÏŸä˜ÓÙóö9ŽÅ\\ç@øÎ¿+œCœC$çÐC\rÎaï\nÎá”SœÃê9VÍ½œ#ã8GºÎrŽ:erŽ==Ç±;¢Ê±÷¦qŽ“%G+(çä¸Ç%UÀq}PÆñÙÏñöp|^ìäøÉ¯pÎîùÄ9Û¹—ˆ8Ì	¹Ã	\\¦s‚Šœ`‡“œs3RNé	\'lbˆþ)€a8Å‰näDJ\r9‘¿8—Í¼8QÚmœ¨(\'ªä\nçÊ™se9†MYàD·„pb§æ9ñ~¿9	ˆœÄñœ$ë—œT†9çÆéaÎ9GNúÆmœŒ §œÌñeÎÍÙCœ[?ë99ö*œÛoã8·ç9wröpòÒÖqî†iq\0ß#9‚eôæYÌü8[â`\'¡œ¥W&çàoç†Í8D‡ÈùÀ!¶¬qˆË¶’˜CŠ	ç•ý8”0‡z9™C£áÐ÷ÙpnÆí½Æò;{ó%Ûþ\n‡;XÊáþÊáÄnQ®G|ó0GÌ¥r$£œ{gßsòïip\n†8Ec¦œÒufœR•Néq}NÙ62§sSþ ƒS>°‰óhø5§òc5§ÊÖS¥Â©;3Ï©Òä<yaÆy\ZÏã<¥ä4f„p\Z[9ŸÖs\ZGwpž)ˆ8Ï;[9/˜KœÍúœ¶Iœö€-œ—Î+ûœÎ]Mœnâ(çŽÓsÙ‡óñà:ÎÇïyœÞøkœ¾Ç*œó\0ÎPi<g˜Áù¢æŒl¸É‘8£	œ1âÎ×Ô@Îx?‚ómï gBÃ”3i#æÌâ8œùÎ?œ…GÎÂÂ#Îâl1ç7‡ÍùsËYæ¡9+êg9+‰[9+C8«.m\\…›£\\…Ñ÷\\Å}îz³—Ü\r£¾\\eÑkî¦ˆ5îf«Q®šüWSù\"W3ÈÕº&áj£¸:„aîöõŸ¹ºëä\\]éwÇ¦—Ü!Û¸Éú\\CB×pÀ5\nyÃ5úñ…»\'›ÏÝ3íÊ5IüÀ5ù°‰»·Ý»/y…»oä9wÿ™q®yž2×\"Ì‰{ð›÷°G%×êÄîQö.®uðA®­ö&®mª×^ÀµÄ=þã\'×!d3×aºëØXÈ=yz™ë’tŸëÒµŸë:fË=sÝ†npÝI\\]+®‡‰ë© ÇõÜŽäzúép½6=æzë3¸>ÕbîYý]Ü³Sª\\ÿu[¸þþ®ÿ•Y®ÿ;Mn ‡xõ+7è÷\'nðÅ8n0l„{¾Â\r5rà^¸pˆ{Ï½ Óå^üö{qí7œ”Ä\r6r/}\\àF¶³¹—×s£4?p£èÜÝYn¬æwîu™!7%Ü’›z¦‚{ãe7]|Œ›¾ü{Gõ!7èÄ½ó¸±žÒÒã‚ÏFsa¶u\\Xê5.ìß./àþ¹s‰Q	\\’b—dñ–KŠIå’þžã’ë¹\\J÷~.µ|žK»¹“Kã›qéq\\DÎeôÂ¹,\ZŽËÎÞÎåÊ¹Ð®PDãŠ£ÎqÅ ®TÁ+]JæÞ3£rïqïõŸàÞßäÞ§esóŸ¹ù“­ÜÂø“Ü¢ˆn1µ„[\nRæ–÷Æsn|Ï­°&q+lös+¦¯r«vNséç>ñâ>™|Ì}\ZgÀm¾ÀmŒYÇmÄq›œz¸Ï6xsŸ+¹ÏµpŸÏr›Í§¸/,¯r_´å¶äæ¶ä/q[ï‡qÛ÷³¸/‹vq;4¿r;&np;wÆp_ßoæ¾]Ïã¾Ýµ•ûîŸ6·§h–ûa~ûÑRÀýDùÂýô9œÛ«åÌíå¥rûwÏsû[º¹ŸÍ-¸ô`î n’;Ôš;´6Í®)ç~™tâŽÕÚpÇ&ª¸_ƒ#¸ãFhîÄzî÷X2÷;`ž;yN›;ù¬;¹rŒ;»pˆ;¯	æÎïYÇ¿æÈ]ˆóä.ô^à.üÕà.Ú7rÿ„¾äþ¹ç.iíæþUôæþÅ¤qWwðÖñ;xëªðjíxŠí¯yJ{ZyJÃ(ÞúuÎ<emO%ñ#oËíHžz¹œ·5½…§°…§ÝWÂÓ){ÈÛKçmKð¶@<]æ1ž~œ*Oÿ®Ï@Žá~¶âIyFÀIžÉ3öuåWïã7*ñvmà™ØXòö‚¿òö}vç™Qµyû”óÌFyæC<‹Ã?xŽ0ž…_:Ï¢Â‡wèÄ;„ÕàYª?ãYž)ãöCñ¬ê®ñl¾BxÇÿÌð.<ÇüÇ¼“ÚC¼“:¼“v¿x®Ò­¼Ó&y§Ë1<÷b0ÏC=ˆçÉàyÄð¼ê­x>ûvó|„Þ<9™€åpçxAçuyA‰5¼ì¼è4/\\.åE|<Â‹XñbzfyWÕ½yq›²y‰—fxIÛVxI${Þµå¼ëþ§y×¿Ýå]_óæ%ïùÈK‘bxiJq¼4e/Þ½\n¼ôý­¼ôÀÍ¼Œ)/£[ÌËìçón>¬ãe9»ó²»óy9–ÿx9÷òrF»yy_ÿñ\0(ÐZÃîõáSºyà®£<4Ïœ‡yò–‡µuça»[xø`-iÎ#sŒy”C{y”Lº6È£ýLå1nþ÷ W:Ìc[»ñØã‹<>‹Ç)«áq»Ëy¼{Ê<~ œ\'8{Š\'¨jäIÍ¶ðä‰{y÷vy÷¢²x÷ûñî{¸ñîW^æÝo:Æ»¿¬ÍËÿfËËÿûWÐuˆW8íÈ+žHå•H¾ñJûðÊþ\rñÊ/tó®Ãó*F-x•ë,y•Æ9¼Ê%$¯ÚpˆWíý‹W}i=¯úï&^Íé§¼Úì³¼ºS¼º8 ¯nÆ«Oä=%\rðžÎxOWOó\Z´Õx\rŸŽòš:2yÏ,ûyÏo%óš5ä¼f°€×Ú4Â{uÌ”×Ñ™ÎëTVáu:uò:;›x]w7ðº>žå½9&à½‰Ôå½)ÙÄ{+ÛÂ{·÷ï]´&¯ç\\¯çY¯OÅëøOñOÞ`¾oXé=ï‹qïŸÌc_à_lçÏ©ñ¾÷;ñ¦åÕ¼é¹TÞ,tŠ7WåÍû}÷)ïÏVÞÒ”oåÏÞ¿\0Þ¿c“¼y«U¿x«¼5S[ÞÚ9!oíœ¿Ž»ÄW8ÒÀWXYÏWqâo®\'ñUmY|Õ¼Z¾*0Š¯v]ÄßòÕ¿5Ò™¿µûë\n€¯q,—¯i*ák)-ðµúðµ£?ðµ__äë,òu»ù;Ôù;Ú¶ðõÌ3øú‹®üþ)|ƒTG¾Agßø½-·Ž¯…;ÿvK¾Å‘.¾Ë· wò8ºòœ¬ç¼×Â?´ýÿp´ÿè½E¾µ†1ÿX‡\nßÖgŠo·î	ß^aß^i/ß~þ\nÿä‹ªÿß5ß†ïZRÈwýÒÁwKÒà»M£ùîïuøÛa|vÿLf\rÿLV=ßKÌ÷²_Ç÷ÞŸÍ÷±˜àû„hò}Mùþ;ù!:ù¡WÇù\Zùðrþ®ÿÂ§0þÅ§ùkùùáIfüKiQü@??¢ÆyË‚ùÔÿÊÍmü+2	ÿj4™»ÞÊ+ÑåÇ®á\'è«ó-ù	Ÿqü¤0o~Jã~j`%?µešŸ¶ã;?}â=?#•ËÏàhñ3OÍóo%gñoÍçg_~ÆÏ~|•ç–%PXÏ=æƒnåðÁ¤f>¸ç22YÀ‡,%ð¡ðT>\\y^›ÉG+æðñþ||«ŸppŒOXvá“tA|Òþn>‰‘Ï§2¦ø´~/>ý†ŸqÁg:ñ™•r>s)ŒÏÒ\nçóÂø¼4>;žÏÏ›å‹w8óÅw¿ñ%§Oñ%Wø’%=þ½Ôoü{¬~þ}¿nþýHÿA‚ÿ3€_mË/4®çvAùE§ÛøE—ð‹æ¶ñKÀ¶ürå~Åp$¿êØ_~uŒ_Ý1Ã¯íÞÍ¯3¯å?ñLæ?‡ðŸ|óë¡+ü&,•ÿÜºŒÿâZ¿%6›ß®xŠßnv—ß~ñ¿óX6¿ÓÍŸßùî>¿Ûë;¿»tÿÍ«ü·Ñ/øoÏðßjòß;Áù=¤ü]3üáÅü>«U~ÿF}þÀöüÁ#5ü/;€ü/È5þXâþ×þøC:ÿ›¢»™?±TËÿîÐÃÿîõ–ÿãçZ©†?ý^…?q‚?›ãÇ_è\\Ç_xû„ÿ{{ iø6ù%Œ¿²4Éÿ§àÉ_ý:Ì_ýMá¯Õ¼¬ûN¬[9 P:õC 4h(Ø <)Ø¸ÃF V\"P{Fl¹U >ºM þý¼@}q¿`ëžzeL }[O ÓôR ë)ØáøI`à÷W`µS`°tR`¨å-0.˜p&c¦\ZZ‚}cOfù³O)‚Þ‚}@Á¡s9‚Cy£‚CÕB¥cŠàè¶à(*G`sîŸà˜V«Àn®Z`·:+8þ(Hp|9Rp‚‘,pH³8\n\'/œbsÊsá°àÔi¬ÀõÈu—†¶Àû±£À[)8ÛhAÎŠ‚œ£ TtPp1\"Jj+ýQpéd¹àRh° rœ%ˆ©z$¸j^*ˆeö\nb+o\nâ?¶\nj8‚„îhARç¬ ¥ÏGz>ZZÈ¤>¼.HW6¤[	2ì7-\r7[YÜ\"AÎî,ANúÁí­3‚Û$”àŽ Apgú  ÷–šànæà”\0à*\0„<\0ÂÛ@¿œ.€*`ë+°›ðëb\"$E€ø2 @nÐ7è²\0ó&Àü	`¨Bú?ÑÑV@t¿8	È+òê	M)V@sF	h‚%½LCÀ8;(`\\˜0`÷L¯Z÷ü&é,¬…	„®‹‘I IòHjb’‰ ìl‘@.\nÜ3—	îÅf\nÐ7…ŠU‚âËA‚²#å=‘‚Š„AAÅŠ¥ òœ® òÎEAåH‰ zî» Fé‡ &ÛCPƒË<áª\n\ZŠ\r*_\r’õ‚Æ¬\\Á³lºà¹+RÐšÿVðÒ%XðjIQÐé½_ðúÛŒàõÒfA×„¿à½ÉÁû:kAÏ ­à£Þ€à“o‚ ÷¨•`à¿<\r­j	F¢]#ÉÛ#ÁHÑ¸`”ŠŒ=SŒM}ŒCð‚ï/tS‹W?Ž~LL\nf€³‚Ÿ»F¿ôm¿ØÁ¯Šß‚EÇÁbÒ~ÁR.T°¼q¯`ÙR_°\\¦*ø[«-X94.X	j¬H/Vš­+ŸY‚!G«/o¾	7nÈªÒ„›?U]Ì…[‚:„\Zs¡V)R¨õÛZ¨íè)Ô¾S)ÔZ·³ê*…	w˜´wÀÊ„;Þ	…zž®B½Øz¡¡·¿p÷F¡é©Ð´/Üw¢A¸ï¼§pßìW¡Y9FhÖ&4Ob	´Ô-6“o­”dÂ#mÂ#ß\n]ZË{„Ö¿’…Ç\\ì…vÍmÂãiBƒ¡ÓLšð”ï²ðÄSxŠ°_xŠt]è*Ôº;•=¶X\n=³n\n=©¹B¯c¡×«gBßÏþB¿ˆU¡ßå)áYaœÐÿìCaÀWÂ Ò&ap¸¿0ø‡›0ÄgQr)<¿øWxáøŠðBä 0¬h§ðÒ(OásD1^yW(Œ±nÆxÞÆÙãrs…ñ‘ÝÂë…i¶¦Âô¸Â›—„YÈãÂ¬–Â[.á­&‚0û`­ð¶åvá º0—£&ÌûôTT<%T¯¦\n H!($N~5.„^òÂö‘×3…ÈÉ;B|ðe!qC„øs«,ë’Ÿ*É3îBÊ‘e!å]Hµ	Y—¶¹»Ê…<¯·Bú†×Õ&ä‡Þò[Ê„B+¡˜1\'”>ý\'”ûnÊ„÷&Ë„ÜÏó3…5cÂBóaÑòea±aƒ°˜Ú/,²„¥kåÂ2ÆNa¹¾Ÿ°¢!,\'>,º*|4ß%¬Øb*¬ÄÌ	+KJ„Õk¡ÂšgÁÂÚ£ÍÂZŸ7ÂZš‹°öCŠ°vXWX\'cëjYÂºŽ­Â§›…Í¾w„/þ†	_Å…¯Z÷»/¥	»£‡…oæ:„o•‹…Ÿý/?ÿKØ¡„©„ƒëš„ƒ*û…Ã¾Âa©pøÕˆpøXø…þJ8ðE8j ŽÝRŽÑí„cM§…c/Ë„ã>_„ã“KÂo(áTà¢pºr½p†e,œõ]¸pä‚ð×þá¢š¢pñž»pñåCáŸc@áßË§„«ç£E\n,ªHá^¤ð&K¤x«_¤¼ÉQ´±©F´±™ÿŸÿâ=‘Ê/SÑÛ‘zn›Hóñ_‘ËW¤c\néF‰¶ÿ‘‹t3–D;ŽléñDú7Dú7‘4]dT©\'Úý´N´G­_dZÙ)2[,íçZˆ¹ˆ,/EŠ,¿%‰¬ŸäˆŽ]ŠlDvj\'D\'ÏÐEN#~\"ç#e\"—R‘ËÚÑéÕX‘‡Uä±MKäÙ)ò(yžšyYy….‹¼Î/‹|ùV\"¿ 8‘ß;CÑYÕç¢³f½¢³‡D5BQÐÁÓ¢ «Q°I„(xÔ[²ÕXòÉGtîÄQhògÑ…ECÑE•QÌAt¥ÂYUüÏQŒrˆ(¾²H”à*%PsEI*£¢ëº–¢ä@°(yÊW”ÂŠÒ™¢´\'E7z\ZE™xÑÍ*{Q–K½è–Ê.Q¶÷eQ6ÊPtû6Ot÷âV §W^Á÷“DÌubü»µÎS„vëa×aiE\"l1V„mŒá„A\"¼Ö:á^—ˆ¢\\ÄfoqÊ~ˆ8¯BEü„qÿæy‘ø¿±H¾ÅŠdð\"ÙÓ÷\"y0Et?2O”Ÿ´I”‹\nÀ@QÁÃ\nQÁ¢XT(™Ãw‰ÊpM¢rF›èyLTÁ*UïlÕ^ŠêÖmÕmJÕq•Eõ!¢§ÔQ}VÔ4ðMôìÚ\rÑ‹K|Ñ‹ÇE/D-«oD­‹Z‘¢Ö–‹¢¶{\0Qû6¶¨½8Iôê—¡¨‚uJ«E¯Ï¯uûžu´‰Þ$‹ÞL¶ˆúnÅ‰ú½ÂEý…¢Ïã/Dƒ‹DÃ·Š†Ë”D#²Ÿ¢‘¯¿E£qŠ¢¯áDß\"™¢	VhÒ\\A4ùÝB4uð§hê§‘è‡ž“è‡\\4ÌÍ(Í½÷ÍM‹~b\'Eÿåk¡ÕU´ðöŠè—ƒ¾h™\Z+úûs§èï\ZOôïd“hõù&ÑZM¬àøQ¬€¹\"V¼õ|‡Xé½·X¹ØQ¼Qª\'Vq‰U®½«)DŠ5hÃâm\r¶b½c\"±žh‹XO>$Ö¿c,6xöTlðÍVl°Ø!6RBˆ×Ä{Û»Å¦ûPbóâWâƒA¿Å‡íö‹%ŠÄ¶‹Áb;ŠžØ^A*¶°„ˆO,ÝŸü`(vNÿ.>µ\Z,vQê»X•‰]2QâÓ1ËâÓÏ‹ÄîJ/Äîjãb÷ÏbçcbÖŒØë½™Ø»ðµØO^\"öW^ÑÄÝoÄÀ@q`Ý^qðYŽøÜ_‚8Ôþ„84ÕHZÉ_P~\'ï|/ŽVG°SÄ‹7Ä—7Ÿ_Þ(ŽÊØ%¾2› ŽK4Ç‘‹ã¿Ö‰RÅ‰á\râäÏiât‡âÌ·Úâ,Ã9q–ÑqÖAMqÖñ-òñ­2-ñî qn´²8¯&Tœ÷¥C|—ç,@Å€\'Åbàå3b°¹ŠšÃœÿ‰aä1¬qNŒ\0Œ‹QnýbÔEe1z,WŒßb$ÆßJÓœCÄ´¾˜ŽØ/f·ˆ9n{ÅŸy1?’+•¹‰Åõ9âÂ“>â\"|‘¸¸ô¼¸äÞ]qy^ƒøÑ%‚¸RsH\\iÇW”Š«î€ÅUŸ¿ˆ«F¬Ä5ýÄµfwÅõgâú’HñÓÄO›•Å\rèlqCíŒ¸Qó…¸ñj‡ø™‚’øyåOñóA²¸™_\'~ñPKÜz§_Ü†¤‹ÛÆ‰_îü,~Å6wh¢Ä¯uóÅ]:â®’_âwWÊÅ=Å÷ÄiÓâ¾ãBq¿†½¸?ç£xàt¶x0U<¬výOHBÄ“CñâÉï(ñô}Žx6áxvŠ*þ¹&þi~Güd$ž\'z‹ç9–â…y¶øWØ‚ø×}°øWõMñ¯÷xñŸK—ÅK¿ÛÄË\r…â	–âÕ¾YÉ:gK‰¢=O²±ÆC²qê­DåiˆDíˆD¢vmH¢6Ü/Q7;(QÎ–l½3-ÑØd\"ÑÈ°”h`‘1‰¦zƒDœ)Ñ¿ä\"ÙåÔ,Ù5^!1ˆê—éK$»—-%{4HöÌþ”ìt—ì{›\'Ù¿:*1·>!1Ïº&9\\xYbµ\'Gb%o–é®’Kÿ&±½J•Ø>Jì>˜HŽWü‘œ %õ7$Ž¯\"$Î“6’Sû’S×þH\\«$.U‰Û=u‰ûˆÄýÛ&‰kRâõB&ñúa)ñ¶uøÇ§I‚vJ‚“-%!Ç\Z%!åÉ’sÁW$çO`%çQ’‹ÉE©äâé[’°¬$I˜°Nö€ ‰Â®“D•ŽK®`p’è‚QÉµƒÉõ>’d§	Iêýƒ’Ô†I\Z(Ikð–¤FI2Ž%™ôBIfF’…} ¹U%É~Û!¹½[\"¹C2•äîPýO’û É3U•Ü?#¹ûÐNô;(`%À	d÷	Lïž&^‘À3t%ðG¤úF	Z#C‚¶Í“ ÓÀô¯z	ú«Ëõ’ànKð—‹%„„ýBEÂÈ¦I˜ßc%ìÍá¶!@Â—°3#%œËŽÎƒnC¼„÷bT\"\Z9,Ã\r$r+{‰	“È›7JîP•Ü‹R—\0¢%	’ÂÛIágIáÀIÉí’’\"IiA‰äáÞc’Gþš’G)	’Š=¯$ƒÅ’ª3‘’êT\rI5¬JR{%MR¿\'it(‘4¶Jšz2$Ï4þIžIž…J%íÑú’öš¤£ð³¤Ëú‡ä=FÒë{NÒ›h#é½;\"é7ž–ô[`$ýÑÅ’Ï€>É@æ’dt•/·Õ—L¼H’|/•H&ÿH$?l:%?JîJ¦|—LCîH¦ç$3=Ž’YZšdö»¢ä×wÉ¢šd±ØX²8!”üÉ¥Jþ6$+N7$«=RE÷mRÅ@_©b˜µTñ~¸t½ât}Ïé†6}©Š<Oºùñ”T­¡Cº%gYº¥®\\ºeÀ]ºe¼Wªn¼&Õ„JµìðR­•‹Rmƒ¯Rí?=RJ·t{¨štûÒg©.e“T·”#Õm­êÝï–î|¾Oj”#ÝmØ$ÝÝc.Ý£æ.5yâ\'Ý\'JÍ¤mÒƒ³~ÒCZR+µR+Ó©­­‘Ô¶_(µŸ–ÚJ¥ŽÞjRç\'SÒS?¤§¿8IOOÿ–zœ˜•zªæI=1ÊR¯.žÔÛð´ÔGå“Ô§a@zöÁM©ÿs®4$ä›4Dè*=×tG\Zz\"\r+	^šu“FlM^Þ)NIc·JcRPÒ¸Éai|Išd,M¹n\'M[Jo`Â¤é¦Òô\rÒŒíbéM“;Ò¬‹‘Ò[<7iöN˜4ûV©4[øBz;˜+½ãØ%Í›dHïîî“BïÆJaOiRTD©Å{\"Å~ê–â×¤„#R¢SJ>W(¥4ü’RmïHi–VRºgƒ”!h–2ª<¥LÛV)§rFÊÍÞ\"åõIÅç…Ré«©Ì;C*W™–Þ×þ\"½¿GQúÀû4¿zŸ´ÀtEZ’ýIZj¡\'-m’–)¹IË]¥Þ®H\rzH+N8K«ú¥5÷¤5Q½ÒÚÜ[ÒÚ™õÒÇÛJ1‘Ö”Këk9ÒØké³‡2é³¶ãÒç#•ÒçósÒæ§|éP‹ôÅDÚâzPÚûCÚÊ~,m«\n’¶õDJÛËó¤/Ïž“¾Ä ¤¯Ú·K;ŽåJ;µ<¤Ö{¥öNÒÎ/ýÒ×ç¥ÝxôNŠôÝ¥;ÒwY¥ïA;¥Ô¤=4¤¯8I{I¤ýöcÒÏ_—¤[¤µÒ¡¼Òá‡¯¤£>)Ò±á½Ò	é˜ô{I:s,‘–Î4¼”Î6kHgW¥sKËÒŸ{:¤¿¶Jÿ¤HÿTªHW=®JWkÓ¥kâe\nËX™Âj­Lùx¦l£«²l“ÄG¶Å¥T¦~ÄK¦Ny)S_x\"Ó\\-–i©\rÉ´œ*dZWA2-’§L[sA¦Ýï*Ó)–m·Ø!Ó5È—éº.Ó¯N•ÚøÉŒ•5eÆ¨\\™IéW™é¯k²};5dûoøË,,Å²ƒç²ƒR=Ù¡Ý{d–±V2«¯2+øz™Õl¿Ìjž!;Ú%‘Y¿‡Él`eÇ²@²È=2§Í³2§®p™‹g°ÌõOæ6wNæö÷†Ì”¹÷Ü•yþ	–y\rŽÊ|m4d¾¶|™ï-#™o9[æ§)‘]Ù,óßñWæ_¥,P\r d!G3eç†^ÉBãÂdçƒƒea[ßÈÂÎDËÂßl”EžÌ—E¶çÈ._ÇÈ¢—eÑ3—e1Ás²˜ó;d12¦,¶óš,NÒ/‹›÷%$ÅÉòeIñëe×1²dp½,ù_ ,ÅËB–Ë‘¥<Z\'K\r˜–¥&\nd©T_Ù\rDŸìFŸ®,ýÃ9YvK–\rQ‘ÝyxU–ËQ’å>ÐåµËòz‘²»\ZÙ]ÜIØ£PõGÉ`•2´|U†M*—á®•áó2\\M³Œh¤$#&fËH¦¦2ÒMy÷9*£¦»Éè¦\09%£’1ì:dÜk&PÆŽÿ ã‹ÓeÂ*]™ø¢£Lœï$“|€È¤%s²{’hÙ½k²û6ËòéÉ\nÊ~É\nÏž—9$ÈŠ>ÒeÅÆs²G¬Ô «øö@V\rO”ÕXÅÈêà;dreO·Ë\Z‚e¡²Æ LYcÓCÙ3ºŠìy¾Ÿ¬µã»¬ÍG,kÿö]ÖþÃAöÒ,{I…È^·Ü•uÝh‘½½â%{gsXön²AöéÄaÙ§²{²¾C²¾?Y¿bŠì³vŒì³ãÙç¥Ÿ²Áƒá²ÑlÙhË\'ÙøSÙÄ.€lâ{„lò]“ìÇ½½²™å²Ÿê¿e;üd¿7iÈ–¾ÈþºOÈþù8Ëþ…½“ý‹”­©•Ë‚å\n}ªr…ßÝr¥¶“r¥©Oòõ}Ñò\rù†r]ù¦é@¹Jb¼|sÚ&¹*í­\\µò‚\\í§§\\c]¬\\ã°“\\ƒ+×LÈµýäZ9	rm#š\\»|³\\Ç“\\tC¾­åƒ\\ïXŸ\\ïÔˆ\\ïU“Ü@mTn ¹\'7h¸.7\n*—ï~óP¾çÐ>¹‰N¬ÜäJ²ÜT±Dnj¶*7½B›Î}‘›wÈÍ¿àäßNÈœI”8ÊmY\'?4õJn©š#?Œÿ)?b´$?zÅUn·÷¥üø•ùñ¢¿òãòåÇ1åŽ¼2¹ã`¹üä6sùÉíÎr\'L±Üù>Fî’‘\"wiV”»\"!r7âg¹{Ê:¹—ëv¹×Ý\\¹WÏ	ùÙrwyÕyP:Bô^W´Ô/¹ôX’Ó-KÞ,cž“‡qÓäád¾üÒÛ%ù¥åy¤Ý:ùå¦VyÊ[óôü*f@›ç*çÈãG#ä‰\'<å×Ï²ä×‹÷È“Æåixù\rI«<Ãß@ž1²]~S9@~ëT¡<ûÅ%yNâoy]I~{ØK~ûïyn¶«<ïËq94í¬Ú“\'G½?#G#9rÌ¶Krlˆ¢Û²NŽ3“ãÐ9^+\'ä$ø?9¯#§¬¶Ë©.UrZœªœ¥ gå÷09‡g*çyå¢Í9rñsE¹äCŠ\\ú&U~|ó?å÷ZRä÷Gå~ÄË=ÇäÅÕä%›äFÈ+ŠÎÊ+ê\\å•ïMäU9¾òêÙ»òšB¦¼–pM^÷Å]þxèŒü	ÞO^? o|…’?ó{,vÎPþüï˜¼ùïUy«õŠ¼íùy;JAþò$ZþRb$ECË;VÊ»\"å]÷WåÝ33òw\n½òw&ò÷ÊYòú<ù£Iù‡°^ùÜüãç@yßì¨¼ÑI> .ˆh–*¿“¡È‡2ŸÉ‡ÈÉò1òQùX½\\þUÛE>þô¸ü›Ñ\'ù·Äÿ1\\Ÿá\\pQ\0À)#IeFÛ(J’ÈJ•M‘‘Jf¢É*Éˆùï½÷ÞÓ*)…H¥Œ¢xßç>¿ç|»÷Üsî‡só;¿Üˆìœ¯ïœjÜÐ9­¾ªs::¾sºÇ¯ó»qçwÖÎï¯Ïvþ8µÔù#Ýù‹} sV£¼söÚµÎßñòÎßð¡Î?oÚ:—¶Ot.¥œïük	ïü›z ²° êÉ¬Òò¬š¬–¿¬î\0¨UÔ\0ÔÛE\0\\>@ãƒ@Su e½ í1X×Éè¼mè¦\\lÜDœ±lª­l>|°¹D	ØŒ90RgŒ|ÞŒÎáÆQó\0# Àì‰`Kf`K»ÀüÄ[À¶&`{©*`ÇèIÀî]­€Ýï\0–÷€\0+ý€ÕSK€5°y÷	`—]°«\0ìçã\ZMÏ\0ŽðÀ¡?b€“ÀpØ¿p8ÿ à0pQÿ\0pK=	ðøYðdîx©Þxi¼ò\Z\0^3Àq‘-À\'V	ð¹xàC1\0øèüt4~EB€Z	8Ù}pJ?pê^2 HU	üœNÔœqK\0DÝ²œ›}ˆÎ†ÎÇ¾\0\\‡\0b”«±-@œd >ò\0 ¾´O#.Q˜€„V\Z ¸ÜÜ¸â¦\n¸\"H\0$:ì$F?\0$þ›$ŸùH=s\r\n=HÛ|pýûg@põa7à&mp‹Ú\0ÈµäTnïü\0¸]¨(È¹\0(¸Û(Ôy(\Zz\r(ax\0î9]Ü¿ºp_zPÑÊTü°\0TÁU1l@ÕŸx@õmCÀã/€úˆÀ¤\n !\\hè¿\rhtÂž¥fžM$\0ž—­4£¤€æñÝ€–,[@ûWu\0P\n\0šÏ@ñY\07\0’œ@Zcû@\0j3\0€–\0Ø,\0û\r •Hó\n\0õÂ]\0=”àîÅx\r\0‚wá\0áèw€ÈE»=Èò\0òôÿ=Åä°«\0Eÿ.€r­@ix ƒ\0”7\0”8@wg& ßôàíP\r`dé*à£î`ôo `|µ\00±30ud`ŠÍ\0LëÎ\0¦÷ ß(`À·)mÀâ<`f˜™Y\0üÌú\0˜~˜³*\0,¤”þDí,©Á\0K €%|àïºdÀ¿ý Š·PõÝPuÑ¸ªh?P­Ü¨6T\0ÔÜU\\CÂ\0µ:³ëðo€:F@w!Àõ‘ÙÀõ·^7Ú\07ø@³C@³7W€Ö+À­«Ç;¶å\0w´êwGü\0Zúª\0-ïÏ-{TÖÃ€6Õ ­o3Ð¶Ñ¸Ïêp_€*Ð¡åÐáoÐQ¨	t\\‚.\rw‡CçÎx7 Ë—XàÖ] «Ý_ Ç³ã@Ï­AÀ£ÏÇ®Òú¬ÍúªZ}í©@¿æhà	õÓ@— Tá®\rÿë†¼œ†\Z>†>)†Jõ¡_þ\0Ã¾<†_éžöOƒô€§§¿\0ÏX|žéýŒÊñ\0F§­ž/^8S¼ yŒ]GÆBlq;€ñNËÀxŸb`|xðò–nàU×RàÕtC`bóW`\",\0˜º\nLÖÓ¯aéPS`:²\nxëöO`¶êg`ÎÉ~`®ß ð¶ÿ~`ÞØCàS¥À;í/€þÀø	`ap)°Øy°ôú#à½G#Àû‘ÑÀ²ÖgÀ2Xþà%ð!­XYÿX}o°ºþð±çðq·5ðñøE`müz`­<Xw3ø¬ñ°Iª¾\0ó­«?[-¯[ag/™ÝÀv—ƒ@ìq¸\nˆùbwY\0ñ«¶\0	#™@b>Hšè\0R&\n€T— Ãì ¹åcä\'‰‚õZ@¡ãE øûZ ,ð:Pö·¨¼½Øêì.^vKþ\0»¿ö{¼ÉÀ¾Ì!àÛ™oÀwÅLà0,ø¾yøžhüPù\ZøQEüÈ|üTóøy<8n¨\r—,\'.½NUä¿Îd¿Ù„ð¢€?÷‰?ÏR€?ÉÀ_úÀÙ£o€³oœóÔÀßÎ~À¥Áà¿{2àrá	àÊÁzàÊÊHÅÂ¤Ú©Î^­¢ô‚V½í­¶ƒÔ<öÔ…ê \rë†í7†´¤Ù­aˆ@k÷Ýé´É@hAº¿ôBò@ú²\ZÐfßaÆoQÖiOhË#\"h‹âÈü—ÈBd¡²È;ÚÚ;	ÚvRÚÖ“ÚÖo\rÚ^bÚ1—²Š~ÚÉíÁ`@{?lÙií×€œ,MA‡é ÃR?óe&È\0Y]\0:2ýä\Zèr¹¹”‚ÜÒp wÎ+Ç™u XÐÑà|ÐÑAÞÚª ï÷Á Ÿå>Ÿ¢ä¬äÿyèT\nr)Ï…¸Ô€B®.BÏƒB^m…}*ERZAg9XÐ¹G2Ð9>tÞj=è‚1tá‚/è óí/(–üïÖ\0Šòt),”´tÙÆt¼\rtù_èjÌèêÅPÒårPò9(\r	J×ÌeØê2\\ì@YO€rBìA¹)- Ü7 Û\'‰ ¼Ð <F(¿ýèNïÐ]ßPí,¨\n*þ•‚îRAåÿßãÁžÏ ‡EGA•{«A•Q¯A}CAßoÕ„^Õ^Å€jëü@uÝPƒÆNPyÔ¨]j¤…€š>AÏsU@ÏY§AÍŸÆ@-\ZAmÇ( öçy Wn@€8;ÐbØJÌ@ ó ðä_ÇAøTl‚¯¾B˜ÓAÈ­ï@¨«»A¨¬&V&áÏeƒˆÐtqDªŒ‘7¼‘k÷(½`­¢D“´€˜Ÿ{Alµ§ ¶V4ˆãÞ	âjqo€xù@ügM IŠ=HÚh\0’ÑÕ@òŒEâ:ÔÕýÔ½FÔ·úèuª7èõP#èÎYPÿE¨_1\ZÐZ\Z $€µÂAƒ5AÃDSÐû¹ ÐÈÝË ¯\Z@£Q ñ<hü­;èËÕ$Ð·:4è»ùCÐwî\'ÐÌj#ÐÏ(]Ð\\®hAÏ´¨\rúý-´”¹´TÏýK–Õ>‚–»\0 •\nÐÊS_°Êv6Xe\rVm<^½¾¬vñ=XÝ8¼¦+¼nm9X§\r^¿6¼1&¬o¹l°áxu¼¤\0›„±Àæ‡ÁV­`‹•ðbðÎ]ùà“¥àÝÝ/À–¢£à=ûÖ‚÷Ì€moè‚÷=ëïß}¼(l?| Ù| !|@vìhsì”æ	>òâØÝödƒ=jÁGs^€~¾>~5ìmÜö®¸ö&Äƒ½»ªÁ>!oÀ~%àÁ\'HÞàÝÁþ…¾à s)8(µ¼ç2øŒ[8Bý8²ý\"øìéeðÙ;pTþ 8z§8ú÷$8>~øRD3øŠÉ	pÒÉÕàä¶)pŠš	8e‡œrõ8}ý3púÅ‹àtÂ[p:9	œ?ÎÌ÷g¾#³®ÑÀY/Î€³P‰à,évðÍ‡éà[æàl8;ë-8\'÷:8‡Y	Î}1Î]©\0ßvó à{¡GÀ÷áÁ•ê	àJÇipåk}pÕÊupõ;pím0¸¶Ý\\w[\0®dnH›7ÔâÁOUþ‚Ÿ©ƒŸýæ‚›RÞ€›X±à¦¹Vðó7Zàfã/à–³“à–¨fpkófðËäcà—yýà—’Á: pç[0à¶„ƒÁk®ƒÁï»À¬ó`ØN?0\"¬ŒÄD€‘¯gÁèë/ÁØâh0®ŠÆ¯‹“/S»ëÁ´}Å`ZR	˜±©ÌBƒ™)]`Öä0»nÌ;¥æIO‚ùU`~X(˜Þ<\r\r™¥ü4°tùX°,×mw]IwUý\0w»:€ûþ¾÷;Ø€ûIPðÀózðÛ_Áoÿ¬q—Á#áOÀ(CàÑÛ÷ÁŸ4õÀŸ<±à‰mªà/¡Lð¤\rüõÔð×ùð·gð÷^ø‡J3xæ \0üË=<{žkWÿ}dþû1üÏíø_û?ð?bxYå\nx…¾¢‚)„¨ºhAVÝn†¬’@Vã’!jq~#/ šƒ!ZwaµêÈ:SkˆÎÓó\r*!º³¦Ý9\Zdã¨>Ä ½\0bˆ(„\'ûBLK ¦á\rSùZˆÙÎLˆÙ£)È–G\"È–ê~ˆE<²õ‘6dÒ²KÓ²+âÄ2sÄFÙù¿ëÅ½Öw!vÙ¶}ïú ÿ®…8þì‚8.Õ@œ3m .ëþç÷âÒSqM)€¸¦¶@\\¡á×þvˆ»æQˆGë*ˆvÄ³˜9\n–B¼>ÌBŽ©¿†xßN…ø;ñÉR‡øv¼ƒœý‚œøª9éÓño…øCŸ@üAiÁÐÈ\\È™o Éˆ§\"Hdf$êÃ_Èõ%ÈÐwHlO%$.¢÷é+$>Uríú#HÒÕ\\HªÐ’f½¹~\\r=i$£O¹ñ¤’yüä–ÏÈ-täÖâOH¶V$§º\0r{õyHÞÞ‹ü¥S‚HmÈÝ4*ä.\0)’ï„”<5…”ÄBÊ?C*i§!UÈtÈ#ýUê	äñƒçZ¤.è3¤îö-H}áIHC@	¤!yNT‡4WÐ!/‚¶A^ÔÕAÚ&¢ /›ðŽÿ{Ð9’¸$@€œýý	¨q\'žáAè¥@Ð!ÒeÅæ\r„\ZÝ	¡‹€0îeAØÞUÎÍQ÷œ-„o*„ð¯k@DiG RÛˆÔåDé…ÈÆÊ!Ê‘wî‹Þ›,Hß¥s7ù÷v@ÈˆÅ0däòA·2ºM{í>ùt÷\ZdLCóäB&Wl Sw} _O´A¦l…üð%AfL·@~öªC~å ¿*Ç!³à9}3ÈÂz+ÈïwG!½ Ë¸åË!åiÈòb)dEUQ@U¶l„ªÄ”@U< ªc j×f¡êƒPõl¨æðvèÚ§PíöV¨Ž~T‡e]ïóª·%ªg[Õ÷ÉƒnvH„n®@\r÷äC·ÜnyIƒšgî€šäA·Î\'@·m—A·¥ùA·ý9Ý¾q+t××)¨•Ö)¨Õò¨µe,Ôúøv¨uñ>¨5\nµùûºg[tïŒ?ÔvW7Ô¶èÔÎìÔîþ[è¾­åÐ}B¨}¦ô€Í*¨ã]G¨KÈ¨Ë+¨Óz¤ØêZÚu¡´Ð£ëb GCÒ ÇtÐc¯@½c-¡Þ¹ÆPŸ».PßgfP¿“›¡\'ýNAOß@ýŸf@ýß‹ !G ¡y#ÐÐ‡» ao¼¡áÐ36NÐ³K[ çlg¡ÑzCÐhOô|²\n4Æ=\ZãYýì½ˆaA/’Bãz·Cãû‰Ð„Ñ$èå–^è•ÕèÕ¼1hâB+ôZøôZâ4i÷[hRáhrÈ7hê‹(h\Z¼š~Îš½~	½i€ÞìÇAsö·Co;@óÖ\n ¼Jè]­Iha½´ÈcZì¦€–<|-yÔ-i[½ß¸-Ÿr‡>j†V¦žVfB«£Ðj²´Fÿ\"´æß}hm]´öU=´îv´¿Ú\0Ú	mdNAŸ~œ‡>·5€>Ï)„6#„Ð•Lh‹¶\r´¥3úâÚz—m³ùmž‡¶ß/†v¸ŽC;.ì„v¦p¡ÐÕ%PØ…ŸPøÈc(*ã£B±y>P\\Àk(ù¾7”zi\0JýpJ?uÊˆˆ‚²{B9ÞæP^ù~(ïy\rT¨¾Z€Š\\ âæPñg\'¨4r*ûb•_ßUÞA»¢c ÝÍÐþAôÝ•4èåthˆN\\9_ýhÕ\ným[	…ŽUB¿DC\'5;¡“ZvÐÉ,\0trþ*ôëã2è÷5EÐ÷ó¡³ãO¡sÕžÐù}; óñ¡‹èâ	èâ\\t©Äº4Ê†.}†.ýz]fäAWú-`ªhLuü+LuÅ¦Þü¦¡±\r¦­\n[ãù¦áÓ¦vÃ´?Þiÿš‡­û\r[,¶~Ñ¦ç°¦ç³¦þfÐu¶éè[˜‘ão˜ñs\0ÌÄã*Ì<î5Ìüºfžá³HƒmËÛÛE‚YÆýYÓaVmßa6ú¦0›ga{Ò°=ì`{]E°½äk0ÛûŸ`vàØ~§B˜ýƒ˜=NæÐ\\;øæ)ìø=ìðšlØaÃxØañ˜³Z ÌyDæ¢­sá­idÀ\\qÚ0×¯æ07O˜ûƒ³0È˜çrìØ¿.ØqÇ0ß¿a\'º­`þX€G8,HcâúRÓµ›‡…íw†¾Ä€9tQ¹1Q‹ô¹;[²‹:È†›0‡]HÖ„ÅéÅTäÃbêÁ.\nÎÁâ»ÃañSË°„¼ë°+;ÞÃUæ`‰æÇa×vmƒ]‹:»öõ.,©K=6Ëxã»ñ¶v³=–s²v»ª–›»ãŽ†ÝA­ƒ´°a¨vXÁÇµ°»iPØ]¾\r¬øI!¬d­-¬tÊ\rvo=\rVvÁVÎÛ	{àV	ó…UiØÂÙ`j`ØÀj@A°úy}Xƒï\ZXÃÒNØÓ¸XØÓ‡\r°ç¶°ç!‘°f–¬e}¬õ‰\ZìeöAØËªÐŽ\0%ða šiòX£ÿ†¹~†Ý †á¶èÂðZ†0üK1®FÊ…QL«a”`ô·¯`ŒÏ`Œä¯0¦æuóv1ŒÝ×~<	¾…ÉÎSa²Ó0â1Lé¹S.ß„u—Áº`}›°¾×i°×Î¯aý›¼aýÿÖÃ˜7`ƒ¯ZaCÔØ°)\röÞ46²7öqÕ>ØèquØèe8l”Ùûä™û|­6ç\r¯\\›æÀ¾¦Â~<ƒý¨ûõ›}][Ü7û§êûW`\0[6”ÂV†¨pÕðRøjcc¸fe\\ëÐI¸Ö-\0|mf*\\;×þz\0®Sl_Ÿ°®{<®ç,ƒ8§Ã\rÞ‡oZ_7‰ƒÂM]Á·avÀ·;aáÛ?Àw0WÁwE5Á÷Ô0á{j}à{\Z0ð=ï^ÀíüßÀíB¿Â÷í°ƒï_ßî‡ïgªÁíMð	ŽpÓWðƒîpÇéY¸So&üpP/Ü…ó\nî\"m€Éý\rwo¢Â=epÏÖµð£ë¸ðcwâáÞ«0ðV_à\'|ŸÀOjÂOy†Ÿz½8íð¿Tx@a<ÐÒ˜zX]	z\nÉt‡‡`øð/êð?½ð0¾fþp\0~º-\r~æp<Òp~þÝ,üBã/xŒf<&Ìós/<þÈ<>^~	>\nO˜¬‚_sÁ“ínÁSF¡ð4SwxúŸøõd<Có-<cóIxF›=<£ã9<c¶~£%ž¹–¿)p†gƒá9çXðÛ+nð¼îHøuOáw‚ßÃïä¿…ß!ÃïH+à:Rxã=x‘º-¼øüCø=kUxÙ­óð²G»ác0øÃ¼òûAxå/{xmçAx]E=¼A‡7„7ÔÃð§~4xSW	ü¹î*øóÞxKD3¼åa\n¼µØÞ¶½Þ^ö\ZÞ)Û®5€ƒr˜pðÍ{pè)ÆO‚#š4áØ;p¼ NHÃ‰ŠkpŠœÊÿ§=N„3RöÃY»èpkœ]\'„sÈ#p~ÓY8_þ.°ÃE†Gáb„\\b•—zµÁeNÀå&p¹b/\\Á…+XKpe¢¼;ÛÞ÷8þ:£\0ÞŸ­ëoõ¿Dø°E\0|ç	AÁ?œušî:ÃGkðO÷ÿÀ?=ü3rƒm„\r¶ÀÇ†´áã[¶ÁÇ	>ð/±‰ð/É*ð/•Öð)‹Ûð©q\røôÖUðéFð™“ð9»yøÜƒøÂW0üwS=ü÷‹õðß¿á\n¦àÆýàKÖ5ð°BÕ1¡êt	¡ÆÌChì}€Ð<‚@¬ñt@¬u{ƒX{Î¡³µ¡ûR±Ió\Zb“€0\0\"Lyº3ÓL„ù¾I„y¦aþ\r±³c±ûj%ÂÒ{aYÌ@XÅ€Vƒók,±7ò!Â®]a7t±Ï$±ï¶&bf±ÿ0±ÿØ0ÂþÝ2âÀ\nÂÁºá°ÿÂÑ±áø8qh“Â	b‹8\\¬p9¼€p™a#\\=ÇnèËw”áa¹áQ1ðÀ?Bxp#G#\ZÇ:þ ŽŸ_ðî\\AøØ!üMŒþ´	„¿è7\"@’‰™Ã!Â9!Â¡[§§#\"v\"ÎVT ÎBbÑë1™ˆÄDÜWD¼×FD|+\r‘pu‘v	q¥î-âêz)\"Qu\nqm8‘tö\n\"5h‘ZÖƒ¸n›Œ¸Þh€ÈïDduÅ\"n&È·W#²ã¯#²ñeˆ«hDÎ¾\ZDŽãSDîYMDþÁ>DÁÏVDÑß!Dqÿ\n¢dÍFDÉÌâ¾ÞEÄ}Y¢ÜU‚(¿Ø‚(©DTD#*î=BT°;vnB<@¯ L•ç#UÖ~ˆêCïžG<ö!jí<O®e!žü*B<Ýú	Ñävñüê¢uG!¢øÑb…x¹Œx9uÑ®6‚h‡‡\":ž|Ct0^#^MZ#€\\¼#fBÀ§ˆžÔi•C eéŒG³2‰À¿“#ˆö`‘5Ž ×ìGP\"Õ¬‚U~ÁB|D°äkœÉ]îm‚+ÎEð(Xß ÁÏXä«#„¡Ï1„0l!Ì<‚ôu#¤Ì\'ÙÖÛù¼BËF(ÈG]™NˆT¢w¦Ñ7ž…èw:„èŸ,A¼õƒ\"†ìÝC=Ä{fbpñ!Ó\nñ±:1:IGL¬­CLJ_±ùˆ¯ÓÔ»ˆéõˆŸ› ˆ_Îï¿žÅ\"~½Eü¦\"~\r\r fïas4ÄÜ×}ˆùÍ¿?x ~O¸!ó[«Û+ü¤ÊF#¤šò;RÓ#©uÈ©•æƒ\\»Ù	¹Ö1\Z©Ów\Z©G)A\Zp©H#Ÿe¤…ƒrt¹sür÷¢ÒæÂuäÞ\n&roOÒvwÒî\0iç?ƒ´ëAî;Gîß¾¹_‰´÷½ˆ´ #àH§Ù<¤óÂ¤‹¯òˆK-ÒíWÒ#†‹ôø=<æ>„<ÎWGÿŽ@_.Ez×+‘>³¯‘¾Ö(¤ïÇ¤ï¯È“Û½\'Û¢Cd°\"²>\Zú&yºáòŒ†òÌè+däyîíd´yÎ@Æ¥¡‘q7cñ™ãÈøÇeÈK6È+3ýÈ«‰-=ÈkúdÒ¹$d²¿;2¹»™¼ø™\n3B¦1ìéÁ½Èë‘Èë3+ÈÛ3‘7‘™Wû‘Y \näÍ?d¶Ígd®œ‹¼Ý…Ìß¡…Ì¯?ŒÌo9…,x¯‡,4öB]9ƒ,vžG–æÆ Kï®A–Ó½‘†1ÿ{|ð×YiR†||EÖ©ø ëë\rþ†ÈÆy)òyg5²9}ÙÜš‹l]\ZB¶ÍA¾üÛl­C¶C¿\"_¦\"{J€àHp^RBB(\"$4ë&ö¬\0	CÔ#*NHäO$Æå*ÇEbrL›)$½IŒd|¼ŽdîA²«m‘œ>Hþåv¤8h	)¾ì†<”\0Þ ¥—3‘ÒÜ‡Hií.¤”†”~úƒ”‡Ì#åŠ|¤©ìHBvyå »ã\n¯¯‘ýÎ‘Èº1rD¾soA¾×\0 Gÿ?ãSÜIä¸ƒrüâMä„§ù¥ŠœDïANE\"¿îÈEN×\"gÎs‘?\rò?ãàÈß_1ÈÅž%äßÈ1(ÕK”êÇ\r¨Uj§P«<QjA1(u¥qN†ÒHWCi®¶Bi¢•¨µ§ýPkÙ‹(3F(GÛPë/C­…Z?CmÈ¯CéìBm4ý„28MGmÒùŒÚôÔe|x5Ê8ÆezèjË!Ô–ûI(}m”Å¾ç¨Ì¿¨]/ÛPÖù×QÖ2C”Í»XÔž¨u¨}«•¨}Þ£(G¶êPãêÐÜ\0êHI=êH¿ÊÕú;ÊídÊ-†rëoGy3QíPÇÀ(ß\'Q\'æ&Q§ÞDù{†ò+P©6¨à£GP!þ‰¨Œ*<\'>?„:íËEñy:Sµ	u¦Á±|\ryËu®/·}Ç§…Š»÷\r÷Åu‰¸\r•½ý;P—=V¡.wËPW¢MPWËÅ¨kÚ£¨”ÒT\ZA\r•öËuý†*ƒõ•éñ•uæ2êfd$êvÝ?Tžõ-T>î2*ŸÞ‰ºóµUtoUìë*®_A•ù Ê.´ Ê·¨ ÊO¡P}e¨›ŒPZ1¨‡kÜP!“¨Jv	ª:2UÝ@=n.DÕlÐ@ÕGÕ´ë£jK j•~¨zH)êÉÞpÔW$ªÁ›ƒjø†jÔ¼Šzºaê)´\nõt`õlÓqTÓøê¹nª»ˆjÑà¢ZôP-ƒ[PmŽRTuÕ![B½Ê¾ŠêÜ´€«¢@GƒQ {Z‚ê à:ÏPð‰\0ÂR\r…6mCáÆBPxÕQþ¨>\nÿû!Š D€(’KŠ¼1Eí@Qg×£è‘PôgpsÛE«0\0Åâ>Eñ,> O\\PÂ\n\'”p~%:±%¾§@‰·¢dŠ”\\¹¥ˆè@)À6(%ªÕÕØ‡êâ<Du{ÁQ½âM¨>\Zõ&´õæô$ª_«5 Vƒ\ZPB\rnëA\r&ÑPƒÍY¨w÷H¨w¿ªQï²QïcsQï™P£:¨Ï•|Ôça jŒ¾€\ZW±A}‘£¦rQßT³PßÓ7£fê§P¿â™¨_	4Ô¬6õ»uõ\'(	µt.µ¼n/j¥åZ%Í­‚^B«Z%¢Wq˜hu©.Zýï{´æîhMËè5•ÇÑkí‚Ðk_¼Ak»|Fë@Ñë¿½Bo:R†Þ,¢¡Žk£¦ß¢=Ñ&¸:´éª´iâ=´™AÚ¬Ú½åP	Ú|½mž3…6/«G[L%¡·®±Do·}ˆÞþ&½#ë(zç]?ô®÷ôîÂ‡è=J9zogz/é:ÚÎözÿãmè-pôoh‡_Ãh§x5ôaì5´óÚ»h—ô‘±5è#Ë\0´«¡5ÚÕ+íÖd‚ö ¡è &G{=Ä }©h?×Tô‰pôI\'\"úTv8úÔÔ´ÿúX´ÿ#:p¬$ CFóÐaÏÐ§µ5Ñ§ÿø¡#‹ÂÑç\n7¢£¯½BGÿ3C_pËDÇšF\'è­B\'üÄ ¯4nC_i\ZA_£‹¿¡Ñ§ÐIQŽè¤Û…è¤ÅDtZûNt:¹¾Gg¨ŸFgâ^ ož@ßìÚ†Î@gcÐ¹¶|tþÃ3è;mbtâ$º(L]T\Z‚¾W&@—Oy¡ò¤è*ÿ6tý\0ú(]]ÉB?Þ-G?¾>‡®YLG×Ÿ)E?QœA?«1C?¿þÝÜ A·¨ÜF¿8ƒn¤¡_-|GQëÐÀÓh°ÛU4ü‘\r¯¹ŒFj8¡‘ùÝh4\r‰Æ4=@ã4¼Ð¸Ãýh£Mð\ZC“ÞoCSÒo éÐ4ëy/š{ºÍ_þŽ\0êÑ‚·¯ÑBÐ(Z¤ú?Æ3´¸3\n-9Ùƒ–m*D+X{ÐÊP-´’õÝÅþŒî.Dw·¢Ð=‹zèÞÐ}¡èþ“›Ðo‘tô»…!ôû0#ô£ÍèÏö£?×ÑÐcöÙè1OôøN\rô„Éiô 5zJ¥=•SƒžzˆD¸„þÖ‹FÏ8îAÿ\\Aÿ\ZBÏ¢¡ç||ÑsuNèùŒèEƒ½èE—ô¿É+è•Öƒ•0/ÌªcZ˜Õg¶`ÔìäõDcŒzcfM£Õ~³Ö´\r£]ïÑ~–„Y—)Çè¬#cÖŸ	Æ¬ûˆ1¨«Ál\nÓÂlŠYÙ”ô³Y÷fsn0ÆøU7ÆÔï7fË`<ÆÜ1\Zcî…Ù\Z{³UP±4ÌÄX&\\ÅX²?`¬b¢1V\\ fE1Æö*³Ï³\Z³Ÿ›‰±¯ÔÃ}Š90f‰qPÄ8ìÁ8ââ1‡R–1‡ˆg4ÆùÇmŒ‹ÅŒËi5Ì‘ðEŒ«q-ÆÕ²ã~HŽñŽñøæƒ9jdˆ9Vë‹9ö7\ZsÜosœðã£›‡ñ±¹ññÿ‹ñM<ˆñ³óÂø]0Åè0ñÍ˜ÀŸ™˜àÏÉ˜ÐÚL˜ÅLxó^L8ø-æö&¢æ&bå>&úñ&Ìyl\0æBŸ&F¯[cŠ‰[·“((Å\\S?ƒ¹ÖŠI:þ“|,“…Ä¤haÒm1éÉÇ1U17úã0™z{07o217ÇÏc²‹bòwÌb\n‘L!ú¦‚Ám¿ƒ)ÚñSÜ‡Ä”ä¶aJª1e1—0e¿¤˜òï0ÐVÌƒèÌávLå–O˜*%\nóÈ‰yÄ&c-_Æ<>kŽ©1èÄÔ,cjîýÅ4ìÚ‡i¦bžyÿÁ4ïïÄ¼¸ùÓvÝóò`9¦]\'ÓN;„y¾xDÀ\0Ð5àÂDï;rzééÅ@CL10n59ž…AyÅcP^T,	ƒŠß…A«üŸð–&lƒùÜŠÁüþ…Áùbp9ÓÜ†`ðCŠ»‹¡ôlÆÐ_`1Ì-NA†OëÇð‘ã{Œ¢ÀÈ’0²Å;¹à;¦ëÂkÌë½y˜×M+˜I8f8Ò3üa7æ#’Ž=ˆù„Ø€™ÐûˆùBŸÅLžý™D»c¦ò]0S=˜¯îN˜éÌôœ\næ@Šùu„ùõðf®‡€Yð¨Âüù9YüÛƒYn\'`–¶˜å7w0+à	¬êùµØU°«ÃS±êOÜ°\Zx¬æqvÍ±CØµ}&XíÍ#Xí–Øõ\rXýšOØMœl¬¡°k¼A5.:5þ²‚5EÅbÍ^øcÍscÍÑ]X¿&ì¶ÊNìöØïØäËØ]·z°VK°Ö»†°Ö‰NXëd¬d-Öæ#»¯[ŽÝo†Ý?¬…=`ÁÁ8æ†=è´„=xí:ö`÷mìÁÞ3ØÃy™Xç´:¬3ü1Ö…ûëz_„õÌ\rÅÓ¾Ž=æð{,â\"öø9öø²:Ö§Ž=Æž¨²Æžœ2Çžê´Çúw-b`Câ—±¡ê-Ø0\Z6,€\rÃ´cÏ8&b#œl°½%Øs÷8ØsÐ$lô	ö¢bÇ-À^òÂ^J¸ŽMH3Ä^9¬‹½JrÂ^ËXƒMúmŽM¾ëŠM.ý†M{í½¾ð\Z›Ñ–½1p›Y–ÍécsóK°¹m¯°¹ÌzìmÎUl^änlþ°1ö¿[è-j»ˆ-Âa±÷Ö`ï/aËt>cËÜÍ°åyll9P†­È*Å>(½}¸~[i!ÁV%?Æ>Þ5­W_­‚°ÏÈ!Øç×°Ï³‚°-¦óØ–Ì»ØV|lke<¶­ÑûÒáöeÂKìKðì«Nc,@ohõtzŽcb¡‡R±PŸßXXüf,~‹Ê]ƒEÉwa±/Ë°XKHø‹%ÆÕc‰üXÒâ0–\"ðÅÒÿÄÒ~°t\r,ã~–5¼Ëm5Áò¼j°ü°f,ð	+¼Ÿ‰ðÁŠ>ÎcÅ	_°RM¬ôª\ZVö)+â‚•‹ê±Šðh¬QŽUÞ6Æ*;Ø®Ò9lwÄlwc\'¶g~Ûwàöõ1v€$Å0¦±&öí½0ìÛì»15ìÐØìûsØ‘vä¹\nöã™FìÇÏ=ØQƒ5Ø‰«°_©Ø¯t°ÓÇ*±?×ýÄþÄ+°sÓ³ØßVØE‘5öoÓì¿4uì¿‡bìò‘³Øå!ì\nÀ§R9ˆSÕÚ‚S}”Œ[e3ŽS÷lÀi|JÅ­y=ƒ[{ò-NûËœŽX€[¯g[·€[OHÂé”âô(HÜÆ5Ù¸s†8ý«ßq†N`œqg+ÎDß·EŒÛ¢¯ŠÛŠÅã¶’Öà¶_QÃm¯ãàvcq»…q–o%8«oWqÖ	wqÖb/œ\rŠÛsø8n×n_®>Îq³)îÐÎi;w¸î!Îùi:îˆ^.îÈÞ[¸ã‹é8ï}»qÞÇ÷á|/ã|¹8¿‘ƒ¸“eopþò\\€ö.\\\0*ø„\">Æ	ÃqÁ=wq¡wvãB;2paz@Üi««¸3,\\Ô¦\\t@\'î|Pî|§îüdî‚Ä“¯ÀÅ­nÁ]vÅ]Î[»š®ƒKlvÁ]»ÿ—l¤KNKÂ%ßû…K±ØŽKßx—^—‚KÞ»~ýîÆ`.2†»Y¹	—Ýw—ëïË7µÆåÛÂåGjá\nŸ˜áŠ®ãJ&ºpe¾©¸²;\n\\Å–6Üƒ£TÜƒSûp½Vá*Oãª´}q5öáêV©ãê±½¸\'ãú¸†m\\ca7®ÆÀ52†qÏoÊp-†0\\Ë®\\^÷â×7\\ëÚ^\\›ýQ\\›d\Z÷íëmÅuÞpÃRp€R(Hdá ÇpP‹ý8è«,bæ!Õ?‹C¨Åa–Þá(QÇq”¼“8êQŽ¾×ÇØîcZPpÌ”Fs1ÇÒ[Â±6ÂñÓÞãøÅpüÇN8K=N,]ƒ“(<qÝn!¸n+\\wÒ3\\Ïd\r®÷×(®_á†ë_šÂ½=t÷–<ƒ=ÈÀkãÆdþ¸qv8n|…Ž›è}ˆûr&÷†Æ}‘gà¾>íÁMŸ£â¦o\\Á}»2„›ùÆýTGã~ºGà~F¸ã~æYà~\nîáf-öáf/Uáæ¢p¿p‹&c¸Å}Ë¸Å‡†¸¥?Ïp+Òp>x•2^eÑ¯js¯–û\n¯6¡‚×°ÆkNÂkâÇðk.¥âµ66âµ §ñZó0üº€0üú,¼M!~S×#üætÞÐû(Þèè ÞÈOo¶†Œ7›câ·4ÞÃ›ï”áÍà·nÛˆß*Dá·{Fà·3­ð;4Tð;²eø]Ž_ñ»5CðVâ\n¼¡\nÞ†Ÿ„ß“¸Œ·­5Ä;TUàþÆ;ùXâ]tŽâä|À».çàÝÎ“ñn#½x?ñžžø£óx¯ójx¯IGüñƒx¯8¼ÏñN¼¯Ðb]þ¤ÖAüÉÝFø“ø-ø€õ=ø Ó)|Ðð-|ðþ<|ð]|èí%|˜ª->ìe	þô\røÓagñ§ÉX|‰<óµf>êeþÜ|ô¶\nüâ(þbâN|ÜN>Î5© 	Ÿ°?Ÿ½\ZŸð	+)øË§á¯X|Ç_ñeá“L\\ðÉ‡QøG|†ÀŸE·Äçtæàs¤©ÿ«Æç:­Çç\ràÀWñw\'œðEQMøâ¦|i†þÞÏBü}ý›øòàz|ùÝ|ÅY|ÕŽ/ø*—\n|•k&¾\n†ÆW	ÿàÝ~ƒ¯ž–àkË3ñu^Qø:˜¾®…o¤¼À72Ÿáy–ø§§jðOÃKñOÛ øÖ—›ñmcªø¶Ÿ^ø—¶øÎ	3<À*Üm‡‡ÞâaaÍxD¤ÈÁ#Ú¶âQ‰cxtÉ4ž°\'\rOjWÇ“ÏlÁSUÐxêžP<õ/OÓwÆÓ|âé©-xúJ7žY‹güPâ9vx^À¼ÙŠ÷,ã¥N~x)ÔéžxÙ[^Áçã»2—ñÝNã{vrð=®Ÿñ=c%ø^p1þÍ>w|ñ-ü€›þ-ïþíküàöÛøÁá\Zü°w\'þýê{ø‘Õ?ñ#Åbü\'ÝƒøÏY±øÏ—ðãßñçéø/‡žâ\'S·á§.oÂ]-ÁOÏ–â¿ÀÐÅ¤†ÿQu?“}?Óú¿Pp\Z¿ ±Áÿñ}‚_ŒsÆÿµÍÃÿÅ]Æÿý‰_ùOPybJP}\ZBP3t\'¨+a-Ûs„µ—âk“l	ÚŸ?Ö8AX¿ö!aCÐ=ÿ› ›ÖDÐÍÛBÐ3ôÞi6,ôAÉý™,Â¦Û@Âæü·Ãu±ÃôWÃÜi‚Ñš!‚Ña‚±ù‚1áÁxìÁdE…°Å1˜°¥æ2ÁâV\"aÇêiÂîÌ‚õƒÂžƒž„=•I»O†ûø‚=ªšpÀ@…àpƒApƒ	ß¢´‡S?\\Ýþ÷ò!ÁÝfÁËÆ‡àåÓKðJi\'[È$_s˜p|0‹àsàÁ§f€à;\ZEðëN#œØŸE8uä!¨µ‡læCÝ•BWN›æNçêNÏ¼\'œÙø‡pf®åºH8¯Õ@8[BˆBb­G±ˆ„‹µ<ÂÅº(B¼)!~4˜p	dJ¸«F¸ZSK¸ºKHÞãIH}2EH‹YG¸þ<¡\ZKÈØ^O¸±$#dVœ\'d\"b7¿&d¯9@È~¾ÝfEÈ)8OÈó_CÈL\'Ü1A\nwž&³ÅKxBÉ¥ï„RBé-6áÞ?Âýž9B™ÉKBÙ®BY:¡‚D¨è!T,~$<8ø“P¥jBxt$ˆð8>–P«5K¨ÍßD¨wª\"<{J\"¼((\'´î¦Ú·ÚÜ«.:ƒ	„ŽÏ„W—v\0ƒêÀâQ(&€o	à‹C°ì	À#@>dà?-è_Ö< €Ÿ›\'SþˆíMòösÊj=ížãE`®Ë%°Êk	ì‡šŽú g×Gàã¶„ÖC!K› ~ƒ%H«ï¤½û	2OB×ÃÛ„n+¡s†ÐãÂ!ô®…zO&zS>ÞL~%ô¯ùH¬M%¼{•JÚDªýFVÞ/‹	}“	¯IŸÖ<&|\nR\'|®ñ\"Œ\'¨&»ûSw	SÌ­„©®W„iÏ_„ïÑ„ïwæR\n	ó\rÞ„« Â¢Æ_Â_³K„¿iz„ÿºØ„åÜß„•¥)âªkAÄU%Ç‰kôŠ‰kô_µDp¢vc\rqý^=â‹hâ®qÃT\nQ7{€¨~ˆ¸±TN4Hb\ržV7ú\r¯x\ZoˆÆžµDs;¢™Û¢ÙÍ1¢ÙŠ¸µê\ZqûšâöSsDË<9Ñ{›hÕjJ´öS!Úxo#îÍ&î-_O´Þ&ÚÙ#‰všD»†&â¾OáDû½ŽDû©âŸ3Ä³‰W›~K%:É$:ÆëºWˆÎ“»‰n¾·‰názD·6ÑózÑ[œè]áJô†[}qÁÄSIÄ\0ÛwÄ\0øZbàX%1¨Ü‹ÄýN‰ï †ôl!†žŽ#†^Ö#Fª}\'FAöcÚˆ1ÓÄ‹®ºÄø$âå¤+Ä+ë…Äk€%b’m:1‰$¦<G¯Ã®3i­Ä›/]ˆ·p¯‰ÙîÏ‰9ÉÍÄœº?Ä\\“‹ÄÜ>âmÍ¿ÄÛ{ÑÄ‚kêÄ»vFÄbËÄRß6bivñÞD6ñÞ7ñá†)âC‹UÄ‡Þ6ÄGÄ:ôb]ÿ6býþGÄúã\'ˆõÍ¡Äzé$ñÉ\'âÓ+ÄgîgˆÏ\n¡ÄgMë‰M&pbÓ[b“ÏbÓï½Ä÷<ˆ/Z#‰/¯©ÛëŽÛ{Òˆ.³ÄôEâ«ì³Dõ2\"ºB„	‰PÞk\"ìÄF\"<èùAÄMkñ·´ˆDÝoD2p7‘üÎ‚ÈØfMd1‰Ìƒ7ˆLç.\"óå3\"³w’ÈÒ¼BdA	DV÷n\"gú‘Û¯IäþúE–XÅÓo‰’\rD©ç=¢´·ž(ËÓ&Ê×»’çˆ]Ü^b7=ˆØÛ=Mì£È‰¯áXâ[s7â;“gÄwADâ»¤Zâ;É(q\\B¾‘G|__O¹Lü@¿Düü!–øyf#qÌ§ž8ÙâNœzu‹ø•¼“8M¹Lü¶Y@ü¾Ð@œ9MœéK&þ÷ÿ$ÎÕl%Îoô\".ÜÌ$.üûJü3<H\\<VG\\d´ÿnýIü[FüÛ²ŸøïG\ZñßoMâr›¤Å“TâHj\Zú$µW9$u•õ$õ\'Þ$>)I£?’¤i]HÒfì é3H:ŒIë_%m0.\"mHº?<HÍþ6&î!mš¢’6òH†µOH†BG’Q”dbgO2ÁÞ%™>¼@2Åì!™E®&mÉÏ$™{Y“ÌÃ¯,n–‘¶t‘v?ºH²4í#YéÜ!YÑ…$kó{$›Þ^Òþq*Éqú éP\0št˜®E:¬ø@r¾…&¹l>Fr1õ#yT“<@kI>«}H>¿E$ŸÅ\"’ï±l’ïøk’ß-$¿¤SëÖ“N…ZÎƒIàvRpÅ/Rhx\n)´Ä™Ú3@\nC’NûÏ‘\"6:\"\"ÕHg½IçõŽÎƒ_‘.ÌKI1GÏ“bžÓI±õ`Rt\')þA:)ÜDJ(¾DJ #]±÷!]]ŸCJŒJ!]{FJÊ™%eD˜’23\rIYHY<I·*³HÙŽ\nRÎD\n)—äEºíUIÊÓÝK*Ró#•D“J¶‘J–žîï;E*ó8Cª8ó›T¹Ù‚TÉ#Uõ›•-jTIµS§I\rí-¤Æ·÷IO[–HÍæ<Ò‹o2R«hŽÔf­Kj³¿Ejß`Nj7ºDjßGjÛ“:´O“:ÞÆ:†ï‘^¹i’^ýê\'u6>\'u¾°!LŒH€V%	øá>	|‹Og«‘À¯·“ ŸgIÐÿ{	{ƒ$Á¼#!³$äu7*.š„¶M%¡Ï·“ÐóOHx½Lþj ‰ˆ(\'‘~z“ÈÆ–$rÈõ‚\r‰¶q‰YåHb]‡’8WIœ7&$žÁ@âë,“øÛI‚«oHÂf$I´ê/I\\qŒ$ÜE’©úä	I!ÿBR^0$)™¶$åÀmRINêÞöÔóšMêY#\r¥Ú“†Øµ¤¡Þ0ÒûžO¤`1éãèGÒ§ŒÒøªó¤ñþ\nÒ—»i¤¯Û¾’¾4HßúŒHß7óI?·ß\"ýêÜKš+<Cšëÿ@šßOZXÝMZÈê\'-@ú·Ç´|0ƒ¬&«t+È«íÉ«‹Ž“Wÿœ&«Eë’ÕÃž“Õ¿Y‘5ÔN’54´ÉZÃOÉZ¿gÉk\0È:f~dVòú³®ä\ryÈºšt²þ½-d/ySÞ Ù¨ÅlDâ’³É&!ÏÈ&“ždS^\0ÙôÝ:²YVÙ<ç\nyëfò¶8còvÙGòµ\"òÎásäÝ÷È–§.‘-‹ÊÉV9²!…lM¼B¶–U‘­ÿ@È6‘wÉ{aåd[\rÙnÛ*²-™l×!#ï×™%ïç™íßÉEAäƒ‡Þ“^\";ît&;*ÈGJ×“ÝÖÎ’Ý†uÈî7Àä£CGÈG¨’Ý9Nö†›“½ÆdßšçäVx²À)r h59ðÓMr“„³\"õe’ƒO:ƒ‰yä˜9Ô¥’vªîpŠ|:Ð‡|úþZòizùŒ±	ùì‰µä¨Éç.§“Ïÿ!_(‘cþ™ãò^’ã‡ÓÉ—Xä+Øò•Ïä«¥tòÕçKäk·UÉÉ·~‘“+Þ“SôšÈ©flrúzrº+9ÝW“œ>òœþÅ‡|½*ƒ|ýQ79ãj/9ƒìK¾Ð!gÆ_#g>„’ož½KÎþw›œó¨œœ°@Î­}AÎ;ÜNÎ£ä‘ó=$ß½jC.,É&V-äÂ÷\"rÑÅyrWJ.ÞÓN.Ý­G.\r¼A¾o{‡\\æ:E._çN./X!?\0= ?¬1!Wöß!W{ÃÈÕéäÇ÷É5¿^kµ‘ë®áÈõD¹žD~Z2K~&R#7 È/|[u†È­gÉmºWÉm·òÉmÓä—î]ävCrÇ:ùÕy4Ø–@Õ\\$C”D2d€@†ÆÓÈÐ10¦ú‰Œh½HÆVµ“qoÉä;2qŸ=™TÐD&#^‘)&Éôö82&3x¶dvû;2çˆ5™óõY°E—,<˜,,‹\"‹cÈbïÍd‰æYrÿYz3€,‹V!ËÉZä®±Jr)Üü›üH&”f‘ß‘JÈC~EäïäQ³,òg×»ä/‰Ýä/CÁäÉò”³ù«×sò{`òæ\nò3ä­ëÉ?È?6¢®“m\"ÿ\\l!Ï~úBž<DþE^Z“N^zx€üwQAQÕQ§¬Ò9LYµa‰²êš²ÚKQÛ€¦h¼Ÿ¥hüdR4÷ß¡hÒ‰”5R2eÍ#-ÕZŠ–Ôž¢ûª‰¢÷’NÑùC1hÌ£@ßR\"(›´S6CöR6c)›gŽRŒ¯|¡˜¸o¦˜L0)¦u)¦ì(¦òg3½!ŠÅe[ÀmÊn/#Š¥OÅ²\nF±ÞA±vò¤XWGPléRlÐ”}z(ûn(ûa”ý¡G(öf”Þç(ˆG)A)Žæ$Ê¡/)‡ ±0åHógÊJ)Å­4ˆâÞð‡â¹;ˆâåïEñ:—M9¶³r¼%ƒâGÓ£œ,âP¤0JÀû½”Ð?O)aM”3”È“µ”³¡­”ó«R)±Q.”8•û”8F%!N“’0žrYc†rÙO¹ü ƒr¹\'…råhåJÌÊU7kÊÕÎlÊUøJbá(%±HIæ·RR>úQÒÌïPÒ*¶PÒ8”ô7JÆYJÆ“\0JÆÐvJ¦o\'%óŽ’)½L¹Éï¢Üêœ¦ä…’(yÏT)w>q)c”»7Qî>ÝF¹;ÐH)Œ{L)2Ð ð£”x(÷m](÷¿ØQÊAJ¥k5¥Zý6¥Ú|ŽòX/ŽòI©ë‹ Ô)\rö[)O;)Ïâ])MÆé”&¯fJò$åùÁÊó\\<åùýiJ³&ŠÒ¢SAy!²§´é0(/Š(Ž/(àuYpý LM¥@¶ÆS —Õ)°ö}~%€‚¨k£ Ö}§ â·P0Ng)ØLË@Rð%ç)„\na;B²ÙJ!k ÷fP¨[7PhÅ-†Õ\n{å\r…»ÍŸÂM«¦pß7Rxû‡(¼¤{Á•QŠ`é0Et¹\"m?I‘þ¾D‘yRä=0JÏÅ6J¯ç¥7÷0¥—Oy]’A8~Œ2´Dø ¼¢PÞý¤¼ËfSÞÀ(#g²)#7ó)ö9PFÏ¥|¾±…òYlJ_u–21bKù²L¢LuÞ§L¢(Óv¶”éÃ8Ê÷ZÊwÊcÊÏMu”ŸÞå”Ù”,Êü1cÊBÇÊïôJÊâU=ÊR‡1eÅJYùRAUë?IÕl‰¤jNRµ¢V¨Z}0êZs	U;Ã•ª3ºŸºáa;U÷àU÷Á\nUïƒU?Ï„j°!‹j\0ØB5Xj¦n^mF5\"êQ×RMŒ©fËéÔ-}©æŠ·T‹/›¨Û¶¤P·¹]£îÌ]KÝåt›jéŸGµLÎ¥ZÙP­µ©ÖQmÔ=%áÔ½Ÿ-©v+ÁT{÷\Zª=àÕžE¤ÈÙI=ðxŒz )zp¡‹z(e˜ê$þJuC©nÁÁT·Ð.ªû‘ST÷À1ª»Àê¢z–&Q½R/P½P}2iTŸªïa{ªß:ÕïÇzêÉ=óÔS§+©§ÔàèUÔ¨>õLòjT†zîcõÜujôiCj4žD¦Sc~¥S/n\\G½˜ÐI/Ð¥ÆW|¢Æ/ð¨	zSÔÄòpjÒŸcÔä“O¨Éü$jº¡z}×{jft3õæû‡Ô[«‡©·Žþ¡æÚn¤æŽPsùw©¹C«¨·B¨yá~Ô¼K¨ù¼Ô|EõŽûIjÓµ\0ñ†z÷Æ$õnþcj	džZºË”Z¶é,µìê-j™²‹Z6ü‰Z~É„ZñH}pÝ“úàÁCêÃ‹Ô*ÃUÔ*Àgj÷µæÕµÖ¼–úô‚\rµ©öõ9Ä€Ú|¥ŒÚ¢-£¶|âQ;7­¢NQ!FUT¨ÑI*ô…œ\nËK¦\"ª¼¨ÈûóTÔ_*Žó˜Jd¥’|{©äÅN*5ºJû¾™Ê,q òaÃT1JD•8•P¥ô¨Òº»TéìjªŒ„¥Ê¦ÖP»ê˜Ôn¢µ[~žÚ–OíA…R_Ã®Rß¤ØRû¿¾¤”USšQßfûQ?l+¦~ÌL§~ÞOÕùJý´6‚úéàWêX5:îÒKð§NR¦¨“oƒ©“Ÿ(Ôoˆ*ê7Î	ê÷ÉêJu¦ŸBýµùuùR:u¥lš¦{@SÕ1 ©~‘ÐVí¯ ­zPISóè ix=¤iö£­ñ\n£­yÌ¥ií.¥i¶£i¯&Ñ´·iÚÿ’iëÌiºva4ƒïÓ´M¬šÑi!Í(î!Íè&f\ZC ™ÊÓÌJ7Ó¶hShAc4‹¦(škš¶õÔ3ÚVLmûú´í3_h;}¶ÑvÒ,›,h–ýJšåDÍªù<Í\nSA³þLÛ#ÚJ³U}K³Í Ù]zL³+FÓö­w í{×JÛ©vàÍÁv˜æÐ\\Jsì B{ÑœÀi.üÚ‘ò‹4×S4WÄ$Íõë[šÛ=2Í=>˜æ^ýæ^¯Kó¨cÓ¼Ž^¢WzÐ|ôÑ|É´“ÛÒ\"h\rž´ ŸJZ0h=-X|’v‘H»v”>¤¹ûŠi­ E–wÒ\"9LÚùÚy[ZÌk*-Ö4‡ûü9-þüí’Q íêBíÚ¾\r´kcdZÒ,-)…LK‰ßBKMÉ¢¥¥ÙÑÒ«/Ð®_˜¥Ý iY‘´›#$ÚÍ9´[¤c´¼‰´<ç ÚØHZá!­Tø‚VúF»ß`@+“—ÑÊ7Chå,CZEê\ZÚƒ5{h5Ó*-fh5É=´\Zá­Öý­þú0íÉÙ%ZƒY5­á¶=í©·í™ÖEZÓª/´¦#Ú´çá½´æÄ|ZsœöÂPN{a¾‰öb·­UPA{éöƒÖañŒÖ¦½RýC{Eq§½šj¦Öo¦OÒ@EWh1\ZôÇA\Z:Oƒï§Á¿yÐC@\Z²ˆOÃNuÑp4rùn\Zõ½?z‡FÃ6Ðè%L\Z#J—ÆÜûžÆôþ?†\rÑ˜J\Z«tÆÂ­§±·ü/¯ŸÆ‰‹£qh\\Þqš°JÑÄk„4ÙÁšŒ„¡ÉE4EY\Z­Ë=‰ÖÕ5LëÊ¦u7m£u/®Ðzki}ÆÞ´>çk´>o­/Ox5Cô‰¡\rÞºA{—XE{\'\'Ó†L{hÃ¥´÷«Á´èÚN,íjš6ÁCÓ¦Ì¹´o{X´o9»i?^¤Í¼¶¢ý$ÔÓf\rúi³¥á´YìIÚÜÆ>Úª—ö\'©ö7•Cû+]C[I¤­<,¢«ô9ÓWIûè«u:éšƒék¬@t­í7è:vÒ×/QéD	ô\r=éº±³tÝÛ;é=ÿÐ7&LÑõs\\é;çèsëè›ú=é†™[é†ÏÖÑ‹èÆ9ýtÓYCú¾Ý\nHß!ÿKß1ó¾ÓI·ñ¼K·[Ñ÷îK ï¦Ð÷‚\0ô½¿îÓm½ké¶Úô}ŒMôýçÑ÷Ï¸Ðí2èö18ºýý}t{l.ý€ãqºÃ„\ZÝ±m‰~H´Hw2_¡;=}K?œ€î¢QB?²cÝ•3IwýWGw{¦{˜[Ó=õŽÑ½^NÒ}jEt?0ýDS=7NüC‚Áèa”dzøèezø‚.=ü¯\rýL¢-=â¤=bù=²Ëù«µSA?§öŒkH½ÓL¿XÉ¦Ç¹A·9O§¯Ðã§NÑh>ô„ÁÇôË<ý\Z‰EOJøKO*\r¢§íl g˜ñè\'Áô=³ô›¯vÓo¹Þ£ß‚ûÓo1ªé·~aéÙ€;ôœOÉôÛ¼ô¼Áô<x=ÿ”\rýNö\'zAm8ý®î4ý®û}z¡Ù]za½°ñ3½ø„\'½´•D/…zÑïïR£—ó¡ôŠ\0MzÅœ½jG½Z¨C¯~¿Hl¡×½( ×½dÓë†9ôzç?ôÆgéï·ÓŸIåô&GzS*½	VFo¢÷ÒŸ=£?Ÿ~JoŽn¤7§zÒ[š?Ñ[ ©ôVƒíô¶ý¥¿=½Ý÷/½ýÛ8½£w™þÊ4‰þÊÖŸþÊ#“þ*f;½Óh3½³I“@ÆÑotéÀ7Qt†D‡ÆŒÐ¡B0:nE‡iÓá	UtäÎf:òç{:ÊKÇD|¢c*úèØ:%÷GÇ`éø–tÂ“·tâ•x:iG>fB§©iÐ™ÛèL–ŒÎJûEgÞÓ9tW:ßMBçç}¦ó›Atáé·tqÈgº˜º.9r†.½§K§Séò›Ùte·½ë4‘ÞË Ðû6GÒ_G¾¦¿‡Ñû\rëèƒ¬é#?éã:.ô‰Ý“ô‰®ô/ùú‹>õw/}úÊCúwwoúÃô™šhúLþs?˜þë‰’>ïñ>S…>_FŸo=Oÿý¬‡¾ä£ÿK²¤/sìéËoÆè+˜WÕCŒUÅÍµdc†ºÉS†z\\C=ý\ZCýæC«pC«ÿ6CëŠ¡³ËX†36ìúÍØ\0qbèþÐelL^bl„~`ègk2BŒÍåŒÍ=†¡Ú\nÃÐèÃð¥ÃÚÎ0=šÌ°8àÍØ:z”±­T…±½4—±³0™±«í\"ÃêM	ÃZ‡É°>dÉ°ä3ö~dØöç0ì‚…ŒƒOYÇuŽýAŒÃ‚-ç#OÎƒÎEC×_†kaÃ}ßu†û„áqcÃ£i‚qtg2ÃëCãX¥ãXŒq¼#ƒá+\\ÅðóÅ2NÊ\'ƒ!ŒS5wþFŒ€ÂjF ýOFð¡FˆŽ*îd„›ó§×ýdœ3\"\"Ÿ0\"^Œ³ÿ(Œ(ŽqnÕGÆ¹ôÆùÝ1ê³ŒØ­¿=-qVƒŒK¿T	¹Œ¤ÂmŒŒ]FFx #ƒÉaÜ(B2n|bÜ*qfäm~ÄÈeä/Å3îþaÅ<g” /1J‹º÷œK÷7Ù1îçq÷ñ:Œ2@!£ÜBƒQ¡1È¨$ô3jnìfÔý 3êëÀŒú÷îŒ\'u»\rµM…ÍºŒ6Ç/ŒWmÆ«{û€—å\0lž^»…¾lÃ€¨ob@Þ˜0 ÷°+VDå6ÇÀÇ0péSÂ›bN1ƒôð\'ƒºÞŽAo¨eÐŸe0FÃœ³Ú®Z3ƒ·Ñ–!ðîbˆÎå2DW¯2$ÏO3¤ï0äay.Ÿ!Ÿ¹ÆP4Š]EŒnH8£GSŸÑÓ›Íx½9˜ñfO%ãì:c°$€1Hg}ûÌx¯µ•ñþ¥„1’ïË{ú‡1á½šñ…nËøÂ+`|:Ì˜ÒúÄøÚœÎøVÞÌ˜Å1æ0wW;‹‡Œ¥œaÆß€4ÆòÏ|Æòïl¦\nÊ\\ÅòfªëüaªßÛÂÔÈRg®•%1µQw˜Ì«™?$1\rO™›z1÷v2[™ÆKÚL3ËN¦y¬s[‘ˆ¹ƒæÇÜYÜÈ´l 1­JW˜6Õw˜{&‹˜¼62ß_f¾üˆy8Êtþù—éÒjÍtA˜.K®Ì#³½L×–³L7»\Z¦{€%Óýƒ7ÓýÛ:æñëÑÌãùiLo\'\r¦G!ÓéÁôyý‹ég\0fž0=Ç<{—yÒŠÅô7ieú‡½aúç¤2Ê&˜z[™æ÷™A-$f¨\r–yºæó4÷óÌÄf €ÙÐÍ¼Pf^À˜±[n3¯¬=À¼šÏe^}²y¼ÈL²ve&I˜ÉQYÌÔ÷>ÌÔ17fê„3íB;3ÝÃ‚y£è3“”ÊÌ\"|gÞÚÊ¼5t™ÍÊdfOlcæ¨ç0o0óÏ0ó MÌ;²qfÁ‰ÍÌ‚ªXfax ³ð5Y4c×ì`÷1K_~f–Åíf–I¾1Ë	îÌŠW™¢æƒê»ÌGŽÏ˜^²™Õ˜,æã±Ì\'ïÉÌg­-Ì¦[ÃÌçŸ®2›k˜/F2˜­å×™í{_2Û+O0ÛçÖ2_nb‚:ß0ÁúLè¹L˜)š	?ûˆ‰ê<ÂD_²c’Ìì™¤íºLRŽ3“È¤~ÿÄd=f3ÙN1…[™\"Ÿ›LQá]¦¨_ƒ)^eJÆ˜LYÎ.¦üSSá^ÏìÒ?Éìº¬ÊìJ)avG0{ÃÅÌ×Û!Ì×µ_˜oRt˜ý­ÚÌÁÈæàëcÌwXæp’sø¡säßæõØÿ%2?\Z3ÇtW˜cN½Ì±·Ì‰!óKp(óKøæä&>sÒ,ž9ÙNg~E®eNG€˜ÓŸ˜ßÔB™ßÎ0g´™3ßO0ç`=Ì…ÕuÌ…Z/æÂË&æ_ÂærØ<s%|„¥2‘ÁZUmÃZõ6ƒµ:OÀZ¶d©Ÿb±4XU,Mæ)Öš·XkúµXÚkD¬u•­¬õ×î°Ö—ÂYë_t³6»²toßaéþ(féiå±6ªº°ôq%,¿¬Í‡É,ã÷Î,“²8–éÇ=,³.Ö–Ï–ùd<ËB-‘µ5çkë‡\"Övæ[Ö\rGÖNá4k÷áó,«–UZ4ËŠ«Í²ymÀÚ“Î²½È²…V°ì’Xví9¬}ïkXöÿX¶L²Wí`9Z˜°ÍÀYNo6°ï×d9ësY.)¿X.MB–‡Â’åµöËëÝ*–×ûÖ±âj–ohË·8‰åd²N®°Nî<Ê:õü/ëè+à)Œè“Á\nhf&­°BÚ”¬Ð¦+¬PI+¬L“&´dvÏcE$ê²\"`Y¬s§úYÑ‹ö¬óö³.L­fÅ„àY1ü¬Øu÷XqG‡YW.}e%\Z²’µUþ7ÆJ¶Hf¥–‘XiþlVzóGV:Ç•u½<‹•Q´Ìºqð+3WÌÊzy™•õ&•5·ÄºuFu+ƒÊÊn\0²²1%¬œóæ¬\\óIV®ì%ëöv<+¿^“UðÈºës‰UíÌ*\\~Ç*ziÃ*¾±Àºw4Œu¿ñ«ŒçÂ*Wc•?üÌ*o³b=ˆ/d=È¼ÍzøÙ‚UIA²ªlX[ÒXµýþ¬zùVÃ[]ÖÓsGXÏTmYÏ\rÔXÏ·ë±ž£¬6%ÖKKwÖKÂ«½z™õ*¡ÕišÄê\\¶c^f×(X`óv„Ï‚n° élx…ºÏ‚Î²`\rr8…²Òc¡\ZÚY˜Ç‹,Ì†…mÎÂ=´e‘–ž²ÈYd‹¶ã+‹yZÂb™F³ØA·ùK¸¾‡%Ü›Èc‰§YŒKZÌ’¶;±d	,ÅêY–Ò(˜Õ%qg½þ¾Èz³[ƒÕßêÌ\ZÀaYƒƒ¿XC÷Xïwé°>n5e}>cn‘³F½-XŸF6²Æ~¸³Æù¬	”kBÆe}aœdMöN±¦°BÖ7y.ë;ø\'ëç¿BÖ¯¥O¬¹ÉÖüí¬ùkQm\'ëŸÆSÖ¿“«Y+ÒY¶jèO¶ºš’­±w+[#Éž­iô­YSÈÖÚÀÖºIek=ck§±u6*Ù:M¶ÞÁël½–IöÆ°vö&¤ÛÐÔ˜m(­a…;²Í(Il³I8{Ë­¯ìíÏÙÛ§î³wbw°w¹Œ³wá²w¿e[†²-Ø6¡Ø6gÙ6¸‹ì½*þl[2Û.Ú—½/ù%ûàÓ¶£æy¶cYÛ‘½Žíä¿‹}øS\rÛ¥„Ïv£Üe½&fqdûä–°ýœRÙ~Ùì*\Zì¿Ù\'ï°Oé¸°ý_°ýh³\"±c²I;ØÁjLvð¡:vðÓìµ†ì›Nì°Ivø§yöés›Øg\\¬Ùgæ2ØyJvÄ³+ìÁvöÙ9	û‚Þ1ö70;f´ëËNd^b_Koe_{Îg_û³Št‘ÃN¾¸ƒ2ôŒjø†úLÄN]xÈNKªe§½:Ç¾!agÜìaßzcgû“Ø9ëôØ9ºoÙ·¯,²ó\r‹Ùùòtö+¦ìÂç®ìâ»¤Í¾‡ÝÃ¾Ÿe—…²«¿*Øù>ìÚ¿ŸÙõ@»ž·]¯øÂn(õc7Ü¯a7æ<`?M²f?%ý§<ÙÏ2äì¦ã<vÓD.ûy²\r»9%ÝüÆýâÙö‹¿ÝìÖ°Ëì¶Wþìö¸v{	ŠÝÎZawÄ\\ew4ìawô¾bªþ²]îlàH0‹bÃ¾SØp€ý!“‰ö`c†¿±ñ;^²‰;­ÙÄë^l’w\n›”Ë&•²ÉWæØÔaC6­Á†MkúË¦ê±Yðq6ûj\'›ø–ÍCóÙ|Ÿp¶Àö[€ña‹Î½`Ë=.±å¯ŠØJ=v¶ÝèÍ~ãÊ\\ýšýî‹{(ä>{Ø>Ÿ=\\/a¿OÍb¿/¨a„ª±?ÜúÂý§Æþ|u€=i5ÌþúAÊž¾ßÇþ–ÕÉþa²Âžñ{ÃþYžÌžuÙÈž‹yÅž+>Íþí“Âþý¤ý{ÖœýçIûÏôö¢Úvö\"Þƒ½4Êþçˆc//¼ã¨ìrTídÕ#8ªè|Ž*Aƒ³Ê¹³j–ÏYí¼–³\ZàÆQûº£Y»š£òŽ£uõ,g­úgm¾1gíÏQŽ¶êjÎ:[>g]zgÝË4Î”	gÅÙ0®ÃÑµTåè¾çè~ýÂÑË;ÍÙ¨ÞÊÙhŸÍÑÿ¸Ì1x+åòS9ÆÎpŽÉ§×ÓÇqsÏ]óã«8JŽÅyg»Jg»™g»§gg¢;g\'y€³“Šçì^£ËÙýÍ±¬éæX%ÜâX¿ûÃ±ž˜çìÉdsövéqöuþáØgò9mÑàÎÁ©%Ž#bÇ‘±™sØ£œs8ÿç0ŒÍq¦Üçùò–ã®#çxXnãx¦@9ž•¿8G8p¼6r¼ÎÿâxµpŽí5åx9>Ãž_i\0Çô—ãÿÃ	ø©Ï	lûÊ	rà}_á_pâ„V˜sÂ“œpÃ`Îé„6NDŠ?\'òI0ç¬ÕÎÙÃk9gëq¢Èÿ8ç®C9ÑV/8Ñnsœhxç‚Î_Î¢Œw:‹—íÁ‰Ur.©Ýã\\:ëÇ¹t#‹s©Ï–“pjŒ“\05ã\\­ÆrÒÌÕ9iå¹œë—ê97š[8™fœÌ;ß9™@ÎM¸‚sSDçÜz¬ÊÉá19¹®œ\\6’“—¸‰sg‚S47È)Q—sJ·frJwúsJ™‰œÒîœûGwqÊ›_r*âæ9bçaà\rÎÃØ^N6”S%3åT·xrªaO9O¸=œ†õœßËœ†•zÎSÿ!Î³•œ¦t/NX“Ó¢SÏiÙ¢ä´XÚq^Úùp^²M8íOZ9}Î«_¥œN•@ 9\0Ñ0ÝÁ¦­ç€Ötqà«—8ˆ]	dZ(õ´ˆƒ3½ÌÁER8É^áÝ)Ò˜CÊÖãÐN\Zsè9%†Ã´:Íá¨s8œ_8\\wï”#¨uã¦¡×Žð†	GÔ­É‘¦r8²›`ŽLp‘£<ßÀé)ìâ¼†Mr6[qìŸp29ƒÅÎœ¡UUœÑ+žœÑ¬aÎ\'ãÎçXÎØ×@Î¸ø#gbëÎdéfÎW‰„3­&çLoýÎ™~VÄùó3ÓEãüjæÌ.äÌ·sæ®­á,˜P8‡\0œ®G8Ëüœ·_\\ã@®Š3WšÍUçÏr5¦_sµ^ìåj‡§s×}Iæn(@sõ«r7=Ká\ZÇésM^rÍtîs·è¤rÍ]ê¸Çœ¹>•Üí*ýÜíNr·ßàîØÅÝqù\nwwôe®Õ;®dˆk_àÚˆœ¹{€Ç¹{+G¸Vc¸úÃ¸Ju®Ó™zîáÉa®ëú®ko×u0…ëYQÌ=ör/÷x\'‡ëcÿë“ºÌõ{°‡ë‡Måžàpý•Ü T87øònØÎinX7ÅÀþãFuqÏãË¸ì£¹1«µ¹1a§¸1éÁÜX“ûs„{Q?Š{±À½ÌåÆË¾r/Y¾ä^ÊÏá&DqRÍ¹	w¸	¤îå#îåL6÷ÊA7é›rg57–ÌMÝá¦&1¸iåÜ´•Zn:ÀÍø¿f7b¶r3ÉÇ¸™ÊTnÖ,7k‚Ë½iWÊ½¥6Ç½õÿ)û¶7g-››ŸÌ-„‘¹Ev£Üâ#Tn©c	÷~3‡[™³›[ù¼”[ÉHçVG8pß¦rëFU¹\r>¦Ü†€ÜæNîóµ/¸ÍÂ¹Í£G¹-ñw¸­¿¹mk;¹/ÇxÜ®‚H\'pÍ\\àé\'\\àkS.(—ÉÉ\\¹ÀD.$m5Â»Í…­äB}C¹°¸M\\XU+†•rÕç¸ˆ>g.òB3)ÙÏEIŽsÑ\n8»ó— ìç#R¹$¿$.ùE<—âóŽK»”Áe±U¹¬ï$.ûó5.÷ï.o×s.ïu\n—?ßÂœåq…¯¹¢n®è¯W–ñš+ëõàv\'¸]\'nu·Çí·ÏÐœÛ—XÁ}mßÍ}¥Çí¿‡åöKÂ¸˜~îÛÔDî !ûNº…;ì1ÉüÌÙ¸™;r	ÉýpxŒû©pûé×#îç£Üñ\rîxÉsîÛXîWµîÄ=ÜãýÜ¿`Ü™{öÜù]?¸ë´¸—Ë¸ÆWqßà.-pÿ®ûÃý»-€»üÛˆ§NþÎÓØCáiÝŠçi×ñÖºèðÖ¦Pyk¯{ðÖ¥ðtÖò6lòæm8nÍÓµ›åéK~ðÐ‡xFf<“ŸHž©}ÏÌAÊ3_÷gncÊ³ÀáYŒ¸ñ¶×\Zóvt\rñvÎ¼àíÞÎ³\ZÆð¬&Îòl*Êx{5sxvÀ¼}É!<û5|žýÎTÞfï@_ïÀç.žC«#ï Ã;Röw„šÉs­íà¹ânñÜ?Ôð<Ç<xGOçe$ñ¼ó¼’ry^ðažšÂóšÑâù¼bòNXHx\'2!<ÿ×xþqv¼\0…9/Hã/¨ŒËI‡ñBG‰¼ðºµ¼p	ït¼€w:=”ÑàÂ‹\\gÊ‹¬Xà}ÀâÅ¶kð.n;Ê‹³¼ÂK0Yä% ¼y	?By—_ÿâ]þÂKåó’té¼ä5‡y×ßhñnæýäÝš§ð²£{yÙõf¼\\á6Þí»ëx·ãyù_Nð\n²<yS¼»1“¼BS8¯È€Ì+úšÊ»W\'äUDÙð*Îwð¦|çUŽ»ò©\"xÕ÷x5OCx5+¼ÿ1^o\rï¹e¯¥3“×2‹×vl„×†xÅ{ùæ6¯¸ÈkcÁk;Ëëøx€×1{ˆŠJàÁÂjx°Iõ¯’‡iÕæa&by˜&OÐâá{<bÇSqÃ#uiò(fOx”…ï<êlõœG+‡óh¤$ãÂhæ1$yLëYËÓƒÇš¶àqvëð¸%©<î×ƒ<¾iOXÉ*ñ<Q9Ž×uø7¯·ŠÌëS=Ç{íjÏ{¾‰×Óá½uæòg§yƒÿ¬xC¯öð†wêóFœ¶ðFpÞg“\\Þ„I;oÒý=o*°‡÷Õö/ï+7#oçýê)åÍ>ëãÍë\\åÍ7wð~Gðþ¼}Â[òÀó–¹ñU7òU¿jóWªóWg×òWƒ®òW#‡ø\ZÏoò5Ã\'økR¾òµCøëîèð×;üæëEÏð\r²³ø´+|ãS|Ó7i|Ó_5|³ÉÍü-÷žðÍs›ø[WWð·ÎÞâo[\'äoó\râïôúÌßÍ¸Î·0ùVÞ?øÖ—=ù{ª|Û¿ùû_´ðí}mùüƒŠc|Çzß¾ƒïlªÁwvóƒù.Cæü#ï’ø®M,¾+Èwýý‚ïþÌˆïñ¼‹ï©ú™Ôí\ZÿxHÿxÝ+¾|ŒJí\r? à3?0ÍŽÈ óƒÓ£ù¡~öüˆ‡RþÙSïøÑç¶ó£GNóÏÓÞð/HVóc_uðã0~|è?~a#ÿRã!þ•ô^~bE:?¥œÉOûÌäg(>òo|àgz´óoš=äßj.äg_:ÍÏÎ6ãg?Ëäg“ôø9›ø·í>ðo“.ñór¼ù–ü»™ªü»c~ü¢^ü{æ¾üûºø‹îü‡ü‡Ãþ£uþ#›_jÈìÕÁ¯¹œÇ¯ðk·ñk›}ù\rW±üFC¿qÆšß$?Ï~â\"¿eÊƒß¾i+¿#ÀßYÅ5ó!c?øÐä6>,ö6Kä#ŒI|ÔÍ|œÈ‹OØkÂ\'PÞò	3Ý|â“>9cŸ¼\"çÓŸðéÚøôõt>=ç*ŸÞÀgv]æs‚&ù\\ìF>—>Äç\rçò\r£|Qv7_|x˜/Ùp’/ÉñáËÄ\0¾l´Ÿ¯ØÅWˆ\nøÊIu~oªˆßW@æ¿v›á÷{¨ñó›ùƒó`þð0Ÿÿ~÷Fþ?1ÿÃãþ¨&ô³\ZÿÓöþg•4þç%ü1•ü±Ûøc=Åü‰û¯ø_ÖŸà­ìã3Šà§NñgŸçÏ!îòV]åÿ‰8Ì_rðÿjUóÿ†õñÿ­à/›\"ø+ªzü•×*ì&ê†/Õ™(ÁªÍµuºµËEäFC°Æå¡@Ë³U î%Ðzä.ÐúxP ôN°Îù@ç·T°¡÷ƒ@—h.ÐýÂèÁôú ½‚Í\Zax«ÀˆÓ(01ß*0YÈ˜Ì	vÚév]ìz,Ø}…%°§,ß›\n¬96»l{6l÷­Ø}&°«\ZìwNØ;¨Œ8¸L	2Þð_NIkn?<µÛ*8ºtNà¥3+8–Z-8Ö÷Epl¸Xà½\r-ð¾vPàýnIàý+Dàã:/ðÝ=*8üWà¿ñ¦ ðj³ l„ òÛfA4U\"8??!¸`fû¿*Á…Í‚˜5ß1[	.>¹!ˆÃ“ñùÇ—ºñ‚ÄìlAÒY” 9ÀQt¤|W\nÒ£M×Q§×‡Ü×\'à‚Œ\Z5Á\r‹HÁ¸6AÖÓï‚[ˆ=‚œu¿9]AÎØeA®p ÷í’àvðyAÞi© `Ã:AÁÎÁÝñã‚»j‚BÕAñ¡Ÿ‚×Ó‚®¶ tw¯ 4Y ¸÷$Vp?–,(3Ô”¡ÖÊuŽª/ë•\Z	²ï‚g‡þ	šü	š-ç2-õgí¢AÇ©»‚WS»þW€¾tÈj·\0RµC\0ÁÞ@ƒ£¨\'·¨g‘ôe}Z(à²N	ðëÃ„¬€PÞ! Òjåñ €~ËGÀ(\n˜¨T‹S(`CN\nø3zÁ¹¿Ñ‘*ƒˆ	Î±ò¥@<i)1HÙttŸ@6—,P@hÅ›4A…­ WeYÐwÿµàÍÁÀmcÁ@J04CŒàS+·F‰‚qó\'‚/I?“SVÓƒÁ7ó£‚¹Ýó‚¹ðÁÜ^°x°[°xŽ(XZw@°ôÿûþ÷Ò\\¨zêºpõ6májßBõ±¡FL±P+¯Z¨]’&Ô9î Ü¥!ÜPÛ&Ôë›êg|j…ÆÁ‹BãP{¡	N(4ÕšE¹	Í*„fd-á–Õ·…Ä0áÖÂÂ)[„»îh	wÁb…»Ãr…6{ƒ…6Â½ýw…v.óB»VB»`-á~«|¡=,WxP\'t<#tšðºø\n]l…®\ZR¡kô¸ÐõZ¿Ðme•ðèÎ]Â£‰mÂ£k…Çl‹…Ç7œz—L}\\Ë…\'¦Û…þ;ß\nº|„ÁHaà9Ž0èùAaà©0h*¾þE’¬%Ý²\"k[\'<mOžŽ²žY³Nx&bBxæÍŠ0\".AiÑ#Œ´?\"ŒŒêFÅFx	£Šÿ/ùc¤#ÂØ¬0a,ÚXx1aE·h&¼ì¬#L\\^óÞ L¹ LÝã.LÅ.Ót…ém…é²ÃÂëÛ±ÂÌÌ{Â[GxÂÛ+ÂÓkÂ»*„EWž\nKm…÷.–I«…ó>«vg\n­*¬¶V‡þV\'¼VïVwà…õrðIo¶°±j@Ø‘Ÿ¥<>#Ž›<…-*±Â–ÆRá‹ŠDaû]a{vž°ã l§\n;ÏP„€+¿…ÀÍB!èë˜<|Mþ‘ „E~\"Ÿš\nQºû…ØBìgG!žüLH°œ÷DI.„4¨Ö“*dŒ…Ì‡±B¶§§“Ö,äÝ:#äå•\nù\0m¡P~L(º³$”î\'¥ÃíBY0U(¡•:¿„Jë¡’µSØ2v	¿	»=.\n{xUÂÞ´‹Â^Ômaß}¶°oä•ð\r½DØ¯c$p8%|»éŽphÈQø>+Aø1 Zø1Ï]8Ê?(ü\\%ü<òM8f,Ž;wÇéÂ	G]áÄO8!²N:NÕ>NAO¿i~<\"œ~\"NÃv	§™dá7·á·Æá·	Špf^[øó£›pvS¿pîJ—pþS¸ð%\\\\»,\\,Ø/\\B^þk	®HDªn?DªÙ—D«<BDj:f\"5“r‘úC‘úC¤QÊiN‹4>è‹4‡¡¢5ã^¢µ1\r\"½\'kDõçDDú7Dz­¢Mª¥\"#›§\"#à5‘IÔ~‘Ù¹\nÑÖº«¢mµK¢-m¢ÝÍA\"ëÿk“Šl\Z%¢½¸AÑþõ?Dû·KDE\'D4Š\rÓEŽòÑ!ö‘‹¹ÈUöBäÖï#r7¦ŠÜ]EîoãEç2EéEžÁm¢£\r6¢c	ŸEÇ5	\"ï€Ó\"Ÿ\rX‘žªÈºYäWë\":™Ú(:eä\':µl%ò×ø\'òŸ°îrâjDAGv‹‚REÁfE§üE«ŸˆÎž/ŠN\ZEçæ‹.OÅ/f‹xpÑe”(Q±O”8)ºÆê%Ý#‹RóD£¢LO”…x%º¥‹²-wŠ²î‹rUJE¹šË¢Ü¢Û»Dù±%¢»–¢»—·ˆ\nß¿$‹ŠUwˆŠ•¦ž•\"ÝD÷¢ŠÊÆ¿Š*l=D•;7ˆE£Dº\ZEÕÏ3E5ÿ×¥fw³¨öz­¨Žý]TÿîšèI¥Hô¤…\'zì5\\:+z¦úCô,¶FôòXÔ´ÙSÔTÐ+zî\'z‘!½À‹Úž6‰^J;Eí»7‹Úd¢ÍŸ¢Ž×E¯òW‹^-¶‰\0¸\"p×WìÙ=L^(Bð¢E‰¾ÍfŠ0ëçE˜À\"–ûZ„Üaÿþ‘\nãE´õBzIÄø\'qPE¼2;ï!DÄû^#âë[‹þ\"aU$$‹EbˆB$ÑÜ!’àGD²Ê}\"¹Õ¬H‰GŠºRå¢®(Q·ª‘¨\'ÙDÔÛEõPE}8GÑkž\\ôz,zQ-ê +\ZˆÿŸÂMôÎ•(\ZÚh/\Z²g‰ÞïS½ß+\ZY¥+\Z5È¾1}æG‹>OÐD_^ESõßDß#Nˆfª¯‹f ¦¢™·¢9cÑÂ÷_¢?HÑÒ×|Ñ¿›}¢åñ›bU³\nñ*Ãñª¾ñª%5±Ú+‚X=)Ö@]¯9ðH¬µã˜x¾E¼!p§xÃé^ñ†¦×bÝû±.-ÞhŠë‡\r‰õ(±þ»f±[§Øàœ¶x³šºØhž 63y+6Ûn#6‹ÆŠ-ˆ¶âm—2Ä;BßŠwö?ï.*[nž[¶í[MÞ[ývïÝ7!¶*ÛÅ²Äû0kÄûAkÄöqX±ýScñÛB±ƒ»@ì\0§ŠV‰ú*v\n:!vo;_p»þ¿Ü÷y‰êm{Ñ{ÄÇ½ºÅÞ*h±÷KŒØž*öÚ\'öÛž-ö{‡ŸÈ«Ÿœþ$>µ_M|ê4K|êQ‚Ø¿þ§Ø¿ßQèzÚˆƒÝËÄ!ÏgÅ¡=/Åá»vˆ#6Æˆ#þ”‹£~½G/<Ÿ¯:\">ÿ4T|qDUÏ™_Šú)NX÷Nœ°ÑJœPtT|¥¦\\|µÐLœüÙFœrhQœº¾\\œÚñ[œV\n§Q²Åéahq:fZœÞÛ%¾®{B|]!Î<\ng–•‰³.ˆ³>‹Å7þg?+Îî¬g,‰s(âÛ‚	q~Dªø®e´ø®5Q\\”Õ#¾_Êß§ËÅeûÄ¤•â‡žâÊ˜Qq%x½¸êŸ‰øQ·¥¸n­‰¸¿G\\q\\üä,MÜhå%~vyLÜ7?ßwCü´IÜ<ºGÜr+TÜ2qWÜ2÷^ü¢ÝSÜÚe+n»—+nû”\'î(Å‹*T1@{Aêœƒpób°§Úê\"†U«Šá¢1âëz1r_•é‡#S]ÅH€BŒ¤^£xÛÅ(i—],Æ™8ˆqÇÄ„Ú)1Q‘&&iÅ‰If\n1}TL/Þ\"f¤Ù‹™W7‰™€b–Kµ˜­W$æ¬ësî×‹ÿ<Å‚:˜Xl$Ÿú¿H„X:ÎË½ÅÝ‡¼Å=›VÄ}s×Äo¢JÄo¦§ÅFSâ·\"Å#ÿ¿‡&=âÑÄlñ¨-þ4„¥`ÅS=â¯6Š§_(ÅßW{ŠgF¡â_\\ñ¬ó^ñÜó)ñB­©x¡cFüûp¸ø·h^¼–$^\Zü-^3”¨8­–¬V¶I4–íîF‰Î*MÉúéh‰n:O¢×óH²ñÔ:‰á¾‰û‘ÄX7MbŒ\\Ê–˜Xÿ’˜ÜbILGÃ$[ª-%[Æ%æû%æ|‰Å/ÉÖZ¦dÛ>”d;ÉX²£ñ†dÇ/Šd÷ú—’Ý¿Aë„l”dO»dÏHˆÄ.´Zb×¹Ub\' ÙwEW²%9°¯Ä±dŸäðV;‰ó}¸Ä%\Z(qy\n—i´—¸¢²$®?%nU%žaÅÏ•#’£ïÏH¼\"ÎHŽeêJ|ÈÝ_ïßâß{¿óh‰ßÌIÀöß’ÀÁRIð	sI(¹]ÊâJÂŸœDéDnW‘Dâ<$‘â9IÔÓÕ’suItè€ä¼‘¦ä¼b‹$öd¥$^öQrÉ*Zriš%¹Ê\r•$úõK®9H®åKRú’$)¿è’T\0E’V•¤‰8’ôH?ÉuõHÉõ˜|É\r±$Ó¯@’	•ä~j–ä›‘$wŒÎH\nÕz%Eß%Å»7HŠ_?‘”%÷jZ%÷m~JÊÎ’”s$åÔk’\nÏ7’‡5¾’Ê=V’Êwù’*ß’*ø;É£‰ÉãFmI\rê‘¤F¾\"©=.©½,‘Ô9­—Ô!\Z$õªA’\'‡ÿI\Z¦Ó%;Œ%Ïƒý%ÍírI3v¿¤%×@ÒÊï‘´=’´ÿH”tÀ<$€À`	 «ZÞÿFNÿ(~I1Ñd…¿ÅÊ• ¦Õ$èŸ}L±„ g !¾”Î9IHyqÒó\n	UsIBƒ\rH’	*’pfoJ„Î-¡E\">zH\"éÄId:Sy‘¾DÁJ–(W­•ô4WHzÃr$½É+’¾³±’¾¾ Ißw¤äu`˜ä5E_òF—)y3a y·<!2®½VJÞ§î’Œ¨JFü[%’:$£zU’Ïk,$co5%“ô[’o)–’o¯$ß\rµ$ßÍ(’Ëƒ’Ù-7$óó’ßF’ßä/’ßKÉ_™ävH²Èh‘,¹¯–üý‘%YöJ–,ûý‘¬ôHUìIÒUZIRµà6©ú÷/RMÿ	©æ+¹T³óTË¸Bªuwt­3Gªè&]7n#Õ™¦H7`í¥F6J7L¤zwI7N­’ê¿Û\'Ýt:IºyÝÿ\\¥›;W¤†È©±£†tKÁ}éÜ!éVt²t÷Þ‡RË¨“R«Ï÷¥Ö‰³Ò=?ç¥{¾RÛDM©Ýá½Ò8éaíRg ¦Ô%ý°ôW)uÝÉ”z¨o—z\Z‚¥žÖ2©çÇ(©Ï=Šô„~¯ô„å!é‰UÒ“v[¥\'/ý’ÞÞ$\rä¿—µ9KC°\nih5M\ZÚ–&\rÓì’†-úKÃ1¹Ò3\Zé™µŸ¤(Œ4ê¢·4Z¹WzA.½@N“ÆîÑ”ÆÊt¥q…»¥ñšIÒÏ`éå™ôzáui†ó¤4s°JšÕÔ-Í\Z¼-½iùJš=vUzÛÖ[zS\"ÍÛñQšo‚“Þù»,-øí,-øë&-¤n‘QÏJ‹¾÷K‹U‹¤Åó]ÒífiÉP§ô)Lzo¬Bzï«¥ô¾û‚ôþµFi9ü–´Bë†´bzôAûCiåáÒJw‚´:·\\Z]ì#­Ñ’Ik¼\Z¥5†ÒÚfmi]B±´.SUZ×@‘Ö;¶JëÝKŸé†J›¥Íc¤ÍeÇ¤-áFÒ–…KÒ\Z¤/Ê¶H[Ë£¥m„Ò6¥§´Ý¶D\nˆú#‰¤à­îR¨î‚Ú\r—B=¥›4)\"¦[Š)×‘b«š¤Xòc)¾Z %fÍI©ƒ+R–°_Ê¯¹\'Ý—JšWKåç,¤ò_-RÅgg©rnJÚ›ï,í£ð¥\r7¥o¿ÆK”KÚ¤ƒÞKßÕ(¥C#PéÈ]éÈaGéÇ˜Òå$éØ¢t¼ý–ôK\'LúeÙY:M‘NfJ§§2¥ß® ¤ßUJúëIçÉyÒùŸPéÒ“Véò¹\ZérÆ¨te•–texX¦rrJ¦Úh,[=óM¦>­”iHâd\ZïºdšS2­t L«–&Óú–*Óú“/[§-Ó¶fËÖùSdºõÛdzVÙ2½=z2½_™2}‹™~–¡L¿!S¶ÙYKfp^fü› 39Ô\'3³w—™¿´–™å2sÊ\Z™…5EfÁÃÈvØ®‘íú»Wf=³\"³©’Ùî2“ÙºÊlƒ/ÈöÛ\ZÉìw9ÊìG–dÓ Ù¡–Ç²Cíš²C¿×Èß¸#sVK–¹Œ‘dGÊ³e®o®ËÜ4ÇdŒd76ÊŽ•yekÈ¼þU½&ŽË¼§®ÉüÞçÈNÂÿÈNmŠ–JPÈ¯[È‚~_’Û±eÁû*eÁ¾0YÈ+²q,äß~YhGÚ’Þ¥‰ð‘En@Ë\"wgË\"Ã¶È\"§ÌeQ¾7dQOÊ¢uŽÊ¢¯´Èb,zd1n¹ÿ£Ëb¸I²Ø¬,þL÷cN¿£C_&»T»E–\0‰”]=ôT–øÝ_–T5/K­“¥*”¥\\¿+K…#d×7ÌÊ®÷±d`oÙ\rÙŒ,Óó•,k°Tvëó´,[,ËÁòd·…WdynYžßÙ@Ù|YA\ZKVÐ.+RM½}\Z”Mm”•ÀÍeåAY¥žª¬2£JVIÎ=z${ô´FV=øTV›ýFöÄ\"^Ö0Ê–=‹ù.kÉÚî”µÉNËÚ.²ŽnKÙ+•ZÙ«ÂRYçªaYgÄ^@‡\'MeÀ±aèH”ô|rmŸú,L[„É0ûçd¸‡d¸	;>ÎTFHÙ\'#9!edû¥á„ŒñÛKÆäþ“1Kd,ÿ\nG½NÆÓ£Êø|™P÷°LTU,“0œe’îG2iÞN™t MÖ…L”uaŽÈºªËztƒe=ÿïßkß%ëí+pâË\\¿ÊÞºþ•\r½“ËF|Wd#ï¶Ë>ÄäÉ>\\Y#etÈÆÔ™²ñk\Z²ñ2ºì‹ª½lrÇ!ÙdOŠlrÂG6uà‹lŠ–}}æ,ûuXö³ªU6›½$›-\\+[(?)û]c+ûã¶Qö÷p¦ìŸTö/ç¬\\Å ]®ÒÜ+Wþ!W¿Z/×ˆ¡È5²Täš½b¹æçßò5OUåÚùåÚ/ßÊõ,rýv\r¹>™.7ØöPnð\'On|?Nnâ<\"79õBnÒN–›\06ËM¾\\–[8HåÛŠºå;„Ûå;•?ä;Kä»Äò]Æyò]–öòÝ™ä–îrë•$¹ã-¹‹šÜ¶TEn÷¤D¾q@n{N~0·M~ØªO~˜‘»:<•»íZ%÷Øä.÷B,Ê½·.Ë½ÏOÈ}6ùÊ}º=å\'V/ÉOE”Êýý¿ÊƒìÉòàÂ,yèZyX‚…<L9#w[”‡×Êå§{ßË#¶uË#Fúä‘Á$yäó5ò¨cJù¹¤­òhûòóôuò+òØ¸:y‚e‡<ÁÙDž0ë$¿²öŠü\nõ ü*lQžh2&O<%¿æ‡‘_û×*O^‡’\'Óhòä!ž<åäiyÊí\'ò”…ßò4£ûò4%UžÑöH~ÃG_~ãÂùzùMèIy¡I^XöV^øL /BRåÅG_Éïk¸ÊïÿÐ‘—¯1”WéSåU&>òj—çòê²ýòšóSòÚ>Ky]Ç°¼q[¶¼±zTþ´k•ü™ÅNyËõ-ò—…,yÇŸòÎ¡\n9@‘/ºÊäÀT9èÇ¤†±ÃW”Ã±NrÄæ\Z9bå›iW,G…ÉÑŸ˜rã­ï)Ççß‰÷å¤¶e9yO°œ,{*g®¯‘³ÙŸä<ÒŠœosT.¸\"î…Ê…óNrÑ¹»r‰o›\\$ÊåÇÈõÙreqŸ¼;©WÞ“¼$ïm‹“÷7VÉžÈßòÈòa;´|˜~QþÞ%ÿØ_\"ÿ8n\"ÿä¡%ÿ|G]þ“\"û@–O¤™È§êoÈ§Ÿ¨Ë§W°òª ù0ù¯òRùœÊwùÜìnùÂb‘|±pHþ/2Uþ/;J¾ÌMV¬.¬S¨Ûë+4×Ph­‰P¬Mx¦X·c¯b]òCÅzU˜bCÆ.Å†¦}\nÝeUÅÆíIŠe»ú·Ã¾;›V«+=û&nX…Ù\\„bËs#…ÅMk…EûQÅVU°bëv¦bk]“b›J±cÇŒb§w½bgÜkÅNÁyÅ.³…ÕŸr…uÙn…Í•…]L«Â>µKaÿù²âàæ,ÅÁ%[…£z‚Â‘:¡8žŸ¤ðÁ!>Ü…o¦‘Â/;Dqb­XqB¿Kqâs»âä93Å©¿Õ\n³\"…?¡R¸ËWè{CüÐLò­;#S„ei*\"ÖN)\"Bf‘´|ÅY—mŠsúkçþª+.pr—Ö0—/(ý(®]þ®HÚ#P¤è¿Q¤…e+®ß*nlžWÜˆ­QdÁÙ)Šœ®ZE®­‘\"÷fˆ\"W	Wä­¼Rä‹þ)òGw*\n£êÅÆÚŠ{6`EYÂzEùÈ¨¢Âê©¢rö´âiAQsõˆ¢ÖÛBQÛ°¤¨KÝ©x¢_£hÐ&)š¼ÚM),E›¹½âåª5ŠNd•äuHš&* ±üÃ:òá3Î¶K;é¤À7½WàÛ‚xô=^é¬ –;+è8k#±FÁ¸ª`ö+Xj\n#NÁî6Rp}òÜÞ[\nî˜Š‚·Z ¬öV¿*D–\nqã‚BüÜU!9Ñ«]‚)d\"…üí…²DªPV_Pt*^ß…*†ñŠwz¦ŠwØŠ¡ÛGÃb¤b¸‡¬ÑQ|ÀÓ¸bÅÇEŠO÷éŠ1ðœbüLŽb<½T1ÞuW1±ÉGñeCŸâ‹S¸brÝ¢b2§øvæªâÇ¹CŠŸârÅìÎ}ŠÙ4wÅì«/Šy¶b^+J1¯¿]1ÿób9ub¹©L±2S¡T?ªTðT®.òQª5ô*×(…Ê5_+×B•Êu„JÍõÊõ\'þ(u§ï*\r^*7K•†_÷)ð\rÊ-‹”Û-6+w}MSZêVZ¯RÚ´Qîq(÷5”û—”ÆËJ.LyÐh­ò`–™ÒÑfVyH©t\nB(ž½W¶ªR:G7*]®/+hžTô)]éKJ·hÒc×´ÒËÝQéõZWyü³—Òûƒ›ÒûGšÒOyJy\"«<iUžŠ4Rž¢²•þút¥ê¥Öse ]‘20Œ¤q{¯9õNz{A:œ¡Ãf)Ãf¨ÊÓV0åéÌÊ3q×”QÙ\'•ç¸~Êè¤\Ze|ƒ¶ò’Îå¥*±2áó]åe¼@yÅ¦Eyuì„2q‡™21ê€2±p»òšù[e’v˜2IJQ&·*“—¯(Sc*S±Êëgß+3E%ÊÌõÊ¬…òæËZå­”!eö™eNÜ´2ç‰µ2÷ô#ežÕ>å\"Ž²À¤,hW t•w7;(ï¾kR‹•Åþ\rÊân\'e©Ê[å½“ÊûQÊûyÊ²¾teù%¡²œŽS–Ú¥|?«¬`+ŒUV³¥ÊZÀce½ÔSùd‘¢l<¶¢|\ZÌV6}™S6{(_¨÷)Û8—”ík|”íÉ;•íÕ	ÊvZ¿²½»OùÊV¡ì<vVÙÉQS±•àªƒJXQŒ.G+ÓW”È­ë”¨ýX%ú,L‰ù¡¯ÄŒUâüž(ñ\'î*ñ‘l%þž‡’Ø²_IjIWRd))#cJªW½’¡ý[Ép&)©B%3SWÉ9a¤ä_+94¨’ÛŒUòrM•¼÷R¥Ð—¬~/SJ!JÉÍV¥ä÷s¥ôã¥|q½RQt_©ŒÓR*Ÿµ(»ÃÂ•Ý}ÁÊî”½ùÛ”}ÿïý6î±ò½Ååûåó„òÓãCÊ±Ú)åD1Y9_PNeîVNµ\\QN-\Z+§?h+¿»(¿ýGqy‡sáu\\()¡!M¥BFÈˆPF	‰ŒR¡”(«l*Ù²GT¢¢RÉÉV’Ñ}÷Þ{ïiôþÞç<Ÿ¿î½Ï™÷Ü{ÒÿrQ÷ÿrÉ¶ùW¶þ~:üWtjç_QOþ_ñ¿’¿‹ëœÿ.Êuþ.õ’þ.)Ûÿ.|ðwEôwÅÂ ’ð°ê@@5. Ú7P³·¨\'ÔçwV‡ºVâkúM\Z%¾€µ²Àº‰=€õÁÓ€\r‰\0mîE€Î´=@×’ÐõQèVèN66hlj¬\0l~°õ\0°}ÓUÀöá%Àî‹€ÝoB\0»ùß\0´^ÀÞ·r€!¸°ï~1`_%p -\n`Œ»j\0ŒSØ\0‹áû\0›O.\0›Ïæ\0Û5\0ÛJÀv&`×p8øà8‡808Ý{pñî¸œŽ;<8V”8~nÀÕí.ÀµÜàÖ·pr}Àk­ÀÇ+àóñ.à´‘à¿à›Q	8³8óªàw€	ðsœø/H\0AÇsçŸø\0BÔ^\0B\Z€‹P€‹ãRÀÅ©‡€Ðºó€p•Ë€uS@„m\' ‚\\]¿¸¶sàÚ¹Š¸®`n4_Ü4óÜÑÜ|º“¹\Zwsß»Øì\rH3$Ï’eM€ÔÄß€ŒsL@æm5À!#@–Lµœ¸ÿ6pà\r çsî\Z çI4 ÷Ë ¨u/ øÖN@qÛf@©\nP6Tì8¨ŠdªyÏµ€ÚÏu@Àã¬9Àãwõ†n€§9î€§mw\0\r?g\0Ïj÷žkž7=¼8üð\"ÞðbÌÐtù åë~ÀàMIàÍóM€·6€w·{\0ïþ´î´FÁ\0ïÍòmýF€_O@÷þ0@·ïq@wS.àCF ç¿|öm=øxD\rðñdàcËà£¸ðéÉ$` ;\n0æŒ|‰|©­|-|³Ýø6c˜²0L§Nfü€™A%`6•\nø;ø¡ðÃ,ð£†	ø©üvpÌý)üÉ·\0ü™»\0˜7üø»Oøû÷\0$<€t— kî ÞWHÒ	\0J¼	€R ¿N0Ü\0B¹€¤® !¯Ø,4€³\0à‹\0ô=€0¹ ¾i\\=p­2X\"@~Æ Xµ ø4XÜ{°x		XÑ2¬Ð¼*žº@•ppÕ±T Zê$Pcì-PkÐ\0¸‹j7mŸnŠn6\rê;¾\0ê¿Hê/|n+9Ü¾¯¸g_pá\'phxçpßk:ðÀ6ð\0´hâøhºÆhº3h¶Â\0Z´åNåïZÚ%-ÓZ€VÇ€‡[]6çF€¶éí@Ûþ·@ÇG5@GÂ3àQ“ S\rè¬¦t¾|èr`\rðøR<ÐX\nô°Ý	ôHŒztgOÎé=·ozÒT§z;€^5aÀÓ6ÖÀÓ^†À3Cž@j0àþm`pÔsà9Ÿà¹Zkà¹†ÛÀó¤`ˆÉ+`9\rBý¼h§@€WáR`äw`äï`Ô05–\nŒ>ÞPñÞïÆ¼}Œõ8ŒkœÆ€·``âž?ÀÄkOIi€ÉýÀä:ÀLB#ðÎ‡\0à½„ûÀû%Àl»^`v 0;Ä	˜ýj\r0wi˜—ý\r˜_ŒæÏ\rN‰€Ãß…O0À¢žÀ7–%I“ÀÒ\raÀ2…°¬:º\røPOøÐ.Xw°\rXŸ(>ýè\n|:uø,dð¹‹\0øÜûðÅðÅ;)°i`Ølé|µ|M-¾q\Z\0¶þÑ¾Ÿ,\0¶yM\0;ÜÓ€ÞÝÀÎÎdà‡ú`Ïþ~`-Ø7·øQ<ì×±WÜŽ:ŸŽ%®ŽµRc€_ûG€“5Pà·q+àæ\"p†,Î^Ùü±±øÃQø+3øk®økyøÛ{ø›œë~\\ÀmþÝ„D¡ñr ìÎ ¬ø\rNr\"Ù.@”þ# Z½ˆöþ	DŸÞD×ùñ×	$@\"r;Ô;¤}º¤sÊ€Ì0AJ2€ì«€ìV §€ä,oò^X_r€¢Gs@éÙ@Y¡-PþcP±k¨dc&€KFÀ¥‚ýÀÁtà¿Ëª U®Lz”´zëÐ\ZbHcbh¹hý1h}d#h=Ï´Ai	\0é†€Aª€6—ƒ¶ô<ééAz€%ÐVÓg ­_/ƒôO¶=àƒ¶ý4m¿á\rÚ»ÚÎÃ€v:¬í|q´³U\0Ú%û\rÚ­w	´ÇÚ»ZÚëR2´÷íó>	: sd£€™yœ™¶‚Ì«mAC¯@‡ÔªA–ôu ÃÇï?ã‚lŸƒŽ0æ@ŽGg@Îÿ‰ËèXÊ9Ð1ì+r³h¹çöƒ|.4€|†×ƒÎ<Ø\0òÓùÍ@þöi ³Ïƒ‚Î„ƒÎUïgÓA!ÏcA?í\0]¸\0\n½4\n­¨]q]³½ŠŒ\0ºÁ\0ƒnNN‚bWoÅ=I%0Þnƒ÷‚’ï%Ûý%Ÿ\r%W˜ƒRm·‚Rÿ$€Ò?Aé©* ;1s ;·k@wª‘ ¬¦ û/A97rß÷€òŒ×ƒ\n&@…ëAEŠÏ â§N âWëA%_ö‚Jæ\ZA%$¨T	*ý­*Û*³@¢AU­gA58}ÐC\nTëôTû\rzü¨TïzÚâjÊ}zÉ\r½¾¯\rz»qôÎÊÔš+½ïÔ½Ÿ;jórµî‚Úy q¨s­#¨“Yê6Ç€ºëÜ@¬ÿ>T^õÆñA½21èãúm A×\nÐ`æ\ZÐß4ºþ8hÔ×4Ú)¾\ZŸ½š(W€&zÛ@“>/Aß\\E ©§×A³NÐwYèG£?èÇ—Ý _„\r ß¬} ƒ? …/ \0IÜ·	¼Þk-‚ oR@PüúÏK«ÁñL\n8¢íÿ	¢ý~bt½±@l`ˆ­PqÞ¼qC Þ%ˆçžæ\0AÂ§@â\0Gu$}~$s&ƒ–;‚–Q?Á*«wUs¶ÕÕÀê;¶×ÌŸk8€5Uu¼`ÝƒßÀ›w‡‚·lýÞ–ƒo›g€·-ÆwÞï*¬€h`ÃÏàý‡Á&ªæàƒ\\\"ØÜiØü.l^¶d¶€­«Á6:E`Û›`{Ñ øHùØá6ì°`vîÖ;Ó\0»Œ_»íó{¬*{¯?ö.ƒO7y€}kgÀg®–€ýYÉà\0í×à\0z68p&H]\\¤€ƒ¥nàóÙàÅkÀÏž_9ö|%GŽ€]G~\\_×ÂƒodÛƒof6ƒcŽcòƒÁqep©\'\'ìéß26\0ßRFƒo_²\'n¤€áãà”µàÔžßà´²0pZßpú„\'8]fÎ\\7Îº0Î‚~gÁbÀ÷ïÂÀyâ(pÁ6{pAÎ!pÁ“à/piÍsp™\\~¦\0\\q×\\kg®ó\\×¥éÝ?þ¸~\nö7ÖO€‹àg\Z¹àgí,ðsO;ðó°§àç7gÀÏkw‚›¶6›ŒÕÀMÇYàætðË+áà—)!àW¸%ÑüNq\nÜ\n£Û/‚;lÃÁM\0p×	¸ûb3øÃ—)p5\ZÜ|îW8€?ýxXž?;Y˜WG.—‚G*àQµëàÑ(kðhûgðgKSðWU.ø«¯:xò!ü\rÏODƒ§£·§ÛxàÏ?à™{»Á3‹\nð¬Þ+ðìnKðÀpðÏp*øç—Çà_¢³à¹ípðüõðÂ™à…»ÀÀé`àÏG`Ð}6^áFg€Ñ‰;À˜«00~ö5O)\0[¸`ÒÑÏ`R_˜ì6	¦®©S·úé»VÀô[Þ`†öC0óD4˜µ¾Ì:°Ì6‘Ù.OÀìz(˜-lóƒÀür0;U\r€Å[’Á’ýú`…ÿW°¼üoÎ¢šmQí¸Q3;	Qg~høWA4ÇL š_‡ ZšLˆ¶E=D·R²±æ!dSÉ1È–‡U½3ºýC‘}‚d[X.d[ã)È.²‹Ü\rÙcý²§\n1lÜ98¡1ýøb†˜…˜ûƒ˜£Ds¡#Äb}\ZÄ\"¯bùé)ÄJËrXÃb“e±Î‚ØÝbCìõ?BŽ¬¾q¨÷†8zì…8%/CœƒÚ!.×ò!ÇÿÌBÜp· nÒˆ{øAÈÉvˆ—‰Ä{çÄ›ºr:á$àÌH`I7$ÈdTD‚œ[ß¹d€\\²ƒ„ÚP á2!áƒë ¿öB\"æê W¤«9ökíiÈÔdÈõ˜¨gHTr;äFG8äf‰\nä&þ\Z$¦P\rS}wá<ä–zäVñ\0äöÕW¤š$G#HÒ™»ä}HêH*$=ñ$½k$Ãz$S|rÇtäŽŸ+äþºNÈ}êzHv¾/$o\0É¯Œ€ä³J!…û!…— …¹é¢×b‚1¤ÄŒ)¹&”>Ü)\nT.Bªœ9ºñÈãÍzýú?¯!Oml!O=[ O«÷C\Z}!\ruAÆÑuçyxÈ‹Z\'ÈÎ(¤IOÒœày9›\nyÝ>i‰s¼Ù¡yóù.ä\r\ni}}ÒîQ\ritÒ¡¥éä	 ];!]Àîü³îŠ^È‡UMžƒùžC…ž£o =é$HïS¤/è¤ÿ“2àö2ð12\0¹|ñ2ö÷$dŒ_™Xÿ2i‚|;™òX†L—…Bf«r!~¸C,‡ _‰!Så¨Æk,1‚x{‚:ÝÁÜß\nÁ¼»	Á›©Cð6\rmBÔû\n!në‡6d@¨;L!ŒSß!î „ù€a=N‚pvü„å$ˆÈ¿\"\Z@Ä´-i	Dæ’\n‘[kBä·WCzE¯ýÅ?ÎP•õ,¨ªíc¨Z=ªáo]ÃCµÍAu=U yæÐ-û«¡[Ž@·<è‡ny»ºåÓ-¨Þø6¨¾ñtú t{«:ÔàctoÒèÞ\'Ð}–ï û¾&C÷9\r=Ø­5‚šþ\r†šÝ¬ƒšý¡@ÍjAÍ36C-j.B-¡ –è+ÐÃç^@íbP;q:ôˆƒô~ê”Zu	ö‡Ûûzì¹\nôØëÓÐãÚPWóÇP×Yu¨0êÂ@OÀs¡\'¿ÏB=û; >á\rPôg¨	=“÷êwvÔoüÔ…„”„Õø@ÏÙ¨AÏ)^AC¬¿CC~* —žÍBÃ¾¶CÃ}Ðð+2hÄæMÐˆ¦÷Ð›–ªÐh4îÉ;è­‡áÐ$û,h«\nšùËšeZ½ïç	½ŸVÍþé\nÍ]‰æ…´BóB ?f¡Å~ÚÐâÙÇÐ\nZÖ«„V>C«dîÐ‡\'ßC&¨Akµ.Bk•&ÐÚ•%hÝ…ih]F\Z´n<úÈø\rô‘ú¨	­”CŸ«/@Ÿßv¾ÖC[f’ ­»^C[§Û ïõª ïýS¡m3xhûÆÐöƒÐ® `h·ê9hG:´¯¡é?8Ð èÀs.tpe:bkí¢BÇbT¡cµ3Ð¯ç¶@¿¯@§¯@gï£ ³àÐï{Ô ?}œ ?oFCÿT¯…Î_ˆ.Ö….Øð ÀÝ((H†€B>A!}Pè–V(|h\0Š¼nE\'A1R(¦dŠ™©‚â‰g „\\<”è´	JlN†’$PÒ­PÒ›ïP²Ú(eÛV(µm=”þWÊ`H –”µSe½K…rÞâ¡ÊÛòf PÁ™WPñR2TJ€Êv|€Êb¨ü…)T±×ªˆk…*€¿¡‹õ+Ð¥u— KÕ¡Ë¾ÞÐåG-Ð»B ÿNØÂTò<aªÆ¹05ï°Õ`«Ñ°µÂÖE0Î\'ØÆÿ&âÜý0=Ãµ0=Alki#Lv7lÛùØŽ“°‰‡a{lÖÃöœvƒíAÀöFÖÃöÎÀö­;\rÛ÷Lvà	vàå˜Ñ]ÌØ½f,ÁL4Òa\003óo0ót˜ùé›°CÑ×a‡ÊÿÀ¬¼~Ã¬®Ëa65}0{Í9˜}f?ás°ˆ‡9û©Âœ_aÎ¤#0——(Øñ	0·O¾07Ð,Ì#Ä\0æß\0;qñ&ìTþ˜ïÂG˜/7æ»¸ó»]\nóƒÅÀüe@ØÙÀí°€4,€§ËmØzò´”Þµ	vnv.é#ì|!vþyì<àìB§v¡ÇvI6­……E>‡…M>€…)\"aáßÜaOK`WwGÂ®=¿	‹Òÿ‹¶\n„E¤°oÐ°ß½`1!JX¬¾,¶Ä·ÓÇ|K`hÁnå›Àn[[Â’oÂRüvÂRbB`)ì)Xª•,}»	,£»©	»S»÷í*ìx=ìž4–µº	–EùËŸ…åv0a¹Z°¼¤rXÐ–ßý–ËlÂ\nÿÔÀŠÊC`E\\2¬¸à¬xTVª¢+5€•f©ÃÊö]„UÂaô!XeŸ&¬¦ô7ìáØCˆ/ì‘öŠƒ=©¸\r«_•«8{:Ÿk*€5:a/6ÀšÇaÍñÇ`¯ü6À^ÃÞj5ÁÞyÁÚ¾.ÁÚÝ>Â:l†`Ÿ`]þá°®æ°nßõ°«°[¤°µjXÏ37X_†ì#ë\ZÃ>‡\r8[Ã†N„\rÝ¸Js€\r=TÂFòÇ`£]ó°Ñ1}Øçñ»°‰5>°¯¹Øä.lïû–uöm:6µú=læ6\0öKûå·öëöKn›;­„ýI_„ÍWß‡ž¼Za\'7äã\r´g\nï6‚!\nËaˆ‡—aè6x›·†ûSÃ	á/þ…ÑSaÌ”,ûð#GÎƒñê>ÀxÓJ˜àÓ^˜ÄòLÒ“¹çÀ«{a\nI&LÙ¿¶ô>¶r±¶’¾®ê>W{Ë‚«ëDÂÕÛà«uð5»#ákÒnÁ5ŸÓàšløº·ÞðuƒÑp­n\r¸¶ý(\\ûã.¸Nÿ\n\\÷N9|cq|SÂ,|S®¾éù)øæUWà[êá[~m…o·µ‡o÷ûß~ß¶ß½¾wã#øÞ¿¿áû‚vÀ÷µ9À÷wyÁ<i†ÙÁ<\ràFâN¸‰G6ü ü&Ü´W7k—ÁÍäOáæ¾¥p‹®:¸¥é	¸UvÜÚ+n}ž·ÙnwanÁ	~„‡;è”ÂtáŽ¯TàG›vÂ¶OÀþÉ€;û]†;ß;?î+»Z•Â]›ÖÂÝ§tá\'ÔàðvÑðÙ\rpÏÜst~jõmø)ôÜwó¸ïŸðÀ«Lx`eü<¿\n~qÆš6}\néÂC™æðË‹0øÿø•\"<âå\0üº!\r~}rE‡À£gÎÃcÃc\nlà·âÀðDðD=x\"ç8<¹ÞžÜxž¶ŸO»ÿžë‚§ËFà{àð~Wµžzž«ŸÏ™>‡ý~J€?à–ÃË÷ûÃËëèð\n“?ð\n÷ÏðêöRxÍþwð‡·ÒàÇÏÀëµRáÏ<7ÀŸu<¿L Â_+SàojèðÖ+ÿàïýám\'|àm[xÛò5x»a:¼ým	¼ãèxÇ½ðÿx´þòØú˜þ‚€PÍà£#{àcGÆác!.ð±ÿô¾†‡±ûÿÊ…OÖõÀ§NºÁ§\Z¶Â§É½ðiáWø´\\>½ü>ó >Ã*‚_—ÿ«ÿI„Â[¶Â–Âç2á×öÁékààmÏààË\'ààœUppMº+õ¥À±.&pÜëp|Õf8\'Ù[Â×7Á¹«Ëà\\å&¸`í¸\0r\r.6ƒ‹iÁÅD\\¶®Ðô€+Oü†+\ZàJàuø\"d¾ô_Ý.1uáKËï*6„ª)bõ†xÄšÊÇŠÄZ¯q„fIB³w±¡Â¡sÁ¡ók±iÍ$BÏM¡÷x±m›±­w±óÆ3„A^!bÏ‹Cˆ½Ïc{I%#h Âxd\râà—=ˆƒ\\¦¾WCùË7„U×q„MÙk„ì0Â«‰8òGáàs\náØ¼qt¹áláŽp¶ÕB¸.!uˆãîÿ®ì1„[§á¾ñ-Â=Z„8yÄ	q²<áylÂó_\nâ”^#Âër\0Âkð\ZÂÇ¤áë5ˆð]¡\"Îhq~§8ÿ¹d„?É¶8†AmºŠªúŠ’E\"‚EIˆs9ÖÆ\".ÐV#.ª—¶Ì#BÍÈˆÐ¤›ˆ°µ)ˆ°‘fÄ•Ä•aâúº>Äõ«`DÔ*)\"êR#âFD\"¾Â‘ €HðùŠH*ñ@¤\\@!RÞ3©§*w*wˆˆ»É#ˆ,ƒ(DVåÄ}ÓçˆÜ›¾ˆ‚sˆ¢âî¢8Ÿ„(~(¯F”NŽ\"Jù`DEZ9¢òÈoDuÑDÍÕ\'ˆšÇµˆ‡ÖnˆZvÄãuÇý†çÎ êkôõíEˆ§«Š\r`\'ÄsÐ\nâEÚ¢©ì9â=ñJþñúŠ¢eå&âAâ×>DëÇDûÍDçþËˆ®Û£ˆ®Gqˆ.¥¢»ö¢~ÑûÌÑ‡F|™FôíG\\ÌBfd!†Š~ †9»#Q7ã«\nãauˆ/ÞRÄ”*bb¯bâöWÄDõyÄTfbŠu1CûŽ˜ýbŒ˜ŒAü\0]F,|×E\0PúàŽpÅcD÷;º¥	½ß@o¹‰@\'‹èOµü±û¬A×ŽA°Xþö©<»¾Ái>‹à,E~g#D+_âA[„tr!Û4ŽT!–Âøˆ¥ðÄÒü0by×Ä²+±pCüKÀ#UòF*KHuØ\0RG®Öy\\ë¶ˆÔr/Cnx¤…ÔŽ5GêNýFêþüƒÔ%E#u—â‘›8H=YRÿd	RŸÓŽÜî°¹ð¹ã]r—Jr—y\ZrWò$rÏíbäÞ…ãHãÌkH“ƒFÈƒ›–‘¦½5H³ý(¤Õõ%¤õ“UÈÃ£sHÛM\"¤mH6Ò¾¨éèòyÔ…tJÔF:e¶#ó’.\'ÑH—{vH—ŠIä±ÈçÈã;µÇ¯›\"]Ó_ Ý®#=º‘½žHÏ­iHÏÿ§ÖÞEz©è ½ºf§\rš‘gbaÈ35_‘gúÁHÿ§}È³J2àB2¸\"rm-òÒãÃÈÐ§‘—O, /_øŽ¼ü»yÕ¤\nyU¼V×€¼Æã\"¯\'g\"¯?¾ŒòéBFOüAÞ\\¹ˆŒÙV‚Œ)hEÆÆ®FÆNÇ#ãµiÈõëÈ„=ä­dJI2¥J™òÊ™ÉtEÞÕJAÞ})EÞ+Df%	YH2?þ52_yY˜Ž,ßA\"4EbÌ¥ÉÉÈÒ¯eO¥çØÈÊ3W5	9Èº4Mä£# ä““»OB-‘õ7#õã.È§±ÈçbdóþZäË$Uä+_òÍ†È73Èw}k‘­«®!ßŸ‹B¶¯yŠì|¡Šì>CvßlF~`¨\"{T¥Èž?doÙ—5‡ì«²Fö¡â‘ø\"‡^¶#‡Û¾ G’ GPÖÈÊäèågÈÏkxÈ	‡ä×CääQ5ääTäÔ—7ÈéùmÈï46ò‡Ÿùó-ù+„‡üUB@þ>ò9÷|5òÆ0òüržGþ5A‚\nT ©Ü®ƒ„uw#á7\np`ö‰ºQƒDë‘èKöHÌT\rÄŽ5!ñŠ$Ññ!’¸2$/<FÒ{„HÆÝQ$cØÉL\"™òY${\\É!ìFrS+‘ÜŒ¯HÞº¤ ùR<þæ#Åc×R\r¤”ŽBJWF‘²ÍHù§sHù)—Å!Þx¤r3©ÜŸùËÈÅ5ßË¶Èåhä2å\rråß3ä?¥\'JE @­ÚœˆRHD­Æ©£Ö¨EihrQk·Y 4·~Biº- Ö‘x(-¾jÃ>jCdJÇéJgì;Jwõ+”îd	jÓzÔ¦j³fJÏô+JÏ/¥—ý¥7òµ•}µ•ƒÚö™ˆÚÑP€Ú¹·\Zµëò_Ô>L	jÿônÔä2ê€ƒ2Ê“ Œ]Ö¡Ljo ¬\'ÚP‡Ã7¡ç Pö!/PŽ½¨£È(÷ÏPîÆ§Qî‡µPîTw”Gt2êÄj&ê„Ô\0å¹6å©k‡ò¼r\ZåIÈ@Zk…:%hAy Î0lQþàË¨€\0* ì,*Ðö*ð\\*hšŠ\ni«E…@o¢Bö B?1PW¥7P×47 \"×\\B]À¢n$P±{w£âvÐPqT$*~Õ•5x\ru;TJŒá¡’š?£’ÝP)¦¨ôÿöÜ™£î._CeåE¡îg}De;@å„áPùlTÊTÑ½QÔƒ=2TÉ	ªLòUYÏBU½¯DÕè: æÙ¢j{$¨ZÒfT-Ÿ‡ª;-AÕÅœBÕ\rÞA=rAÕ_.B5<¡\Z¨¡\Z3rQÏR¡šþE¢^mùCq¨–M7P-!TK’Õ2tõv‹6ê]Gªõýê}è+TÛiªËéªÛ‰úðŸÿ€<TW\Zª×à#ªï@?ªïÆ)T¿„úôü#jÀt58 ‹\Z^&£FîÝDR…¨1\"ê³Vê[|#j*I€š¾V€úîwõ=ÈõËú.jþê/‹zë¡€é«QÀ÷1(Ð»^x<ÍrDÁ¶£P°6\n¡ÐD!M(äóÇ(ÔÐyút\n3Ý€ÂæJQØ¡·(œ-…e¡])(²þÙ‹¢\\ ˜[ÔQÌ–ûW-ŠƒDq0Pü]`ßJ%ð\rD	¢zPâ‡=(Åö/(Å°5j)Fµôî.j…ÚŠZarÑ*ë£Ug¿¡Õw¶¢ÕËž¢×L” 5ö]GkXZ£58èµIáhÍž{èuIè\r@ô†±J´ö¼ZÇ©\r­smZwà/z£ízãø$z³©*zsê>ôl>zÇÕ0ôŽ¿çÐ;\'÷¡wi%£\rìòÐ#íè}[=ÑæŽoÑ–¯cÐVõèÃö7Ð6Û\rÑ67Ž¢íÊŒÐvÝ\rhÇ§æh\'KK´ŽvQòÑÇÃÇÐÇ_´£]µhh×h÷ñhV.úÄÚïè_~¡Ošv£=.¡=åÐ§ÂœÐÞMhÜO´¯–\'Ú—¼\r}F\Zˆößi€ö¯‹Bû²Ñ¿V¡ƒ¼ƒÐÁ–ÏÐ!{Ð´ÅèÑoÿ×–@óèËe›ÐWnÜ@_50AGî²FG«ŸDG›=BGÑ7.¢Ð7G+Ðq^/Ñ·¶ÑÑ·LÌÐ·ˆcèÛ›ÉèÄ[-èÄ™1tZñgtºåitzC:#ÑAÏ@gšïFgËièœÝïÑy­Vè<Q(º@#]”¸ý@Õý@Cˆ.=Õ‡.}ìŒ®LwBW6•¢+±Dtu}ºf>	ýðTºöé,ºV9®‹x~‘†~|+ý6Œ~‘S~A<€nÚ«n¢£_÷¢_½{ƒ~Í1A·œÝ‹ny]nx¢ßªC¿]·€~û¤ýî/ýþXº}ÝRA÷­ô¡?F× ?V=CZ“…Xg…Ø7øŽLoE-IÐÃ*YèaõMè§³èÑËíèÑþ2ô(Ù=æ@EmCO×£?Ïô ¿jŽ¢¿*3Ð“FcèoNÑßä½è©8z*ÏýÝ~ý[‚þ¹cýóvú—ßMôï=›Ð¿—ÑóG:Ð’04pâ7\ZãŠ—íACT¼ÑÐ÷Ñ0H\Z±½x‘ŠF¼ ‘z~hŽÆ¤d¡1ÃÍhþ(\Zkó?€@ãë8hÒw[49âš<Š¦ÜÈBSÕ.¢™œ14så3š}fÇº¢¹¿.£ù†\n4?†ˆ	ÃÐ²1<Z¾.-ßÒ‹–ûš •n“èn7ÑÿüuÑÿP@ŒJ.³j„Q›CaÖ¬a4bÇ0ëvŸÂlX>€Ñ5ÝŒÙÔ·³åÁP¶`¶P«0ztÌVÃ~ÌÖç)˜ãÆ˜$fç­¯˜ )f°³§Õ³w!c`bö_¥bö+S0¬\\0Fýfãµ¶ãíC“sï0&iw01¦†ß1¦W0ï¨˜ÃeÛú`Œƒñ<ÆiÆéÀŒóT Æ™¸‚qÙi†9¦ÁÆcwaŽq/`ŽŸ\"c\\UîcÜŒo`Ü…þ4ŒçL/ÆË*\nãóã£Ä`üž20~J)Æ¿Vãß¡†	pÑÆˆïb‚½¿`‚\'V0çD0çGô1çe[0!Ùe˜z¿1·‚1¡Ý—1á\'vaÂã0—‡™˜«ËÝ˜(`æ¦ó.LŒw&ž\Z€¹p	“¨ý“ì‰I~­I‹I¯ú„ÉÄ`2»îbîØÛa²>`²ê<0÷]1Ù;·arÊŒ19oÜ09¿ì091yArLÁ¶˜{S0ì\0˜âmY˜âÛ+˜â+LñÌeL)ö!¦ì÷Lyc(¦r7\0SµÒ‰©ö0ÂTû7cªgó1M\Z1a]ÎÃ<\ZÂcË˜\'QLýîrLÃ˜Ó?‚i”ébžÝÞŒy^ýóœ`Œy!.Æ4k`š³;1Í7Ì«ýs˜×iLËLæÍªdL›¤ÓŒÄt­\01¾eaúJ}0}=6˜~Lÿø\"fèí)Ìè÷dÌød\ræËRfâ¸æk´5fÒv3ù¶\n3e~óýd&æÇŽý˜\0ÌÏ”o˜_›,1¿žcæÂÞaæ¾À0s¤O˜?0:Z˜o]ÌBx&°Ê°à`\0N`Ñ,t©ÙÂ@\Z0ŠèVkô¾îƒ2ŸÁ`•¡œC%ß´	CQ‹ÂPF±jÍ4†æzÃØnƒaþ2Â°ºF1Â¹NŒ¨õ\'F„:ŒG˜`Ä‘@ŒôR/F^}³Tt\r³LèÇüS+ÄªäVbÕ¯^Ãª÷OcW¯nÆ®žZ‹ÕpÅjœÌÆj‚ØØuÖØupkìz«*ìú¸5Øõ¬N¬¶½\nvsE8VïÉ{ìÖ›O±Ûûbw?Àîî¬Æ\Z¬ÉÀî1=ˆÝ¿§»)Æ\ZÍÝÇ\Z2±&C{°¦ÎáXÓÄF¬)°k~Ç{¨YµZ|µnõÄÚèjcmä°¶æÙXÛTÖÎúÖî>kOu¸?†uÚ¥†u9V…u+ù‹u=ˆ=õê.Öwëí¢õQUÁž®C`O3¢±¾–b¬oŠ:öLu2öÌkìÙUg±gMÅØ€†½Ø r+6ø[6øûfì¹¼^ì¹®.ì¹Ÿ/°NUb/ÚßÀ^ŒëÆ^êóÂ^BWaCñ°—¿žÃ^a5`¯¾ÝŽ½v|/6úÝCì\'O°7Y°±aØXÜ*l<î6ö?›h²›èÍÁ&¡K±©w/aSÇÜ±÷²¾aïÝÅÞƒ8b³ž9`ïo#aïû½Áæ˜:asÊÑØ¼Cl®#ö)[òw-¶ì®¶¼“-ïZ‹­ËÃVî[ÂVqÁV7›ckŒb±µ·wbk?\'aŸcÚ\'°/a›íÇ63µÿCûúÔ]ì›“ÚØ·—¼°­¶Ø÷;pØÃŸØŽ˜½ØŽÙØÎ÷ï±]eØÎ/Ø.ClWÅClw¶!¶›]Ší¹íÕ¹‚í5Áöæ‡aûž%bû¬°ŸÁØ¡—Ø¡™QìpPv8R;rñväEvì,\0;VÙˆý|–Šýò®;á¥†¸’€ˆ?ƒ˜âc¿fìÀ~ýõûí¯;kJÀþ‹°?³¢±?Ÿ½Áþ:÷û;Hû;&û;—[u;çÔƒ]¸6Šý{ä2öïÑ ìß(,€AÀ?^Ã‚N>Ä‚oÕ`7Žc‘ï±¨s‡±xÄ<–`qKÈ‹Ä’o¡°ô	Xö*,{@ËÙSŽåÌb9ü÷X®­VbP…•Xëa%Ó©XÉ¯ïX©ÆQ¬4Û\0+K8„•~ƒ•Ûfbåïa•;l±Jè¬’å„]üÆÄ.]ÔÅ._Ú‡ý‡ÔÇ©:¾Â©¾WÁ©u¾À­yV†[ëÂ­#XáÖï¨Æi=ñÁmVãtžà6Š£q[âÎã¶dYã¶j5ã¶^ÔÀé_nÇmS¿‡Û¦Ám;ý\Z·ý¶;nû—\\ÜŽïq;úáâÆq{¾àöÇmÁ ¯Â‡pÆ³+8cÁ9ÜAû8Ó\Z)Î¬Ÿ‡³ã»¼ÆÙyqöF8û°Ã8F-ÎÅ+çÂ¸;~¾wüB2Îu\rçêòçÝsÏYÂ¹Kãp\'|ôq\'h#8ÏH=œ\'Twªp\0ç³y\rÎgç?œy(Î\';ç›Y;»¹w¶õ\n.è`.hê!.xÏM\\ð™2\\pùîBýÜEo1.ô”.4°šù	Þ»wÙ¸wE¯wõD.òh2îzÊYÜõ/\0\\”«.jÚ	uÆEsºpÑ+…¸†.¸=ó¸›C¸›¿ïãbÆq14.Nç.®ñ.>ƒ»ußw«÷#.ñ]).iæ#.9-—šÕŠKÙ€ËˆØ‰Ëëà2ÍOà2Ÿõâîi%ãîwåá²gæq9Æ¸œò\\N/—ów—ûËæãò[ãŒUã€ûq%¶q¥ÄU¸2O\\yH®Âô%®ª.W‘ƒ«¾á{d^ˆ{¢~\0÷¤9W?k‚{š¼×À‹Å5,;á^¬!ãZœpï’õpï\n\\qïäã:\"pIÕ¸®à Ü‡xs\\ß]\\OÀK\\ï¡\\ï¯R\\ß3\\_ûmÜÇº7¸ ¸þ\0=Ü\'MÜ@„n0¸7Tv7ü…1:‚ÝéŒ[â¾,[à&¶ºà¾N—â&Õûp“®à&K\npßFÎá¦n¿ÄM«œÇÍXXâfpwq³‡Å¸ÙÉK¸ïtÜ÷ø=¸_{Vá~¿àæ\nÕqökà€Gq@-ð~#ä6Žƒq°”885‡Ô:ŽCnÀày>8d“>9¸‡¶IÅ¡“òp›+8LE\rCYÆáY8ÂG|sGÆâÈ8ŠG[wÇZ»Çéº…ãÙ\râøÒ4_6ƒâ·ã„¬8QK\ZNüœ„“lÀÉº6â_á–7\0qËxÜ¿#–¸³FxÕùxU¯–XˆWOñÀkXâ5ÜFñš¯cñh¼¶¹^Ç)¿ñ[~ãÜ*ü¦Ûñ›M³ñ[×iá·îDâwÖ[âwk2ñ»}Âñ»‰|ü^•cxC7*Þ0´o8ôoø5¿Ï/\0¿¯÷\0Þ(t=Þè‘Þø´Þ¸.o¬lÂ›¤YâMžuâº?Ä›¶àÍZ­ñæÕ ¼ù\"Þš)Áž(ÃÛxÍâm7–à¼Dãïã[á¶âÖºá~:ŠwYul1ÞÝar-ïtïšŠ÷“ˆñå›ðJ| w\n>°v	”ƒÄ‡|Ç_ˆßŒ¿ÈëÅ_uâC·}À_ö2ÁG¬+ÇGØŸÇ_\rá¯*4ð×ò«ñ‘¹9ø(½1|T}|M{Ž‰çãck“ñqæûðI:~øäÛOñ©j×ñ™:[ð™ƒ\'ðw#‡ðwÑð÷Jlð÷Cnâ³—­ð9\rø‚¾¶_H8ˆ/\"?Ã)ðÅD|Éöø²æ|™HŠ/Ž¯ð»€¯\0‘ðUãÖø*Á¾®ä¾îY.þ‘YþÉú5ø\'÷ñO\r[ðO‡žãÄ¶øÆ#‡ñÙhü³¼füó42þy–þyã|ÓS_|óÇ|óÌ;ü«{/ñoNøw”¯øÖ—åøÖAüû±p|{2ß©®ƒï´!á?¾½‚ï¿¾ßÿj?òg	?ºõ,~tð<þ³ùWü„—~rs~ÊÃ?\r?Ÿ…¹áØÒñ¿^uà«Mãõ™xÈ¡cxh‹5†ÁÃurðð«ÞxDâ‰YÄ£_ÙãÑäxü]<ž{OÞ¯‚g:añLJ6žUòÏÞõÏž*À³‘ÿ-Ï|ÇóÖâùi%xáÀ6¼%À‹6Qð’•íxyš^9¿¿Ø¦_ºq¿Tý¿„7À¯œô#¨tþ\"¨ªTmMªŸÔÇ5	êÔVÂêH}‚†ú Ak;Ÿ°AÆ#è†Ÿ\'è>Ð$lÌ™$l|9OØüBÐþHÐo…¶1ž¶»…v¸~#ì2ûG0üò…°o´Ÿ`¤ÙE0òüM0ŠUŒ¾–Œµ\"	&¯ÌËÂ	¦ßè³²M3ô Á|Ù™ph8œ`iz–`µ¿Ž`½Ù—`]¦F°æ 	‡©úÛwR‚-H`7×Jpˆì#8m\0œOn!¸ÛE8v\ZMp½=CpmzEpýªJp+|Lp\'ÄNÜÓ!œüëM8õö$Áë§*áô;ÂË„\0k!8È…p>d5áüÅ·„óoa„¡¿Z›ºm	“Õe	„Ð®B˜ÃNBþ!|[4árK!‚ØA¸ž{‰5Ë$D«¢7r	7`¶„›±LBŒn!&«˜»NˆzâÎáñö÷	ñˆBB‰!¡t†.!¤l_EHï¬\"dÆü\"dfÌ2DB&§™pGÁ#Ü=B\'Ü=ö“p·ˆE¸7åEÈ>-%ä¼o%äo.$p„¢)¡Ì_—PFÏ#TœF¨˜µ\"T®n\"T-Zªïijú#ú	Žçk#<ö¼JxüfŽðxnžP¨\'Ô³üù„w·Ü	ïîü&¼ÃÉ­ÝïyZ„6­=„nC„?»	þ}$ô@±„¾½„¾ëz„OYë	ŸÞœ ò	C•ê„aË4Â—ÍÂDôYÂWÕë„¯„Âd60sDN˜¹Eø¾Ñƒðýç\ná;)‘ðcõ\"a™Gø\\$Ì»ºæ#?þÞ¯&üm<D\0Ô ü7M€Î\0ÛRI€ÙÕeZDß	®\' BwPY\rìí‚ÕcñàñëKãZé¡M`Fò	¬\',gDà¸üûÞ\n ¤ËÂ{‚hAdNAeñz3‚ôÔO‚´W‹ ‹¿G5äa‘E¶*a1É°4þœ°l\\BX)ÅV&CÿìŸU\\`ÄU6_ˆjSTâjñqÍã¢†‰)QR@\\{¨¸.å0QÇ»¨ëÅ%nþÐDÜb¬BÔÏ¿AÔoç·o!n¯ö\"n ˆ»W9w×½ îFu\r>Ì÷t÷fˆ†ûì‰ûM¢ˆûO­\"8dN<PÒE4ZH4Qÿ@4ùÖI4¿·H<4G´Üx’h¢ ZÊ®­â–‰V5ÃD«ŸND+`ñpt1ñðŒ\rÑFîN<rõÑ¡Ùˆè€W#:FM]zw×’‰®núD‡D†‹ÄCâÉóŸ‰ž®`¢ç;uâ©4Ñ+¶†èýF—è=w‹èã?Jô¹+#žV¿H<íJô½D\'ú>I%úv¤ý*Êˆ^G‰ç[µˆ&7Ã\"†¹[Ã\'DÄpl\"ñ2M¼jŽ$^‹$Fjï\"^ÿú­{‚öxãI1ñæÇ\"bŒS1îÏbBÄñ¶ò\01éY.1ŸELËÞGL/ÚKÌ8|„˜9ÓB¼³Ë…x¯h+1Ë€DÌÕL\'æÂsCˆEÛ«ˆE¹¡ÄbW,±x‰N,Ñq#–òqÄŠÓzÄª½_‰Õ!×‰5‰·kŸÚm<F|”½B|TPN|¬^N¬ŸXO¬ÿu†Ø`nGl(ñ%6¾xO|éA|sï*ñÍ+3âÛ{ˆï.ô[\'ïÛßÛ7W;íF‰w³‰Ý÷©ÄÞÄ^Á;bß?-âÇ âÇÙb¡±¿ç±ŽJü”YE¨í\"ª·‡y{‰£¾mÄñâÛÄÏ¼âñ›÷#âôw\nqú×&âÌ]qæ·.ñç‹íÄŸˆâïGâèqqšüVI…|\"‚.Aÿt‰0\"ìñã$©®BD\Z¾#\"¹ß‰˜¥=DÂç)\"QœO$1ßÉ\"O\"Ýé&‘9£Md¯‹#²¿ï%r¥QD^¥‘Çh\'ò·ëùþÇˆb=w¢ÜwQqù-QQ7ATš]\'.>{N\\ìÏ#.íñ .õ\'.oÊ%.ÿ\"WìfH*u9¤U¨$U ImMiÝ{’†aIÓpœ´n]\'iÕ’–“7Ika?iÃíÛ$m²=i3æiîIÏS•´õÑÒÖ	Ò.Ýu¤]£ÒîM\0Òî˜’ÁåF’Á/Ò[=Ò×\'IÆº¡$SçC$Ëü’Õ£7¤ÃPU’Íl9ÉÎ‡I²oó!¥œ!^%9wÎ“\\ß’\\ª‰¤ãAv$·ÖÓ$Ok’Ç7ÉšHòX^O:…\"4ï$¬è&:‘JòR}Jòê8Mò~9D:j\'ù¦#ùæÕ|»mIAUHw¯&]\Zˆ$]¢¿%…í­!…ÕÝ!]î,#]1Ì$]!;’\"ÕH×¼¡¤ÈÖ¤HÓK¤ë÷BIQæ|R´×~R4¼ts¾†“»‹Ë*$ÅùW’â“ÆHñƒU¤„uÒ-<)©È…”²´”O$¥ñ#IéfH‡’Iv­¤Ì†¤;‡9¤;G’îý)\"eU¹“²Õ½I¹ä¤‚=Rw™T¨cAzM*îœ&•»]!UÄ7“*›7’j6GjO¿ =Òž!=¹¤Oª/2&5{í$5_t&½Äv‘^úAjit ½I¨%½Û-\"µ†é’Zÿ“Z1á¤÷cÏIíVÆ¤ÎSRçÔ;¥Oê;Oê“ú“>2IýU:¤±oA¤1Yéó­¤¯oûIS³¤í`ÒÌ¤ïbÿøMúqJúMŠ ýaÙ‘æïY“ÐûI\0)	øA×“`‰K$Øˆ:	žü‚ÒIÈ”F–¾D\"x%æé$âþã$¢)‚DžùK¢:Ø‘h—_‘h1P½VHbßi!qÂo‘8È\0¿ßš$0%	µI¢µ1$1–$ý-\'É\\à$¹l‰$WÆ‘”R’2º´¨~†´˜_JZ²–‘VbûHÿœIÿNzþ•Å’Unl\"«Ô”‘UÓÁdµÀ²ZY1yÍÁ)²Æ¤YUNÖüDÖ~!¯Ã;’µ|ÉÚgþ’µ{óÉ»È[Ô­È[^\"o%õµ‘·m¿EÞV¸•¼#\'“lH6úM6~K6}€\'›m5#›íK\"›ÝA‘Íi©d+{>ÙúV!ù°o%ÙÞ ‘|ä™&ÙaÃ²ãüK²‹IÙÅÞ’|¬¬‘ìŠ‘=ådtù$ŸDöô\'Ÿ\ZÒ$û@¢È§×m\"Ÿ6M$Ÿnq\"ûZôýÛ’Ï®’’ÏJ•ä€hr ÅrP2›´t€l}„üÐŽüF“|®ø/9ä`,ùByù’Ú.rØÆr˜#9ÌÔƒîHŽ“¯`.‘¯Ðä«¦ÈWÝ“ÉW/ù¯9ê’¯¹µ’¯þ&_¯ù@ŽRQ£œ0ä›fkÉ±«ÛÉ	gÐä[‘Õä[ìÈ·¿…“RáäBrjÐirêµÓä»=äìØ6rnÓ5rA„\\«$1N’Ü­\'—˜»KZ“È¥f6äÒxCr…ý!r•y5¹\nJ®¥“k*]ÉµoRÈµý(ri(ùÉ0žü4q˜üôŽ7¹!ï¹á9ùA…ü|M~á&%7o\"7ï`_)Þ“_w°Éo¿Ž‘Ûž\'‘Û=ÉéäàjrïÖ`rïrïùã·4rÐ0¹¿f7¹Ò@¼%%]\0’‡rÏ“‡“ÈÃ3åä‘×Åäñ^Mòdi\'yªbù{ÿ^òÏˆzò¯Ù	òoO8ùwT.ùÛŸ¼Â%.\nÉÀÁ@2(·Š¢3É`í.2ÌBŒ®H\'c¶rÈ˜¿ódìs2Nµ“LˆÏ!OL‰¸_d’ýW2ùƒ™nI¦(-ÉôK†dFÚ2³ò%™õ!‘Ì	·%s5GÉÜc†d~±Y°Öˆ,È8GÌ:‘²ðÛ0Y(j!‹YT²d;–,[h#ËÛ\ZÈJ•Q²2#œ¼È†“—ö—“—þ«™åÝRòŠêy%`E…MY“-¡hLÍQÖºÓ)šS)š²”uw¶R´jþP6¨_¡èü»@ÑxOÑ-AS6íS6ô¤l>mAÙüûe‹/™²£Ô™²Óbe×©k”]-Ê®ß(»`-ƒÃÃƒ_\0ÊÞøÊÞ¢$ŠáFOÊþ”ýÙ”š)ªz)F1ý”ƒg7SÌƒ)‡‚_S,ñ=+¯«W|Š:‚rØj€b£C±m¦Ø=Ò¤8„\rP×fRuvQœz(.‡Ó)Ç´3(nÒJŠ›Añˆ9J9aäH91½…rÒ/ˆâÕàDñP¡œ©ùJñ{p—â×—Mñ_¯E	ô²£ÆºP‚3§(ªS.öS.¢\"(—ÊK(áGR)áƒ]”+Õ2ÊU:†rí¬	%ò 3%Ú#Ÿ]H¹y0ƒrsÐžCs¥Ä’Ä”„Ñ1Êm÷”DËU”ô \'JÆC6%3ä$%SlO¹£¤díè¦dYÜ£dÕÄSîç¶Pòb¯Ròˆ@J¾…?¥Èj¥Èë!¥hdåÁ{Ê„„R¶J)·§TlÉ¡T¦=¤T™¡T¯r¥Ôl¤Ôø\n)5’”Æªo”g~”gð9Êsa\råÅ†”—«(Í9bJó\"‚òjKyclOy{±œòN#‰ò.è=å]”!å4•òÞ»…ÒöçúÌS:üþR:½F(]A•”˜¥wC\"¥/ÓŠÒW°…ÒÑ“Ò_$¤|¢ß¦n)¥žò¡%iS†òŒ)Ã\0*eäœeTe\reìž‚2öð-e¬m‚òùDåsz9åsû\rÊ+Ê—\03Ê„ÿjÊDç^ÊD·\Zå›ÅmÊ7·4ÊÔîË”©ê)Ê€D™m¥Ì.ß¢|ÏK¡|ïM¦,ø-RþÞ¥\0£(€o\n0ë8ôyâ–JTwS ‡(0ýßØ»Óxx=q÷AO¤ Éx\nÚÍš‚%S°+O)Ø,…¬yB>6J¡ÜU§Ð_£0ûSØIcŽGábÝ)ük¿)üêOá–0ŠÐ_H‘è¤S$¦I^\'Er–\"\'½§(4ª)Š²Ë²²èEYLñ¦,\'R–Ò(KEA”•U”•]Ê¿ŠÃ”‚ZêªìKTõ±ÇÔÕU%Ô5»8Ô5W?P5R+©šS4êú¶êzÆyªŽÖU÷W9u“Þ9êæªOÔÍ?4¨[v.P·ì{GÕ+m£nõ÷§n¤î„šPw{•R\r6n¡\Z¾\\CÝ7ú…ºo¡†jd¡I59®E5ñ¢ZÔ_£Zõ‘jEœ¡Ú’¨¶Åw©v^¨vÚTPÕqÝ9ªã›ûT§–ÝT§y3ªË±IêqÏ2ªkð*ªëÏ1ª+å(ÕMÏ…ê®’Cuï	¦žüdD=Õˆ£z[°©Þ´aªÏðõô>#êi§WÔÓ	ªï˜5õÌ¿6ªŸÑªßG&Õçª¿ÏkêÙ	ÔÀÕë©ß©ÝÚÔs›Ôó¾iÔóÝG©¡£\'¨¡tMj˜íSjØàmêµ`ê5ëÇÔÈÿÎFN7S¯ë^¡^÷­¥F½°§Þ4 Sc\\J¨±/Æ©ñjbê-‚5õöänjâºÕÔÄ„ijò¥_ÔäÁ}Ô”“ï©)á%Ô”–,jêsWjš³.5-IM+ãQ3\n^S3×FS3\r¾Rï¼›¢Þž¡æ>Só~PóùÔja…Z8X@-œ+£mÎ å< >Ðì¦>ð½D-=J-Yð¥–õ-RËO¨»©ïNQkQhjÝ‹ú¸íõqûfê“ýLê“ëÔ§¸vêS²’ú”óŒÚ\0¸OmÞvÚÜ\r ¾º7Nm‰j¥¾ÛØD}ŸäOmTSÛí\Z¨]»ÎS?ä™QûôŽP?ú^£~*ø@°Õ¦<Œ¢=<A>½:ü*:ŒQ‡%¨£†>Ôñ8*uÜFýêJýZÜDý¦B\"\ZPgí¨³\'©³\\ê{3ÔŸyÔŸM©?—žQç€«©Ç©×‡©ÀäT`Í)*XG…˜í§\"Oí¥¢ß< bìú©˜ú*–ÝHÅuyQqËåTÂL•ÈH¤ÒÜTúV*ÝHen›¥²FÎPY²ÏTÎ7•ßaJ¬M¢\nt¨¢ÙTYÛ{ªÜm\'U1yŽºxFº˜øˆº¼W‡ºòMý˜Ký×7KS‰6 ©\Z< ­ž²¡iºMÓh9LÓ„Þ¡­»8A[ú‚¦•fNÓ\Z#Ñ6´2i0/i°ž4í~m£·\Zm³ÁšžÚ4më­|ÚV‘*MÈ¶Íê*m[½	mûK?ÚŽžM´]š–´]Km´Ýwòh{ï¥íýQH3ÄäÓö\n¤7}§&ÒÌ÷\rÓ,¶¼¡R:Ð,ë.Ò,Ù4+—‡4[òÍ>ìÍñ¼”v´p„vtA—æ+¤93i.Õ³´c]z´ãÚ8šk†:ÍÝqÍ´B;Q™F;y–E;ù•Jóôô§yþZM;õMóÞý“æ}ð:ÍÛiŽvšhM;cw‰ægÓIó»LhÁÓ‚b*iA‹oiÁ‘´óX]Úy˜v”J»ä—N»$í¢…¶¥ÓÂ]Êh%æ´ëÍc´ëâ8ZT}5íÆádÚ81-FTM‹½³‡Û¬O‹%4ÑâH´øLíö±/´Ä¤9ZòÙDZJ¶-ÕH–jÙ@KËÚ@KjÓ2ví¤e\Z&Ñ2ÝîÒ2‹§hwÖiÒîT®¥ÝCœ¢ÝÐ²Þ|¡e!Üiù§/ÐòÏ$ÓŠü¨´Û6ZIv­4e™VÆ÷¥•gÐªÞ¨ÑªÓhul;ÚcÍc´ÇÔ[´Ç‚‹´\'‡šiõfZƒl–Öøn€ö,þ-í¹Q)íåöPÚ«\rÚ«B8íµá­e$’Ö\"¤½ñúA{óÐŽö6Ðœö>ÜŸö^á@ë|3Më*cÐº×WÐ;hCtÚHnmÌ>š6ŽßJû’ôŒöå]m¢ôm¢¬öuÕ ík‡9í[L	mŠ¾‘6mÛCûÑKûyò\0í÷ñs´?‹i€“«iÀ\Z®F¢¨4ÐÙ\ZdÓ\Z$â\röÖ\'Ð’1\Z¡wœFþxFõDÐ¨“`\Zm-‰Æ°£1=Ëi\\›]4þ\"°L§	?ÐÄæª4±_Mf7I“Åý¥É\'„4Åów4¥6†¶”0H[Ž<O[Ø@û—ÿŒ®2ì@_µð–®ª‹®\n¤ÑÕ¾æÓÕbú\Zåzº†XŸ¾ög#}½o}}9…¾¾®•ÙM×ª¸O×îyK×I¡ëÀ–éºgûéºÄbúÆ[ôMÛ^ÒõäÑõâé[ÿÓõŸ ë/OÓwØ‚é;Ëçé»ÄÇèYô½roº!Ê‘¾Ï\'‚¾¯ä.Ý¤žI?¸=˜nš7K7;QK?dœH·,¼O·¬Ö [MèÖQhºuÇQº5Í–n›õš~ÄAJwÜEw´,¡;zÂèŽ#éGu\ZéN«ÃéN4ºóÍaº3ûÝYaJw‰(£yîzq;ÝM?qoýäŸtÏŠ(º×A=º×ºOÂºoš˜~Ö¸Ÿ~Öå=ÀW—ÐF´zH<ûžÄí¥‡´:ÒC~Ÿ¤_¸rˆ~Qe„~åó4=\"ó>=âù=âkýšt3=R·‚~}õ4=*ö=šò”ÜIµO¥Ç%èÓã£µéñ©)ô„_Éô„ßuôÛíéÉô”ÍZôI=m8“ž.W£gœ_EÏ¨-¡gLbé„Zzæ# ý¾ùqúýzöP\'=›CÏÙC¤çª&ÓóÖdÓóLÈô‚»ôÂé…e–ôBx\0½Èy=½ÄT“^BÒË7”Ñ«’éµÒù¤?#–Ñ_¨OÒ_hÏÑ_@xô&}czSZ½ùÐNzóûçô—§-è-ê^ô7Zóô7{Œèo²àôÖz»ãIzûG&½ƒø˜ÞùÇ˜Þk£÷ƒ»éýØ@ú§•HúÀÃ×ôÑP0}tú!}ì´ýËX}\"É€>eRDŸ™¡ÿ\\_Oÿ™Aÿ5ïDÿ;3Mÿ»XL‡¤Ð¡ŸtØ\':üÊ:bãC:Êf‚Žú{ŒŽÂÅÓÑš:t´þk:zè:ã“@ÇDèØç\rt,Ú†N,5¥Ç-éDb$H\'ÇTÒÉÍÎtòàI:µC§.UÒi{é´_>t†~\'‘~•ÎxD§3(Ít&@g¥l§³æ>ÐÙ‹:çY\r[I 1èÂù]t1@—­?C—…¶ÒtÁš®dm¢/†}£/ÅEÐ—ÚíéKã^ôåèE†JÍW†êóf†j‹\'CÍ\nÀPKÌ`¨uãêübÆjc­Û#ÆZön†fò cÝEÆzµ\\†vÉj†Î	.C\'@ÉÐ=®ÊÐí1t\'çÝÓ›5*úó?ÛN0vDE2vÞ_ËØ»û+c¯°›axÍ†aØbJ…Œ}ýw¦Cî³³ßfæ§ÌæÀX†ùòQ†å£3›õë¶gŒ#ãŒ#ŽçG4GR60Ž,2²†ãO†ÓYo†s©?Ã™®Ãp9¤ÆpI>Êp)ûÎ8.|Áp+†3ÜPŸîó\rën†G7•qÂ5q‚ù”áy—ÊðÚ…`xeex=þÁð±0NO g`/~¦ƒÿÁŒ³¦“Œ\0#PŽd eYfœ{¡Á8_2Í)ud\\ÜÁ¸tî#TNc\\s~Î¸æNfDº3\"“åŒHe7ãzQ3#Ê£ŠcãÄˆm¤0â\Zƒñ•ÚŒ¤5Œä{¿É¥«)ƒ9ŒT“‹Œô°3ŒÌ5óŒ»Nw}Çw…û÷9]Œœ{Œ¼ÝŒü­éŒ|ÙFÑ¼\nãã£xï\0£xô£äÃFÙ¾ûŒ2Ú£ü‰\'£bÅ¨¸¿šQqgT¬Ô3ª=¯3jgÔŒ%2juâµŒ×ŒGTuˆŒ\'»>3žjE1\Zâ[MZWMM0Fó†@Fs£¹{ŽÑod4c“Í‚Œ·™‘Œ·„nÆ»]?ïr“­ÁŒ÷—‘Œ¶8{F[ƒ£=è£ý–%£#¸ÑÁüÃøp*ˆÑû\0Åè…•1ú5Ž1®2š\0Œ°c€´1y’1tÂvØÀÎ¹À~¾–1ò³š1ª_È}ö”1¶ã%c\\KÊ§80>»j3>—M1¾à—_¢_ó™ŒÉ–FÆÌqÆ8œ1·³–ñgÂXðúÎ\0œºË\0žÌe€¶g2ÀHäû%p•wþÊ@nüÂ@=00»¶20Ü,`‹\'1p«ø[×´ƒ|žA–·0(7t4m!ƒvãƒVÃ ÍN0èÕ*†Ü•ÁþFbpLZ@ƒ;™Ïà|a¶½cÒ\rR·1†ô†!ýPÏPîf,F82›f+Ï²+”gŒ/ÙL•OG™«n1U/Ç0UçŽ0U•fLõÂÃLuX sõÎ~¦Æ#0s­x\'SÓD‹¹Áeˆ©dnn<ÎÜ²~¹ÅÙŒ©?pœ¹ƒ—ËÜ­¿‰¹gàsïž¦¡ö+æ~­\Zæþ=ÿ˜ÆÁMLãÂAæAXÓtµÓôži®\rgšçÒ™‡î3µG3áN2-ÓÞ1­sLÛw¦më¦-IiwëÓ>~=Ó>w’i_õ…ydìóhˆéá1Ïk0K¿1,3»72]õ73Ýžïcº[µ2O(T™ž*Lï™¦ÏGÌÓ!×˜gTç˜g0UL¿){æY=3æYÙf@¾>3°¦y®Æ¼˜e†ž?ÍßKd†[˜áGŸ1Ãi@føâórÚ?æåû™W-õ™W‹.1¯b1¯÷`F‰\"™Ñ›¾1£c[˜Ñ™uÌ›Û˜7k˜±i\nfüáf¼ï3AÄ¼ú„™<:ÂLïžafžócÞ1úÀÌ¾SÀÌnyÁÌ†™ÙŠ?Ì\\q83ïX&3º‘™\'¹Ä,Rób9w2”<f>$1K<©ÌRÉ5få¡mÌJéCf•‡:³ê}³ZÓ‰YSÐÅ¬)^bÖúo`Ö~1ë‚¿1?ºÎ|rî³þìÆw‘ÙÐ0Èl¼/g>‹zÉ|öw³)Â|½e;³ÅÍl¡$0ß<š`¾=Bg¶~Kb¾_Ë`¾<Éì”}f~8¸›ùáì³çT\r³§«€Ù{¹”Ù¯y’9¸*›9|ŽÍ;Çœx±Šùµ<™9ÝwŠ9‰bþø1Çüùt+ó×Ekæïú|æ¼c\"s>}š9ÿg€¹à)g£¬˜ ó(&µƒ	ÞéÎ„Ù1áÐwL8ï#!‘0q‘<&þø;&¾ —IˆÈ$Ì{2‰\'˜DŠ’IIå3©æ™´Êd&\r cÒ`ÆLº8“þÌû?2˜Œ¿ÍLNe“CùÃäî˜grí\'˜’°0¦¤¬’)Ýòš)[eÂ”Õ`ÊZ2•»â™Ê!sEØÅü—»†¥¦ÂR÷¹ÅZ½=›¥Ñý‚¥Áç±Öy°´ªÖ²´/6°´û¼Y:ÙV,ÝëXºt3ÖÆ,oÖ&c$kSªkSÍŒÐYÛOmfíÝÆÚë­Í:`q†e2¿u0¹eßÂ²¸}uH}ˆuH+še£Ã`ÙØY¶j,[†!ËÎÅ“ejëHúk–£‚åäÇrzÀr\"€YÎYS,g\Z“åR7Îr!N²Ž—Ø³ŽyÏrí?Ãrë¶g¹êYž¾“¬S1Ë¬S#,¯„–·å}á\0ëÌµ§,¿“&¬³íV@Ê+àýÖ9D\Zë¼ÛUVH\'+$;R7Èº4Íº4íÆ\n_©e]þ9ÇŠ¨¨eE€6²®ØÄŠ¬n`EâW³®ï±n®5bÝÜ™Ìºéõœ›ú›ç\\ÂŠ£?`Å¿yÍŠ_4bÝÆ^e%fü`%5ÁXÉ~Õ¬”äqVJãYV*(ž•ö8œ•~¢Ž•iãÊÊ,Îbe	˜¬ûŸ³YÙsY9mÁ¬¼µ‘¬¼T+ÿ¤«Ð²‰U8_Æzðè;«tÏ=VùñlVeÄwVå[{V¥°U5°ŸUõó2«Š`Õ:*Xµ¿o³ê\Z®³ê\0Xþ³ùÉ92ë©ÅOÖÓ’U¬‚«q’õì‚«)ó«ù€	«¹~€õê1ëÕw\rÖkWëõ…«¬7©I¬·O‹Xo•_XíÌW¬Ž¸S¬ŽºdVÇ\"œÕÕ«Âê©ùËê¥>fõÑcõU(Y}Ê¬Ák“¬¡+;X£«¢Y£•¬q»^Öç®¬/-¬oõ×Xßˆ6¬©7XÓŽ»XÓ¤‹¬™‹¬™8]Ö”W¬ŸXÖ¯‹e¬ßUPÖ\\Hkn&õ§Áúó§…5ï\reÍG|d-ôÜg-LZ°\0ž;Y€Ö,à\0†ª~ËßdiÙ,hÏ~’…XY`¡¼±P¾7XƒY¶3E¨—°ˆµÿÁ`¥ž,rÃ\r%Ë¢n!³˜\"m+v‹•îËâªM°¸^‡XÜ{WX\\Àq‹\ZKPý„%Úý†%r-g‰Î.²d\nM–\\k\'K¾²—¥4Ç²7º±3°–,ÜYKøÖr‰/[åt{Uà¶:^ÉVçýa¯†³×„³×äqÙ\ZZclÆR¶Æ³`öZëöÚ‰9¶æW2{óm¶–Ô‡­ý©€­ƒt`ë&M²7æleoöÏgoý˜ÏÖÏšcoß´–½¸ÂÞý¦Œm`¤Í6(>È6è–²÷ø&²÷–:²÷ö´°÷¢ãØ†ÞÕlÃ,&û@ÿ2ÛÄTÂ6)+bŒTa›þD²Í¾¿f›ûÜeòºÎ¶¼/e[E[³­bž°­î`Û˜u±m¤l»p=¶]\"ƒmdÛßHdMub;>e;…RÙN&l\' 9ÛÙ¶}Ü¸’}BeŸã³OLeŸÄ„°=™ÇØ§ÈÅl¯ä*¶wî;¶¯Ì>ó/žðjš¸ù*û\\Ã_öyÕLöùñzöù¥{ìãEì×!ìãìK€v(ã;ìe;|ûûŠ³:ûJ€?ûÊÌ$;\"ÂœQÇ¾zx…}möûÚ¿3ìH«Õìh…/û¦œÉŽIÌcÇ|mfÇë«³KÙ·ŠØ‰À¿ì»^vê›­ìŒí0væÚv&¬Ž}Gr—}gy„e²‡}qžÍKbç¾açwO²ó¿\"Ùùˆ@vj»ðx»ðÃIvÑ¬ûO1ûÁÏWì—3ìò+ŸÙå­Yì\nO/vå	svõÚzvÍt-û¡œýpÏ~8\nc?œa?r˜e?òhd?Ýa?‰7b?ÞÆ~ªý‚ýtÏ;vã-5ö³ó^ìgIÙÏÄì¦µfì¦ôöKãHöËóÕìWv;Ø¯g^±[²?²[òØo®*ØoÍß±[#ÙmH}vG.†Ý]ÐÌî®øÇþàÀîõÙÏþèÍî7re÷3éìO6;Øà.öð!\'öø§!ö—Ò\\öäÖ{ìÉúQötÁ)öÌMölZ7{¶%‚ýkê,{Îrœ=—}‘ý÷¡+ûoˆ\rxÂžüËöÛ°Á?N°¡;ÆØP¿6ÜÁFlƒ±§ØHJ>…ÝÅFß¹ÍÆÀ\nØx­q6ÑC“M6ÔdÓrØôØ\rlö%›ùƒÍ^~ÍæàSÙÜ„&6¿¢”-°hcï²%žÿØ\n•Ÿleú4{i¾ˆ½$ØË^9µ‰½2y‹£²ýG}ãgõ¦ýœÕ£û8\ZÆÖk8kÕ‡8ëœqÖ½tå¬dp´È8ºÞ\"Žîó\nÎæ6ŽÞªŽžì*g+(”£õ%g›×g»m.gÐ†³“~“³W±“cT½…cô{ÇøçŽÉ*%ç \Z‹s0;spvÇÜmˆcþÃ•ca;È±¼ÖÏ±|~œcíücí>Î9,{È±ÙPÊ±1›çØ¨slWš8vÇ²8vi‡<Ž£ñ_Žc]/ÇxŒsô«Çù†&Ç¥Â™s|\"‚sü·-ÇÕ$Šã–šÆqÿÙÇñB=çx¯Ñçxßq|,9¾>ß8¾éÎœ3çº8gÊ9~&f¿ÐŽ¿lçlö9N€ÞvNÐ	}NpÍnÎ9šçóçü\'äfçÒ!(\'Iç\\¾àÅ¹\\ØÍ¹üÊ‘sE3òå\\Õã\\MZÃ‰òláÜ—snf97=œ›/rnŽýåÄ€ª9ñÃ­œ„ïœÄŠÍœd×=œ”Þ;œÔ5DNªñ\'Õl\'õd\'ýëmNæ½,ÎÝ±Î=¿dÎ}|\'ûü]Nö`\'Gtˆ“_Å)ð_Ã)ˆâòb8EÂ½œ^}œEvœ†§ü¼§<ƒÈ©xyšóð&Ÿó0>ŒSë{™S½SgVÇ©Nç<Z.à<Y-áÔkžâ4Xœå4®ƒqž‘Ÿq^qš´‹9M\rœ—6IœW•78¯\rœ8-ö\'9mW\"9mmœvë`N»Ô“Óé¢Æùð_Üz¶}ãôXÁ9=/ƒ9½—Éœ~¿çœO÷Xœ×œ¡–œáèJÎpWgtl+gl#’3¶{ˆ3>;Ä™˜!p&xÎ7]\Zç›,ž3ãÂ™Ö~Î™néàL9Ä™ñLâÌ„œÙ¶`Îwè?Î8ÎO¿­œ_Å¦œßïùœ9‹ŸœßÎßuO9àíG8àw¯9­—8¶ „éÁAÀ¤]8-ã`^rpêºÜyÃouã\Zbƒ9‡l[Ë¡ô94}mp‡yá+‡9z†Ã\ZˆäpË8¼!Ž@û!GP‘Æ`œ9ÂšŽ8èG²W#þÈ‘ r92¶‚£Ø´Š£ÔûÀùwé\ZçFÄ]eBãªVrÕþÿÜ\rs×­½Ï]·oŠ»®Ó‡«¥ªÆÕÚºƒ«ur…»Ácœ«sg’»	£ÉÕsþÀÝZdÃÕ×¡põÍ’¸Ûš¸ÈJîÞ#6Ü½ãË\\C\r®!žÌ5\\Îå\ZýÓá\Z·sMÖŒsMX@®©ÊA®©™3×´î(×t¾‚k¦jÆ5SFrQ³¹Vië¹Vm‡¸V|×®Ïu0ºÂuÈºÏužçº†õp]ÿ˜qÝŠþqÝ#¹îÐîÉK&\\ë®o‡ëïú‹ëZ›ëÖ‹`PÏ\rBÛqƒkÜsy—¸çPÜ“Xî§dî¥#¥ÜÐšCÜÐFKn(6ŽÕæ†Çâ†ƒèÜ+gÏp¯4p¯M¹EÜ«)xn¤Á7nÔ«‡ÜhÍõÜèê+Üî¹7ß\'rc§”ÜXô,7áà6î-.—{ïÏM<+ä&Ê}¸É+×¹iã<nºŽ7ýÂ9n:Ç“›Î5àfl5àÞÅ\\äÞÇr³[Z¹Ù3µÜËnÎäin®J7ß›_éÎ-:VÌ-šrH0Üb±·Ä/”[~ò<·ü\\>·²IÁ­Éâ>:îÇ}ü…ûd#šûô1…ûTò™ÛPãÄmXªç6æä6Rm¸Ïý)ÜçMÁÜ¦C-ÜW‚+Üw•ÜVV4÷=m™ÛþŒÛþø,·ËËšÛ•ïÉíá%q$Rî`.;2šËÛü™ûY]‡ûùŸ!÷‹¶„;Q´–;ÆýzÅ†;	ëä~síâÎ˜jqgMqg	ÜÙ¥ƒÜï›§¹?\"¸?\"M¸?wáþ÷åþZ½–ûK²Èý³Î;_t“;ÏSpNü÷ÚÀ–s]>\\ òãÈUã‚‘H.Ä~’ßw‡§©páK_¸ã$.¢Ñ›‹TTr1àF.>:ŽKtûÎ%À¹dþ.ãÆ.‹¼Èeqƒ¸ì~.§w—§•Ìå\rjsù“Æ\\ñÎ%®ä›W\"sæJ7K¹²çÖ\\ùš^®ârWÁã®P¥ÜZOeé3oåOõÒUžÚ´	oõÁrÞêÄK¼5î<’³<\rÔ=ÞZ²!o½j?O+å.O‹ÝÈÓöåótãÒxºbosJ:OÿIoæoûŸLÞvƒ·ƒÃÛéð„gªÉÛóÖ—·Êàí];Ê3Ü¾g(ÙÍÛw\'Ž·?é\rÏ¨Mg²…É3i]Ã;˜)â¬ÚÄ;ø(w°í+Ïøgö.‚g¾\'ˆg¡oÅ³ø`Ï³ücÄ³‚eó¬”<ëõ‹<››—y¶«~ðìnzñìïòŽ¼Šå9Èæ9&iòŽ¦ðŽ–MòŽVèóŽâÍyNh Ïi)—ç¼Æs‰ràÿ2Ëó`mæyˆóx\'Ìýy\'75ñ<ëŽò¼*Ÿò|_©ó|¿¼çù¹›òü®Ÿâm%ð9ò.¨ð.Y#y¡—Ëya¿žóÂ˜m¼+‚yWi¿x×Ãúy×ÓKx1Û?óbd½¼ØÎ5¼X‘wâ/Áá\nï–U:ïö¥Þí«ûx·ûÁ¼Û+f¼ÄÖ^ò^0/uð/\r<ÍË yñ2³êxw^óîyžäÝÃáxYÏxYƒ»y9Iq¼¼Íº¼¼ür^b/¯põ^Ñí‡¼bË\Z^©é;^©Ë¯¯Í+ÛÆ+“ç•c\nx^Å»*^¥¾+¯Ò†Ë«ÖùÈ«&ŒðîoàÕþÓæÕIþòõ:ñê½îóž²æy\r\'ìx\rm;y\rÞ‹#RÞßK¼&õÞëì#¼éiÞ¢ïí·Q^›¡¯¿×t–×1$ãu^*á}ØgÎûp.÷¡´’×ƒ$ó>ð>1Myë\"x>_x%º¼AgÞàµFÞ`Œ&ox²˜7SÅŸäAá¼ññ{¼/‡®ò&öPxßBÍyÓÕwyÓÒ`ÞÌ\'9o¶çïûmÞ/íï¼ßÛø¼9|1ïOÌ\rÞBÄoá„÷W+‚÷w1›PAð\0±y€P„ççA<PøVøf\0ºË™E–ðàzHzç~zb+z¡”G«æ1Îlã1ªñØ·Êyœ=v<NÎ/cÍãîþÉã.±yüÍ‘<~HO°ÿOÐZÊŒ$ðDÌ\r<±AOªÊSh‹y\n1’§ü¹‡·xïoñeoQ,á­”yñUvYóU>“ø*b_þªºw|U-_…ã¯Ñ_ä¯9†ãkÌð5Íªùš‡Tùë6.ó×‡òµlNñ78MòµÃŠùÚFü»‚øÊø[7äo½BàïtßÃßeÎãïú4Ìß]¢ÃßƒÐçïýwŒo¸q„¿_^Ë? jÌ?ðÅ‹\0ð”`‘Ä7âùÆM|“¬\'|Sÿ|óý¯ù*m|Ëß¥|«<ßêƒ5ßúü2ßæÔv¾ÍãŸü£’l¾ó•«|gÒß%rˆïÞÅwKQá»Çfð=ŽZð=òø\'ÖÙòO2nòOJžòOåÚò½³øÞ‰Rþé²×ü³Úãü€\Z#~\0ÐØ1ÄÊ¾È?·ë1ÿüçþù™+ü‹¿ºù—ñ/mûÅ¿´OŸz ‰*¹É6â_Nïå_þ„áGlžåGÔnå_Ûûù ýú\0ÿzò~Lc-?v·€Û¼—;\"áÇ¢®óãQü„ŸÍüÄü1~bu5?é®‚Ÿ¤ôåç¿ççÃ;ùùK\"~áþ?ü¢mûùEY;øÖtñ”Ÿâ‹pü’MËü+<¿âî9~Í*\Z¿Öq#ÿQtÿIjÿ)FÁoˆÔæ7NJùÏÒ·ó›,¢ùÍ[Lù/¿Ýâ¿ÒZæ¿¾þ“ÿ\Z•Åc×ÄëÝÏd€ÿž½Ìo_âwìÒäwØzþ…ßñËïL«áwûØò{Õ—ù½¶h~ÿ¦&þÈ³ þhÇcþØ<˜?ÙÝÁŸŠÍãOý}ÁŸN¿ÉŸ~RÅŸMð¿ïÚÍÿ	¯âÿÊ*åÿNðç‚Ãøpþ‚Ò‹ rù £|Ð“>øñ5>tM	ZÃãCQïøpB\rúÅÇø¿çcž_æc­øXû§|lÿ]Ï\'ì1áEðI±×ø”¦ß|š<‹Ï ð™O¸|æ«e>ë³=Ÿ5ù€ÏÕãóC_ò¥ð«|å_#Ê @åÅej¨L VÐ.Xsy·`Í“ËÌÁÚ-kwiÖú>¬].hÖ\nš¨U‚u;=ë>k\nÖ[\nº\\•‚Í®o[îílÍ~/ØJÿ#Ð»!Ðg¥¶Ù¦\n¶×}ìÌ)ìj\"	v›½ì.Ç	vwiö®WìÝ\nš&\nsêÌ>Œÿ˜ìzÆ	LO„Lÿ»¦¦ŒZ™Û.yAºÀ\\‘$°xóK`¹ýµÀ²ö½Àª…)°^¿,°Þ(°¶ØXl9þYàÐvZà¨uNà˜j\'pÄØŽnu¸®—\\mÑ7û·{Â‡Gà8#ðèN]x-8ÕùZàÅ¢¼aýÏ›7‚Ó\rþÁkAÀK]A`]»àÜ±(Á¹˜àüzÏo)œ_\\„¨å\nB¯B``A–#¸Ø(Õ¿%ÿw@p¹´KpUÇYpõ€¡àzt‚ zµƒàÆÑAL¾¿ F’)ˆ½Ü~ ¤ð÷	R®R_CiN:‚´`;Aºc€ ýQ² ãø² S‡&¸SÑ*¸{ò”ànA„àþÑ<Aža“ @#BP~{¯ 2ã¨ Æ·JPóU*¨ù‰<œ<¶©Ô/H\rvY‚†÷PÁ3Uà™õˆàù1sAóvÁ+½ZÁ«}ñ‚WvF‚×Á	‚–m•‚–ŒjAë%A«G¬ ­$hoLt¬)t>§	ºcmnh>>\nzŽzŠ}=µF‚žÑ:A(DÐÇz(LhU¯û]_½*UÙ%³†\nÆÎ	Æ.´¾„1_²‚¯¥`rè¥`Rj\"ø¦Þ(˜Ù.ø±!Kðã,HðKÝI0ßwF\0Œ\nÀiWà;&(+€ç`OºpóaÜyI\0ú+@:ëÁ”U€’´;„+\'„\Z™€d´C@^Ó-  &Ô·ë4Cª€fW\'`¦—X÷ö	Ø!>vÛU¯´X )},fÈt,²ïÝ%¨F°¤G,9,kô	Vc„jçÏÕªVÕžÆ\nÕºÈB3k…šá—„šQÂ\r^p¡ö¯³B}Â.\'…z—œ„úz…ú§ý„;;„»¾…Î}Â=æõB#øo¡‘LCh²ÎQh\"Ø\"4\r+šêÍ“M„_3…Vž	B57¡\r°[hëQ&´_Ï:nù&<ŠsºÀl„Çíºi½º9Ô	ÝX¾Býd¡‡Ãq¡L$<q{Vx¢ <¥f.<¥œz‰…>zzBî3áé8žðtæfáéš9á™¸|aPÕˆðÜûaHA…ðb6Oxq.YxÉæž0Ìµ^n&¼<ç*ŒŒ^w^Gö£Ü\'…Q\07avLxC÷ŒðÆKgaÌ¾taÌ©ßÂX×,aì…}Â¤ïúÂä¶«Âdn™0™Ÿ#L¿R.Lï{+Ìxì,Ìüb\"¼{»JxO7_xßK(Ì†œæ”íæŽ¯æ¯¬DE	‹l$Â¢w>ÂâhkaéI¶°4ßBXÍ½/¬Ö¢Í…µ‚[Âº\r„u:@a~DX\'¹*|œÞ)|º¨6†c…Ï«¶_¯¾F\n›ÊU…M‹íÂ—“ÂWyÂVc¨ð}f¡°Íéº°mz°}[¹°=x“°Ã6\\Øñ‰\"ìü¡)ìõÑöÎW?ítl ì„#*XáÃR8ÂGGû„£ÌCÂñáø;áTô°pšÙ*œq»(üžñÍ„?ÖþÐiþ>Nþ¾k)œ£å\nÿ¸¿þ¹ÊþÝ!œ8&>&ŸZ‚£ÿ	Á……(AŸÍÜ$Äl&1	6ÿÑ#Ä:)„Øk§„Düy!©ê€|ÖZÈh|\"dméò…üÜ.!ÿéQ¡`Õk¡°ÌW(üŠÎ\'\nÅN“Bé]¡”é)”½ÊÊ~ÿÊ¿Ç\n+KBå›páâ¾gÂÅ\0á\"³N¸tjT¸„‡W¨,‘êže‘êu‘ªrE´º}Y´öF”h-â–h-eQ´>-Òòi[êŠtdS¢MÞlÑ–#ž¢-+q¢í‡‰ö¾{ 2¹¼Ut0¿GdÖ¶Ud±åÈâZthS¨ÈÚó³èð•8ÑáWÑá\'D‡9\"{Â-ÑôN‘ƒ×è¨-Lt”¢)rz*ržQˆŽ¹ÆŠ\\wùŠ\\ÝD®Í9\"WÆe‘[°¡È]õ«ÈC£Etjð·Èëò?‘÷G‘7ÆVäMã‹Nž(™Kùï¸(:›#:;ÄÔ<‹ö‹‚å?DçnùŠÎï°…¬)]H@‹.Š.ýçÇ%„PZë/ºÜ»FñqTAß$ŠN‹®Ž¼];T#ºvU!Š4Ü-Š2|!ŠîEgéˆ¢qÇD76†ˆn„‹n°EqtŽ(ñGŠ(q!J²z)JvÌ¥¼ÃŠ2ñ2Ñ=\\žèþ¨(;fT”ûh(·ÿš(¿,*tMÂDÅ‹D¥úñ¢Rë‹¢Rç¢Ò¶¢ÒŸ¾¢²h5QÙï¢r=²¨ò×œ¨Š=)ªú·OT}>_TÃÔ=L? ªM.ÕË=YZÕ©=uƒŠž×h‹^ly#zQŠµ<ó½Õ+½+9+z‡}\"j=^\"jm>&zmµÍšŠÚ3»E^Ë¢.ó\r¢.·¢n@™¨G¯]Ôç–-ê?ì!êw„Š>==\'úD9/\Z<É\rm<-\Z._\r¶ˆÆªtE_Œ‰¢É£<Ñd|è›±¹è‹ šväˆ¦=D³×A¢ìß¢ßø¢¹`¨hna\\4Ç;-úó,Gô××FŒo“LEÀ¹§\"pPœ~A.‚\'ˆ\rX:„%ÂÖa¢uD˜Þ¾±^D\\Ù\'\"}ÿ&\"?êÑ››DLK„ˆuÈIÄ¶9!â®Éñ6{ˆxânÿL‹HÀÈ	8a\"ÉŸt‘´i@$-RL×Š”¦šâU™™âUõSâUmŸÅ«~ï¯¢9ŠU5ÍÄªqbÕ\0±ú3\'ñê„÷â5;õÅ\ZÔzñZ›±–FµxCùw±n|§xcëQñæÃmâ­;Ä[§ÍÅú¥·Ä;âÄ»ìÄ»mOˆ\r¾ï_{VlŽ››+†ÅŽ…b‹´CbËSqb« ­b«òçbùz±­ãg±-¯BlÏ)ï;ÕŸ;¯Û+vù‹O†<Ÿ,¹#öSÅþ]šâ€Ð4q gƒ8¸ÈJ\\æ.–­ˆÏigˆCDcâ¯ˆ/?_J9!û±C|¹ì€øò[ñµÙyñõùAqÔ_ø†÷¢øæ2A·J&Ž·Ú\'ŽŸ‚‹oŽ‹o‹uÅIs¶â$Cœìí$NNM\'?8,Nþ»Zœ¢_œ\"-§%‰S—ÒÅi¨·â;ñ6â»eBq¶^‡8/tXœ÷ÝC\\xIMü \"I\\Œk—¤˜‰KhqÙ‡Nq#®88$®è; ®øtY\\9e+®rÅ‹k>l×½x-~\\¾^\\ÿ½U\\O~+~Š:)~º$7Ô”ˆH½â^µ¸Ñg¿¸ñl©øÅÁfñ‹ãâ¦…OâfÿqsL™øåqWñ+“¿â×Y8qË¶_â–+«ÅoŸŸ·jœ·½²·‘ŸŠ;JïŠ;ûÄÝ~“â}UqÙMq¯ç¸¿ý§xp6Y<ì.Wï[øˆÇ\'ÝÄ_4‹\'‚kÅ_×Oö\\OÎ\\O¿‹g÷GŠ¿³£Ä¿†<Ä¿WÎŠçmÅó+ñÂ¾1Ð¨Fœ‰Câ»ÄÐí·ÄHR®]¼JŒ¹~VŒ÷Šã\ZÅDÈ!1y{¹˜Ü³YÌò…‰Yw%bVIÌ>!f—Í‹E±è)–;ÀÅ‹Ý|ñâüIñ{R¼œU+^¦JT~LIVGI46ÄK4\rÍJdýp·DÛ÷ƒD÷ã¼dS€‡dóQ7É–ïA=A°Dÿc¶dû¦k’]öá-C‰AÚ>ÉÞ‚\n‰á¹’}Yc#Vbz@ ±èY+±LN—X-\\–.CJl\Z]$6¿L$¶×Hl“îKlË.IŽÀ7IéÓ’£õ›%Î|´ÄeqµÄu»ÄÝi½ÄýìS‰‡ÊsÉI[K‰gk¼Ä+k‹Äç˜£ä¬]—$À×@8–Õß‘}*	ž2•³Ø’ibÉòCÉÅL ä\"k­$ô\nQr-·Yé¿Qrf+‰º2-‰ªß$¹Ñà&¹Y±Yû-‰¬•Ü*aInµ–HnçhH’Î~—¤Ã$é£«%™Mó’;ö’;Ñ¯$÷þ…Hrn.Jr\'$yFþ’üì.IÁQSIáÙIáóIakž¤¸P.)nð—”ÈwHJ‡ã%oK*=I*r$U}a’êÕŽ’ê8I«DòD“ÔfÜ“Ô¥a$u¹Ú’º–Iç»äÑì²äÉ:„ä‰ž¾¤é8VÒÌÝ#y¹æ”¤¥<TÒÒà i]AIÚé’N¹Š¤{ø“¤GÔ)é-N“ôƒs%Ÿî$HÆVa%c“%’ñ¢d³K2±í³d2ÁE2µdºò³ä{À²dn9T·€wo’@ÞYJàð=8ÂJ‚jBH0\'%üž*	Ñ5VB:°EB\Z_æ³%”cÖJà˜„rëŽ„:£!¡’žHHX×¯J¸—¿JDå?$bõi‰äÝ¨D2a+‘7J´$‹·p’ÅºC’¥]Ö’¥Cw%ÿÀîÒU®MÒUå©ªU¦T5Ú@ªf\'Uƒ}–j@÷H×J×.èHµYKµ™^ÒÍ·~I·”©I·`Ì¥Û¦	RN§tOv¼Ô°\"UzÀœ/5ã¥&w–¤&ÄËRÓ§R©Ù†ŸR‹áéáÕ¾ÒÃËw¥¶X©½­Bz:/uüî&u\"˜JÆKýÐ‘ººKÝÙW¥\'”¤^Ò©Ï¸½ô´ó/©ßG©è#éÙu¥šþÒÀU…Ò ÑÒsQ!Òó}§¥!¿I/UKÃƒþH#Š“¤W}¤W¥õÒk¼·ÒÈuÿÁp’F_9*½é¨”ÞLÑ’Æ‰f¥ñ7B¤	MÒ„né-/é­&uémý`ém¿.éí¦ƒÒ$·Ò”˜\\iÊ‹jijb‡4mRWšë%MÏÛ-Í¼óNzÇ§Wz7ð‰ôžI˜4‹²YzÇVi^}Š4¯{›´è–•´xs­´Øï´˜¸_ZÚ°NZÞ‡‘V¬H+wOK+[J«,Ó¥Uñ)Òª7ÖÒêóZÒšžÏÒ‡™\rÒ:íFiO±´®©Yú¸xô11GúÄ%}ÂJëu+¥õ÷ŸHë\'¯HŒþIîôK_¬aK›W©H›?ÿ‘¾êr‘¾ö^‘¶œ,‘¶¤dH[xéþGéÛ$Kië­kÒVü:iGàgiÇ­`i\'®WÚåp_Ú}ÛRúáM¨´7¥@úñBú±¢]úé?GoHjZ¤ƒãÒ¡G:Ò¡A¶täp¶tD0-õ©’~‹ÿ.ýV,ýö,Cú“þ¸tPúk£»ô—Û¼ôWš£ô÷]º`=%]ÀHÿö¥J1RÈµ×R`I\n@HáðP)âE¼ÑþEŠ¬ð’¢jt¥Xó)6ew€,Å_¶”â×I	¥\")ñæ;)ù3XJM;\"¥Vž”R§:¤Œ§o¥!_Êê\0HÙàR¾FÊÍÓ’òûì¤\"ûoR‰	]*­Ke7\r¥Ê„5Ò¥G¤KPéŠö™ªþ)™ZóŒlõCÙš\r­²u«eë\"‚dëÕËÖÃ¦eë…Þ2­ò/²\rëûdÚùê2í—÷eÚãv2Ýå»2½@²lëõ£²­À;2}“q™>r³Ìàão™T!3L˜“&_‘N6Êö1æeûoÄÉö+ 2£u­2#‚ÌØ<Vvðn´Ì´Œ+3;Ð!3ß3\'³H0–Y¤¾’Úz]vh·³ÌJã„ì0AOf_Û/³_ËŽð\'eð2ÇW)2ç[Q2çÞ2WÐn™›÷™[9Wæý-ó˜•T7”Ü/•y® ;Å¯‘ù¸úÊ|ZOË|¤¥²3ÏÎÈüð52ÿÉ²@§bYð| ì\\X©ìüž—²óÍd—S¼e—³h²+çQ²+HGYk·ì*í¼ìª\"Rvmß^Ùµ’Ÿ²Èã·e‘±õ²È¦<Yäˆ,:ö·,:ù¥,˜(‹%¬•Ýš|,»\r~&KlË’Ô£d)Ãeñ²˜ºìÎÍ²;Ã,ÙÝ\rº²,ÝYÖ»]²œ©²ÜÂ!Y.2L–W—å#—e<dÅ³BY‰šHVòÞIV:Ñ%+»–)«ø\\(«¼{KV­Þ$«Ñ,—Õ\\ËjêKd÷¿‘=l”ÕnÊ¹reªNËÓÅ²§?©²§ØrYÃÚ;²g·ÝdÏz2d/=È^5–Ê^áe¯•»eoÒY²6k°¬ýÄFYû—eY;›)ëdÕËz’7Êz1²¾úÙÀeUÙ\0\"L6¼ºI6¾&ö’}ëÖ”}[Ì“MUÈ¦iWd³öu²YX‡l–Ã”ýø´EöÓk¿ì×n¾ì×D±ìÏé›²?µÃ²ûbÙ_\r ¨’·—É ÎÉd¨{e(?C¦¯M†ÍWÈp7;døÐ¾§NF¸+#>¨”‘U/ËÈëÂdäþpÍ¢FFÃ’dtÜzÃ8CÆZ›#c­Û+c1÷É8;d@ŽŒ›Q(pjd¢ƒçe\"k[™èUƒLú¨Q&›J“É/çÊ”\re‹jtÙÊmÙ¿|3Ù¿º;rÕA²|õG¾æ`–|…|MN‘|í¤‰\\óýnùº½òu‘ëåëw¨Éµ¢dr–A¹žƒ—\\ïž—\\ÿ½‡|›þqù4L¾cå»|÷`²|¿\\¾wPMnØ#‘ï›,ß¿n£ü\0î±ÜÈ<VnôG[n¼=Wnœ•/7ž˜–<Þ+7Ý~GnÖ-?äl\"·\\;+·üÑ,·2î‘[\'Êo÷”®·”Û?ü#?¢~[~Ä6MîPû\\î@çÈálùQ‡ƒò£ï?ËN4ÈßFÊÝ^ÉOŒjÉOHÿÈ=7ŽË=‡\nä§&få>µ<¹Ï‡PùéŸrßï&r_ÆgùY¶X\\È—‡ÜÝ+¿TxFæ Cž—‡ë•_ù)ø¼Iñ‘GjÛÈon“ß<a ±Ô“ÇTŠäqEÝòøÚÓòø:¢<ág‹ü¶Až¨±Jž$¨—\'ïÃÊS~?—§@ËÓòäÏSå÷ÀåÙÛ£äyIpyÞK¦<oÑD^Àü,/’÷GËKöøÊK+áòÒ¡!y…ô¼:ÍOþÈ³Yþ8ó¤ü±ò¾¼þIþÔk•¼!¼YþZPÞy_þæU¦üm\nYþÎX ×± oe™Éß¡äm.½òv×ƒò³fyÇÀ¨¼C)ïÌÂÊ;+;äÒÝò®n¶¼ÛÄYþA£ZþaÆIþé}|ø½µ|¤ÁS>*!ËÇ¢íåc?ñò/»ßÉ¿Ôí“OlŸ‘O˜Ë¿žÈ§RÊg÷GÈg“nÈ¿÷uÉ—ÉÞÊçÝ‘ò…ASùÂb›ü¯	\\þ×”*^¾ ‡´TÉ¡emrè¤³–Ò$‡Jåð­1r¸~¤žp^ŽzC“£_ÿ’cw1åXwå–Ð”ã‹å„l´œ˜R&\'Ñ³åä\0;9u&g¬N’3ÿl‘³<É9Z29/ë§œ÷aŸœ7Å“ûÊå\"­¹HT,‰ýåâÑ	¹˜5\'—Ž’Ký§å‹wÚä‹ÏË—ÎäËÖDùJ¸»|åv•B¥ÂC¡20ªXÕþY¡6‰U¨o> P?¨X»q»B«8D±a»ŸbÛD±ic‚bK-X¡¯ÿK¡Ÿ}H±-ô„b\"I±36S±Ë0M±{U†ÂÀ,]±çµ§ÂÐ}D±/obß§«ŠýË\nÅÿ…±N¿â ý’âàÔK…ÙH•ÂÜ{TaþÐHa‘Q«°=Ü§°=æ¢°ß´¢p¸R£pÎ)ŽÞÿ¤pR½¢p×5Vx˜7+<€9Š¯C^>Î\n/?m…ïpˆÂ¯ªCáï­¦ðŸ*Î^sT¬yª@<SînU};£âg)Î‹ró).ÝG*B+Sá†bExœ¦â2ÏVqÅcJqe(Xq½ýŽ\"ºnâFq\"vÈ@÷ ˆ7lRÜÚôYqër‹âv½\"±q@‘tô¬\"Ùü´\"EU¢H•>Td\0ªÿŽ)²òR÷¯~TäÌ„*r34¹ÜËŠ¢©âk®¢¬Ö]Q¾IWQnŸ¦()ÊãŸ*ÊGª•¢•^CŠJ¿\"Eef¾¢²u‡¢ê¨¨nü«¨þ™¡xüôª¢Þó®¢±^KÑøì±¢¹l½â¥Ž¡âUõMÅk3ÅëÛŠ×ç-$¼âÝåÅ{o[E[tŠ¢3?NÑÕ¬èš¹¡èÞ¨©øpÃWÑ#ÍSôùÔ*>–§+úÍß(jl½ŽŠñ)ÅñµbtŸ¯blú¥â«ê}ÅdØ²b¦¥˜y©˜ýÕ«øwVüÙ=¨øû¤\0¬õT\0\Z”\n ñ„\Zb­@žR O)PK¯xŸã\nü6aý\n\"ç¯‚**È)k|ƒ‚Ã~¦àFg*¸´ÏÙ]ÁkÉV±\níŠBÎ;¤PÞ¥P”œR(fš‹3jŠ¥—\0ÅŠý7ÅJ#M©RP­\\u%^©j—¡TëÂ+ÕwÌ+Õ]t•êü^¥º¤D¹ša¨\\czN¹æ3N¹ÇS®·œS®Ø£\\Ÿ5¬Ô¢?UêèWê5+uæÕ•º—ü•=+7×îQnn²PnéLVnJWîØv\\¹ãÕ¸r§TO¹Ëv¯ÒàÛ_åžôOJCñˆrŸÆKå>-¦rŸ³³rßµ*¥±¶£Ò8ã„òà¦ò \r¥<È‰VšžÉTšQšõ¼TšžS*;¦´tRZíŽVZí¦´ñ‡(mÎš+íN*íc•vüE¥}U†ò(#Nél-P:SÝ•.îT¥ËÊ¥k×/¥»Å\r¥»½\\é¸©ôrØ¦ôBžPúl\\­<$Vž~}Ry¦¹Mé\'½ <+¿©pWÔ…*°©Ê`§zå9Ótåù¦Ê‹\rÞÊ°˜÷ÊËAG•W[_(#ç×+£\no)£KÖ)ofÞSÆå—(o™T*“\r”Éõo•)KÊÔ+…Êô5šÊtç)åÝy®2ëê²2§1[™ÃmVæemRæwø*ß¤(‹ú•ìó•Z¿)KWù(KÙ}ÊšÛ\'”5,oåÃovÊÚ•|eí‡²NT>ªÝ©|’{Mù´è ²!¼WÙHR>·8¯|~­Gù\"gVùž¦|µ6Uùú¬Ÿ²åà€²åî²²µÇ_ùÞæ­ò}T£²­ÍOÙnÐ­l¯ëWv¡R”Ý‰iÊ¾È«ÊeBƒr Ÿ§?¬ôTŸUYQƒ\Z”#¦”#Øpå-_ù%ú™r\"õ›òk€ƒr2‚ªœD~UNãÓ”Óluåì†WÊk®)ôÎ)3µ”s”m»”€-.J\0õ‰¸ÚJ	¶ø«„œWBnø)aÌKJ8è®ñÐU‰Ü¥P\"[•(£JŒãq%¡ì•’$\nP’m¾*)&ë•Ô%ó°\\Éœ¸¡äëu*ù‰h¥À¶C)âá”OÎÃXrÙ!bqÕÿ\Z Ïx >€ãECƒ+‰r‰Ji©4.¥¬8\\CK\"B	—”ºÒNéII‘H„ÐÀ¥T$\r¡%‘PŠT$RtÒ¥ÿzîÕïí÷ó³ËÑ Pzºén‚ng@·(%è™³z…×Cïó§ ÏQeè»£”­ª@Ùë(¨«ƒêæhP-/æ¤Ë yôüÚgüšZ³“`È|Wò³´•ÌA;¤èö¬=]Ð›©zôû,ý~ñ _R\rú•`ñFª]„Q}rÁp`<¹=£Û¹`ôc$LÐ5€i%\'aú—50cš\'˜NÑÓyf`úæ1Xtë÷À:eXŸ÷\0­°±]¶Áöðy°ûmØ-=vÿ»á`ŸköÅå0¿e,P+Gõ‘°ø»,}4\n–íô…å®nàœu\\ÏåÃ*Ãeàn1Ü_<‚Õï¯çðRý^“`íö³°öÕtðY±|Þ€ßñdð;iþC€}¬ègÂF}?Ø=6–ªÂ&Ý°Ùq:lÞU›ÏDÂ6u‚ NmØ9ôì>é»ÂÞqýaot*x¸B D\'BÜo@Hãøßô*84JÂL…°œ÷pì‚Dýg?9eD;ÇAÌ_eS}bÿ,‚Ø½…ç \rqëVB¼ÓEˆwU‡çï8b$N2‡$µHÚRggŽ‚”P#87k=œŸ}.øêAz×\\H_<2Îl„Kw‡Ì2o¸¼~\\ù–\nWÕ•áêšçpÍ°nV™@ÞæTÈ;·úÂíÌp¸3´7ÜId¸Óþòc.À=}¸ç¿\nŽæBQX)<ðM†G\njP|ù<<q_¥¡Ìø=”yöƒ²TCx¶\'\Zž;~…çIï bÉp¨\\«\0UGWÁË_Á+\'x}ÑêFë@Q&¼ÓúïŠ´ á‰4jÄB£óh¼ù_‹@ó¬åð©p´ìÿ­Ÿ2¡M2|w¾ƒ:[ÃO•wðsµü|z 3èÑ*`vìâ²»ÖšaOY†JÁ\n¨tB\r{·.À>NÞ¨|É\ZU~tà/;Î¢êå8`¬\'üþÕ/ÌAÝ¨q!vùŽš›’Q{P#›7õ÷W£ÁŠ«hpëŽêöGeþ†ó£qô í8Æ¬ÇØtG£KGÐèJ>ŽkUÄ	/\"pb®\Z/î‡“VtÅ)½ÝÐ$ÌMš£I‰6Nµ±ÆiW4púh\rœñûQ4µ[†¦áƒÑ,`ÎQªÇ9CßàœšWh~äZ\\ú-²ÑÒÿ)Z^|‚–izh­2­íÑFû2Ú*œC;·l´/:Ž†ßpK9.ñû\r—„Uâ²!ûÐiÉ=tz:WæMD—wQè\Zú=\\Ž GÜïè‘8=ßCÏ/ÑKw5z­rB¯ÀV\\Ó7×L\nÃ5¢÷?{ÐgøôM«Cßœzô­ßƒ~çñÏI·1@µ?nL²Á@Å+¸9ún±x‚[½bq«_wò°ÁíËpÇ5{Üåo{öÄáÞm^¸ïí4¶4ÅýÁ_p?´ã3—ðÀ›Õx0ý\Zr…‡6õÄÐà%x8¦ìªÃ£ñ®Nv•‰Ñq›0æ[Æöš±ºŽw¢\nã}ÔðŒ²#žyñ&<ÖÆ$C˜”œÉšã0¥©?ž`„é=1cý[Ìøú/5áeW+Ì²ŠYSðzK=fç`NbÞè²oì†7ÿ{›÷ÝoM™Š·?Ç»5˜ï±ïeìÆ{×ý±Àe%j,ÁBÿXd\\‹÷íñþÑ\n|¡‚ÅŸšðI?G,Ý\\eÏ»ã³„h|ö¶	Ÿß\rÄ\n¿`¬Ü5+k¯cÕ¸]øÒ¿_VÁê”X]½\rk<W`­âI¬½‚o¾b]¦¾5ž‰?N½‹3µðãóØžŽÍßn`Ky~VÙŒŸÉ\r¿¼êÀ¯FIØ~d¶w~HÃóúàØù3\0á—t$«{È“£IÑ4œ?¿¦n.ÍÔ}Àrê‘\\E=í3Iiügê5Ë”z¿¿B}Ü:H9/TöÅP¿Ÿi@ŸÑ¤œMƒÒ qÇiÐõrÒ\\[BšÇ’æ­ú5ü\"i]J!íá“H{Yéœ‰§a]7Ð°­wIož	é=n&ƒ«dèÜL†!/È°v>\r¿LÆªÈøë%š4ã0M*J¢)š\'iÊ¢d¢^J&ÿ$ÒÔãhÚ{4­|+M7/ ™ž¦dº¦æºšÑÜ…dnéLH\r&d9Íæ¥“mÜEú}S9¨,%‡³6ôGÈš•Bó¿‡ÒüB§í¤E»ÈñF9–Ï¥Å%\Z´ts-M;LËœÃÉyw­ts U«¯’û\\Zí@ÕŽä¹eyÅ‡×eZgN>ášä›¹—|ïO%?¯0ú³¡ü5•Èß;”6XÓæPÚ–@»Æí¢}Ó‚hŸßÚ‡(¸ ?˜èKÖ|¢õïéàXc:¤¤M‡¼\'P¨5…–ÙÐá2:žÑH‘3/PTk\\	tjÅdŠ­+¢Ó7Ë(ná1JP$JPk¡„E”¨ó”’lÍ(éºí­Bg‡­§³>”ò¿J-¦Ô†:?£’Òbœ)íQ¥5éSÆ1oú{A]ŠJ Ëç<(kv\"]u¿@×^ÓõŒ Ê6LÙv~”“ãB9¹çèFÊGÊ|…r¿ÿ¤[]ÌéÖÏ2Êò‚ò74PþöÅTÔäDz™ÓÃ…:ôèÌ*þöJÞ]¦§£OR©g_*\r2§Òs*Ó\ZHeëÞP¹²-•ÿÞF•Çs¨ª‹=U;¢êü2ªuéIµGÒ»ÕôîL ½·ï¤÷?fPÃ”ú(-Ô¿‡šo†Rsó~úÔòµhí¦–KmôùÅKj_º‚Ú«¨£Ou¸UÐ÷Ôëôs@ý\\Ù‹ÄÊ†„Æp—ÍÌ];-X!²‘rSYq¢÷?–•Î¦r¯=VÎög•§UÜÏ.‰û½yÉª]G°êSVmVäuXm~\'«eÞäA}‡òà¦<¸Ñ™µæùòÐJÖYpƒu÷M`ÝÎ<ÌÚ„‡eO`½¹ÏÙ`ô56ÈëÍ#V­æa<âx	ø¤Á#\r×ñÈÆé<º[½lÏãÌ–ñxã¾<a–:Oÿ„\'ºÚ°±ïdž<Ã\'‡íä)Î3Ù¤L‡§ž^Ì3—&³i~ÏŽW`³ªM<Çí[&Ýb+å,žçp‹íÇ{²½ï^0¶œZGòâ;5¼ôt/_WÀËƒ?óŠ²\rìRmÅ®ó&ðª_ÙÍ«‰ÝN]e÷Óyu-ìqÙ=¯®c¯±±¼&Bx­e(¯½¶×Õ²·§&{\'ñº?ö™bÊ¾™£ÙO÷oPÿ‡f.â@-\\~€ƒŠ¬9¨]wm±äÝ£ðç¼¯Q•ƒ·˜qð8~µƒCŒ¢8tq9‡Þ©äÃO{pØštË¨æ°6|´s&»Ù•g#Gä_áˆ¯8Ò¹‘#ëð	c\r>¹Q£S?sLèO>Õx‹Oý[Ã±Š9V«†OoãÓâÌñ+ïpüÝ•œà“ÄIƒù¬ÞNÞèÍÉMyœü§(ás³¾óyýÁ|q®§¯häô}…œ¡®ÆÃ”ùï‰‡8«þ&_¨äœöf¾ñk-çªÕð­ò£|{ÈN¾Ñ“ï®Æw}þæ|ï|ïø..(ÚÌ…;êù¡\"òÃ¼(~Ø–ÎÛºó“ÝÕü\"ùépu.7Iáç¥E\\ñÐ+^çs¥ßa~i;ž«ûÀ¯nüà×#fòë†g\\ÓÅƒk5–s­åN~SØ…ßü;ënöáº;ƒùmã®ŸìÎõÛ>rýµHn¨|ÌCÇp“á}þ4@…?­«åÖ¿¶ò×Ü%üMÏŽ¿Y~ä§…ó±^Œg3÷béÚ¯QòPç‰Ò6]Q>Q\'ý]¾ˆêjQ«}!êeWdðèå¢5!Q†ä„‹v€¿hÇgŠö}O\Z8Wt\"~XOÑ)ÎÝŽ2ì¤±èï*ÃÇ4‹þ $Ñ?³Cú_ƒ¯ûÄ€úË(íE‡ÄÐÂHÆ<8(c*AÆ™dÊDj•IË£dJ¢ºLm6—ÛÞŠé5±ÈV«Q±buJSlUŠÅ6Ä¶¦‡ØÖ¾ÛwŠ]òT±ŸÚ)ó[ÌdAâHYxÚU‚£8Î*”%æÊ²ÔŒeiL”8¹«ŠÓ«4Y5t¤¬ÚT#«;‹WIŠ¬õñïáÉºæñ)	_+KY?{Œø÷W¿4Lä¯àÙº3M¶(JçzÙi¥(;ó‹%ØÓXö\'»Jˆz›LÒ’ƒÿv“Ð˜>rx‡„\rkˆx+‰´è.‘W‚ä„ÆZ9ñ£‹D5õ–˜Î?äTâP‰ÝX-	+NHâ‘‹’XV()k^KJ`„¤ìé\'©cý%uFœS“ói#$Ó­H²„I–ËsÉªØ\"Yµ%rõÓ¹6\'A²\"$\'*Rrí­%×©@òÞºÉœRÉ?T$ù¡îR01J\n\'Î“BUyV*u\näq“<þÞEŠwIqM ·¶HIÎgy:ÐJžÎ<$¥cÊ¤´­@ÊŽIù~y¾þ‹Tx{HÅ¶¹RY Uwäe[­¼ú­BjÞšKMÛZ©=~Bê‚×É;…ÙòNËEÞMÈ“ú9(\rý{KÃÛÒÐž%.½¥i¸‹|2Ú -“µäËÙfùR‘+­»Hë_i½>G¾fÍ“¯gåk{|í¨•öíÊ·ÁQÒ1Ý]:¶™HGü\"é¨nÎûKäç\ZSùù Mð•¦Ð§$a‹­ÂÍ©Ãflÿ?ÉwZjÈ‘\0','no'),('wf_summaryItems','a:8:{s:12:\"scannedPosts\";i:0;s:15:\"scannedComments\";i:0;s:12:\"scannedFiles\";i:0;s:14:\"scannedPlugins\";i:0;s:13:\"scannedThemes\";i:0;s:12:\"scannedUsers\";i:0;s:11:\"scannedURLs\";i:0;s:10:\"lastUpdate\";i:1525800205;}','yes'),('scanTime','1525800205.1519','yes'),('scanFileProcessing','','yes'),('wf_dnsCNAME','www.watchhill.ca points to watchhill.ca','yes'),('signatureUpdateTime','1522670712','yes'),('wf_dnsA','watchhill.ca points to 23.111.64.26','yes'),('wf_dnsMX','','yes'),('totalLogins','115','yes'),('lastAdminLogin','a:6:{s:6:\"userID\";i:6;s:8:\"username\";s:5:\"James\";s:9:\"firstName\";s:5:\"James\";s:8:\"lastName\";s:10:\"Carruthers\";s:4:\"time\";s:27:\"Wed 11th April @ 03:04:33PM\";s:2:\"IP\";s:13:\"24.207.17.194\";}','yes'),('totalAlertsSent','140','yes'),('lastEmailHash','1525798784:a0e3c72b6eb37b733ceae9810bb804d3','yes'),('wf_dnsLogged','1','yes'),('adminUserList','a:3:{i:2;i:1;i:3;i:1;i:1;i:1;}','yes'),('lastScanCompleted','ok','yes'),('lastScanFailureType','','yes'),('emailedIssuesList','a:165:{i:0;a:2:{s:7:\"ignoreC\";s:32:\"3752fb9df265008c6f29e4f86d91fab0\";s:7:\"ignoreP\";s:32:\"3752fb9df265008c6f29e4f86d91fab0\";}i:1;a:2:{s:7:\"ignoreC\";s:32:\"1116d5d6d3518a90b0297d771551db21\";s:7:\"ignoreP\";s:32:\"1116d5d6d3518a90b0297d771551db21\";}i:2;a:2:{s:7:\"ignoreC\";s:32:\"0d0229d670d8781448bde80a02abf006\";s:7:\"ignoreP\";s:32:\"0d0229d670d8781448bde80a02abf006\";}i:3;a:2:{s:7:\"ignoreC\";s:32:\"de113d2a16a71773e299dcd1580c3cb4\";s:7:\"ignoreP\";s:32:\"de113d2a16a71773e299dcd1580c3cb4\";}i:4;a:2:{s:7:\"ignoreC\";s:32:\"5a52dd35b087dab9c3e67e3ddf3e6f4e\";s:7:\"ignoreP\";s:32:\"5a52dd35b087dab9c3e67e3ddf3e6f4e\";}i:5;a:2:{s:7:\"ignoreC\";s:32:\"10ff40a1eae41328ac9dcd6336f09737\";s:7:\"ignoreP\";s:32:\"10ff40a1eae41328ac9dcd6336f09737\";}i:6;a:2:{s:7:\"ignoreC\";s:32:\"dc08254dec82546801cf592de66f1e4d\";s:7:\"ignoreP\";s:32:\"58dedadc1b09ab7a3d8647b75e237dba\";}i:7;a:2:{s:7:\"ignoreC\";s:32:\"bbf9739b523e3d85a2c82ae27b3758db\";s:7:\"ignoreP\";s:32:\"cf89f88047ec45442232a23582157528\";}i:8;a:2:{s:7:\"ignoreC\";s:32:\"21473930e0d2e3d895181095c627a210\";s:7:\"ignoreP\";s:32:\"ef59905cbbb3e9bd3d5e00a73bc97bb2\";}i:9;a:2:{s:7:\"ignoreC\";s:32:\"f6bc46e724117c102b056c35e911398c\";s:7:\"ignoreP\";s:32:\"7851b77d15b7c410821c7d81b7fbfc72\";}i:10;a:2:{s:7:\"ignoreC\";s:32:\"a69586f27c7402391d2c160b1b412df7\";s:7:\"ignoreP\";s:32:\"48e7025ecc7aece4e20eccde2fbb4d49\";}i:11;a:2:{s:7:\"ignoreC\";s:32:\"c71a4ff3bdde59d198594425a622f207\";s:7:\"ignoreP\";s:32:\"a7a11d55327d8e33c3ef0f99eda62c78\";}i:12;a:2:{s:7:\"ignoreC\";s:32:\"e4ba36ca37e85d2d88ef4a78928ed458\";s:7:\"ignoreP\";s:32:\"272d88e47d17a748bf4de2f76b6cbd9f\";}i:13;a:2:{s:7:\"ignoreC\";s:32:\"a5182c9f5b80d781217de11d655b66da\";s:7:\"ignoreP\";s:32:\"741c9719df6df7376ff952c796615176\";}i:14;a:2:{s:7:\"ignoreC\";s:32:\"b5c001bd6ee1969aca77c38e8f967652\";s:7:\"ignoreP\";s:32:\"b5c001bd6ee1969aca77c38e8f967652\";}i:15;a:2:{s:7:\"ignoreC\";s:32:\"f6ff73191968969bd475dba90503bcaa\";s:7:\"ignoreP\";s:32:\"f6ff73191968969bd475dba90503bcaa\";}i:16;a:2:{s:7:\"ignoreC\";s:32:\"9882953fa4e67577bb5e991451b9a9d9\";s:7:\"ignoreP\";s:32:\"9882953fa4e67577bb5e991451b9a9d9\";}i:17;a:2:{s:7:\"ignoreC\";s:32:\"c1f94b58f4b921454888faa55438db84\";s:7:\"ignoreP\";s:32:\"c1f94b58f4b921454888faa55438db84\";}i:18;a:2:{s:7:\"ignoreC\";s:32:\"1c431d931aced97447903f1a8cf6f4da\";s:7:\"ignoreP\";s:32:\"1c431d931aced97447903f1a8cf6f4da\";}i:19;a:2:{s:7:\"ignoreC\";s:32:\"3ee5717f94da00a4c6333dbf893b6e28\";s:7:\"ignoreP\";s:32:\"3ee5717f94da00a4c6333dbf893b6e28\";}i:20;a:2:{s:7:\"ignoreC\";s:32:\"58453341a86520562ec0a940a3bc7e60\";s:7:\"ignoreP\";s:32:\"58453341a86520562ec0a940a3bc7e60\";}i:21;a:2:{s:7:\"ignoreC\";s:32:\"7865b3660bbef9ab63402bd2cb5085bf\";s:7:\"ignoreP\";s:32:\"7865b3660bbef9ab63402bd2cb5085bf\";}i:22;a:2:{s:7:\"ignoreC\";s:32:\"7e815deff2fff1eb7362f83c9daac50a\";s:7:\"ignoreP\";s:32:\"7e815deff2fff1eb7362f83c9daac50a\";}i:23;a:2:{s:7:\"ignoreC\";s:32:\"0159ec04cf05ede6a88de4f4b85140bc\";s:7:\"ignoreP\";s:32:\"0159ec04cf05ede6a88de4f4b85140bc\";}i:24;a:2:{s:7:\"ignoreC\";s:32:\"8efaa6f570ae6af8c3fb9799fe183bb2\";s:7:\"ignoreP\";s:32:\"8efaa6f570ae6af8c3fb9799fe183bb2\";}i:25;a:2:{s:7:\"ignoreC\";s:32:\"6a052b7a21862407b6fa83b9301aa1d6\";s:7:\"ignoreP\";s:32:\"6a052b7a21862407b6fa83b9301aa1d6\";}i:26;a:2:{s:7:\"ignoreC\";s:32:\"65d991b480e02d165774e8fdc8407308\";s:7:\"ignoreP\";s:32:\"65d991b480e02d165774e8fdc8407308\";}i:27;a:2:{s:7:\"ignoreC\";s:32:\"0ac1c14f8da96d0f9b695628c3c7e6d5\";s:7:\"ignoreP\";s:32:\"0ac1c14f8da96d0f9b695628c3c7e6d5\";}i:28;a:2:{s:7:\"ignoreC\";s:32:\"e2ae45103ddb4e66175ac9189df78d5c\";s:7:\"ignoreP\";s:32:\"e2ae45103ddb4e66175ac9189df78d5c\";}i:29;a:2:{s:7:\"ignoreC\";s:32:\"3df982c580a3598d1bf26abb09888d67\";s:7:\"ignoreP\";s:32:\"3df982c580a3598d1bf26abb09888d67\";}i:30;a:2:{s:7:\"ignoreC\";s:32:\"f9d7ea57e2904648493a95b75885ca85\";s:7:\"ignoreP\";s:32:\"f9d7ea57e2904648493a95b75885ca85\";}i:31;a:2:{s:7:\"ignoreC\";s:32:\"0935623933c7beac5e097aa858582e77\";s:7:\"ignoreP\";s:32:\"0935623933c7beac5e097aa858582e77\";}i:32;a:2:{s:7:\"ignoreC\";s:32:\"e053b5b6747586b60994b21b8fafb385\";s:7:\"ignoreP\";s:32:\"e053b5b6747586b60994b21b8fafb385\";}i:33;a:2:{s:7:\"ignoreC\";s:32:\"780885312308df0aa7fb31924802305c\";s:7:\"ignoreP\";s:32:\"780885312308df0aa7fb31924802305c\";}i:34;a:2:{s:7:\"ignoreC\";s:32:\"2c3f836f707622f6f42bd0c7a1a10e61\";s:7:\"ignoreP\";s:32:\"2c3f836f707622f6f42bd0c7a1a10e61\";}i:35;a:2:{s:7:\"ignoreC\";s:32:\"a3ca48d4b37cf569dc714e87ea343f02\";s:7:\"ignoreP\";s:32:\"a3ca48d4b37cf569dc714e87ea343f02\";}i:36;a:2:{s:7:\"ignoreC\";s:32:\"3580774cc46fb6b831126718a1c8df6a\";s:7:\"ignoreP\";s:32:\"3580774cc46fb6b831126718a1c8df6a\";}i:37;a:2:{s:7:\"ignoreC\";s:32:\"07b8a52b1640a0310b7d0e340cb3c5cc\";s:7:\"ignoreP\";s:32:\"07b8a52b1640a0310b7d0e340cb3c5cc\";}i:38;a:2:{s:7:\"ignoreC\";s:32:\"6a5163b48ca425b82348be34830f3a6e\";s:7:\"ignoreP\";s:32:\"6a5163b48ca425b82348be34830f3a6e\";}i:39;a:2:{s:7:\"ignoreC\";s:32:\"ea4c3d25dc4757e351fd909073421f5a\";s:7:\"ignoreP\";s:32:\"ea4c3d25dc4757e351fd909073421f5a\";}i:40;a:2:{s:7:\"ignoreC\";s:32:\"5e9a2ca237fc2118536b29db642f8aaa\";s:7:\"ignoreP\";s:32:\"5e9a2ca237fc2118536b29db642f8aaa\";}i:41;a:2:{s:7:\"ignoreC\";s:32:\"28859dbfcb98ac30fee063f563704bf3\";s:7:\"ignoreP\";s:32:\"28859dbfcb98ac30fee063f563704bf3\";}i:42;a:2:{s:7:\"ignoreC\";s:32:\"8eab1fb7606f55330967f89a5abcc160\";s:7:\"ignoreP\";s:32:\"8eab1fb7606f55330967f89a5abcc160\";}i:43;a:2:{s:7:\"ignoreC\";s:32:\"cd9989f40c57d5f17a84b5873dd6fa7d\";s:7:\"ignoreP\";s:32:\"cd9989f40c57d5f17a84b5873dd6fa7d\";}i:44;a:2:{s:7:\"ignoreC\";s:32:\"53554205542e08a7ef9f3ac3823f4f25\";s:7:\"ignoreP\";s:32:\"53554205542e08a7ef9f3ac3823f4f25\";}i:45;a:2:{s:7:\"ignoreC\";s:32:\"ad54bcbe2c4daba921b4c477e2264640\";s:7:\"ignoreP\";s:32:\"ad54bcbe2c4daba921b4c477e2264640\";}i:46;a:2:{s:7:\"ignoreC\";s:32:\"7e6713c14897b8d5cc7c0ab5939d9d52\";s:7:\"ignoreP\";s:32:\"7e6713c14897b8d5cc7c0ab5939d9d52\";}i:47;a:2:{s:7:\"ignoreC\";s:32:\"d86e9effa578683b05bdb43500c0ca50\";s:7:\"ignoreP\";s:32:\"d86e9effa578683b05bdb43500c0ca50\";}i:48;a:2:{s:7:\"ignoreC\";s:32:\"54a9911e5dc1847849e08510da136a01\";s:7:\"ignoreP\";s:32:\"54a9911e5dc1847849e08510da136a01\";}i:49;a:2:{s:7:\"ignoreC\";s:32:\"99775b2f2aa9c6050aefa8f126967afe\";s:7:\"ignoreP\";s:32:\"99775b2f2aa9c6050aefa8f126967afe\";}i:50;a:2:{s:7:\"ignoreC\";s:32:\"ca7c7304ec6fb634cebd2162a58f764f\";s:7:\"ignoreP\";s:32:\"ca7c7304ec6fb634cebd2162a58f764f\";}i:51;a:2:{s:7:\"ignoreC\";s:32:\"d98b356491800c352b26f971fad7d646\";s:7:\"ignoreP\";s:32:\"d98b356491800c352b26f971fad7d646\";}i:52;a:2:{s:7:\"ignoreC\";s:32:\"5b3740a1e49637a6b0ea3f478e5a424a\";s:7:\"ignoreP\";s:32:\"5b3740a1e49637a6b0ea3f478e5a424a\";}i:53;a:2:{s:7:\"ignoreC\";s:32:\"1a03a3b97000d8c2ceef602fa96b34c2\";s:7:\"ignoreP\";s:32:\"1a03a3b97000d8c2ceef602fa96b34c2\";}i:54;a:2:{s:7:\"ignoreC\";s:32:\"45ada6d3e72dfd4f7fd3a7d58a0e6be0\";s:7:\"ignoreP\";s:32:\"45ada6d3e72dfd4f7fd3a7d58a0e6be0\";}i:55;a:2:{s:7:\"ignoreC\";s:32:\"8873adcf848376c0d22682a3acafb43a\";s:7:\"ignoreP\";s:32:\"8873adcf848376c0d22682a3acafb43a\";}i:56;a:2:{s:7:\"ignoreC\";s:32:\"87fae1c3b2b32bfaa1fc75f24c8dd5ca\";s:7:\"ignoreP\";s:32:\"87fae1c3b2b32bfaa1fc75f24c8dd5ca\";}i:57;a:2:{s:7:\"ignoreC\";s:32:\"c7a95337a0a4d5d140738f8bbe28986b\";s:7:\"ignoreP\";s:32:\"c7a95337a0a4d5d140738f8bbe28986b\";}i:58;a:2:{s:7:\"ignoreC\";s:32:\"7ab46616bd930cdc99d09edaa19f7636\";s:7:\"ignoreP\";s:32:\"7ab46616bd930cdc99d09edaa19f7636\";}i:59;a:2:{s:7:\"ignoreC\";s:32:\"f1ade75d52dccf7ab6e9070d8eb5cc97\";s:7:\"ignoreP\";s:32:\"f1ade75d52dccf7ab6e9070d8eb5cc97\";}i:60;a:2:{s:7:\"ignoreC\";s:32:\"d03f91ad5910efe2a163b8b0e126ea72\";s:7:\"ignoreP\";s:32:\"d03f91ad5910efe2a163b8b0e126ea72\";}i:61;a:2:{s:7:\"ignoreC\";s:32:\"7bfcd1f5249abf483d337d5016f18ebe\";s:7:\"ignoreP\";s:32:\"8c82e95dc44aeb6440d352fa3c6205eb\";}i:62;a:2:{s:7:\"ignoreC\";s:32:\"236325e177abfe0101d7d32c7fb3013a\";s:7:\"ignoreP\";s:32:\"236325e177abfe0101d7d32c7fb3013a\";}i:63;a:2:{s:7:\"ignoreC\";s:32:\"b160ba1b2e806081e9694d828f48364d\";s:7:\"ignoreP\";s:32:\"b160ba1b2e806081e9694d828f48364d\";}i:64;a:2:{s:7:\"ignoreC\";s:32:\"15260cd296f24483de3cc1f8694f360c\";s:7:\"ignoreP\";s:32:\"15260cd296f24483de3cc1f8694f360c\";}i:65;a:2:{s:7:\"ignoreC\";s:32:\"66081f80d87221922733a025b9b7ecdb\";s:7:\"ignoreP\";s:32:\"66081f80d87221922733a025b9b7ecdb\";}i:66;a:2:{s:7:\"ignoreC\";s:32:\"f3cfeb61c2944e4c7cb203697c02ded1\";s:7:\"ignoreP\";s:32:\"f3cfeb61c2944e4c7cb203697c02ded1\";}i:67;a:2:{s:7:\"ignoreC\";s:32:\"2127c10ab8c3a715399fb926a50e61f8\";s:7:\"ignoreP\";s:32:\"2127c10ab8c3a715399fb926a50e61f8\";}i:68;a:2:{s:7:\"ignoreC\";s:32:\"58d83ce65263eb48739ddefa898b77de\";s:7:\"ignoreP\";s:32:\"58d83ce65263eb48739ddefa898b77de\";}i:69;a:2:{s:7:\"ignoreC\";s:32:\"56e1271ad32d4a40936785c2cb162de9\";s:7:\"ignoreP\";s:32:\"56e1271ad32d4a40936785c2cb162de9\";}i:70;a:2:{s:7:\"ignoreC\";s:32:\"7730b1594c964b649027d393686186c1\";s:7:\"ignoreP\";s:32:\"7730b1594c964b649027d393686186c1\";}i:71;a:2:{s:7:\"ignoreC\";s:32:\"deefa2e6c1c9d1060be1e4105c29ddbc\";s:7:\"ignoreP\";s:32:\"deefa2e6c1c9d1060be1e4105c29ddbc\";}i:72;a:2:{s:7:\"ignoreC\";s:32:\"f17bc27615ed26759c35fedbe76464da\";s:7:\"ignoreP\";s:32:\"f17bc27615ed26759c35fedbe76464da\";}i:73;a:2:{s:7:\"ignoreC\";s:32:\"0e4d682ba28bef538a4574936cf9e4b5\";s:7:\"ignoreP\";s:32:\"0e4d682ba28bef538a4574936cf9e4b5\";}i:74;a:2:{s:7:\"ignoreC\";s:32:\"cc3b3c12a5876844c5a64f0edbc9bbd1\";s:7:\"ignoreP\";s:32:\"cc3b3c12a5876844c5a64f0edbc9bbd1\";}i:75;a:2:{s:7:\"ignoreC\";s:32:\"b158430ee625071991b60e47640203b2\";s:7:\"ignoreP\";s:32:\"b158430ee625071991b60e47640203b2\";}i:76;a:2:{s:7:\"ignoreC\";s:32:\"8f3e84e9b021f8cf099c26f69b5db54a\";s:7:\"ignoreP\";s:32:\"8f3e84e9b021f8cf099c26f69b5db54a\";}i:77;a:2:{s:7:\"ignoreC\";s:32:\"1bbc3ddbd5b7aed0fd48db0d49910f77\";s:7:\"ignoreP\";s:32:\"1bbc3ddbd5b7aed0fd48db0d49910f77\";}i:78;a:2:{s:7:\"ignoreC\";s:32:\"6ead6ce1c7ec25721632067264717e5a\";s:7:\"ignoreP\";s:32:\"6ead6ce1c7ec25721632067264717e5a\";}i:79;a:2:{s:7:\"ignoreC\";s:32:\"2fcb5c937553be1c1f8c2cbd4c3d6635\";s:7:\"ignoreP\";s:32:\"2fcb5c937553be1c1f8c2cbd4c3d6635\";}i:80;a:2:{s:7:\"ignoreC\";s:32:\"783226290e6459d23e922ca08ffab069\";s:7:\"ignoreP\";s:32:\"783226290e6459d23e922ca08ffab069\";}i:81;a:2:{s:7:\"ignoreC\";s:32:\"839356e6340d6486ca1c8cc858c74ac4\";s:7:\"ignoreP\";s:32:\"839356e6340d6486ca1c8cc858c74ac4\";}i:82;a:2:{s:7:\"ignoreC\";s:32:\"07d6980c6c9a50bfe30ee4535990f36d\";s:7:\"ignoreP\";s:32:\"07d6980c6c9a50bfe30ee4535990f36d\";}i:83;a:2:{s:7:\"ignoreC\";s:32:\"042ab455f012c3c073a2d8e64da3eba6\";s:7:\"ignoreP\";s:32:\"042ab455f012c3c073a2d8e64da3eba6\";}i:84;a:2:{s:7:\"ignoreC\";s:32:\"084f53b532625c24bc390d826357e26e\";s:7:\"ignoreP\";s:32:\"084f53b532625c24bc390d826357e26e\";}i:85;a:2:{s:7:\"ignoreC\";s:32:\"384e9baa73ee6a22c029ae8745cb8bdb\";s:7:\"ignoreP\";s:32:\"384e9baa73ee6a22c029ae8745cb8bdb\";}i:86;a:2:{s:7:\"ignoreC\";s:32:\"c095c26d0fae077642250d1a7f8f12dd\";s:7:\"ignoreP\";s:32:\"c095c26d0fae077642250d1a7f8f12dd\";}i:87;a:2:{s:7:\"ignoreC\";s:32:\"628b0106dc8cbfdcb6b1fd48d9f7462a\";s:7:\"ignoreP\";s:32:\"628b0106dc8cbfdcb6b1fd48d9f7462a\";}i:88;a:2:{s:7:\"ignoreC\";s:32:\"17e29ce8f695b06a16bb8963ce0f042d\";s:7:\"ignoreP\";s:32:\"17e29ce8f695b06a16bb8963ce0f042d\";}i:89;a:2:{s:7:\"ignoreC\";s:32:\"23191c5ad2109e193236a514f2967b13\";s:7:\"ignoreP\";s:32:\"23191c5ad2109e193236a514f2967b13\";}i:90;a:2:{s:7:\"ignoreC\";s:32:\"0e051b30e85141244d547f8235780045\";s:7:\"ignoreP\";s:32:\"0e051b30e85141244d547f8235780045\";}i:91;a:2:{s:7:\"ignoreC\";s:32:\"6b0f4837b8a2f9b5cda6f61a756101fc\";s:7:\"ignoreP\";s:32:\"6b0f4837b8a2f9b5cda6f61a756101fc\";}i:92;a:2:{s:7:\"ignoreC\";s:32:\"0c2ba0e856b6d11b16d413a94f7cf69f\";s:7:\"ignoreP\";s:32:\"0c2ba0e856b6d11b16d413a94f7cf69f\";}i:93;a:2:{s:7:\"ignoreC\";s:32:\"e94d3207d93391d6ca405c33f8d2469c\";s:7:\"ignoreP\";s:32:\"e94d3207d93391d6ca405c33f8d2469c\";}i:94;a:2:{s:7:\"ignoreC\";s:32:\"230a2b4c50b8daf1400b6ff18456e90c\";s:7:\"ignoreP\";s:32:\"230a2b4c50b8daf1400b6ff18456e90c\";}i:95;a:2:{s:7:\"ignoreC\";s:32:\"42ffd44fc12c91104e67f7e5ac9c0efe\";s:7:\"ignoreP\";s:32:\"42ffd44fc12c91104e67f7e5ac9c0efe\";}i:96;a:2:{s:7:\"ignoreC\";s:32:\"c3dabdeced32ce8a645078077fdbed40\";s:7:\"ignoreP\";s:32:\"c3dabdeced32ce8a645078077fdbed40\";}i:97;a:2:{s:7:\"ignoreC\";s:32:\"43dbb156d94c0c2f0b9cb552c17957c8\";s:7:\"ignoreP\";s:32:\"43dbb156d94c0c2f0b9cb552c17957c8\";}i:98;a:2:{s:7:\"ignoreC\";s:32:\"8863047550504c3321f94bcde1eea266\";s:7:\"ignoreP\";s:32:\"8863047550504c3321f94bcde1eea266\";}i:99;a:2:{s:7:\"ignoreC\";s:32:\"5224769ac9f62b71345c2a1a970a8aba\";s:7:\"ignoreP\";s:32:\"5224769ac9f62b71345c2a1a970a8aba\";}i:100;a:2:{s:7:\"ignoreC\";s:32:\"66ada44cca94c1ef7583f61bd8eaca18\";s:7:\"ignoreP\";s:32:\"66ada44cca94c1ef7583f61bd8eaca18\";}i:101;a:2:{s:7:\"ignoreC\";s:32:\"28e4e69eee169b88805987862946c061\";s:7:\"ignoreP\";s:32:\"28e4e69eee169b88805987862946c061\";}i:102;a:2:{s:7:\"ignoreC\";s:32:\"a20a00dd0dd741817ca30f9539f12013\";s:7:\"ignoreP\";s:32:\"a20a00dd0dd741817ca30f9539f12013\";}i:103;a:2:{s:7:\"ignoreC\";s:32:\"4d947d21fe634db3b33d333f4f09c1d2\";s:7:\"ignoreP\";s:32:\"4d947d21fe634db3b33d333f4f09c1d2\";}i:104;a:2:{s:7:\"ignoreC\";s:32:\"d1acb4898bf495dadeb5efbaee2335eb\";s:7:\"ignoreP\";s:32:\"d1acb4898bf495dadeb5efbaee2335eb\";}i:105;a:2:{s:7:\"ignoreC\";s:32:\"f32bb47225a5c41258eaa29ecd77299b\";s:7:\"ignoreP\";s:32:\"f32bb47225a5c41258eaa29ecd77299b\";}i:106;a:2:{s:7:\"ignoreC\";s:32:\"01000ae8dbae846770d3eb3917ca7cfa\";s:7:\"ignoreP\";s:32:\"01000ae8dbae846770d3eb3917ca7cfa\";}i:107;a:2:{s:7:\"ignoreC\";s:32:\"94cc66b6b083bed4b8070f67719e4e93\";s:7:\"ignoreP\";s:32:\"94cc66b6b083bed4b8070f67719e4e93\";}i:108;a:2:{s:7:\"ignoreC\";s:32:\"9d1003431560835f1338eea5508fd384\";s:7:\"ignoreP\";s:32:\"9d1003431560835f1338eea5508fd384\";}i:109;a:2:{s:7:\"ignoreC\";s:32:\"2d636f4fde76e510d394282149e73c37\";s:7:\"ignoreP\";s:32:\"2d636f4fde76e510d394282149e73c37\";}i:110;a:2:{s:7:\"ignoreC\";s:32:\"a95345d4a8f6a7586b5e137d98d8746a\";s:7:\"ignoreP\";s:32:\"a95345d4a8f6a7586b5e137d98d8746a\";}i:111;a:2:{s:7:\"ignoreC\";s:32:\"5637c4a54b62ab85fa050d83eb9224d6\";s:7:\"ignoreP\";s:32:\"5637c4a54b62ab85fa050d83eb9224d6\";}i:112;a:2:{s:7:\"ignoreC\";s:32:\"dee717dd7a78e20981d721e6fff8b521\";s:7:\"ignoreP\";s:32:\"dee717dd7a78e20981d721e6fff8b521\";}i:113;a:2:{s:7:\"ignoreC\";s:32:\"ed2dea694016cc2b5d504c30850c704e\";s:7:\"ignoreP\";s:32:\"ed2dea694016cc2b5d504c30850c704e\";}i:114;a:2:{s:7:\"ignoreC\";s:32:\"36af5c504e1bbf426af22fdbb370bccc\";s:7:\"ignoreP\";s:32:\"36af5c504e1bbf426af22fdbb370bccc\";}i:115;a:2:{s:7:\"ignoreC\";s:32:\"1d2917c506b99a07e975e956e8b0000d\";s:7:\"ignoreP\";s:32:\"1d2917c506b99a07e975e956e8b0000d\";}i:116;a:2:{s:7:\"ignoreC\";s:32:\"b6c0136d4035a0d14539f374f9b9d175\";s:7:\"ignoreP\";s:32:\"b6c0136d4035a0d14539f374f9b9d175\";}i:117;a:2:{s:7:\"ignoreC\";s:32:\"98349e28864bfc7fe8752387263768c8\";s:7:\"ignoreP\";s:32:\"98349e28864bfc7fe8752387263768c8\";}i:118;a:2:{s:7:\"ignoreC\";s:32:\"e752de943c575e164ff8fc598c00c10f\";s:7:\"ignoreP\";s:32:\"e752de943c575e164ff8fc598c00c10f\";}i:119;a:2:{s:7:\"ignoreC\";s:32:\"5f6209d192a4b4b3ceeb16d721a268ad\";s:7:\"ignoreP\";s:32:\"5f6209d192a4b4b3ceeb16d721a268ad\";}i:120;a:2:{s:7:\"ignoreC\";s:32:\"38afe6c27992185f770d891e5dd313a1\";s:7:\"ignoreP\";s:32:\"38afe6c27992185f770d891e5dd313a1\";}i:121;a:2:{s:7:\"ignoreC\";s:32:\"2ed7fec69d9e274fb48aaffcef58be11\";s:7:\"ignoreP\";s:32:\"2ed7fec69d9e274fb48aaffcef58be11\";}i:122;a:2:{s:7:\"ignoreC\";s:32:\"dc52354d58ef2306be7827e16043adb9\";s:7:\"ignoreP\";s:32:\"dc52354d58ef2306be7827e16043adb9\";}i:123;a:2:{s:7:\"ignoreC\";s:32:\"a8085af3a4e5bebce5a6098772a4ff71\";s:7:\"ignoreP\";s:32:\"a8085af3a4e5bebce5a6098772a4ff71\";}i:124;a:2:{s:7:\"ignoreC\";s:32:\"296a6056c829971bdf78d94499b9a61c\";s:7:\"ignoreP\";s:32:\"296a6056c829971bdf78d94499b9a61c\";}i:125;a:2:{s:7:\"ignoreC\";s:32:\"1ecf56198a22a597c73c5b49efee4dde\";s:7:\"ignoreP\";s:32:\"1ecf56198a22a597c73c5b49efee4dde\";}i:126;a:2:{s:7:\"ignoreC\";s:32:\"afd9d6e9c231824c706804aaafb53e85\";s:7:\"ignoreP\";s:32:\"afd9d6e9c231824c706804aaafb53e85\";}i:127;a:2:{s:7:\"ignoreC\";s:32:\"14fac6a2f8acc729e1c6e0a5fef43d5d\";s:7:\"ignoreP\";s:32:\"14fac6a2f8acc729e1c6e0a5fef43d5d\";}i:128;a:2:{s:7:\"ignoreC\";s:32:\"1cfdad07ab75853d354314310c1cc861\";s:7:\"ignoreP\";s:32:\"1cfdad07ab75853d354314310c1cc861\";}i:129;a:2:{s:7:\"ignoreC\";s:32:\"1dc2c944c139cd58da624196bd1c7142\";s:7:\"ignoreP\";s:32:\"1dc2c944c139cd58da624196bd1c7142\";}i:130;a:2:{s:7:\"ignoreC\";s:32:\"82641b56d8324a003176d0e8c4b925c6\";s:7:\"ignoreP\";s:32:\"82641b56d8324a003176d0e8c4b925c6\";}i:131;a:2:{s:7:\"ignoreC\";s:32:\"49136e67bff9848fe47b770888be208e\";s:7:\"ignoreP\";s:32:\"49136e67bff9848fe47b770888be208e\";}i:132;a:2:{s:7:\"ignoreC\";s:32:\"9b4c6ce9a721e6d56d7765a0a64ff1bd\";s:7:\"ignoreP\";s:32:\"9b4c6ce9a721e6d56d7765a0a64ff1bd\";}i:133;a:2:{s:7:\"ignoreC\";s:32:\"6b87d72dae80ffc48ce9d2aec7a827f7\";s:7:\"ignoreP\";s:32:\"6b87d72dae80ffc48ce9d2aec7a827f7\";}i:134;a:2:{s:7:\"ignoreC\";s:32:\"7ba8335c9280f8b747f0b00a7cc79b5c\";s:7:\"ignoreP\";s:32:\"7ba8335c9280f8b747f0b00a7cc79b5c\";}i:135;a:2:{s:7:\"ignoreC\";s:32:\"f11675333434bfa240314dbf1461b02f\";s:7:\"ignoreP\";s:32:\"f11675333434bfa240314dbf1461b02f\";}i:136;a:2:{s:7:\"ignoreC\";s:32:\"84210e3c22d89dccc9217711d295e4b8\";s:7:\"ignoreP\";s:32:\"84210e3c22d89dccc9217711d295e4b8\";}i:137;a:2:{s:7:\"ignoreC\";s:32:\"a347f7272779d6a88d83f334fe17e75c\";s:7:\"ignoreP\";s:32:\"a347f7272779d6a88d83f334fe17e75c\";}i:138;a:2:{s:7:\"ignoreC\";s:32:\"e3ea3932185103db44862840a02580ad\";s:7:\"ignoreP\";s:32:\"e3ea3932185103db44862840a02580ad\";}i:139;a:2:{s:7:\"ignoreC\";s:32:\"512cfe5071f3c1d1634b34b20843c50c\";s:7:\"ignoreP\";s:32:\"512cfe5071f3c1d1634b34b20843c50c\";}i:140;a:2:{s:7:\"ignoreC\";s:32:\"6171621128792369362aba95d85d7e59\";s:7:\"ignoreP\";s:32:\"6171621128792369362aba95d85d7e59\";}i:141;a:2:{s:7:\"ignoreC\";s:32:\"b342f99e04e228dd4c5efa0072601bc3\";s:7:\"ignoreP\";s:32:\"b342f99e04e228dd4c5efa0072601bc3\";}i:142;a:2:{s:7:\"ignoreC\";s:32:\"a7701969e7015046fe34510aa8a577fa\";s:7:\"ignoreP\";s:32:\"a7701969e7015046fe34510aa8a577fa\";}i:143;a:2:{s:7:\"ignoreC\";s:32:\"0901de302d8b63032da081dbe6c692ce\";s:7:\"ignoreP\";s:32:\"0901de302d8b63032da081dbe6c692ce\";}i:144;a:2:{s:7:\"ignoreC\";s:32:\"4aa8c986e17a6ca37eef86775f51dad2\";s:7:\"ignoreP\";s:32:\"4aa8c986e17a6ca37eef86775f51dad2\";}i:145;a:2:{s:7:\"ignoreC\";s:32:\"1cf308d1a83c9c74a7e32b304089947e\";s:7:\"ignoreP\";s:32:\"1cf308d1a83c9c74a7e32b304089947e\";}i:146;a:2:{s:7:\"ignoreC\";s:32:\"e657eee73b5215fb23986e9ff1a355c9\";s:7:\"ignoreP\";s:32:\"e657eee73b5215fb23986e9ff1a355c9\";}i:147;a:2:{s:7:\"ignoreC\";s:32:\"69a39992e5b84e91728e67aaf3daf321\";s:7:\"ignoreP\";s:32:\"69a39992e5b84e91728e67aaf3daf321\";}i:148;a:2:{s:7:\"ignoreC\";s:32:\"05f08775b42a294ccbc99c8166519fe2\";s:7:\"ignoreP\";s:32:\"05f08775b42a294ccbc99c8166519fe2\";}i:149;a:2:{s:7:\"ignoreC\";s:32:\"2f216f083f5cce4f592163b48192e664\";s:7:\"ignoreP\";s:32:\"2f216f083f5cce4f592163b48192e664\";}i:150;a:2:{s:7:\"ignoreC\";s:32:\"bc14b81d5844a070a7d08b3f47473823\";s:7:\"ignoreP\";s:32:\"bc14b81d5844a070a7d08b3f47473823\";}i:151;a:2:{s:7:\"ignoreC\";s:32:\"f3059fdda117f7f445382ea46b997c28\";s:7:\"ignoreP\";s:32:\"f3059fdda117f7f445382ea46b997c28\";}i:152;a:2:{s:7:\"ignoreC\";s:32:\"275ed34646f0f6e9c7e92af889d898a5\";s:7:\"ignoreP\";s:32:\"275ed34646f0f6e9c7e92af889d898a5\";}i:153;a:2:{s:7:\"ignoreC\";s:32:\"c730a49244710429501a8db28c5cce1e\";s:7:\"ignoreP\";s:32:\"c730a49244710429501a8db28c5cce1e\";}i:154;a:2:{s:7:\"ignoreC\";s:32:\"3cb0f43376a3fdcf17f25fc0255c214e\";s:7:\"ignoreP\";s:32:\"3cb0f43376a3fdcf17f25fc0255c214e\";}i:155;a:2:{s:7:\"ignoreC\";s:32:\"ae49a7c56712933afc5f4768860e581f\";s:7:\"ignoreP\";s:32:\"ae49a7c56712933afc5f4768860e581f\";}i:156;a:2:{s:7:\"ignoreC\";s:32:\"2c4e99d2ca50681c7cca814941724305\";s:7:\"ignoreP\";s:32:\"2c4e99d2ca50681c7cca814941724305\";}i:157;a:2:{s:7:\"ignoreC\";s:32:\"3dbcf3b53f1f399a471a85dea399d5b7\";s:7:\"ignoreP\";s:32:\"3dbcf3b53f1f399a471a85dea399d5b7\";}i:158;a:2:{s:7:\"ignoreC\";s:32:\"7c1cbfeaa2f6180693dbc5c3c87e686a\";s:7:\"ignoreP\";s:32:\"7c1cbfeaa2f6180693dbc5c3c87e686a\";}i:159;a:2:{s:7:\"ignoreC\";s:32:\"199fc8c3c769501c20eb4654b2601a89\";s:7:\"ignoreP\";s:32:\"199fc8c3c769501c20eb4654b2601a89\";}i:160;a:2:{s:7:\"ignoreC\";s:32:\"eb4fcfce7bf9c4c729142a7ac8103e1a\";s:7:\"ignoreP\";s:32:\"eb4fcfce7bf9c4c729142a7ac8103e1a\";}i:161;a:2:{s:7:\"ignoreC\";s:32:\"b53d2a6ee2b90881e4646bfb70eb0448\";s:7:\"ignoreP\";s:32:\"b53d2a6ee2b90881e4646bfb70eb0448\";}i:162;a:2:{s:7:\"ignoreC\";s:32:\"803c5935a7873b8d65fef621a58776cf\";s:7:\"ignoreP\";s:32:\"803c5935a7873b8d65fef621a58776cf\";}i:163;a:2:{s:7:\"ignoreC\";s:32:\"c3a1934c0a51631ab9a4c43a37f39797\";s:7:\"ignoreP\";s:32:\"c3a1934c0a51631ab9a4c43a37f39797\";}i:164;a:2:{s:7:\"ignoreC\";s:32:\"68b52fbc5af979050139b9cd44863f09\";s:7:\"ignoreP\";s:32:\"68b52fbc5af979050139b9cd44863f09\";}}','yes'),('lastNotificationID','1507','no'),('lastDashboardCheck','1525800198','yes'),('vulnRegex','/(?:wordfence_test_vuln_match|\\/timthumb\\.php|\\/thumb\\.php|\\/thumbs\\.php|\\/thumbnail\\.php|\\/thumbnails\\.php|\\/thumnails\\.php|\\/cropper\\.php|\\/picsize\\.php|\\/resizer\\.php|connectors\\/uploadtest\\.html|connectors\\/test\\.html|mingleforumaction|uploadify\\.php|allwebmenus-wordpress-menu-plugin|wp-cycle-playlist|count-per-day|wp-autoyoutube|pay-with-tweet|comment-rating\\/ck-processkarma\\.php)/i','yes'),('lastAttackDataSendTime','1521881334.559885','yes'),('notification_updatesNeeded','1','yes'),('notification_securityAlerts','1','yes'),('notification_promotions','1','yes'),('notification_blogHighlights','1','yes'),('notification_productUpdates','1','yes'),('notification_scanStatus','1','yes'),('howGetIPs_trusted_proxies','','yes'),('wfsd_engine','','no'),('geoIPVersionHash','373330c1fa7d993831dde310fe33f181974f638946c711a1b1aa33c13b7addb2','yes'),('liveActivityPauseEnabled','1','yes'),('migration636_email_summary_excluded_directories','1','no'),('timeoffset_wf','0','yes'),('timeoffset_wf_updated','1525798784','yes'),('vulnerabilities_theme','a:2:{i:0;a:4:{s:4:\"slug\";s:15:\"twentyseventeen\";s:9:\"toVersion\";s:3:\"1.5\";s:11:\"fromVersion\";s:3:\"1.4\";s:10:\"vulnerable\";b:0;}i:1;a:4:{s:4:\"slug\";s:7:\"genesis\";s:9:\"toVersion\";s:5:\"2.6.1\";s:11:\"fromVersion\";s:5:\"2.5.3\";s:10:\"vulnerable\";b:0;}}','yes'),('other_bypassLitespeedNoabort','0','yes'),('wf_scanLastStatusTime','0','yes'),('wfScanStartVersion','4.9.5','yes'),('allScansScheduled','a:3:{i:0;a:2:{s:9:\"timestamp\";i:1525851000;s:4:\"args\";a:1:{i:0;i:1525851000;}}i:1;a:2:{s:9:\"timestamp\";i:1526110200;s:4:\"args\";a:1:{i:0;i:1526110200;}}i:2;a:2:{s:9:\"timestamp\";i:1526369400;s:4:\"args\";a:1:{i:0;i:1526369400;}}}','yes'),('total503s','62','yes'),('noc1ScanSchedule','a:3:{i:0;i:1525851000;i:1;i:1526110200;i:2;i:1526369400;}','yes'),('scansEnabled_checkGSB','1','yes'),('originalScheduledScanStart','1525591800','yes'),('scansEnabled_fileContentsGSB','1','yes'),('fileContentsGSB6315Migration','1','yes'),('scansEnabled_suspiciousOptions','1','yes'),('cbl_loggedInBlocked','0','yes'),('cbl_loginFormBlocked','0','yes'),('isPaid','','yes'),('cbl_action','block','yes'),('cbl_redirURL','','yes'),('cbl_bypassRedirURL','','yes'),('cbl_bypassRedirDest','','yes'),('cbl_bypassViewURL','','yes'),('cbl_countries','','yes'),('loginSec_enableSeparateTwoFactor','0','yes'),('wp_site_url','https://www.watchhill.ca','yes'),('totalIPsBlocked','60','yes'),('displayAutomaticBlocks','1','yes'),('scanType','custom','yes'),('lastBruteForceDataSendTime','1504586851.620000','yes'),('lastDailyCron','1525800198','yes'),('lastBlockAggregation','1525800198','yes'),('displayTopLevelLiveTraffic','0','yes'),('liveTraf_displayExpandedRecords','0','no'),('loginSec_strongPasswds_enabled','1','yes'),('loginSec_requireAdminTwoFactor','0','yes'),('displayTopLevelBlocking','0','yes'),('manualScanType','onceDaily','yes'),('schedStartHour','5','yes'),('schedMode','auto','yes'),('keyType','free','yes'),('dismissAutoPrependNotice','0','yes'),('onboardingAttempt1','license','yes'),('onboardingAttempt2','','no'),('onboardingAttempt3','','no'),('onboardingAttempt3Initial','0','yes'),('needsNewTour_dashboard','0','yes'),('needsNewTour_firewall','0','yes'),('needsNewTour_scan','0','yes'),('needsNewTour_blocking','0','yes'),('needsUpgradeTour_dashboard','0','yes'),('needsUpgradeTour_firewall','1','yes'),('needsUpgradeTour_scan','0','yes'),('needsUpgradeTour_blocking','1','yes'),('supportContent','{\"top\":[{\"title\":\"I am locked out of my site\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/firewall\\/rate-limiting\\/#i-am-locked-out-of-my-site\",\"order\":0},{\"title\":\"Wordfence 7\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/advanced\\/troubleshooting\\/wordfence-7\\/\",\"order\":1},{\"title\":\"Wordfence Web Application Firewall (WAF)\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/firewall\\/\",\"order\":2},{\"title\":\"Scan Troubleshooting\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/scan\\/troubleshooting\\/\",\"order\":3},{\"title\":\"Optimizing The Firewall\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/firewall\\/optimizing-the-firewall\\/\",\"order\":4},{\"title\":\"Scan Results\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/scan\\/scan-results\\/\",\"order\":5},{\"title\":\"PHP Fatal error: Failed opening required wordfence-waf.php\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/firewall\\/#php-fatal-error-failed-opening-required-wordfence-waf-php\",\"order\":6}],\"all\":[{\"title\":\"How to Use Wordfence 7\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/wordfence-7\\/\",\"excerpt\":\"Customize your Wordfence menu, locate options and learn how to perform common tasks in Wordfence 7.\",\"order\":0},{\"title\":\"Dashboard\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/dashboard\\/\",\"excerpt\":\"The Wordfence Dashboard provides insight into the current state of your siteâ€™s security.\",\"children\":[{\"title\":\"Options\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/dashboard\\/options\\/\",\"order\":0},{\"title\":\"Alerts\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/dashboard\\/alerts\\/\",\"order\":1}],\"order\":1},{\"title\":\"Firewall\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/firewall\\/\",\"excerpt\":\"The Wordfence Web Application Firewall is a PHP based, application level firewall that filters out malicious requests to your site. \",\"children\":[{\"title\":\"Optimizing\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/firewall\\/optimizing-the-firewall\\/\",\"order\":0},{\"title\":\"Learning Mode\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/firewall\\/learning-mode\\/\",\"order\":1},{\"title\":\"Statistics\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/firewall\\/statistics\\/\",\"order\":2},{\"title\":\"Options\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/firewall\\/options\\/\",\"order\":3},{\"title\":\"Brute Force Protection\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/firewall\\/brute-force\\/\",\"order\":4},{\"title\":\"Rate Limiting\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/firewall\\/rate-limiting\\/\",\"order\":5},{\"title\":\"Troubleshooting\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/firewall\\/troubleshooting\\/\",\"order\":6}],\"order\":2},{\"title\":\"Blocking\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/blocking\\/\",\"excerpt\":\"Aside from the Firewall rules that protect against SQL-injection, XSS and more, Wordfence also has custom features for additional blocking. \",\"children\":[{\"title\":\"Blocked or Locked Out\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/blocking\\/blocked-or-locked-out\\/\",\"order\":0},{\"title\":\"Country Blocking\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/blocking\\/country-blocking\\/\",\"order\":1},{\"title\":\"Troubleshooting\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/blocking\\/troubleshooting\\/\",\"order\":2}],\"order\":3},{\"title\":\"Scan\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/scan\\/\",\"excerpt\":\"A Wordfence scan examines all files on your WordPress website looking for malicious code, backdoors, shells that hackers have installed, known malicious URLs and known patterns of infections.\",\"children\":[{\"title\":\"Options\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/scan\\/options\\/\",\"order\":0},{\"title\":\"Results\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/scan\\/scan-results\\/\",\"order\":1},{\"title\":\"Scheduling\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/scan\\/scheduling\\/\",\"order\":2},{\"title\":\"Troubleshooting\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/scan\\/troubleshooting\\/\",\"order\":3}],\"order\":4},{\"title\":\"Tools\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/tools\\/\",\"excerpt\":\"Wordfence Tools include Two Factor Authentication, Whois Lookup, Password Audit, Comment Spam Filter, Live Traffic and Diagnostics.\",\"children\":[{\"title\":\"Password Auditing\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/tools\\/password-auditing\\/\",\"order\":0},{\"title\":\"Whois Lookup\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/tools\\/whois-lookup\\/\",\"order\":1},{\"title\":\"Comment Spam Filter\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/tools\\/comment-spam-filter\\/\",\"order\":2},{\"title\":\"Diagnostics\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/tools\\/diagnostics\\/\",\"order\":3},{\"title\":\"Live Traffic\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/tools\\/live-traffic\\/\",\"order\":4},{\"title\":\"Two Factor Authentication\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/tools\\/two-factor-authentication\\/\",\"order\":5}],\"order\":5},{\"title\":\"Advanced\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/advanced\\/\",\"excerpt\":\"If you want to know more about the technical details of Wordfence, you\'ll find the answers in this section.\",\"children\":[{\"title\":\"System requirements\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/advanced\\/system-requirements\\/\",\"order\":0},{\"title\":\"Remove or Reset\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/advanced\\/remove-or-reset\\/\",\"order\":1},{\"title\":\"Constants\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/advanced\\/constants\\/\",\"order\":2},{\"title\":\"Changelog\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/advanced\\/changelog\\/\",\"order\":3},{\"title\":\"Technical Details\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/advanced\\/technical-details\\/\",\"order\":4},{\"title\":\"Wordfence API\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/advanced\\/wordfence-api\\/\",\"order\":5},{\"title\":\"Troubleshooting\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/advanced\\/troubleshooting\\/\",\"order\":6}],\"order\":6},{\"title\":\"Wordfence Premium\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/premium\\/\",\"excerpt\":\"Wordfence Premium comes with an IP Blacklist, Real Time Protection and much more.\",\"children\":[{\"title\":\"License Key\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/premium\\/api-key\\/\",\"order\":0}],\"order\":7},{\"title\":\"Site Cleaning and Security Audits\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/security-services\\/\",\"excerpt\":\"Let one of our Security Analysts help you clean your infected site or inspect it for vulnerabilities.\",\"order\":8}]}','yes'),('supportHash','3a1912c483708decfb5df5976bba87b9daf0fa489631b23297388361181d1043','yes'),('config701Migration','1','yes'),('blocks701Migration','1','yes'),('scanStageStatuses','a:11:{s:13:\"spamvertising\";a:4:{s:6:\"status\";s:7:\"premium\";s:7:\"started\";i:0;s:8:\"finished\";i:0;s:8:\"expected\";i:0;}s:4:\"spam\";a:4:{s:6:\"status\";s:7:\"premium\";s:7:\"started\";i:0;s:8:\"finished\";i:0;s:8:\"expected\";i:0;}s:9:\"blacklist\";a:4:{s:6:\"status\";s:7:\"premium\";s:7:\"started\";i:0;s:8:\"finished\";i:0;s:8:\"expected\";i:0;}s:6:\"server\";a:4:{s:6:\"status\";s:16:\"complete-warning\";s:7:\"started\";i:4;s:8:\"finished\";i:4;s:8:\"expected\";i:4;}s:7:\"changes\";a:4:{s:6:\"status\";s:16:\"complete-success\";s:7:\"started\";i:4;s:8:\"finished\";i:4;s:8:\"expected\";i:4;}s:6:\"public\";a:4:{s:6:\"status\";s:16:\"complete-success\";s:7:\"started\";i:2;s:8:\"finished\";i:2;s:8:\"expected\";i:2;}s:7:\"malware\";a:4:{s:6:\"status\";s:16:\"complete-success\";s:7:\"started\";i:2;s:8:\"finished\";i:2;s:8:\"expected\";i:2;}s:7:\"content\";a:4:{s:6:\"status\";s:16:\"complete-success\";s:7:\"started\";i:3;s:8:\"finished\";i:3;s:8:\"expected\";i:3;}s:8:\"password\";a:4:{s:6:\"status\";s:16:\"complete-success\";s:7:\"started\";i:1;s:8:\"finished\";i:1;s:8:\"expected\";i:1;}s:13:\"vulnerability\";a:4:{s:6:\"status\";s:16:\"complete-warning\";s:7:\"started\";i:1;s:8:\"finished\";i:1;s:8:\"expected\";i:1;}s:7:\"options\";a:4:{s:6:\"status\";s:16:\"complete-warning\";s:7:\"started\";i:2;s:8:\"finished\";i:2;s:8:\"expected\";i:2;}}','no'),('alertOn_breachLogin','1','yes'),('loginSec_breachPasswds','admins','yes'),('loginSec_breachPasswds_enabled','1','yes'),('needsNewTour_livetraffic','1','yes'),('needsUpgradeTour_livetraffic','0','yes'),('blocks702Migration','1','yes'),('displayTopLevelOptions','1','yes'),('coreHashes','‹\0\0\0\0\0\0\0#€Üa:2:{s:4:\"hash\";s:64:\"1f93475756196045e37cce0467d89e61937b1a4f94efaf824253c95b1f5b3a08\";s:6:\"hashes\";s:120928:\"\0­ˆëW7‡Ž±ht#“	²šq¡»)¤ºdÅèú$\0ÐÉ\0(Ðœ˜úZúY÷Y˜@àIq©î›È—#áÑT»áù@\04ß—¼t‚\\v¦QçüÞ¹¾ô\'_ËáÂajxÊÒ¦Û\0E=j¶ƒËÈ‹|p8.æÂ½ÿ÷ËÖ¤ñóSGpåƒ\0Eq­x¿ƒ”ÃPa§ˆ÷>bváDª¿o4VŠG;a<±Þ\0^NÙå¼˜aðe|K ·-àÆÜ°ÒÍÉœ=ç„\0bœ&Fžö˜³ÿ%|w›í*Qr;|/Š=(A§óä<ü\0…‘¥#æBí5à¿j†ó$#õàj!ŸµþÐbN€ôjö\0Û§ÿå4(ÊK I|Š„¯0ºìµqD.^¾v¯\0µëiäÓÖ„\"ÞûãÆ]Ñ^è°þXDþ“2](\0¹‡ö/Œ¡o)öô:4]±ã_Çøß+Ì”ëŽc½þ×\0Ôeµ*ë@’t„À±\"éáƒq	ÈNþ’5÷„H¥\0íT|Ì…_¬ÕSò8­´O0Î¼ªÂ¸0ªÃª‰6•\0÷ù-bsèG¨\n(hr\Z.ónåõù!eÈ×z.Yx€×UÏiÍ5G èÜ$PÂüuÍvAT‰‘ÀÊ¦D¶IèXVªf¸EW£Ïe“€ßG§]¸ñ´q)6—í	ÅjÜí”õnNØ¤^}0[PœKXs“¤+È‰a±w©S‚¶à[óU`|WS³PDæ°ç¾ŸNh¬Èb!•Æò­#§8iß>kq6¿R„Eÿ5ž”:—\"üŸl|‡ì(ãœ¦Á–q{ÆðVÀ~uê<¢Dh¦o*¿¯ŒcÏ¬0ßñÎÁx¢cl$‡	™4ÚÝm•·äÉøo¾¿`vA:§ø™ìˆ`{rfËÁï_ûS3/sÙmÚ?dš^Í”0ßX0ã#q–Â-mlÏ*€Ï$É2þäŽ]â’%Æì*œ6Þ\\þdpùÛ›!½s%Ÿà]Z×YÇoåŠÝ¿ŸþŸ¥„©‘ôÉr;GÐ÷\"Š¥Gu÷Éß&Ãw]ê-H€\rRWý½\\Ì5õ¦õò\'³Œ=ÃQ€7aiÌ\rICÒpE–KáÈÌð‡y½€kŠÑ©}Ë£œ\\$­p\"·&Ìp+^„ºÕ\Zõ{©¯ŽÛÌÂ˜¹5ÿ|™f¢ãµ…SÍLšo3EýxÀºýÑ¥Uãÿ°q¨`Žq4uí¶øZ¢®¹ð°¯[nù8”O£ìr7‡Í0H01YL$RRAhJ6´çM¦w:/ð7š.ÊÚP”Áƒh.BÂU-Ñ—ò\'TsÁªz+p¿ßMúË»yUL¤…ÁK«ùCËWaå\\°èËÄ\nƒ;è¥0åÄ \"f«ÐÎŸïÒ\'\rÍ¤ýDÄdMÅ×ÙùÃ÷§sËÇ¿‰ØÚ´ø$2ôj)Ã,\n²\' #6ä§9\nü‡ÏÚ–©õmKØ2†e²féte¾4ùœš\ZðGG.Àf­±Vy`¸Éÿ)\".o[`×ÏÝ\rÉn”óçjn¼viU\n@,›+!%u	re4Ù+JuP$,–WNÙPÙ2Ò\"Åž˜,|^âå€yÞ²ðñò/\Z(A°1]ü/Æ…­B‘Mój:­å@Ñ«ÈG+SÛf¶º«ÿ¹dVži‰\n°6W·úÔ‘\\<çOÌEj2¬QòŠ×Ö”\rÀ|þX6ÂìÔîÒ/46¤JòÕÉ?ÔÕæX’GX†~†–u™Ÿúic\râpª«õ´ûQÖÇí™œ½÷\r?c˜LÙTÓŠ•ùîqg¦È«?c—r‡È¸¦t­d®¬æB\rTJÂ,Q“Ó$šTDh×ñÐ((Zdz¶¹vOÿ¯¯Â_•Ÿ;Æ€›³EŒpYö.Õ&}öº_º	ÔQ¿Æ‰ãoSânnûÌµvêø\0)°öÌÓ¿–ÝÓ¤å:DILV­\0yÅZþˆ)›¾K‰\nã…ËÜ˜D‹~™‰%Roøïc‰Ö7®\r¦ºL»æ>1ŠÝˆ]š^]¬RÉ¢NF™MôâJÌ,˜ï÷iêI.2 š»>1·ZØ;×¨¾‚1Ô$š!¡‡W:	¨SxïDq5ºà/wºÛ_W:œØ+fð1zù¸g¢¦‹\\Yòúâmõx³GO0ÇÎâjo].ã–½®Bœ=½f~:N¾Ì¤Fa6¢Õ¡Ù\nY ØÓ\'ºèiûÂç+­`­ÂfGYbmŸïUP©™M™JéÚ¡0€&CvÂèM“$…Ûèú¶O½·4-K¸	o6Ûlbö1Eå;±7xù?ð-™Ç±Œ¨ZÞzE»Ÿ‰*†nk±»‰E×m@ìžãéöŽéð1s®­Y•#1$Ðé\Z£=I˜ˆŠ¿b£ŽXBr½?Š·ìÍ¥-ô‚!Çiº>¡`Éå]wBËùÎºõ@kp&»›¹h4Ô›µ2¶™ºm¦ÿI”$=„­ù¼¹D“‹Ö›&ÄÇ¾@+Õ¢ËÐz=¬i»êîÒ Sò¨°ÔÀý\Z\Z4Ú¶1é5ÁªÇ2’3\r#?EÉQ·ËØL¶ÕIm$ÏZÊåªB\Zï!„ãœ&šÍ–Ž—Ck†`7‹Ï×\'/¹½]äiª²5 \0¼ÒÖÎ%%Öì-ÓÕ)^\\‰¢\0«t`–kà²@§ƒ›UæOÅ”¤cp¦Ï>ã!8HB6¥Ïàãìâ=“bñÂ‰!§ônŠz\0§OS~Kêøç|$Øëö°T¡ìïÁ…ælJÆøbÿOwŸàÐáÍf\nTÀþ²­Eg\ZUê\røŸ£KN¢eéÓŒ»ð&ÂÐŽuÑ¡Iq™t¼·‹n~T	_j×-˜›†É%³¦?ž7¡0i–»Ë}ÍeÝiZÖO™&E+rXŽe{eª½mXÎÈö<¼:¦KSz_oeïÕýÅ­y§^/?h;@râK%àáLP…Çf¨àcË(|Õ_] ÛUÌÍ’o~MEÿèï×†Ý´sèƒò@Z2]¦óºi¾¨¨](J~nø3ìàÏ¿Ù€hjóqÚoÑ2±†kLý›JQ§c\0Ï8|VÜËA‘üýŠŽNÚº¶)\rÂmäMA¼ÌæD¾°os,–Õðê$»‹ôgJ	áÅ–Ø7l}Øa¡ñ¾ÔÈÁŠ¯Ãw|ÛgRLh!ö°1ÒRóþ&\'˜ýk±D\':8Yß¤\'\\Õ\0¨¶¯|Ç8Í(´ˆ]x’Zä´ÏvJ+è~†S‰$Ù‹6ÏîvgAÑœÀÊ‹Q?­j¬`J“ô‘2r)rk’+`½NiMçñ2]<¾	¾h\nÚË¥—þOí€3Œ5FžÐÈ\\Ì\0÷žð“,vSçç+p\ný.‡§™é´\rÄJ*RT	ü!ŒæA&–ÕUóBÍtG=_:\\ê]>iŸ£?Î·@Ú¹ÜaKÕºÚ*¿ Ô½+]²€µÒ®gÆ‰^62óG¦ž\rƒS …|±;)¥$=XÁn!Ãº®‚l=Ø@õAÍ°Óñ:ÞV56UÆþx5ôPx››Í&ó¿:V“VæûÚ-qX¹êA9ÀMç4Þà†-²°©t\n{ëÑõ†}ÿMI	AE0NãöÜÊûµ„Å.T0b([Î²Üžª£õíoYdÔÎ%Ü å+£[»Bº•ð f¶<3)|•žŸˆõ¾xZŸ Õq@Éõ¶ä51a¥Ixˆ»¼MOYÀUò\r‹ZêtŠKÏ­éuJOyÅ¹¢&Ò¸øÄ*ë‘Ü²Æus#‘žt1ð²#4çÍö´Ãä‚¹\Z€Á\'&Ý8Ñ\0Ãª”¿õ›m9;:áÄÍ¼„fÂÆf„)“™¤Iïœ³Í;ÁþPoiÃã§Ú=DáŽ¯ä¤0SlíhsgÜº{”,˜ó–ÕÉ`™€hˆÿ`“P¡*Í¤¹!j1m!–~J­Ž\r¦OÓ]ŽY<yŒ}ƒ\Z»>ÉºH¨¯ðI|ÜÇPôè±ßè®àBb¥½eÔ^üšÎˆ;VT1¨Îcj¨] k^§O×ê¤9«A9/Ø\ZóŒ%˜@b¤.Œ`»ð•š poÖÀïdf¹Æ?»jr£äYåe|ÕHŒ÷h>Ý,‹ecÞ¡–Rúes5-“šàD=ÇÄû<óÚ:3ãÍÏ©‘MçñÔ>»‹ÿrî6ËÔ¤Ðô%z‹uÛ‡7þ}»FËð˜Ä[yx±¯]káÆÝ­÷Yrƒ‡Ö¼9£IV,C2\"“•ÉVÑl·—pˆ]l2¢Pïøf>ìõKpÔÇÖšJ”¾™bvw°`î©ªµ*»wé ó}±Ëø©¶*Ê˜ñ˜)>2ƒq¤–e¥€^ÕÀ)ŒP’¦ÇnûGfRô@Ol,>ivÄ:°`ÄtQÆ*·8\'¥<“ó\nã‹Á’¼ Jò·;“H`÷QØ6pq¾ÿØaó%ë®ñ\r†Ø	üì\"…Anˆ3HØIsÌ:Y¥¤aÁe0BÒ²yõPp\nï­¾¯¨™òÆ!Î›Íÿ»Ù&°ÖÉ…\'MºÐ4ãšBŸSøßÉ+\'¥4&¼$Ø¡¡óVgg¤áoÎüg~Ùëm/à¡/&t+äùâs×ì¾äÔ\"#:Z«Ü¯4ã“‰&_&ÛÇÇ6\"xFð|w`AZ_+vL\r}°ŽNßPåÉæ6ƒ«¸Š½¢_ëðÒ°æÝ¾”ýl2¡bž©¹qÃœ$U„v¡ñ	l,s¨ÅÙ\"\rûmžè`»áY×“¯U”¶X^žMs÷—6RŸH@ñ	&‰å†¾¤BÇxžö@dÆR#U³ôOþPg›žsHüoè)nÕÎÿWréÎtZìMªÒþè?%†ï¹ˆVúÜÀ¢D±°FvßA&’Vzt½ð~¤†J™}ÇË^>IØ€Ò]Y‰}à@¯ˆÁüÜ*9V›»ŒÎ¼ó[E£¶Bu}<¨ö:h@ÖÂQÿÏ/U\0-|_Û¢1ùg-ñ+´­·Þ}üÔ˜!^iB³ÐòJüÕ\\W¤]f§œ@@…w£=	.]¶íkZ1Ñ™mÒGõ‚ý]Ôxà0øê•É	64µ®ˆç ¹2DMÈMâ$Ë\ræ¾i“\0Ô¬‹	8\\Å¬ç®jùA’Ê”5Ñ+X­œoˆTùm°_|	Më°ìyu$œ1¼ck_‘KÿoÝfÛÏm³…¹%û	g)[.‰r\nào”i×{4Š›Q\n\r8HŒ\rfXðÀè	v¶l»´õÙ®ß÷!ÿð¹ÿP€²mýø•\n6|Ï”K	~ÐõCèÈ«™¯7¤àÃ:À£s&uËäÙìjÔËt	©+ö{RôƒäÓÙ„åÔËnýt,´Çž¦`µ•Î|Uî–	­	½œ#t‰Ì¹»ê«p=¬I\"¼¦˜)F	Ð¥TßãXnúZWfÆ6ÅÅ¼š´ÅÕ/˜ËªìÚ×h	Ö“ÅÜñ-Œ\nqU‰Ëiº×Í-›$àh*íØm™l	æVh˜ÐðLC‰Â»>UÆ8.Å`Æ@<Kéãh	üÍ¿¸ÊU%ÅO¨HÞ¡ñŸ…@¿~x\\6ÎÄ~â\n*„²<×÷ºÓ³³?HM²\'VÕéèLî¼\'[RÛ\nð@&Øê[DqSÞÁÊÓðìàB—×N#F‰B…ä\n*An•„¸.]éBéÄtúvƒ!‰WÒ§Mw’9ÝûF\n+P_tQÿVoêú©²ª7nÿ\nz#ù8ÍúºÒÛßJ\nGkù ~ng˜–m.ë3\\–\nðæ°1i‚ÔjgÖ¸Ó\nv­?Ìuì	ÒÈÈfßh6Ú2Bþƒè?ñ2\03”}¦\nx‰çm¯«…nV=OD¼“\0T­ÚÞ)‰ÏUÜã©\n‹\\_9(ô)7‚\n—Ö/õSæà\'ägßƒ†v•£Ã\n¡9d£Çìgð~@–¤®|ëB-ŸÁ°²œÚý6=£\n¤TÂ[Cp¹±§â(,¬_V+äL\rÛ¨I¹ü(.ˆ„\n¥súH×µÑ‡c ë-y//ý?‡\r®$MÌ¤j3\n§aqYK´JÒ”Î€pù\ZJüj¯\\PÇ˜È\nÔ\n¶¯Ú·›tnŒ\r‰EanòŽJ;}(ïÒÒ™©ñÂ.°Ä9\n¸X:€¼QØ}×+öO—\\ß_“	{¼Ü“C\'a×y:¤ß\n×CãÙ0ÄpFdù°‡l•\0¿ž\"uê™~2\"õT¯½p\Z\nèvÉ[\0Çõ‡XZppiý.Ì¡c¹;~&Œ†Ýø\nî·Î&ª)h4Ð_`ÕFãL“<—ã:`#pf¢ìò\nù˜˜ÛRW#Þˆ´ å¦Q¥ÆÄ“4E[£\'Äz“61k‡K(£á]1Èz¯ukpR¶!¢‰³Œ—YC8»³Õ`dfh–.^8¦äôÊ!{ÊÀÝFüN‘L{ÎçzÅ)ªú,­\"§wÍWÏýS²ŒJÇ²þžÕÁK­SÁª´Àuá¾’¹MˆÂccÖÍÞcdD™(‹Q±Ì\\™\raò•[„J?TÓÐð?ÑÿúG¼d¡æ(s†©ª¢Ôîtô¦BUI+u›˜ÀC¯ãÅ¶…R‘ŸãSF2>Â3`¥ûvÉþ\'˜:js(-Nê§²šÖ ¸ï–çNç3ƒì•ô:âVS;ÛÅáCT\n€»] þ¥C‡rJ¾2ŽªËÉm5CZ‡\0Ù/@@1ß1ÝÆSîð.>õU‘B|2›üÓœOU}¿Ú(Ô°¡tcç2Á¬Ä’ZV†Rêé¡ƒ[§‚l#4ÿË»>1Îµ¢´Eþ€Âl|lh¬®£ÙÊ]ýŒä:ÔYÅˆõ3	š§Óì\\gmÌ»ñ1)q+#ã˜òÙbæ^0rR_Ò²¿ˆYn,ªJš©©½ÎÍ“TÈNBº(Ù-±§gõê\\ICÚž×:rÃn…Ì¿†>TwØD\n®Q¼!˜@iDäøÃr‚è´È­!wz÷L{©ïJÑy7-Ñmé×á“Gé´žYâŠ[¨ÍôãkÊÈEn#XvÕi‡w÷R»:žM7K¬kRŠ¢D·•¬‘.„ó²© L9Œô%±S÷¨³J*˜À–…n\'Íªt^ÀÎÐVÉ¹ÅO‡œÆÇì*ó(œ˜„·Š7Y‹î(VÝz|%\0\'j·Õ­lø÷Øµ®$hçTCîôßÕžNû8köÈºÉ™y¸mœ-Bî©Ëóì›ìYVAlÍ¼2¾VSü#nÛØòX¼–‹Õ6÷ÃXî”›âñDUÈTö=õ–1O¿@ø,xÔÏý’ˆÝ³Ù Ø)®¼\r&Üd5·s/,—\"ìd·\r%¶P¨–˜ÓùcWé-:\'2„Uá\'FtàÝ©z\r1?–;IBœ=S±÷\Z“2ÍÖ¥‘&þ×†Z¤B®¬»\rQiü^š\ZB|­äf²‘C‘¿è-/r±ÞUÇYÙ¢ÅB\rX·[cdpSs3Ó%.Xóå|AˆºÄwü˜#(JL\ra‚{pë9ÑÙåó(A–)Ë¡…Ì®SPV†Ìsë6ì#i\rnuŠî:Ft\Z±¤\"P9ÿµ¸qP¾‰œR¸®PA \r‡¼Ëk•<vWàPäÀœvªãg(HÑ‚µ¢cŽ+d7\r”YÓøtÚW^¤ü¬}rIxÛ¯óºu†$ç/dMkØ\r Uÿò‡:ïwöçëÔ,ÈËß&çK…p&á\ZšÑ\rª7GÙ› ríXylÖï³ <U5p8â­nŽèš\rÂ›Ø×Xd	D\nè£ìñŽ¬q¼bc÷\Zu—íÀ\rÙ“£ÒC7,š¾<ÜúÜp­,ÏLùâµ~rYús#€\rç\"¾(qqš6çZN†è´Ïæ–Éû–ÕÅŸ&åh©Ï\rò\nÝîÌ*J–Ô6´¤©¾û”V^±Ï%W\\Ày¬\'íh?IÆÏIëÂ3z(BŸGQ#‰—`päS:eJÇ&„/–ÊáaÉ‹¨“`ï÷þ\nŒ}ûç\Z\\xÕ+ÃG\\%R£µÍO¢¤6³àûí}î°ã•“æ‚«Ä-ªFúkRVËð£6š·ƒG_e\r­¦\"ä}ÕQ^uâÕøÀ¿£YtY®‰sNlÉdU|ß7™‘tìUàFY€›ÈnˆaÔIWRHÛj°wHBBÇí•Îíu¤Xp\0bäUeÒ$OÁ11Êæ¨]ûQ[¯Ú7*ûa3ÞÇ¾Úh‰‰,¡UúŽªc\\ë¯kiš² »6uøàJ\n3*¬“KvÊi„åA&à4’ú«=‡DéÖq!è“¸Ö§f;4“™PäZµøeµO!˜vx.eèÓ8—jY¦»ûçß0\Z¢´€èP…P1¯ÔS/ÀÞ0?ëU!õÍˆ¾ß½¸õò6°??ÏÏöZž‘vˆw=2H:õ)x.°ô®‡³Éo\\ÅÔJ†Ât®LUËÕoíõßñ­L¶¿~ŸÐ)6ÓKÏ5S$Ê‚8—ÇÝ×â¡§5gg7ƒ3lsuØ¾«yˆÝà‹Z¢wÚ ›0YE\0éåÏ£èº«i\\ùÂÞ|’¼”˜Í7‰Ùwq‰Ò;,r’íäLXâü†±çÈ\\35qv.Rß¼h<<êï«‘t÷hDŠ$ŒÂ\\FâM…(ñb;ËôKáóæ«g«&\nõ-“ûnzEwèÿc@Û2Ží,éòÓù´¶P±0ëíÁºé¦Îãîx`ÕžˆÚdZvsþ.ÔÄk‹’º…Þ\Z¦5Å\0«ºyX“§$Èõjë¤‹ˆÖIˆÂö8¢ÏÌ@t=Þä{9vÔÆ>:Ì·M\ZÔÏµ‘”±¸\rBt\rðÏ×ÌÏ3û˜½å­±‚öš„tõC ÿY£\n™ÜHßú$$ŸTƒÌž}^ñpfO]ÅÇ­N3­%\r\\Šà-ØA¹J²KÝªK—àƒý7P¯xeæ\'£PHøÿåHýP=,¼L‹‹ëNÁ·}ïœ\ZøEåùO\\0¸uÅÊFOR\Z)Ä§è„;S \'bN<vÙwúLSÚ»«sT³Å|Ï>QëÎ°Ïi}ÚGåD…£Ž7á OF5ì¢B×NovÙßÈ:A_-3£ûx\ZJ¼B“@k‡y50é“ÏÉ\n­×Qã(çð¯;®4ôÁ.ó¸ò`R‡Åwÿ|lSÉPpÜkÔGÆMÑ8Çüƒ•¡ÝÔ¹ÍÜöfòEËxª›ƒÆE–ç;|¯µx$ åí(˜t`\"òíð/\Z=á`>&î‡oRŠÖ«Ùúª	æÚ²îç}ÆZ	wé%þö(ð4)¶;\råí;¢)6qi9CôÜ2éÜtÖd64KÕ®ÚAØU)Û³! ž¡Pdlwä+´þ¯>Æ;ç ßO¬±-dÒG¢;žÏ·ð6Á<³á°òúº wj›;ÔV½Û4dkÏÔ·Ü>·D‰ŒjÃ,p„Æþk~*Šº®Ýd}ç¯[¼ÔíçHù?âiK¶[¼i¾ú/Û(õ¯‹â^ž\\‚Œö4¢žc-¡ÃÈœ¡þ)öÍ—ÊÛ·õ¢Ò@c.ìV_;qö¦ª:uMø­ÛX®ýœbW…ìZ`ïÄE²Ø¶\rÇSèñkyíì%„/þ-‘Žu_EC©?oÍTgûNLC\"Mï61É¿ä\\ˆ)®ji®÷êÁñ]ãm¥†bŠ#¯™«6ˆ§C2 —Îaoß2á¨FýÃäËLØW¡”®%\rVJ~øpŒí$¡Á–P(‹ñqŠ¾¥âÐ^Õ:Áß`\\0\0÷6Ò+û»\\uw!ogÍ:‰Çú\0„RSé;\rsò}¼ºo%Š©XOwR	É\\˜óBÐ;zÜÀÒõùñb#Êqš¾l¦¼EôˆSŒWDò€æLexìÝéª´@m!Ñþ~¶î§Ñ|dûET9v,´WÑ‹‚‡ÜÊ€KKì˜Ñ#\0ªÊf›ç¾€PP¼\0A¢wƒ:oHðRRˆESÌG‰ÂÊT-ëa*Qf±,S»7ôÏqÔÌ“<¦U*\";b¾r’êÛ^°&Â7jùFÅ‘øú‡ÀÒ±yÐZA\"ÊYŒ!•	=¬šxö`Jß©i.¬?w~ë/\"w¾U{«’ÒLf×1:Õ¤y;¨&Û†Þ¹[rD«ÞbóNv•Œã¤„¢Õ\nÿ\Zwr‰ÄkHuE¤ììôNÁ/ïJY·’þgöSi÷–)”N]oòëÕ}ß0<Á,ÄíëeS</öÜ“8CÒ©T2I†UXÐjFê¾\rPJ6¬\\íd$Se=gÁ®˜øÛJÞ°S·0¼£il‰ww®4‹:™øÔÚ\"D½‹¥€=[•¸ZÌï\r‹‹ç#¦A@Èf3¨1_<ÈÑîv£ÏËü(QNÐÜYCwoéÍÀÛô}zïö/+xÙ±—®\Z8Õîû3¤•¯óóÛ€TÁÑ‘/ºÇ*¨2^ÂoÜùÐ†ÀÂŒã×t¬2Ô:²]XK%×	EL­Øå„ŸíŽté°~¨nFç^mºÜÄKYÄN§Æ\"ãèU[”±µÚA7­EÎOxÆŸ±:Y§Ã{¡ñ ”2gûZÁ“+j{Üh“øöNž.m·Û©+Ë6™œr0Á…±q´ãXÅ{4¦a›û©Ëç4½•¿…=PÔÒž%^\\$¶ü~ÄKOb¿‚HÖ$(ûÀþ\r_®\nt¤lì	ó6±àAx	70)P;ç¤\01¼«œM{}iÕ®’õ)æ-[\0ª·=Ö¹?¤+;Q¦…/×¬W/{º˜ßšlDA£„UÉêRp½rmm\rF6í©ãúŒØ·ˆ¡iŽ(\":ž@Ÿcà‹·: <R)‚¥%+:Á¼ø¨ÉG%Cy*àm?Û´¶/Ä\r!ÑÿÌ…æiªAHK2°ïÄw:Û%.ó;j@Û´£)H&î—R‘×°£ÄíRÖãÿwci”Fôìz›þ\r_c;âQAÞÐèJR·Q6}®Œ%™\0ã’w˜…Q1¦h~ÇB¸§×ºÊŒˆ„¸Ê¤!ígÀy£¥È{å8ãÄÙ¢÷à7\n•¢gT1üÛ^0>ìˆ\rŽœŒñåŠ¸Ö¬+)Þ×7X[_§uÒÛ±HÐØ]\"¼ª´Â¡`Änr‹XaÕ;ã?~‘ŠR¹žq3ü¸Ù½¸R ±©Úaår\0Òþ©B<c™=OR“ðÂŠÌv³B¢n|J¼±In²;51VöSKÂ6ÇH°òiÔI¥Ÿ (.fO‹Ódx,¾0Xl¿€ÜJëú.Ó*ÄJsŸ9ÇË&ž$ƒŸñÀÈ\rNÖZ/®aU‰Æ`³dLŒ?ì>C|É®Ê‹^vò…‰s‚_%„WÝ¸ï\rJ–èó*Äf’zKà˜Hv®¤M,¿ËÄ,õÛz»¦ã¡«ì?jkÁºÏ[×0}’SbêG?e?q7ƒ¸¢œ#pjÚ¥|É¨\0Yåï‚Ü°O|øaV3E‡FW^@l“2þ4KÂÌ<\\Ø/#\Z¾¸²Ðjp‡ñ!C——B¨ÎÚ‹TLåXÝ6­jîáyÒà¶¶|@Ý]Œ)2Ô•iqÇj¢ì\'—Vpý,äßÿœèÕKºÞzMr#»ëÜ6hæôq	:·@Äß®›\rÏßÊ0lÒž„·ÿáÇáŠ6Îj¥¤ñÌøZmŠcúƒÁþ-«“kÅÑè­Y£ÆÛxJÝÓ5í½ü_Ö*Þý–]O\\“”s—M†Ö\nÕTœ”27Œ«éoÚ CÞg`cŸ™ÞË°mÕupa \\˜|/Jîy§2åfy2qýtÏ@WŸkàmxÙGÊÄð°VÍ’´×µ¨Îpzkðè¨în!Šãò>x›\\½ðh|À,e´0?ˆ†s4n÷,äLmu™Œ\ZÜ^Î…hU}1}=Ùz£èiÁñy\'\'|K¯²W?[ r(\râ\Z3ƒ·Ìz©Ø»×fW^Pƒ1YØ2&ÔÐÛ‘pAµUØÞ¢%šõ§â˜fÜ¤G<‚+HH4ûywyéª\'hz²xáú\"¶v‰\\òpÒ$»¸boÀ™)cHúvSÜµn_ã™ˆ¥(a¤§WcÍ´AœüÏ`kÔ­BÊœÑ®,2£Ž×÷SˆØ^Ãºãt«ÓÈ¸G<âgÃapíx$}§Õº ¥Su,IôDñ±ïõ\ZÑ£0?ËÞ–¿fót¶ª&Ý!-U8ö†<’´Gzï<3\0RÓ-kÐ,šuø×¼)³†æž\0­²\nk?—R³0©ž}<ÝÌ¤¡ÜÁ÷ø. ¹¶$^$¾ŠmÛæwÞ»`.AÃ_[ò¦rE£å]þJ®#é¼Ù+ß˜£4ÿD½¶,Eã¹ëÇ¡Gfóy5ÜŸ@‰ˆnNñ„¡á«	Ý36ÄM‘¬ï[ÏyéFRDÓmÖß:„mâ\\ßûØì,Tê3yÈÍÒ?ÌP¼þ¹Ôˆ+o˜óŠKqra•àU“Wj÷jˆ:M±ÚÉSìóïC\0¨ÇÐ™EšºpÚŽŒU=\\Ù«2%±ýüÊ72B¯•9º¾Ôä9kÑñÏ\r?rÊÇþqQe™-µ=‚ù¿õæûÇÓOzÎ³Â2z!•—­.‡wàì\ZFPAÀ¦¹SÓƒP‡l–ZÅNÀéÓ!&€›Qwô|¾c;\0,2ˆaÚ¢Uøè§P»ížrYÔo:Wš3§–\"6¬uxhêÞøÛSÛØ¦®«3)]T•CÁ­ËŽ1B¶‚\"$Ï¤_öY[^¡e\n‡Þ41¥­L§òHÝ©âÌ¨ò<úàÒW`’‚eíâ½Ûö	ŽU°&œzøÕ¿RýÿB=P‡KqF–uß~•ãŠ\Z8ˆŒÉöíÜÞW¦2\0èþ	Òeü½`h‹àpÃ,åë-nƒù}“;F›õ¥ \Z/qè@ûÆQ!XŸw>ã‹€Æ7¾.„lû8³èµòle¹Q,…ÀžÅ×í	nïÒa‚²TßŒCÄÓ€#ÆÉÜ¦ôYUš¬\"V1Ä	Ç]®98}´.ú@ñ\rf[É–&þ»óÖ1^¿¢™õgÂž+fVèü`6)	ð­5ú½EÎÙSýj–ÍÉÿ…ÚrôKÅìñåujÆ÷Ø%‰öpØÖA“õˆŒ 9Xc<_:Ñ÷l#¦(åÇ€v)É£˜,•‚Ä¹¸†vÊ÷V-¤núžzâWó¬è“EÒ2âDû½ßûþ Hþ!~\\ê© FÁgë™J\Zop\'ö]Mi@’‚øó÷P;µ›ÈVKiüùV(Ô~n’ˆ&^VTâSnØÇ×^óàE§½y	Øuû\0ciñ^SuË%™Dª{oäxÕ\\4\'1–0péÉúG&û¼ÆoÊËù¼ÀAMãqÉÛ5Ï@ì=ˆÅ øPâxÇN^Ô+‡5H9_r ©²è?ïMÎ©—Ô´ÃYµº5D`$BfyÀIÓSŸWqØ›Çë¾rÞcùW£ò²\nÅ’©+ NÁAÎ¢¢ê¤:Wˆ¨¿éàöùì <\'¦Öãdÿôýæ¸’SB³4,ää¿÷hÒÉÜŸ+­ßÈ{Ì—r…~aöAÄcŸÅKAj¡TG”•/6èÕìþ\n€]Å<E&@Ç·ò(\0¾Ëað{|ï,é¥@êhaƒZÇÝ»Œ¹‰”°N/F]\0cOJhäÃ™LÏC„	ù8×«hlÄ2ê\"i\r2Ó£-à­ÂX¡C +›R¾a,¦æ©f6‡Ê—!\\©I&Cú#2MÎ8_6wsÜEŠûUí¸øP¢[ØWÒ‘´Ï4Lº{4‰Å\Z ØUú˜uw—ÀŽ\'çžŸºh¢QîiÿŸ³5z\rÃ&‡Ð‚`~ó­\'\rìQ l;4Û•¬±ç—×eóc1bÿ0‘wß~Ÿ{÷±wcj¾|m]a_šö¹òdƒ¯õ«¸4Nýœ^÷\\~”¯Ê˜™×óí’ 7q/\"]ºÔå$îù&<Ô¼	¡QÛáYíž)¶°\ri\0\"4ß•mlíÉ\"W±K‘x§šI0$\rØ!L7³®Šï›K3@š™\"[qŸâïË¯vè1 ©ÎK&.ÍîD,Äðpþ	Ú±4zÎ®)”ˆäúõF’Î\r8xÙÕÏNz$¢wFší¼m¯º$\"˜›§®’”»]X°¬¬Öeõý\"ø?ª|2þY	ÅŒ‘ø¢Èt¬-	ù¹úæà£Ÿv¯TÑÕ¨¢æƒ2H`oÞHPOn­uDpRÖ½€ã’R† nOÈÆk2Î©@7 \'y·UÙ™K;ø@IôªùÈ:7}íº.£aò	Ì‘HMÏ©:	qFçCO´‹„×úüå÷ªc#Š²Šæý y\rÝÅìÆéš<Õ¥†l½4à˜™¤˜Ö¬á(»Öïóšw	½]áïå5åõ‹Fn?•`æb8¾)½òk¸ö‡¢ÛÍš(S;’wàAqÖ^È;ñõTÈÎ¹Ø[—cÂöºJD_´–=$xÓBó2ëƒ™$5)ÁS¸ž²jrx…VŸæIR-[„ÒŸé1¹ð.;\"»é=1Ü(C]e(½d-|5QCØÉv®œ,Ñ?ÉaŠdßÓöækVŠlÙEWšä¶±R*9Â¸)7”‰ëmûvÁX­òbÚ·\'†p	Z9@³·S\r0,t`2±plêós™÷­WÓœ¯¼î)ª0Š8aIpop„AþˆB«ÙHß7¢M™¬¼´)™Íû ŸáJÿ†Obî\0ê!ØX£+cÍŽª±º¸òÇ®ô†„Ô‘8Ð@ÿøœGÄh…šar6 ÊÈrÝ”[«ú-¿l”—À+‹“ã\'2YíÉóU‚~nZ™á„õ¬cÀtÄtŠM›h?šØDmÙ%¹ÁÊ‹dê]ÄÍ\Z´ÈÕ	MØµB\Z¾°r»/Ošˆ5’¦†%±NÌ¶æÀ\Z\n²Å¬þª¾W±´O–Oõ€¿,ÔºN‹ßÆEÌ\Z\r7ÄhZ›¹ËîBLG¿Ë+‹ðüîvòS¨dÙÍ2Ø\Ziç˜\r¿°ë/ŽqÅ¡»¢uVcçx“-läl®8\Z˜ÉìÃšóZÃ¾–üÞ¨6£®¦W2ÌlIæ96G\Z¢BúXf\"ÆÔ­®ŸÉëœOÝ –%â¨K3Ñ“93h\ZÜ4þ2o^iªÈÔwß$Se(Iª’}P’((ôö\ZTcÏ‚¿6[æ¡L‰BÅc¸lÝÎ\rx‰çR()éÄa?\Z[Iž¿ÎÊ™`:—}ž§›V\Z¼‰TÕDn¹ý+á/`{\Z^\\%íÛk÷‡OŠ¯™€­eÄiø©: i‹çñ‹Êo\Zxy7{³è ²èá¦ÅzQ1+5:#Mu<â¯\Z…dhˆÆ¨,ÈŠ ™aþìÃúÜ‘…†iK¦±#‰A\ZˆtùÖY-{RV Û·FRù¹!ê%8·»`û?O\Z³ð;4JpRÓ—šõ®ÚŽXÄV\\2p&àÒÙß\n\ZºÍmÒ´`Sýè|û‡•Ø0	S®sŸŸEA‘Lçö³\Zäœ«ãÈ:ûÉH2f×[ÝJm<Œ”ýxÃ<œ0”\Zé7¾›àÛ´½Ã>Û0ÊXõš…‹Ï˜ôØ\ZþšK ÚG“Umþ0Š;Aßò³¡†ˆ’-v…nâ\0]‡Ð†´¤{lÍûCMvãøÉ¾@¨Æ‘Tï97C¤=y¬Zùÿ„è3¿óÎ‰¤c3mŽ”!®pr­ƒûðû&,ñÖûY*žÉl}Jæpx5K²5&\0CRdR5P,Bi¯Qf7êœ®Ú&\'d°W–zÒ“|¶Ý1òÙÉŽz\"|¦ó@ÎV¦ÎcÎxñÉïª¤÷‹s|˜0–üàŸ‹»  õ)8m}.\r¢d™¸_®n¼5±i?øW)œ°:\\`´^«V›½=Ìw=\"Ë[<òÏUÜ€©œÄµ²ê9ùYCW£òÇ-µâ™üžGMóŽdz[½Šg½ÊbîÏåê¤¼ì&Ü{7º¿§³37kiÖàÖ5Ñ”3‚¬N0P™®5yŒ}@Ùªåûºáb1¯po4ÉÂAÖ{†õ/\"ÞñrËu•´0yL³i·(ÀâòH¹\'ˆvØ-3 *3¼„“™^üÓc(^U#µ–ÃÿgÉphÚÛz{:ŽÛ7bc/ÉL•V9½ãb»˜ëa³ò”rñä~D–à¸,éú?Ñ ÞGd)FA‚ç’uçí`‡`çÚ¿o±èÿ¼Û­rÁ•a±ÐõóâÞ×Ú†c»,=ísK¤>P×¡®®eÚ›)9R­ ÚB£°ž[·ÎÅ|ñÙõÓÃüö-s§Œÿ˜1“ÊŽSP¬þÒ†ÔEÈGIê45ÕMCïgYÿù<¨-b²êOî,°‚w[Æù6eJ¶²G7U]\\™Jæ5\\ÐN•(-ð\rÉXö_Ïj\r15-QäÁ›_ÆY\ng^ýÊ¸\"|üµ.[ÓàªwÀš¼Íwûqüª51¸èDjã‹è…LH^é½Ÿt+Ä?ˆŒ‹–\ZcÃiñÎ{ÙÃ­®q@:Ï[¯bédl9ÖÖ€,³Ü±îƒMS,eÆlNrœ}í6¥ÞnôŽ\0O!\"¯j¦:(££!b*C\r‡zÒ\"{ëºt\r —=ÇI)é ^«sb\Z§¦¡ŒZŽ\nS­\ra‚ô¢LÛ&¥´ â­vî3+kCJ‚ÅIò\Z< \0øP>± ¬%@5êvñ%â(Ò äô™òJøù§¯…aIÓ¸\\Ñ“ˆHŒ¿O\'\nð×(PùÓ³¤¾\nÈrÕä	Ès°ÈñJæªúbómLhç¬‡û[´£Œ¶±\'{0ˆþÑlÖuÏæÊ’hk¡‹õ­FNÊ¨\nÉ,U|Ãë¡â§XæÞ5Ù)ÙaTØÝðåÔ© %2•ûýûRyÂè‚êÅ«i*Ø%h%æÕÆÕáç¶$)`v:#f“ª«˜Ÿþ.x÷d\nœ˜¹Ž:ÌxAìÿ-à¦H>ø¸JìÂy;îáõÅÓ<žðI8w2AÊ	Å‡ƒøÚ¸Øž°0À¿‰2ü–yK°|ï_’˜Ñâå%dßÒ`2ö9ª…xmÂWZ:ÁwP×ó{6Ly«?Ø·cûâÒäìÜI\nþ¨õ•£ß¾°B2ßµ±»¸zÕ evÈz†Œ¶3ñŽÆ˜U€{î^qa%I™BÝÐ›ÍWíãý<VŸA=Þl¸ëL—Æ^Ÿ<kL¤‹ sjÝÒ¥?íbÞÉ–ðÈ’|è„Bí?-(…ú+xdú6SPÑIj‹Ò—©:K­ÏöÑ-œ`UžMâ°Åu¯nÖ§œ]BeI×ðY\rfþ6éýþ·yÍ;Ÿµµ6\r)ÐÌ„,ìñP 6;\'—6˜•\"ýÖ ds´\rã=‹ÊVà˜’\"n*áR-ª!ÎÞ`ÎCGÖ‹¹Ù…\"¶^Ýe¤\n|5ïÏ.Þ°Šã—ÉúÎ8¹!¢9:Ÿ%îÉ±„…¤ö\'&;¶úC¿×rÂAL‹*3q˜ž8“ºì$Ç\"ïnú³ý™$åFo¤ef$•ãîS…4Cê×\0}UJ5}¼Þ&ÜJmyÄâNL5¨ØÎ\r\Z˜¶0s3çûu³6!$¾0œKJŽ‚Á¨\r22ñÌß–]ôö€Ã“\'L‚ì)ÝNÞ¢ãVB‡Ò ÁnúLíâcãˆ\rÝàÊ¿5—»…œÊ2ñBÖG“3…u‡«²²Í*Ó0oýBÇ¯þÚÖÙhÏûäâ Î}C‡Êëºo€GØ}BdÞg»DØ‰$êŸO<L#1£OØF14.+ê¿kcù*‹ø9\'q•.ÂÜÝ;‘F¦ç›×Ãr€P\'óú­Ýlø—â1´e^>b6ØchNÊìí¼E4#\\’G¦YúZ>ÃAQ‡³Žb&µ˜Á‹YZoáœ>QrŸÍ¡’°˜íi9\0T9\\>$ˆ2ÏÂ‚œÏÝ²ØæjËÔórþ³whq­¢ÃMëÀTUòúÐ©w‡”Í™CHN\0ÉI”<æ—ŒŒ½÷.ÍO¬˜÷¢žößÆÂ†Í§²íìÂÜfh_2E²§_Tþ.ZuiÏÕYþÆûçk.\\{gá:í­Ñô­—«F„hdóòµañ¤ñGóI‘›\0q­×¹a\ZÑ}Õ*ÖÍ3»yXóZ‰×æjoy¸Æ\\oCØÕw=°€€usªn@«èÎ=]N1õ%P0™„ÞË.\"‰p†¯ŸŽT¥Óœ÷q(%7N¦ª…ò¤˜Oê2\"hªkUùv¦ˆróÞ´¬°°Õ\'ré-…AÛDƒ„^EõcZWq”ù8…ˆ5ãýqé†rÆÌã@Îü7VRÅÛ˜]¯7Nƒi’åÔjR\"~RÚØÿO|âº¥fÂ`ôS:Äö\rŽ×åÛb-\\³|ÊÛƒ£ø”9E´éøg±èÒƒf’Ž±]¹Hh~Ùw†åéwÛO\0LhD:p¬JµÚÁÌºÓÞÓèÈÎ³˜Syï®9s…68r¸MÞôÚ ¨cää‹ÛÀÑ4b¬oT“‡Œ¼,ÿ>£\n?j¬¥™/£&bÓ\"¡ó\nã<5.B‹ñz™ÒnÈó€1YY]}àì{6Û^œ\rßåoñþÊ aXÜ–^ôÛ	– ø¾û¤Xà`øÙ[Z76ê×‘.Ÿ-*ØP«Ç—Uî-8m@eù0ðŒ5¤\\¸«wMvÔ1.²ÄÊžRû«üÏ»›jc¹Tî˜xàFw7¢?D?ô½¬Fa\0Ó°ª-Å@çh1èÔ+þþK(ñÑãÑa¼ãÙ]ñ´DRñß:[‰_I3y€µâ”Êwt×Ÿ»#F3÷»µ=2ç´Õ2I‹8ÊÛJpLþ] ]}²õà0nŽ£¼P\rQ¬¥ËßÒÔcJ‹ÓYBñµ=niQÒ=NeðÙÕ±unS,ŠÕåhÊÝÜËXòÍ:ª_ÙùUŸÇ-¸áJÄrSý5´””¶ãü¶…ý‘btû½LÈ’¸|Äð›n 4\0ºÙ’ó\'Ä/XMK,f\"*Z$ïí¼„4¸‚» ›%¯-æb#Û6u|‘¾Ä–}¡bæŒJsò6É .¥,2F*›ÏÑz&@¤ô;Ä`x^Â#.ñ„W(–` :…kýY„Š¥MjxRÖÖ´–P=ãTÂ_U~ÞQÊ HÕÊ±àyêÞ4ÿBW”@c”\\§¦ØÈJßŠqã×GC W¡aQÖ×x«õ‚DÙ2-q%µolþ(Ñî]?Aá lÚ\nÂ°&|¥\"äwK~›€30,Šàø>³P­¾é&w ‰¤žÙüí°\'Æ © $nÞX±€´37ÚN²–<¸g ‰ÜYL«§&‘¯>â­Î G\ZuÛ%X‚ö-)Á—Ò š)—•ü>üÀ×Q—õ|Ûú	]v‰ŸCê ,ýÿ ›7êÊÄ‡êKý4ôýsNsÓ	QŸ<þsŒð|—á¥ïá ®\n	ç\Z?`%T€pñ6ôØÁ#IRë«ù÷lœR„Ú ÓŒ[*šktåC¬‘`x¶{cÔ!Õ™\ZVWîSÙÔsètŒ ÔîÄ@W4nþ‚·ï*˜tù˜Q`EJ Ý)È)e%C!³BwÎí”´‡Q€\r\Zô-……èý1ðËþO²!«ï—ÄT¤á¯õ—v†­ìÛÀ‹‰Î±ûõè!ðÄ)uÇ^ŸÖ)òh\r¿äÈ±>uOKŽ,hc$œ¸!,“elÈsíð\\Ø÷ù055ì.fOtÁó³÷ûe¸}!5ARü/œÏ{Ca€F9ÿZº_ît«Œ%8ª,=Û«!ZÜmNxIŽ>W>%ü*ïr˜ô“^ð±#\\µQD!]Í¯%uO®bû²Œ;í¦Í°(2[\nÂ—½_!iîÝ\\ ²×ŒeQ\0˜rºz.+;\0\Z)‰ªoË5£3¨!ˆÞúù\'”¨oê]ºßï±ò³tèJ¯Æ:soTßÃ!ž®¡$ªæ1Å­9†¼†5\n2d\\aÙW—•\Zq°3x !¤:¯qÉ´&¢ôg™zž68Ö›üdåÉÇÏ;tV;U!©&ÐxÝù”[w¤Àû)¤ÆÈƒcüN–SýaÎ!´¥î>$wÄœ¦ö¡¢Fÿ\n%“`IJ×M6—o(Ò–!»bƒ™FæÞ‰g2oÃi\nNl+\ný–™ßµ£îb!Îÿ‹5AÃ ÇÀ¯Ð~ùIºüô¿î \\€ƒv(öcÔF!Üÿ(\'eÐŽ¶\r804@§šd•DÉ4þˆKS„kV!àaÀ”ZU£žï‰/<rg$½R4gÍZÂ0´÷l‘!ãå\r;˜m1Ï¼€.è{r°€6@¶C´äHc^\"A÷!ëÄ©tXóÅQ™Îî\"úÞ¾ÜÑ’m]Àà™ä2J\"TâYK‹„ý ±Á°JÖô,/þ¼Ô\\/ ûd\"ºh>:ÄêáQ ùê±Ësik¡ZµØßèEw}b\"Ò:¼+á@Êbê$¾ÏT¯AtË6ŒrÎ£\":fnùJ\"²-vS ›´X¾ï÷¾ÀõÙ^­\rË #\"JRIxý¬ï9õŽWÀnÎ\"µð¦‚aä¦öÔ™¾†ö§é\"L0]€˜“û¾Ó†õÙ¥y)UePÆÂ^÷›AØÎ\"Sã¸.87~96sÂ³yjr\'Œå]s\0 “\"\\€¨Òüêß&S§–¼¹„“‰^‚Ò\r xQŒÚìfµ\"nN½ñv?îKƒ¶¸‹g^å:m¸¶™óBlbðZ\"•’„$l˜}Öeé³æÉëXÁ\\Œ%È’\'AåÌJ\"•ø	®¿.FÍ¢ÖY\\õžgFy—Ž2\n\rM†Z’´\"šøGÙ$@€ÌùPÄ¹\Z7~Ô§OÆ¦pãdb ü\"):ze…0E¹Ž8ý†=!þ–7¡ÓºÖl<“Z½P\" /¸JK»Õ}µ´uÆÑvèaàHú¦Q˜LEÈÁ\"¸½Í!°zFÛº6ŒÆþð½‰üë&ß\n¤§s®|î\"ÊŠîÇ5‰¢\".Mãp•´¢-zx)Rš.%Ô.™Á8\"ØŒV2M.é\\ë™ûe#øNØíÈ¡Ï>Û.¤ý:¦àIø\"Þ_¤íórª¤ÐüÓMüDZNÉaŸŠ­\"ëL›p¨6-@³”!#·^kYÚ®XV£FÂ€XÜ65´\"ì=óš\rÅBŽ¸>ü’\"ÎHá÷@Zæ#X°V¿WÎ«\"õè8¿0#>ünåàyl¦Ìvþ´Æ©rK~„8\"ý;zÃ`‚~gå¼^¾_ÖÜÜR›ö¢5„úÑ‚(öÓ#ÄŸ_Üµ?ÍWÈÖ/­žC+¹‚ƒ÷ºUÒ¼KG#…2±èsåÑ\'|xš—ò,q³™Â´ÛÚÞ£¿\\\"\\*dq#ýLj@P\\–EÈ¼õé¸nýxË$WÒ«r1Ù¾6}#2;#Á/7\n QrsE&]ÀðÑÁIe‹Yëcçg#Oyw;p…¹”Ó¿zŸw,!€:;umjõÍŠ¸)#SøRïm-ÎzÅŸQ¶¬\rØÇä¡: QêVÀ¦×Ê#f†èöW*o–Ø_æ\nŸãæ­ÇÖU8¯_ª¢\rÖ£z#m•«þbŒT¥á®É¸Ö=’ø©Vê“187–>ƒ#ƒµ_Ós(··Ësxña{ËÛ{A-åøô‡##°Ì¨wAÌ/còÒ[áâ&Ge\Zx%%çÓ=’C[a#±™góÇïCÃY›<Šåüb´IóV?¾¿Ji^·aU´B#³®yÄ½ùTf»‡Ü<½¾,ï9zÕ,îž;ÀPÐ›¦#Ó™>ho/Á>¦,¾F±±äªmèùƒ@`ƒ0šï#g#Ö\06¦”ù|Ð “ÕYDŠŽ…ÅÀ›Ì°Ø£wty#ç¯ÊM°°+—¶ŒBø*TvÍGÇ’?ªoLJªsù#èBðoKm±×ÄuóÌïq÷³GØKLïŠ…Ò5¦=Oß#úV}€é©›F\'y½¥#Åv	×¼\"Ã™’æ6ðÒGÎJü#ÿþ¯°ËòÚ]§=Ùð0ù¬’\n\ršÄž’^æ\'ë<$_üéÙ-»\'ò8uÐPüÒcäÀ6Ù#	KEumçÙ$\r˜ÓÇÜ·2¢Ý“ÚÏ¼Õ+‚BîÃû©É¡Q(-$³Ÿ´F:6~QQ\'×¦:ä3~¤Èó»ÊÁ§¤U$#\'òÀîbÈ}Ô$X:¶cÄ¾úmý]ˆ\"´V¤$2¯†	½•ªJ8ËÝ+¦n\nbO+9º¬ü2˜àªËq$?Â\ZWë7âmß(w{K•„¡\\Û¶Ž×®Ž–Äj„t$Cþ¤rá{3õ¼;LnŸ,uÊw`¬°Â‹á7úùpùE$Iál;¿ûÆüû_W\ZdÛ©°À§Îˆ\0fm¥Ö$XA¦8­’8ðÊÌÞÁ3žk.b½4ˆñDZºì¥½$^õW+NˆÇN§	´¨Ò»@ÎyA$­ÏôGì¥ß+Z[($h/Ûì*Ã…ZçOòx+¿ˆ-ë¡–éHØ©TEÀá¿$jš^2	ŒÜ½“4`‚ÔQüî•Qœët²yTrŽ\'$l¾°Ûµ	ˆ¬¤n¤ˆs}ÚZåÆ×ò¡‡?˜|¼:í$‡V&´<î% æ—….ÃÚßl‰³äöøã¹¯ûæž$¨¸E,©_§²wþù¬ÄMJI:º·”žŽW«~À¶¯$¾…¤š` £òå5ì~VWClZ¾¶‡ÿ–í²	¡|GN$ÂÛ±¼çlÐ¯s†F,žÅ³eIxÖ\Z:Áå>ú;à3$ÒÛæ]ä:)„~K×F,B4w÷Ÿ¼•Ù¨/cØ,™ºH$Ô‘œÉî´<ñÈ*Y»+ºäú`pÛ_—/ãÈž)Od$ãö‰„±`¯MHnª#†<K£¶Þßè*\r½ÁÁe%%Žák¶Älf‡;{Ý…T¥_ÀÏ<{x%¥[4dá%S3BG\n9K¡½\"àUãfºq×*A›j5ã\'ÁÏ±%Yžy\ZŠª@äÚ¤ý~&Ç¨1¯#†2QÀi×®%nMÇ®èºiñ’D7“@qŠVâÒ#vÏE©>TCdW%v+ï”4)©%îOiÿ+aàdg˜F2!ˆT+É%„žkñžœr _”›‰ÐS’µpÂïEµ°†”3±æ%°›f3´qEÞb™Ä<êórëØ]B[µþS@k1\'b%Æ07¸s‰\0\'zM|Ë:9#âh7ÀdÂJa6÷×!\\%Æ²öçÜaëU>ÈÍîZæZÓ	YD^@NÄÚøN%š%â8X_‘Ò²×§§%$9Ù”…*„_¸ÀêÛùó›©ô[%û»îÜ‰±ù`þú•»³nÇÜ››TKéxCt•¾&íXÝây&Ì·-;×‘Œu¿Hîïîä\\s!Ïù5š\0&\n¤ÈÈÀµu’Ob&»\"õM¬ùf?û+ATè±(¤M&ïp©›ØÕñj—+õÒŠþ%šs<­\\±$&am{[ó>ÛBv\\`šÎ :nwÕc)Èß—%Z0ä&|º€O	gñ)ö2»«*€×«7Ôo-¸Ýžró?øâÄ&„[on¹§Çñ šl–úíaÏ³‰tâWLŠQO²QÂcó&Ù–œ`Ê“Ôþ¦äðò#tÞ™,—QµŽ)DŒ9&žÄt€ïæ*–2Ž¨¤~’|ú1/ÈUÞ8ÿVY}$&­¾øÈm“4tXûF†þŒ¡@¸Rµ®ØÊº¹bL\'™×l_JÓÿVÄìSu8VHJ„¦’£ÙÒ÷yC\'¼ªDÄ‚áD1•§ú`Ú¯ ç/5)òÌÍüF1©¸\'»¶®+F».à}M>W\nwJ½]}&Æ#V\nÓÜ\'(Ç\0*òÑPg\Z$—\"PHG!ù»ú‡ŽýÔ‰5ŒjN\'8_·\Zãafm‡Ö(¾DWß,}z‘x\'R#Ê‡F2Ø\'@ðúõ½?B’{´uBtÐÍi¡\'Sß?\n¶=ãÎPCÎ\'F.¯1ìEÏ)•ÁHŽ;âl”/.nø7ÓÇÇ|Wç*\'G¿¦LàªÊÏs\rŽŸÙÖ+áQ·N*õ+r;_1…ÃYö\'S{<—?’þË*ãf”;°²/Ã{’\'êœìv\'k7^¯Y«ÞêÐ6Ö¨{Jïä/ÎÕš‚ÉºÏdN©ó\'ŒÙQñ_žÃ+g®à*d©œírVÇ ·ÁûÅ\'*\'°¡æ$ƒ1,;ÔbãLë(Ë“ÑÌ°OÄ\rM•gÐ´Ð\'ÃiZ\"Æ®Óf=ùD×F•ÈG¼ïéó\n_ÁB>âqYÞ´\'Æ*Ç‹w)M¡Û>êSY\nöŠSšš4ÏvnÚaÞÿé\'ÈÈ9_eÅZ÷å·ðhZìVaé‡¦Œ¼vuê[*S\'ÏNà9áÉì¡r¸g_TÆÈ»kù‚Îø–›®BºÑy\'Õq·ù&1Ðç,žÝS÷Nj64cìGÍ&Z_âá3j\'Û^Êù°²¤5j%ÑV–lÖç{ç=ŠéÊ{Ám·@ÙÞÁá\'ßm/¹–lrÀ¿éÉ8êÆ*l	=$æž’Ó=£h79a\'æj*ì,¦A†.ƒÉû+…-÷T·¨ï¬²ˆ*\'íãÁä¢ÙN‹fÚî[óOŽgæ¶îŸ|\Zè	ÿ+\'î´xör²X¸kãÉ.Úñ~âÅb5·ÇŸ¨<ÒMÂåÒ(:«ýMQìß =ýë©ªßªyyL»•Þ¢çŒÚ(Cd?hv“¾ÝÒºn*Œ÷1ÔîZƒˆV„(=X•twìÉ¬DÙ .=H\ZSñÒø¡µ\Zá»5wá(?ß¾ÛnáT ¤Z«ð¦†½ý \\9ñå8vW¹øÈ\Z¥(E\0ù	ö73Ñ/>ˆu0§·¹ÂðAH*$\\¡þÈõ(\\Ã°w0#r‹Fß¼Ù¥^G‚Acwð¨,t´”Ž©´(a8°ÜÄò)€è~%ïcGÝÔ:~»\\\0p#t¢‘F?Å(fp\\3{¬?\"Ò];>W–¯Ší·qBèÝì5©mo(nÙéÐs¿¼sTòj+<$Ÿ|rE÷Î~âŒéÚ(y:wj5ƒŒ1ùº»\Zç!Êð`³®<ž¢!_‹(€wy‘•e\r…63TñÁQÑ-¾ˆƒY’Tœ=G(•Î˜\\õ‰Þn Ülpu¹ê‘&]š°y˜i›J)(®f¤¦–¢qièIÔpÞÜ²ã,÷úíK˜ãñ(Ã­ÑÄ¼\rC	¡üv…™±¡SæìKO]l]¬t²¿(Çmÿ}Â:Öƒ¹{™®Fi\r~^‡ü–ª`·@€2$Œ(Ú®å­wS4ÕûB¨l…q`8Ïz»áW:5HI)z4ó¸Éphzi‰þT±vÉÐ/¡Ô°x¢”³¸)!¤/¿­P²dÇÃêtòOÂ;DCá¤‰ú7P5)%^¢–VòtÀ_î\"L&x?Ð.à›¥Îò«ÒªÑ*|2OQ)JJQ¸%˜æ„x\Z•ð‡¬ø	€»rì]¤(R`Á)NÎ\\nÁËmEÁ\Zk“cúöÖQ÷¤¿­(aÖïô)QFÀÞ¶úéÙÐcŽóµBWÅk¢Å÷!—ñ)Zô!Y”ÙÚì¯PAä;¾®®šð]nû”‘••)a¡ÐQOhÐ¡/zÃ æS\06ñÎþ`ÚŒÊ)}´VÆOÇg§-w/¢^°w6!EãýˆèèÐò~ƒ5OnÇ)Ä!e¡ƒ±£Ð¤RÝ€zg†g6‘Ñlñ¬[²{)ÔQ1˜Ùªèp”$«2Ën#[z*/	*?¤|¬*ÅùýÝ&—„¿ÍØS¤¤‰ÒÆ½tŽÔ0îž¾™¨õî*%Ò¹-ñËm\\ûÍÛ(«<ø`}yœ åx‚	ˆ[l*0Ì?¢“\rÅØYoXdø	Þ:í¾©¥Ž@²ÎMFIæ)*Néª±w¸ŒàjŽ‡u\ràø§3Ëâû¥ô£ðô*P¼|Ë¿(W¯åa—OB¨§…A€e×À¾þ¥ÿ:£Õ+ë*RNÚ”%>•+£ß®6ÙÒ×èn^wjþÈ9ý²8Ü*enŒ©|Ó—ÛQ›¿DU[M!B\Z×Xó2ŸUgy¬*j4£œm3: PËà0ˆ\0å\0ïO÷¬Ë9ÜÁ`*k /ÙYlò§IÝ>CK:îxëÚßÝA§ní6[*¹çmáÒ°ÑÇ•(ÖySl™“SÇXL£	ý3QnœÙT*ÁYÇ×D>)‘ûk¾\'äYÜO+›j*üßUYâ2µFµ*Â×áÕ(Ž‡¢9ñ¾ÍŒvå&5d2|³Ñœo<¯v8*â®ñnT÷HSaQƒÀÊÌp¤þGÙeöõë£Õõ˜gz*å.CÜ®ñá)Üi˜±XÇêöÖF8Ž9ÑŽ,¯Úä£*îÂ‡àjlµJƒ[Ä¸Ø¯‘i•u*_ÿ	çžù·´Ê*ðwVS°1™Y«‹ƒ¸°\'õ;În_Žb¿ãåíŸ6ñ+‰äÕ%Û<©“æÒòhò´ýÌaæòt¦>Õä¼++ð€­BPxP\'\"àÓâXˆpóÐT©ì‘hw\"e +(Oi~”.I%·Æ¥î?\"~Yä¹‹öïbüoQ\\ÜYÕ+I°Ø*¬’¿›› Ã\"2’ïä­æ:Gfl”Œpà=æ¸+^ˆßH®ÿuß²ÎÖ¨ç¼n¢Të˜æçZØï7œÈ+œˆ¢òk d\Z\'Èê,¸G·ww‚ÞÖÂqNÞ+¹ùZP›ýÜÖÜ2ôÑlv,,í2ÍÀR¿Vê~’I+àëáÓÖÝê±Zr\\aËïzäîãkÖÌ§Î±k+èéèþû±£ï WqzŽ\"§[× Ë½_Å{ÀÊ,\rNMì˜âd°_“•z_T3$7Xc.ð5A˜X‰×ý,–þX‰Ù…WvY9ÉbÔ\'ùò7 …}\nÜ,#â|¶xËIh‹ÜˆÛGò:â`3Ð¢{_^ñÿcá,mƒþ\ZrßbëÕÉÈÌÀJ|&\\ú¦\"C8)ˆOžæÓ},ŸŸÏ~8ù×¿K3k.FP?R()ÔoòÈjrt,®äó1†¦­^®ê7\rÕx6$\'Ö.ÑÍáò„SáWFà,²ðlTÑ•™½%ïPê~Èœxq\rÆÚÓÆÞ¶®‚fçÇ,·g£åEä®^\"Ç¤5ƒÂ¸ª±Ú6¦ä—FO•‡,ÉÚ€1f,Ms]B„é#^ÜÚX¬¼«†=ƒd`ã,Ô€ºJ`Ôj0¿Að\nüÁ*®L¡ÛzG,ÛiÚS~?:5^:øb\\BGãQËo—z!‹bvéßE|,ã¯¢ò/z]ö‹Åò_ù—¼¼›W­˜Øpd¼´©.f-7bkÙšA53¾gFEk|¸^Ú’‘n»^ê)¹-#;Å¹D ¦êÆÃä§oþ¶žIYÃMÿAôu»-4aˆkOÒý67½åZÞ¡R•)øûÒÔ&¹ð~	Ù-;i\\3ý .¡Ï\'=ÏÅrs\'ó1•\0„<ª-FP“¹Å9N†¤fš›« ;ª¼î·–hçíl—4E-½HÆP{cÜ»:£n{2ùsZ°q:³7ÊA)l-ÓŒl‡^ç.Ô«êÐÈ;	>¼½Í<äû;ŸènC\\ñ´-×ª1ý:¿ÆùcÂ„&hÉÍ	ÝÖ³±ë4V°§F½-é±,hå8–f»aP¶jgW‚>³qŒþ½Õ\\œq0­-íßàk„Çðyn:ô’ŠQ±2Û €Š´š—ô?ÃxÝ-ðÜv‰w—\\yèUô+.$aWˆÝ•2.ÍFÍÞ.Ýë(2çGKzj\"õÊ,è5ê5+ö%Ê{	ÂW.Çç~\rßB|\\èÕ­}î­:tJ‹ÑîsfÉZþüì.%%­ØŒŒ÷kÉT³aßÀE¾ŒQdu°8¢Ù~Ö3ð.)¯y\ZôJ\nö*F¼£h,¶†T›TíuÔƒ× N.Kð×n‹G\'¢zäô=_å™ðäÄ¨ë©K\nÍ¯áO`r9.d-vŽŠœÛº²Å’È#uÑ7š‘)¸Ò“{µ¦.{¦fZÄ%Ÿù{þ34ñÌí‚`zo<²\":qe5Ab..õ‡IÇ÷ËÎ)6Z©n)ÿ\"6\Z]\r3ÎCFZžW½.šBºøxœ‡~Cd”Æ\r(olvôÁ½úà°+×Á£k\n.Ü¢ãSP*šî¡ƒ6;§]XRCÑÉ†\re‰g–fò.òÇÄ:ä•%q/“}!’*«â:r\Z^ÁEÝÇÿ¢¼/¿uÀ¢C;ˆüÅ,!0ÍAŽA+¦CÇŸg23/Ìsæs³¯Z*ºj)ißÐ±®e« ôQ¹3>s<ñ/^âW)H×ç\\yÁ=Z3%·1q^QdÒaé¯H/&dx‘G:IVt¤Í†ŸØËY¶jáÇÏM?RŠÅ\"/#å×„Ëö×–ú4û$ŸÇ½ª»Øï~r>-h%8•X×/,±b£ÿ•Õ2Hþèøã=XÓ²\0ÀºóõÔDÄNíb1/.Ù˜š½˜ÓîÃ‡ùàKvý\\–æ)×÷w½ÛS¹/7ýÚô0/!B¸§sƒéêìÝ’oBÜÍ»¥e±}y^/>£Úwi`ÞSƒ¾Ó{¡oF’¡’ïý†:­£i8/M¶„œ°4ªêH&¤úo²l=¨|@ÕuQñD}‚W§p/_¾9^Š`5J—Ò¼,ŒËÖÚßY´âaj€KÙEÝålí/v ú\'I5ßR/^\nBR7¯0Ž1nQ=‰*Q/„™|…wÎ…•±jˆR×Ãz·ZHcxS ÊJbËÍŒ¦/…YêleŸzIGz¬Üëzsˆ«¥s=\\ƒ}æ/ŽÍÔ£÷šZµ¡g\0cVðž×¥vçáð¹d›Z¶/™	43s×ýÎxÊñð¯|\"¢@Æ-8ã,^F¶/œ–GO%<Ž\"âàŠ!5Ä¨®Ç`0<¹hCJ²¸”±/´É\0¶‰NáKoƒ˜Ê©Û­è©¡{¢nggÝê/Ÿû|`ýÅzÁªZö\0^\n°ˆÍŽ#0÷‡\"”ô\0@žµæ/§çXžŽÅƒ½âñàY]¿– ”øIç÷ØOÇ/½)ø§ñäË²ËøàjtS°+KUVÝSƒxšï‡\\/¾¼?œ€<@qùŸvê¡ö4ù?„rÕcm‹5õ/ËFA@T½ïZ5Ça¡ )ðLOfÐW”»Rl!¶\"tˆš/ÛÏJ»tR8·èÔÖ“†9ÐHòµd³øFØ£8­‘0“!§ÔQ+7¯ãó`Gó#ô\rþ)ÕÇS<\Zÿ{bÐ0úˆ½–C?ãBÅkÕ\0\'Í®<ÿ×’+F/&\ZCèÜõ0ó­’o ¤7Ô‚ØÀ^²‘\ZtÙU×:+ê¡Ò0ìCOªÜ¢6Yöy—´þ¸ K8†<”G÷žT¼J‡0)¬…5¶üÖiKeÚåô£’jÕˆ’ÊÔüTö|¾F$Ë4t0F€6^Ê¤pƒ	,Ûw§R}nlD‡oïYDÈŒ\Z•0J;;æQëˆx*„©,U»ŠÓÄ¾ì<gþ_;§o-H0X!Þ\nB\"`Ã6öèÿ D© ûÏKP?±ï°ä_Š0X¹73S;ø Ç\03mä&)Ù$K>7wtT´\"µ0[nÓÚ•rµwëýe&³ýîE_ÇJãCè¡Ùä’ˆ0iÏG/þ+Uî‘W3Iœi\r¨Â·8ˆ”ØµS ¸§8•0sÈaÁ±¥…°¦`\"*ºm(|-=©9¿Æ„ú ¤A@0À(ÂËÜ<é~UÏ-t.™&]%/wˆ1…©ŠR¨o0ŒòQ9\'«—j\rÜäp‰WC‚mög0b¨¡õu+ö<0 ¿Ïáö¨èSbŽ€º]‹^ŒìD«ì¤ÑŸd«Ü0¥…g¾†ÒÐºÊå²«}ÿbIYwe–.êGžÑ0©pÊŠRâ^=©úY› ø¼o(áä‡a*¢7Á`Á0¯Ü,d9É˜ðó„·Gõ\n6úêPÒÇ$JC97,néHç0èqeRŠ1:\'°“ÂãQD‡uÈãhVãÐÂwÏ‡0óÌ÷ ‚\rXyqÞ\\d‰ø‚]jÅ‰: +R„(ÿ7Î—0øº?@Ý\nQ¢›ÆŸ¤¢q0	2¼ˆzúRö•ÑËo@0øÉøY–ìiËÑ¾ëäc1ËýÊ\Z±²³[‡^r0ü\rÁHCxŽ^\nêë”#öçQíÌëY¶4NX…1„!3Q*„\nÏôXÚ}³(ÄbÇz¥=¥œ.Åù/1&ZVº0Ñc;÷»dÇClšÞÙÎ¾P`…–ùŸcý1/pªÎJVQƒ§ì2v…Žþì•€ž]L9çðe?4J15VƒâÆ^,û¹‹ŽgK×äÿé|#¿0£Idµláo1E(Ó|Tæ€Vc»-NÂ¿-ìíÞ¾„~znòì}µ.µ1\\ó^¡œã8ˆ¬òÄ.Òl›·jåÐ…Œ¨Í4x²]›|1]›TÇÂ’ì2J\\+	äi¦6SŽv©®S,Eï€´‰1eêñä…­8o£NØTÜ:ûw8Ä<¥:ÚÕ¨î1‡ÔËu¾\'ŽY	£òÃÊ/%ùÇ¼\0›ˆç¥ñB¸Â\01Œ-#öó$½ü²„p÷&ºh5híJ‰m9³ÿƒm.‚1”SP^&!é £!\r\nOñ¬6\'R˜ €ú6¡a\nµ-1œHŒüìÑ\"ØgyßüÑ†*Ù&\Z±ÎÏb&fKþ1¡¢¿_¬»«X‡#/I*D¹NÅ|æqx À]\n±\\t1³ó¢¨f¸@g˜øì<ø÷g—-vI„›Péà8îá³1ï6sè4Ú>gŠøHTÂúµs„*ŸNV‰BªßÓ26?Ã´%I8#ƒAaŸ§W‚¼=ñªÝûÒ€VONhEÏ2AñþWB]±¶bž}÷¿cÞ¯B™Äè÷#É2B·Qb9ñL‚ò†\'ŠÄÈÍ›¢ä¸ýB¨BTŽ2Hš˜‡s|kÃ-ðD`ÂŠñ]^9Ü÷âªÁÍÄcõ,2SLËÃbˆì{¼³äšÄÑXsÓÇ…*ðž@)Q˜2vziòÛM%\\ÔíXtâ#Ýîž‡$­žeµ*ƒ¾‹2{yC$%BÒE;ù•¨¦ø‹4>©ê«f–Ý&b=ôâr2}©À)vD$t2ù.Pì—³÷·‡2ŒA‡üÚGô½þ8Q2˜ñÓ†JáJ™/CC7NÖ×Œ\rªÈjÈÿ‹Ìi2ÌMm¡ÊQ´fÍ!áž=sö*”û™˜2Óúç\"!-Ò2Ø—§ÄŒ„ÍÏ_g[)@ææ‰û23>²ŒÇ,ñ.¼¦2óÙ¹Ô<­ædI=¥@M8­Ó>ª4‡c!^i N3fKÆfYÓ8~Dh_ÖÜé©ª”Ç%*&zçF¸0-ä3(„îJÊ{´*™€â\r[óŸÉÚÜ½’}†W333ˆ9DkÇNd\rìF‡›$±O‡2í>ac™c;™Sö3E”!”›Ö†ÞƒXO+ó¦–ó¼)ˆ\r^gPÇJ3O¢™€jü}.£óÓãÃøj	^W/Q(Ï¿Ð¸hBC3Z:×2$¾FyÓPâ7bØ¡ü: —äy‡MúÝïí3r­ù=…«	aÔ…šñç6˜~1…´tŸùÁ}‚k3‹i°ŠåˆZ+²+<A&±ÏëÜnéã?«¼‚%Á3¢J~wUV.gD”¯š%Þ £ó.÷¿P	‚<Qï3Ï7H0Ï0ÚÁÚÔ­*:ÞÓ>âñaž_Úî·r`g3Õ¬ÚKY…CäX–-¸îkÿ“íg9[ÅëÛ³µÒ„š4Pë¢¢\ZÚÐ+KibÇE±WÐ’q`r¹\nQÏL¸4\ržÁÅ(HO_)‘µyÖJ–ñƒwàLãÅÿ†ó†Áö4¨K\0¬$ÍÚÃ|%Ü°^ñqï÷BÛ±&‚¥ÏK…ô¼4,Êj´­òÂE6©†Îþ¢Üú“æ@µúË9&–YPdü4-”;*B_|Tç•Bˆõ Ù!°Öþ\'÷o\nëQÓn4We›.ßeÙûþ>uÉ‘±ÎðyƒÃVcÉýÒ@ˆ4gÑ“7’¼öG>…\\“óJ¹ÜÖZl®Ì2ü°Æ4‘‹ŽõÞH}AC{ÒHh/ù}sùfÞÑYÃáˆ£4£%ÞC]îÄq@²à¨ôm7kêDèñû¥–W¯Ü*_4±¶]¯ôŽ]@w:üyÙºX)%Ç€[b›tbs­m/Ý94»%_^^å[¾ðì£2¶ÉâûÂi¯Ós.·Çª-‡4ËYÞ2õéË½5MŒ€fÕžv2,Ë.¼à‡¶\\~†ý¨4ÒÄ\Zr}ÃM‡ÈcPÏ\\ÃGÏ¢l8Ôæ¢ïEý¥4ØgÀÛ1g{w!Aw??UžËm±`Á:_NŸ¯5½cíÄ[—/8àÁí>ô8g1Zàn‡àóBÈ¥gx5IwýNÒüeó¿zýÕ¾E®s-ÊM$£èg$úŽ5#_»÷DØž;}6]þ&ƒÓþ]Ì¶Žü&‰igæ>W5$;˜«/¿ÊmÑk«íØz —ð³ð™ “pƒþA5*Â¨ÁPÄÙo;è,«†£XÈ‹èyÖE[~‰ÐÃ5BÊ`íú­¿¾DÚ×ð’ÇSx|ð4øq|Ò­^’í]…5YÝY+þØWýï—4ò¹ž~û:j£/:ÎÙ‘,¦Š–j5o€ƒŠxØßùˆÒ~ì,ÓÒÊ\Zå±F<”‡H5‹Í±ð°hš×çôYó‘IË&ÛB•ëiUI­?ÄÒ‘5™	®XxtÅB\ZæÆ}O¥ž²ã‡ûLŸ =\ró6·µI5îf`dP&ør:ã]û‚üÕÚï°»½ÓzØóW#[Ä5ó`œ©ßHºê•ÀÚç¾Üø¡Öº>ÑR5ÁEOI6= ´G!J|Glœ¿ï¥Ì£¶8(êxHï,åQ66Gñ\rékH:’\r,6œ¡YÕ§j€h½=Q’$rF÷—a6XþWÒÛ\r2Ya\n—ÛNàƒ‚D;3¿>¡?ÿ)?VÖ6k>×º£Ý	QÚêÚÑHa[×‘é]{°9·ÀÙF¼¢6tªY~\'I…Y+6ïõ5}’j²gØñÎh®yÓ:6ƒRàÃPJÃ’2]bîD\rµ\0JóÃnòRi’ÐãæZè6Š}Ÿ‘àñå¦åo\ZƒSu¿ìS§õ4Ì€n\rhþ6Š½\\Òæ¥…Tbñ{)p2¡u,®¼Ö…É¥£!wl˜Öb—6É•I•Ò£MkÕa_ùëßGÕ#é1Ïà²Ñm6êò´ÎÏÕ¼|d5lÂ¼g4„0æ\'ŸB`VãŽŽ‡6ð\\Õ\ntÃ\0€`6Í‹&)ªánâ—Äek\"Sü¸h7ÙISØXŠóîei¸NØî‘n˜&Ëå½¹³þdœayÑ7\nŠ@3çl,íUl‚ÄLÔ°XfRuDÖYRsíöm‚7çMªIî¾Š.çœôÚñ›-*“œ\rÆ‘æ7È§’å\\éÝ±Ñ”@Í°büÖdàxì?…¡ê7‘—)J2·,\"ÿ\ZÅV#¾µb‚¨Õ{°Î7€ðõÁ®\Z©ãÆÀð>©Qã©;£~oûàgYF½7]UP®ÿ*2©ˆ ÒªŽ#bò‚ËV ¨•ÎEÜXj7bŽ1œ€§8ß!´ÛU=…¢É€mš¾¨Ö{YQ‡7m«›¿0ç äž¤–3Å£›K7–ùò\nFg0íŒbÝ•W 7nœvŽæhÍ–ØXýd¸\"ƒôéÍ‰JèŒñÚˆ7qpÀ.Ñ}”a \rÀð`7Ñnšš’sñBÜúŒ}@Ó…v7|\n6º3«üÀ«Ò6¿#6ÑIÞ×æ?´Èà ˜7™Ù‚®·ò\ZEš¬.E{(ËYÑÒKhd`zŒk¶7¼I˜Öc÷Hƒì<=þü=\"óøF)\0Í[!Xâ\\æ7å­ü#q­$‰öTçT)Foe\'&?Prj%o7û@lDÝéÞìI¤R*)U†Òµ‘—¥èRä¶&\0e£¨7û|ì&,SÉWÄ¦l~Š°¡ e|T¾5‹—–‚oÞß8\0ªxqû± ù‹ªrgk*\"@TCRZ=òf’‘¤8K*}\"}u¾a¥Ú©ßîþÕßÈï}›#V^¡Íä}^g8KÇ–Ú´\"-?Â?,[‹À{/´Ou|ðEÕæpóâ‹8`Ñ°ÄM‹U8?˜‚i$ßîÅëî›\"³O„{˜Â8o0êË;ìà§—œ·Pjñë‘ª9I(–ÝÔhm~ÿŸÏ8~/ó°Sõï¥ù#WUD~c9u©uTÑv8Ú“1Ÿ‹­b;÷ü0eRÚ ñjìuU`ß` isÂ92g¢àÂæ­ìÆÐýÁþK:ûraÜW;\'ÓŽÞÌÞ19fG3óCësw[<ÝØhÇû\\ÃŠ¾°;;OA(Ks°9>|€ßžõyÉ®üŽö¡,Šn¸³a–S­Ý>\\S9IªÜ<Rîa§~ÒTªeð8JG,dèòÌ[…Js29P6’ATa~R,~F\rÖ‰«+Ìo‡)¢¥\Za0êp9PÅ `8_æK#õ£îç,ÖlS³Vd*6T3-`~9T-¤¢HÈž :9…¦¥˜1ÜS»\\\rb?FC©Óä½9Wmˆº\Z X —¨·Q?uM\0GuÌë‹7’ÉnOŽ¥9YŽd+ÂB\Zb ‘ÏhË7~ËQ,…Éï¨âÓêv9eí9‘Dõúg2[Oe‰¥ÑùÄÓ-ï„¼”DqT†noK-9f`Ewo„œ¼ß{õš)Q1W¦•<™ØÌ¶É‹9p’mÃÔRz®ÖmÀ˜Aq*èÓZƒ3ôŽŽV·\nŸ-9Š1»ÄY±z=&†3–‹.T°Ôö QâA[$…É¤”Zq9™7ŠTñµ™èÛÅBìRœÌ#[\rO:„K)÷ŸÅXý9œ5ÆV]‡*¦sêˆ»µjòq7«õË¨ð¡È3ìÒ9Ã¦âÀ%à!©ºbdV@ÎO GÔaMÛÃã¾¨\nµ{d9În¥‘Û~‚A ƒbÙHc†åx;‹åB®®o>1<9ÞJœ|UA6@Š)YºÒ>$UÅÙšâé§¥6b\"9áó~%qö¥2^J²ñD3]ZÃÍÀû4qôƒTõë9ò²ÄÆ·]6¤z*6u„jLñ\0ƒ<)¾+îô\0å9÷«ÙÔ$2©ã!èº…Ìu²“ÄÛéÎ™)…\0Ð¯»ð9þàžqBYaÙ‡sd¤yþPÃ¹(¹ClŸ;]«¸%É:Z‚?SjM¥aŒ\0ðùyJ†c/¸Eø#Î8Ðè s:\nå1Ñ.¢ÃÕVÄ\\ÉÁÇd†S=œ\"E,vv0²|“:$€÷UÒy\Z\n*â+–éÿÅ¾+cyª53‰3eê3:k6çZJ™£Wj?ËvëA‰¶ˆ^aŸ€-YêEçÏ8.,%:k¼\n<(QÇ ¦-g¨Üvv]èš¢áÔi³ýÈeU—N:‹ÛÅOñŒª3Ö›KÍiDé‰›˜‚é-‚-Ì*¯3K/: ¡ˆj\'²}’!ž „}DD·%Xï×á6âD:¡\'º¢¸Ž\ZÝ?ðçDßæ-Sp\'LíoÝ\"u¤…ä`pÏ:¬›Ùy8…–{#ÍÕ¿…mçúöÖ6mzø6Y(9:´¶ÿÝÁ‰Êmèÿ÷e0i7Y€§,<YÞˆ-|€Áž½:Ì÷ÈdŽÑ ÿeU€êï&¨\0 ÖWåÅC}>a4§È:Ïi=£\ZYäeuÍóÂ)Óªmëƒ­}¸Ús?ù¤:ÿ\n[³v’Ég%Gpäa?>ŸˆÑm“_kÁ„ÿ5:ÿU¥#¹?‡™_jL§2S2Ôö½ü‰ñãU·ª£H^;RÀ‰îÏ^ºy]ëò¸ä%a3_)Î;teâé®;JªEÅ]N”ØjÂÌ.‡Ìæ1¥*E–—‰ígWM„‚;WÍ­ÿ ª±%H)wš<~ÐD|Ÿ7VÈ<ÌÈJÜ;d÷ ß©„,Z­zñ^u–¦XðÑ˜8ˆ}¶÷l$£Y;g½ŽÁlSÉ¹Á\0G,i8MÂŒ‚\0çý¹©ñóœ;z¾—mÊpúKm\0\']s\Zø)³MR!\\£U<ýè¿í;Š\r\0osoþ™B>Ã”]ÍØ÷âuc“ºò rÕ¢T‹;Ã\Zm}§gÏåêêùO†_tÄ%n¡È…Û¯‡w®?;¡è0õNU”-û\n°ÈÄûò$Î¡¾œëJäãŒ;ª·Ñ‡áQ‘ §¹¨ZÍ[ê•ƒªíÆÛh^2u£*;»7ÕD–nRÑWÝN4@“´JþsÁ`ÖIºö¨ä;ÏŸµ›§j\\Øù%z™všò©”ƒ}dóÿ83eª_;ê@ïŠ_–MÊ-çàÕ…‰Çï÷Ý,(gŠBàÞCÌ\'4/;ë]A(‚1Œçƒx&¢äšÌ®^»Øl_Ük8c<FÅà ´\0DÉ;Pw—Q¸œÐtøÖsÝÏ¯<·5œê©ºäõ½Õºˆ·v€€Ëñ\"ðÈ˜ÚªœåÂ<é¯:GÚß&D]Ôƒ«ÍE3 	uæÝœßtŸž³< `2!l~òsø‘òªDU¬=™¤¤ÚÏTšRýåœ@I<!{]Ëwf›ïô¤ŸÖ°„z=~îSþôAð>nJê<\' óŽ<à±\'[Oe€÷ù0ÕãÊüuÜ!ôX	‹g<7è…SÊdTï	{~ÐÓ}&(94ÍY—_¢S#+TË\Z¶<?ni6~’ŽÏŠÕzù£›ûÞîÓ­Dzm\'={?63T<m†2€Áèõå[ÈôgŠôØCƒ|ŸÜ0™´øÚŒ<qÍ#;•&„p6fÄ‚^½¾ø¯8+Ô:÷¬é¡âÑHñ<x:Èwì©âóîƒLdìdÎ|G%N†é=©s©<›\0Í  ÑÉ$Ú±Ó5Åµ‹Ç™![•ÄG7]5+<¨’H.<û1zôff:©/|Ö5¡FŸ\"©<^õ÷}úÝ<ªÿãþ°P,vuSÃákÈÖ5ø3lšD ðTZç~O<¸.xnEe×¿ªj?\'o2•†œÒ\Zh<’:-Rr{<Ô«ú!qÀœòŠÕ2{Ÿö»Q:œÎ…¹€¥2U†?=A@5Ó¾Á²Í¾\"ÍvÉkkaÏ›aâµ´.kògçæE=%x§,Ç\'}”<ì*ép¸öãuX„pÐsìýˆH#r=Mbþgž`<ÁCó˜ÁòX6¡ûúØ.4xÂ§Ì{=QÈs÷fÐø#Í“”1\"C¨–+3bî“5¥|<PàC=šãóêÚ¹¦ýÈô\\ë0äð$ÖìäÓ[¾#üb=Ÿ¯í±$ëÄHÓ3•Ôf4ñDåü±¡V­rjÑ!?öÑ=Îø—¬.	Û• &ÔIgCq [OÙØS„=Ñdtz\\àIgNì\n´d%­?8­³®e%`s2ûôI>\"8²ùâ¹*S@-‚öbH°ˆÛ\"ËaiŠº›žEx‹>\"eY×-¦:0¨°ýÆ37ðùžþ,jÀ³ÝOâ¬>rfÆ	/¦lùÙ¸$\ny+b+0ZHª0wbêVÇ>‡@Z‹HƒÓÇ“’§º9 Ÿ)ŸWî|„9ê¤^~ >‘	tNí}¿ú%åÂÛÇíó¯ÍÚâ˜7â µÂ6É>ÐŽ¤º<è©gÍ\\^_·¥ù½9ŸKýåö¥:>ÒµPíTÏ»ûŸ±§7rï`“üˆKÂùË’#žF>×EoG‡¬ø0W^“ªÚ­>&i®nö\0½†úÎóY9>àxßÈf?)ÃÏSû‹vRK‡Z¹›ø‰ð„n½ñR>îÔ¹£îãËîWß^;žïÞèáâa*qâoÿáicý½³>ÿ¸Gãºæ+›G‰Y/„C­ê•»Ü€6ÛrÉ&¶» ?O>uÉz·/AõÇš	n5E-ù‘I„ÆGUhß³?	]„M.Š¦nŠ¸ä±b4sÞÁTô+ÏHˆ¦?ÚŸ>!©dïÙùâÀE_5ì;$~$¨„§ñ&Æ \rµ?)ã˜ ŠåwYÓx†mN#¢\"( 0wiúIÙ¹2Àñi?\'¬Ð€|8§iÇ{_Ðz_)-©2®=wmo½wÜÐ¡?,gu§Và¢ÉÂ”-UbëâÔÄ<eAÑÇ©KN¡þ?3Í³¦’ ¥Š´ÓóD[çqJ•‡ÅŽ‚•g*h¤Y?5KÏ¶®ñjB *Dº¹ÜäP¥ú?4žñ^‡”¼?>ºÐe©Ñàþñ¼cºý2u“ð¯ÕóužööÐ?H\'ÍSüD>í<56©Ì§5cá¨#_{8ù‰cf?Q¨O¸Éx™R”\"íÌ&À¨Z-²C¢¦í¸j\r?_±Þ6bÙ%Ÿ£¶ã»§›«èÖªKÕçÇ¯xLžÀbÍŸ? “ú—ªh]ž0\0Ú	B¢¦™É‚ˆàL¡ JÖ¿?ÓÏ\rÛ´à<—èÙãë~÷²ŸëS×1.¯ÞQ±E¾m?ëõYê¤²¸;Ü®ÂáS{Bvº,J”{9š±?õ‰W^Ëz\0¸ÓY*`\\ÁP·+’É-Zœ¾Æ ªlo@®$†þyZÎ¤T±Õ+‚¸Iéf¯Ø’c#p Cø@vP…áÍèÔoêå4Oëuº¸öº¦“ŽY7jÑ¤@sÑ\'”b ÓN9E=Ð¾±ÝSÑ0¤V‰Ì{ÈK@ˆëk÷„ô¾¤¾äX$Î©PB	´òæ²=PÐS@*5­]ýðG¿‹€ô²Ýû¼ÄÖ€«Ü3)A{—Aq@:xÿcŠÃ†PV‹àïqtŠ´(„×*¤Ë@CA°RA³5³¯Pü}”§ó%šbI^½C3·®úÿ@Lo˜ÖŸG”²×j§_x0`æý8CŸê{Ïp@`@Z=¹žsXî/Ø$Xvó\0¸ÿ¶uy³8=7œ†ì@^<Û¬\'=âf©õn+Á~½äw‚;òü™\0®Ò@`±7°…ZÇ›ùbvP©‰õ2øtï@hlÈq¸ÞÒ€@qb®juªO «;…x…Ùí¬æ\Z{%y	Ì*„ð›]@v³KÞ¨kêÃ%~†|`¼Ø`„<5PëÛíŠê.@|IªNÀA½åY®˜:_Iâ¡¤Îüa±*„)õgÂF@‰~ÞbR…é’¤ìZÜ^¨Æg¹£õ4œt\\E[]Îx.¸@l×lü4ÒôwÀ2¿³lªÎq¦Î3P±äà\"Ÿñ¾@ž•F3ª¿ò\\;ôeåˆ0ÛšÊëNÍQP£©\Z@«;„®ÊEí îxS§\rÖ=ÎK¦A-ëõpž×y@µ@É¦¡  =ôKw€Ù¸\rk¦)\\XsÊ‘•]Ú Üˆ@¼Q4Ä¦P¢ñîª±Àl¹NØŒÏïF!ÂÛK»³¢å‘A92Ð!Z9œý^v*¹\0D8\Z=Qµy‚ô\ZAbôAv¡{/Gªgö^6Æ~FÔ\nÄ–ÃÞSA	“½‚»Az#êøôëRHˆÕÕéŸ[¨`Y|Ò–„\rxÒ¬”A€¼è®5ÞÄùNök…j(WÜ{lüÈÂ9ŽXIk.Q\"#A†²«’‰c¡¼7€î6ßQN^ò\"BÔz´ïÍNA«2,™0F\rv< qbš9×&Ç°îsÛ&Á/ãA—´©„Z%ä†6PãÃ™Hç—û®[h\n@ï <¦¼A /úõeÈÊ£Pêš3ÁsEä‚bzáÌï%xKÄ#Tô«AÀjŠÚ±ÿ]½UæúfÝ89b•yFvw1¾„Ì$ˆeôAÅN~šúômDD*ØW Ž\n´e©\Z×ö^¿Dhuß]AÓ@z¢$zYâÏ­umÙp¹Ü”õ^¶£6Â/£bÞAÕ‚¡Ô8OæÐ²ä€í¼ŽœOzœ»yÅK\Zt®\\AÕÜîª‹iß¤^ñÏôÛfßWÍŠÃŸvº¢#Ÿ\Zg¬aAÜíë•Ùåã)ú6Ï.k#Õa\rU¸ˆ²AÞe[	ŽºŠvÌ›3ø¾¯kçg\n\"…¥¹®ïàÝŒèAì°tx‰</YâùÆDÛÎá–:=Ñóo«Ê›˜	u…B\0ˆž7rï”\n–75š¬ƒ³HŸÏ„K~‹+‚ÜDBo‡B–ù5¸}\r}dT ýä/´Ð¨îÈØŽÀé,BBI\\c±cx|Ÿ¦³c\rì”wHN,4ˆß?ØÒB&ˆÅJÿP:o†¤ûlÊG|PÄ:qÕ_pŠ!Î~¤B*œ/zâén¦äë-‹ðTýfY£ÂÄzO|…EìVöB•VÕÅþ\n,°¶Äî¾£O{Æ‚9õÒ¢™°ýó,ó–BŸMZÜÿrDžgKÙ÷Z”y³ð{¶!Èd÷ÍÄüÐVBÊ<ž= P\'\r³¯ŠlÝû5hhH@ñCp3Ï2É­vCcBÖR»Ä*8Å˜¡ÓïTåðö/]s·.9T(Èê¿ÔBÛ¥D~Ç–Ü¬ßB>\\_E”ˆq€ÉÒçlØOxy\naÅBÜ\nç™¨Ä¡?}Vx¢¼qAÛÐ½a˜³IÕwA\'6Bã¢I˜èqƒš0úq\ZÏ* ªéZ>ÃÇ%CØ!lC6må©è›¥í×mlÉ ýõ‘ÆÚ2‡}$\\A/C>0íÚ,cïÜÏJÁvy˜Èìš“(TÝ„çžI•CN6ïÔZ:™czç15êùÁ(Esë{(’ùM×½CnâUcœ]üÀ¯ÊüLêá˜]Ä¢6½ÀC1rþCt‘…¹[–ÓP9oŽ&Ñ–·cvÑCÇ¡â‚b™²;C‡]ƒóÉU½:3µ<Éøv=\rˆ\\ŠåGã)¸ÍC‰âv¹m9)Á¶“ÛæwÌlçÜNdü?¹>o¬C—å4)Öø’’“½‚iÇŒŽ<1ÏuÔÐŽ¸Ï\"CœO‚5‡X”þWÏ	ÃÎNùî¢áJ”½Í6ûåC«]ó×ª.7íˆÚfbíÊ¹¦šoÑ	$»Lá™ÍæpDCµíø3¨ð(`¡èe#¥½bö3Õ~;o¬‡ÒÂ4TCÒ÷ŒjšU#HL¾\\Y%úðý\"ÜrSì{¨õtÑÊªCÜ½=#\\‰4Cø.ûðfÔä>)!ãßÊ\"ÖgÛkCÝyÔŠÃJDo H¼yþê¸$õÑÜ+ñ|°Cô9–~®‡f~&ê’ò%{	7ñÈ¡[¿{aOyíÝDg9‹Õ¥Ô+‹ ›½Çwèw\'ÞßYJÄEÕD2Pwr8ÕI—þeW’}þ)ŠsßnÑà°ö³\0þÿD?–j^*¾Î¥{2¹	WÀc|§ ÿ]‹ÔyütDC…ˆ\\N\ZK`aõ—o¨¡ì2õL·JÄSw5:L»TDHoBäT\"—Áª/¹T[‚h‡N;ãÖ*w´o´©^´°®DLSgÑÍg¾Ý¨»Ü? çŒ‘åÍÏž«Y1Ñ› hDkäÊ5ö2øñÖüÒoÝâïô…«èä‡+¥×¤I0ð¦Dp\"Šb›PÖmEN÷}^¯¹³[ÜúÚ:¨qþf¾¤D‚T×E™)$GòÊetæsÌ®EÙ¹¬ª\n­¢æãDß\"ŠKê–ŒT„œ¥+qrË9 šütJ£v!!D£%}³IƒÚîm‹ãF2ï=(ˆ\'+¥äA’‘XÓD´ÆŽ­6Æ¹S´xä«hjï°ŒG­]iÏÒi°‘Ì_DÇä\0w‘ìÄV—ìvRwo‰–«‰ï×~èMRùDÞTÕX6•_8T&\ZUc\Z~®Àœ@ªQ’ÂßÓ3góTDêzý\nrÆÅÒÖä#o8¶­]ÔqñË©8g¿Úw–ÔDù\nDKbuç4iQ\'’:é©-!êš:	¯ú2ÎWi\\ÝDùœ¦N¹™-I0–ÿÌ0?‡4àzfÁ€<áHníE(ÄçÚÀÂK\"Ây¤Œù69=aÞ1c“3øú0˜mE*Èñh5|ðy;f\r±kÀ€Ôa‡í“¤~NËrðE0À8ÖµLó«ý}qe%v·BÀ|:±h¦w†E7·3~ã¡Kµ\02³ˆòÓ7r\"Uª%¼-ò_:²EG-=ÀŠ¥|èð†6W ”+xA0õ†Icq_–+EJúVU÷2b7jMy¢ð8]×nF}°ÞZ‡²?4íêËE`ƒÁf;¿uí³\'wI÷$Ž0Vžo0H3ûö]E}¢¡œZnÕ.G„¸–{$‹XÕêº(jyqê£o=E’ª‡î6Üx7à”›ånÖ÷oj a¸úh.¹eŽë5½Eš õ\'Þ%Xmš-ÿQ»sØûáÄŠKeb«øb©XpbE¨-8\n‘u‡ÚT/ÀÂ§ÎÎiâ¿xäúr&¤ æ3E¨Qé¶ÎÖd¤§8’LÜ®Å¹\0€î@ñüª ì#]sï­EÐˆ›Äø\ZëT”•Ý›¯Ÿý¤×µ„Ë$çé;±QEé!¶!‰¾Í¥ü‰ƒ)r;Ûn6ê®EkêS1þ$`^F Í¥Z©Z(5JC©Âåû¡kù¨\"ü«óó|dwqF´kfSÈGK#:ÈÀ·³Ý’m¸SkÜÂÅ%ëF­hëÞ™øºï«HmÎð‘k™ÈÜ²=æ¢¯™F÷w•Ø³YÀã=çõœ!îB´\rØJœÅ9´F!	úP™ö\r\'ów“¸:(”Q\n’=jlõèhj¶¬F+\"º£àù2|+öFUšÃŠØ;Y¶Iá”}f}|FV›Ñ—±aè6y±p\'î3®¥]µ\'†´îÓþ,F}&w=4qu®\Z¬Ûù­X?·F{û©W¥B!½F¨ûø¸Éþžy½½€Åý™ßéíâ3núÅàóÓ#Ü;F¼ÛzÎg­Ùsfý7˜B»÷¹X²ñÐ·Iw±EñÉFã˜tö¢Ç£vûÖ\Z¥:ë;„þ`ÖjµÊ ÔB¡G‚›ð^Ð—Î±ñ”›tG¹eøåšÍ)×Ùí²ú\\G½nŽ“¨U¯ó>)_\Z1¿d†/ÚÅ2¡’Ò>\ZÚJG\'AQhîMÍÔVí§¶v‰S(˜G¼¬l^~@yÝGBðìàÒ#”(ö>”·‡+:ËáùÔ¾\ZþähþÞ/T‚GI}¯‰?\ZÜ)[>\"nå`ºÎ÷ÙC’Ñå cfã”G]€Ë½{0nÙ‘)mæwhní¸m­«TCñÎ&G^˜Pÿ[òÙÖ°a+Ëä‚“ÞöÝˆm—gÏ ¢?÷Gsq\"¡÷qk•¶,Ù&ðu{nºŠi>Ÿ¨ámÓGs}ê£©²¥~V/	Ý­æÙ¤[öëí:ñY£×\\Gt_!ó§HXÍû­«Ð«wc¯qÏìeäúþ6Å>îTkðG~x%í¾ƒË³ñâó>)žµ¾d(Å\ZBNJ!G…ë+§Ú8“v³Í®1g*=^5ŽVøô¿é€…·\nÈ\'GŠ@‡PÈƒÃUˆ! 9ï1XYM“ÉÿQeˆ \0×`ÆG´?}ço>ÈÇUÎŒÿ5®O*qú&+v‚3\ZRmh@G‘™gr8É,ïBÌÞc]u_·a\rÌŠ²ÐÊ;˜~ËG½¦W\rð\Z‡äG$é7iD>Éb‹¤á^Ï®Èï4öGÄ³Ë—»YqUé„¦´¨´lâ\"	ìÈ,]âûf§C\"sGÆö\'”½Y¡¾½7Ëÿé5T¹jçd5:Â€“ÙX}{üGØH{²p•<Z¼ßtM¨‡h`áKÐÄÇAL–¿ÅGð±¦ŸcëÈ`B+91l%SÂ;à8B!¶ÖºÆG÷Øí:—³}ò«›ç¤ï\\¯\r¬Ë÷#}gàÁÀóuëHóAfº%Ö³1h°*#ëë\Z·UEUhŽ>B=r‡Hp\r³\0VÜQÎ]µ¹%<‹ Ùÿ	Ð&si\Z­[•H…ßHeùQÎÎe	=:¬æ2sOÅ8×Oõ½rÈœÅ–ÒH,Ïo‹ý¸1ô@O> ã•ÍR{õÆâ’5k©e•ËÄH69ìó—ÃŸÀ$K²¯&úó‰k³­ÚáÑ•‘\0ðy}H9méPÈ¥ß\"¦T€žŠ¶ËùÆÕ©þÖ/5Ê{!ß#Ïû^HBÁŸú˜]=|\rÓUJÂ¢ ÑèI±Á‰¨­wÖj ~HNÏ>ÙÙ+föãòVQÑ‰ž2§žåð½çË^ÍÐH`kfN–°Lôäõh×`ûˆoíè[agvEHaÇ÷”÷ÒÀYB¦3GD†«ÛŠìõY¸|åå_â]ÀH{Ã8;sP‚%;£q‘Ð9\\š×}óI€“W—ªH™Ù¤]Ãªù\0Øë•{/|È öodl€J/1±H¥©Qïƒ‘¨0zí/ÀtÓ$ÆéÚÈ7È)æÌIH·ãËJá²Ÿ¢Ã ` ¨÷ò…ût¯HV¬{H¿¶è¹5±\"wqnG8ÊxC·ˆZš(Žî÷«\07ÿ¢Hä3–:Bk[e<KRƒT6ë¬uLÁö‘b€ŽhÎñùËI;BŠô»S¥ó»©âG¬l¿º”D‰kÙl,\0‰åä)IGQp¸œÍ5u½òŒ\0cÀ{Â}­çAìðÂ>INÒä®ÿE™ç¯j‹4“G\Z\Z}”®«C¿JÅC¾IZ¾“4¹ÿÜÖ»{Ò—×7taÙxÐ’H­1–¢ÆÖðIyñÏ\r|­qª›–SAý*†	çÄ}H¿àPÁ”æI‰|á™µ0ÇÝá¾7aÒn¹Òe;\\Uôœ÷ÚI£>Ù½âï^iliA®$UMÂ™>œ¸ªl¨)£¹$iI¤Àg-¿ÓÓ®¶P?{ÞuâORìRr%‹ë“~ÞÐI®Ô?Š¾ÔRñ`#¥àC\'\'\"·®Ó\\j\0aR²_îôIÏ3d7°Z4ŠUØ®!VÒRü™\"Æß†Koœd(â²IøB¾qM 5{s6 liæYÐ,žÉ¦dÓÃÙeÃ\reUIûÜ?«5j¹Ín7à¿+#Ik¥ÄS¦Úïð›c‰ˆJR2ï›Îîñ_¹s{\n/úvgLiòœ›:%¡ìJˆ¦§œe©N2\0íY ¥¯by¨_·B‡šÔýéQñJ(|\"ŠDçÖw@Î¢ð–˜wîï§;`®Sþ ¡Eá\'É]J0^iæN™Õé¤¸®yÅLéÂm¯¿¾øës{ˆá(JWóæÜeüjù ¯JA¨£ËU]1‚Ž^s?Z‚Æ\0JX#jÕÀÇwöÔÓšYûùæUZ+òõvä *+Œî·J]²Æ <SMvðidz„å«×ý>€à¦…&<d“˜CJj°;þÖãKžã;s¼\\¢•2Ç~€Ú‹4½J~ÃÄ=¡;ë…žü”#– á	\"K\ZE+‡í½Æ13°˜J‰3õAZ[‡§;‰`“›´Ÿ³ ¾ƒ3Ë¦ÄoŸ×J“4Ç+`b	ïˆÑ\0YŸ‘yØ¬6WqDÃ…Jš „ËÃV¡sf™^·”³¥Ìªôüçó0G\\Š“J¨Š¬Y™ŽF Á >%•PMFê? iºO—êJ¬‰	p5v…ã”„v½õÞô´ð8Š‰œƒ€( °­ÁïJ·bjbî‰4Djw*4ž¾Ôé±‹p÷-:Vx@óŸ~J¼•÷N¬@—`Ù¨ý¹P)@-8Y°Xì-ØÑJßÆ}0òÀË.ÔäûpƒÎe	GÎÜ^—ð~•»QyJã”$§ñEæ¾!\Z€ó\"ÔÆówŒONÕÐ‡Ž«^mJìíP°Õ#d	Të¨Ž=ì†v*Qf§¦tz\n“½±KI³å1ZÄ. |¿Å=ƒ3÷S0\rž÷8]„+K3¹SÎãxF¸Hn¶¹ZDa‹ÝÛ³Üðwïs)*xK;PÈasz‘nZ‰ú‹ˆ—£*dWÄ‘í«j‰]rKPð‡”F1)oÑô47æâ–@VÿOäçfU5gÌìKa;¨×¾ð$ù(Uiéò{i­N)hi\'…ó¶TÍŒY01Kb¡C\rÊöü·it¥ê…£Ü\r?Ö\ZŠä½áÓ6·Ke«]éoãüï¢ˆ‰?>ñMŒ‘¢3ö<¯—îð€XKxd]pÀì”Ÿì6rîñ€7qŸù7nh»àXJ!K€Ô´Ë‘‡kéHVÛýà†×AZ!Úš¡¿ÓÐÐ÷\\ïÎKŠ’šht÷£öµ€Ã¢ÁÂª–xšºä\0,\nywÊÂKžz­Í¼3cÖ×Þ–22Ž?Cô· ®Æ@äb_LK³O™ÿE®ênÛAFò>®š£Ú’d3ø’\Z_»0D)\'KûÏ\naÚ„h)Äˆ#å·†BÝPå¡$û;¦ÀL$QÐöA\Zÿ3­oTÐÖŸñxåp\\‰Cˆ™ñÐi­5L&üýz¾ÁŠ„ÏÖ›Í­+Õ	Â*&X»¥ö&R&ßeLE\'“²Ž—J€nEý@”»lÑr!3Î†”Âé·Ív\rLSÀ© #Vˆo€8ki.£e\"k©™«û’£ß¦ÒêòpLz7\ZUÛ¼x{UW?EQäK‚0à†\Z÷§ù`hlÉL(pypÜ]Éó&Ê8å¿,\"6»Í$cM×³Z}uòÅL´f6˜Ñë=¦([Ñ…€Åó•`•õ#7~µ(aLÈêO<«e7¼j}ó;Üh¯—&KÐ9ôø<• ‹¨ÂLÉÅÁ&}³†PÏðïÜ›Ø¤Ê|b31ÔÒÎ³LÌCí•´1%ÌPÇ­Vîç©«q{¤•{r\"H¤.«QÇLÓvQ4Ôä±ÀxŒƒ™¡¬ßA>‡—krík-§\0àLÜ:}øŒ%,¤âƒ\\}£~8\\Âþ»Oa’ 8ÊDsX‹LÜ¨\\H»ø=cÎ\ZïâIƒp‹b€xÆn5¥À¼ÿILä*~Î à¨E‰x¾¤®ÊI<¥\'ÕULhk_‹fÿBLö›å]EÔ;B–/y/k]ý®r¯\"›û< H$ÉçLúí¿¯™˜òRHâxßýsÄqÓ5]þÖíMÛf9M\nA\'J@c¤VëM|)®ª=þü5â»c[ØÙÿ™!M„ÇÂ±MÞCÒ×Ð-”ù”8Vò]\"®?FÏ/Ð»‡MV‹€s¥ºõhìÉ$ôCÚr+B·wÞ&Êu&k MY~q’¸_$ø19±wÙåÞ`Œ¯ÁñÍþ¦\ZîÓM[Øiö¿%MªáAD½.ñ¯l.\ZnÍ ýp´T‹tƒMyL;-˜Ú›%I¶u\\‰K|,ÌžâÃfíû] ›M;*j‡®hÒ\04\'×u\r_–Ð`ìt\"ùOÍ–þ4M˜Ä®ü.4jW[áäa`Aù¥ù>œ?6eXÁMÀ«q¼\0qÝ.ˆž2Ý¾šA/^GÌÙ/Qû¾trªœêMÓ¬ïP×èð–=ÈM‚Ó>lw¯ìÀ›É—ov†\0Mì€~ÐÅËY¡‡kø@Lÿ\"#\"/;c®†vj~\0ìdßMòøôßÏ¸\ZP‹\\xÒÕç\09‰Fæ\'?Õ‡·÷í=MöSpØá}Tƒ÷.!ÿ©û$|Nê¿\\µ¸Å×Äü»YNÄâÝEhÞÆÍÞ’\ZâÃÝ¯¤,P.gÜKN9Ø“]`ÈT¥Þ*Læ)wæò\0—…+øÄÃƒ-r]çËNA;Ö·o•‹ã5¿9‹Ž0„Ö6ÇîlúÃ†lyz£ÏNL2¼¤hÚ«F¥$H[=NÊRµž2\rQ$ß{üù„)NU–Ðïš{ö¸‡Wçkz\\ºðm‚˜™½lfÇëÎ#7N`?g¨\ZÓØ‚žË€Æèz±írz…e=×s¥à%Œ>éNp.jªìƒ£f´7F¥,DÅÆÛ2Ù­:Ä¤2ð­+,¥Nzâ€—Ò¡r´¹9;Óô´›,=Äèõä—ˆd†¢GyN€\"Â?ßÝX¨ÑhÉLúæf?e!#+¿ovŽÌ`ˆÐn¶N¨×:ÖûÆŽ°ê>Ý%ç,7è	çgâŽ`eézš,N­v²ÐêÞçLTgwRöö€–\\˜ÐGïh,–´N´€‡Ñe>h¦Ì@ÜJ|jôÎl÷Å·p>U¸ÐNµjß$ÈÈ-ñGE)€¹ˆ³&J©Ç4ðÑG¿âêTNºÅkŽûÓ²ÙØG\'ƒ:‹¯±˜2]¿üFÃ+”‹‹ÞNîYÄGDbþiÂ\\iRL<Ø&\'?ÍÿÀã<·þ³U3XNÿ§«WNlN4~˜Œ J& R—\\xdœ×¾tR_é¢ã O©	Yÿ@²9ŸP®·-¾¸íÁÅË>ú5ªÎUw\n\'ORÖkÔg)¶eFÃ¨°Á¼lõ,Œ›Ú@Êô«’OÙ¨›|áe]|mK¿~éF¨Ó‚Ë;‹J\"´ª¤ºO(µî{\\¯Ç¨UÞ^DÁ%þ!ä¶£ª†¡XÞÑXJO:X…ZÉ%”ç§M;Ž—‹‹	;?®™¤Õ—læ%¼OCdo^žù¼r²õ•”?žÓ²ždºùôÎ8ú&V®OG¾Þ£Y8+]Ú^wâtæºÔåX]Ý¯“s6QzOeIßVi\\q<º:ûmé´W³DlK‡Í„ÞÚ\'BÐI„Opbå6å<FÏ»«iÖÆä²¯Hp†\08•2¾û£Cî*O„e„/¿<‘ìêHÄ}	ÊJ¾ƒ¶¨t‹†J‚ý3KÃO…ì%zŽ¸³¾½÷wvœãW8X¯F­ˆ]úÁ¨lUOˆgû6r\rþ\nôp¢»H¼Ì–Ö·Ž—|ÄO”AR°„`qL®?¯×¬ËOÈ3våv\0UowË\0Kœ½O§W\Z‚9Åa¸q(”Ž: 3¹Þ+¢*+¾›£ˆÒm;êOä~xwU.] bfWÕ`³h‰šWòƒ\\Ü­¸mP\nkHºžâ6w#rüv{0…õ£=ï«Œ\0ãi.PzºZ¨¤û©bØoBL¹]Æî+n¬@$Gã*ŸQÑhtP€ü\n„O#~íõ#•Šü |öäŽF:Q>Ý„äGÃPkSþZëz´ƒ½–0«D“ÖÏ«¡I¹,1hÆáÇ]jP=ÂÙqÎúá˜Î\"\\&É4Äî¶òoè“0š©iPBÿ1BÊ8‰aSßh@<í ^!›©”|\nã¿àPB™HŸÑ<þ}ÿFÃÅJç›âˆg„­=rv×ŠúûqPD+Ë¢³RÆ†ÅÜÅƒõÄ5BhþX¹â]lÞWP_ÀºMŸ4˜µWûM$\r]¾\n¬Öý]’”³|°øa*PdÝM@:¢AÜf€Œ%CÀ‰³àè|·‹2\0pPk:ES¯ïv\Z˜LÖÁ‚³a¶©ÞÞ\"i\0SO2sá‘=äP~¹ÛåØ¤‘X7L¶G¶0©»°†ÊQËûdkL;å}P¦¹ØV\nB§^~ýˆ«Uh ÿy»rî.FÇ>6pN›Pps%½Ã\\*ûáóÒ #Q=ƒ¼£QCg8ôPƒ1mK¯=ÊY4à$Ì	’r‚Ö¨Ø\r(|/gË¥$¡P—j\n\n¹hbZïW²>}øùnö»“oFb*Rˆê…P¤Ä½¼7_c¿ZþêÑsÌ82Fù®%ìª\ZFJ:7PÀP°í*HÆ²ƒÁŠB?ÂBÅðn´ôÆ¤1K ]ßsgP·‡õ3—îJFúÃ‘mÅèß\0‰[l%©ž£Ö$ÿ\rP¿ÄK&O˜«Ú5®\'‚RTË¢Ï\"L¦rÁ<Ï‘6ÛÚPÇ,–\\§ïÃ×óÁ­áÞZ·ó`áä !þs­º£†3PÎW±à³ÕJî\0w~¡®\ry!R\Z‹[BE&@Ãù$\rãPåOÍ\r\0ÐÝ‰Öð U}$ïaúÜ)S~\'ÃA\\ŽKP÷”©%þ¹?çkN&Ñ{(ŽÍbGŽ!ã¨œ”¬Q\rLdž^×!DG4ÚøgŽt×µíÊš¾Hÿ·\"£»QˆAYZb½DeO×®0Ÿ{òóY›0èŽéXvQ&·»göë“£a¨ƒ©œI¥\Z5ŠEc&#ŽM/Q8¨ƒ.àf\Z`š>Ûû”ªËz;öƒ¶™+¢8$3ÿQ>+]Œ«6\'ŸGq™*r-­U¶Z\\±>ö#)âµMQJrýZ#6\Zíëd&!;]ÔþsZú¿\neÃÙèê7 ûQKP¦;ËXÓ¦_f)ÓŠüàìCœ?«*ž£®QtAFB;<b|³»OPó£tèÛgyWŸZ‹Ïî‹Q‡ÐœhE»cžN0ÂëGÇ	–7ª=ƒµµm0é;Õ]QŠú]ÙÝBá¼ƒ¯àr4°?N&Øu°Zs¿”Q¨ ^Q‡JC£˜}f½·ÀLª¢[`%%™¦ËšÅ¿b¹ƒiG¨Qzz·³·u}”Ï˜þÕ¿¹¸ùò¿±>g¸™&9ä8ÑQ›ªöH\'èô<Å~dhÃ§–øªÍrú$âuÃ­0Q¡÷!¹ßt±©L7	Ž\n,N¤§±{Nÿ’Íw9Q¢à•Ÿµ[»#³¶T¤Ó¯Ò`ì¯0õŽ”QÔŽRŽŽIQ¤N´\\ÇÀŸsžmG«iß&½¸!0‘\'„ï2òQ¤T¸Ÿ\Z\"™sÔ­Z\'@µÔÂ‘›>=;FÆsõÇP[QË®5w=ÛCzË?\r.hÍ+ p‚\rWý4U…Fë0ÖQÓ~­uRðkH%ö6â³t–uÓYÐ0¼Š9¤|÷*/ •ÜRñ|7¿ªå5˜÷¢I‚|fš(¼ï‡ÿØj\0Re£ Ã{(¿TFâáÏ²Q”…þAðÛÅ	ïÇ´ÁÈNRrú¢ù‡2+P¸•;Ê…r{\0ÔêÌL]ã˜Û‡¯Õv+ðRu8¯ip=¼J£Žõù”]¼õó”âwBÎàÏÂ‚è¾RòñÅÞáŸ„éóa:hx¸–E	ŸgkAùÜ	+ ÏSÏÖ ÇƒnðD×JŠH0Ûh@õëÛ*Nt`¼ÑJS¼ìÅtBmÛ„4t›å‘\\ÊN9¡†Hð„6ÿ§ýÛÃ‘SBdžÿq…RV+?ßå£ÇóòŽ»¯¥õ0éÿâ®SKÃI­r)ƒ},2§äxqÔãj¤ø6+­‘ˆÄi©D­S^[m‡¯_ØÂïÂ,YÆùá%qº[Gà¨êDýç=oS_ÐR“v­F·¨™Fì5¼ß³7så\"O’Ùõ\'ãGShÃçá`.Ç!‹1eîÓUG19rj<bÝ4$×US›,µþo¨5È‹\0øÛ\'–Y¡Ãb-XjQæÈ(,FàSµéßÐ-Âyâïq.´/v5ðAªÕÌó”üt*·S½õ1VÖD†›†FEÑT4fÈÊÛÐó¹ŽN‹§ŽáSäþˆé„Î\n@GÝÃãfì_`IF¸aQm]-÷<Só­°íÂÂ|·ï ƒŸà|ŠI––2¤!Viè¶¦ASõÌŽ²[;¸c¹ŽÆÃCð\Z•EÌÒÄ4­?6óÐT	y^â\nÎÃ\\Çew\ZÐKÈWÜårN©e/ð{ßÆTƒ³Xù%°—¸ïNuØ©§z~cÆ¢ä¨C	W[Tz¶º1PW÷j=Üb·×Y\'ÇªtNT)è¨“{\'TTš«2·Ÿ?%ÉiËIØ	ø`ÃV-½  ÕŠ˜¬tTV¹‰¶\\æ-ðOKXÇ¯›É.Å¹NÃÝÐ™Žu¡¦1^TY¨ºô£;ŠGVƒÎ\\7´åhW~àO\\Q{¶\"T_þ Õþ GŽÜôlöyºNç2Niæ3¥ªËù¤Tge‚\\PMåŸüø¯wûQ{ki}‹‰\r¶iÂT“uõsÉò)¾më·è[|l¦ôÅIÿÞ\\Â³\ZÉ¡mUT¥€Q¤<Jhwøö²ˆ)àŒþ\n\\ö7<®Ì½¿óêG\\TÃñÿF´ÓH‰QX@fSá…õBŠ©ÊDh8V÷I?Tí†w¸_±`zzÎvŽù5`rP®[ý}~3Àô´UËTîÏ“©ÆÆ0.ºÃ°‘!ô’î÷hËPŸ1s0ƒd¬Tñm9Áè‹âëŸùÂ¹­†åv•·Ý.x¸™•§¯Ñ9Uä9óŒîƒÁÕÈ›\ZAÓ=Cm„Y¡u\Z¯n§ÍîÎU‚í‘V«Î™õ­pWxÔÂ$”õ?»Ìäâ‡¼Pð½Uƒ€ôcZ’al(Û+;ý¯\Z&¸E\"¤H³yµùLU04+@qj?™35ÂÑS£rÝ{õÛˆR×ú;ÍŽU;S´È´ìTS2.Ë}¸Æ1X“SH…&ñê¼XÿE6™UKCWéÂÍ¢/‘Z3ŒÇ\ZÓ¶I²–qœî£îÿÊú¿UW&k?u­nù.N±oÁ³è^ìÓñX®£ÖÛ…5PUi<¶À§”òT	,sT¸à¢Øáaí»6ÂÊ÷¡VUlÒ6>8ÑâSÔá’»fu8‰ºÉ	q~À$rÃé‡UmØPÞãå¬g[6˜m†	e·cÛY;èâæU”y‹Bºôç\'l;FÑâ‡VÓ¸‰z©`|\nþ¾C1BmU•kÚ\Z¨\"Ö4™i`FVm†¹Â¬GXƒÿ˜‘i•EU¡áÖÛ¶B—©?âwN€ ˆ-ñŸôÄŒóm\ZÕ§•U¿ÉËÐÈò•s(»4>\0ƒxŠ}ñŠv‘Xú*WR\0>UÞÑúéW¶¾qPu¸U—T‡=?V#í20Âfâ~\\Uáˆòêš¬²7žé²E™§²EÔ¢n;é­º‡©9Úô¢kUéæ­É§†kñ€)‰©€I)Gé¸55	©‡féR7Uð’ƒ”œ`Î›)Í½HEÚl²#„ez‚Ç†í@‘DÔUñeDœÞòDkáX¤5\\h=,è™U\Z˜ˆ8Zÿ\0íUýÞ.‹Š¤Xýå}Çb£Á,W²sfyyE•QØF_¸Š[V,©{+ä¹â¥x}-ø½\n uM8gý>,l»Ûœ{TVA™\0×“ðÁDN`\n‘)PÄk9ôWQµ±ŸóÒŒ·Å»>VK¼‰ˆ¸„a¬FÕq©kùN÷ÆiÁÊ7Îº¨å”PîVX×òWãÔ–Þx€@*ký‹U?P•Â6¼Ñ¢\"Œ­5V_Q•Z®ñHÎØ›¼N\\èè&IU±bóš‚‡\Z|ã÷} V†¾¦éxGÙ˜‹o)yõé†0ã¿`cÔV‹à¡›ê›ËóJ[lu°¿“³Xkûà·éUv½\"PV¤¦™XøÌÏÑQ”3ÊÔåâÇL!h¼\"i‘â#:@V¬žÌ²D3Ä3Ê˜>/å×ÆQu`Ê¤·R@@V»\nŽÍ³wÿµˆÅ“ga\\×ï€ˆ~J8wàú…N:m½N+VÇbqPJëÕÞ\0ô´¯?ÕHý÷ð…ÏYÖî¦ððzVÔq]Ž5Ô ð.]¡@MùÄ*ÒuóÇ°bÊ¶DLJ7Vú>ÖE¬€fw)\\‡ÀúÔQQ.óH¼º¦zØÀ«†\rÉVþU¸\\O ¡Âë8°NOy¶!b‡¼´yïAvÇZW\r5’|”±a‚±U‰›‚ÍˆÊú3(|¯‡ßÉ“»kŽƒWÖªšøØß2×|Ï0óN¨ÒµxÇ£YO24pW;ˆ&Žc6ÇpDÂX]`à¬gˆ—ŒPÐã×ŒU]!íWeÅ½§_õÖÝ²:É}ú—@Råé×W›Ð¸EXúWfC3®ÐæKu!Ô7J!l7Ë¾ã‹ÄbêþÈÔ¿£Whø?áCexl}Þ$ÊÓˆOJù›cÞ ®†_ÈWw«£¢•R%ÇGÃ`{¹ì¦\\]†3+ûG]l»-`W„y€Ó€Vª]@ŒaMËò°xezE®hÛsQ¾ågmgWŸÈoý5ÒRjÏ?š˜U·˜£µZ×(ìOñ%“zW¦÷x…²·OãŠ`5ÇÜç$=áÞU>oú´‰„WÑ¾\rÀ%,½Z	A+”»uÿ‚8ÊÕ×ç2,gLÄ\Z_ÝWÙÚw~¸s¨Ró8Q,Ìq!´èû\\s†Ÿ÷kMåWõ9ï,ïÐP2eë!Xµ:™^uIµôVn›íNY«³´Wû„}ü¿¤‘ 8.t¢f·ØôòÐÄ˜í0\'‡é	±WûÅêÓÁO}¢l‚eVd±ç“Á`”Š¹1Ê0bñ¿W@XXâPÚ¯Ÿ HÆ_Ž÷0¾ãNc\nZâ¼þ`OÜàðX\Z’¢?yvÚ}ûÿ•ÿŠ‚hD¤.Éå¬›M¡v)X\Z›p/}âÿâÕºà \r_ÂÈ<\"ù½Ÿ\ZÒ!ý}Ë¥X(è¦”þ˜úù7¯‹™+NìbÙ&1¹Y[; £á‚X(ó¶fÿ»âë˜\0–¾ 3JÛËËmÝ<\n%làr½ÉXHíPïpEè%øÐ*ƒ+%‰…¼¾Œ¹tÔÐ×f`ÆXb²}”Ì¿L‘Š,ÙgCÓî‘îy~ý™eb\'ý\n41íXc\"Œ«hª.½Aõ‹bªq‚œëK¬Ó¹w‘_U@9Xp*-[ÚDP<—V8±A#¯ñsAgS«»Ïn‹cÆ½XˆÈÈÅº=ÿ )e×Ž¾Œ“.ëx–’¤ipXžL]O}FùÈw	Vy\"§žç#aqÄ\"=ºËÇûrX¤ÅÃ–e™$ž<qŽÅ>”j…M÷ã˜5Ì¸z>6çX¶!¿wñ4öÔð-<[áÏEÈùÑAÝb¥¤´Çg×z­XºÈ“PñŒIäJµøpe8ç ,cm‡éÿË[›XÒ}wÉ—ÜþR6©7ÛuM·T‚!÷¾ÜŸÊ· ð\r2ö©XåxE‰¾KÆª.ÖÇ,lX>w{oyìßi‹%UHqAcXìÁrƒŒ5…y™…•¥w]jªÎ³Ú¯zÐ¶ƒ\Zô±Y£Eü»4¥˜¥³eð†V·LÊF/”Uk,¡Æ~¢Y?cÀ*«_×aµ)‹À\0|Ùñ4S²tŠƒˆ}¹-âÊYBŽéRbØ-tsxŸcÿo®@ÒÔ¾PüÈÉ«YCÏ©ÏŸ¡$ëpË¯=Ÿqj=hs\"æø(\ZNî)äòYð“%øFš„V­O«åÁ‘‡cþ´ª$ûmÿ3½\rY›l5½pY=·«è!í\\^ox™>œSÑÉ8äY¦-Y¢µ`x¦^.¹ÝH#Æ¹/‚2 öÿèÌ×Ý4üÄ“ÊcY¦@µe£?ÚW\\\'øl¤mç^‹9°¯ÄÞ®-›+ÔYà7É¡Ü¼a/c$Û®Š7\rDr\\½š.˜ì¦öæFEÑÎYó1n¥8£ÆDo³Xäa0É«Á£Ôqèžp&E–Z£4r—ƒ½“BÖŽ“Ùzn—Õ¢>é \'údRíÎZª›G‹\n+:På|>s°Pc^™M\"qÇêÁ¤…ÇZ%¤·4ù\'“\nÔCôî`ÅÚZÃ³Ëå4Ðcj¶/lZ6žråU—B÷!³téR³ytJû—I0+dI\"î1ëZWjÕI\ZÂg*(¨TØ\n\\L´€br7tÉ€²\nÏEAæZWr…ó\\#¹Í•	þ!¹^ltœû”ËÝð|oÇCØ ÉlZ^¡ìx ª «ê„-–}©:É\\ƒár¶þÝòNZb)ÎVlJ½…fd¦¾„¡XòÒ#lW @ W Z‘ìS-ù`óØ~­çnVë•ž\"Ò\ZUM‡T;¿Âô?ZÓ¦8yéiëŒÃîkP\Z3ÎÊÂ‘è‘Šï]›è¿ZÐÖªÁmë–•—\"|O§íÈºJ×}^·ê@“Æ»å[\nx…SØSYPåž«BñÏ_XƒÞÇK8SÛþa#æê[\nÈ*k0æ5Dëa˜4Ì´‰Öü±á;Ð\0/_–7ãa[•&(Ü‡\0‘ÒÉÎ•l„jüø¬GÓúùñ·n[\Z$ÝkË¹þ±éŒd?‡\\{\Z¿ÄÝ³g/ã_,ip<[$ºr(Àë´Ú›€·îœ8¦tbMq\0>¦5ðF[5—µ4(KL9Æ&-k‰ÀGRK$ÃÅz,üb6Fpùâ[8sþiõ!ŽµÈ@¯ë®{ÍBŽu$fþ¼‘ò<[Dþæð\npðhÙSîu¸o9†a`Ô\0B,\rûi[e2·<þwöt5¯HÒø®ämù|ö×Û¯x#FëÉ)=h[e¹‡¾6ÓS»äë\"„»“Ã±¦xakAyR[t;}Ìn[¹¶Z¦VL¬Ÿ[¦¾qTÃu!ÍïË-.üæ[uŽ#ºÒ\'þKF}ˆa~\ZY·	1áÛóžL.¨Ñpû[[8ŒæœìaýkI©€¸ìé%\'žn©€&Ôù éG³[€)ß‹ìT0èuDWP\",L”Ç«[­I,Þ²Z²F[£êÀ\n)Ð>l=ÑlºøVƒË;O—w——~ €º[©žó¾f\'TOT¦ÝÌeó¨¦f==ºãœ&Ói[Å6àäÒ;]‚ÉÙqd¦äÝJô\n}Ê‚¸É¥¤D[ÖàäyüV…´ |‹t\r\ZÐö/]X\\m$ý’®äÛ\\É­G½Í«…¢FøV6BZµå²ß@Ûª2XŠ4Mw\\s½aò\nATññT@{ßqZ¯‹º‰ÿd¿ñøT…c\Z\\Jt.¾NûáØ4\0ƒ8Ú\"†ØÌ¥A;(R[Š“l6\\^;×ªh±z{‡»ÅaT¯‹B†©™ó{í`Èµ\\sÌqƒ)“|Ñ½ÖIJ<Í§,xLI2[Kö£Þ0äPd\\x¶c,ûÄkŒWbžŸaÌŽß2©\n‘•[e]\rÊsJ\\|æß¯ìT(tÿ2ý±Âˆ…Dn\\£‘ýÆà3 \Z# \\ˆ#G7€›‘ø1¥°ð\0nXs°d÷ÆïÉÇÁõ¶\\”ô?¾§œ•BÚ:ì{Ó–73ÂšÅL·Î”Jðß\\•283=}f.ÙÎp{Ûç£¨Æ­:½¼Ómd\\«_{ð”ã[Á‘GÛDÙ%”†¨@Xºo[tOx1¥\\±”ÁHODÄ¨{Ïd}d2ësÃIƒô1eO:´yÑª€±\\Öµ$ƒÙm]Iù„EÿÊ#¶Å(\"€Ôsc­1„.\\âlCøþv!ÛÂ÷BŠ§wnsîÛ˜%y\Z·©Y(\\èó±úÚ˜=‚0ƒbÞòœ©²‘2Öšÿ½ ”`sTR<\\óðŠÿ3í“Sî„Rã\0»Nò´ØE‹u=ß˜oïí\\ô®y›T{†Ìâ³ñ›ßMÚåP“u|)?Û\0@\\ÝÑ1B\\ùžU6ÎÓ¡jÝ€]bzÜŽ6éx+}\'rìËéÒ™] ÂË|$ä,bEw³¬¯`&uI\"¹5…à`a]ÑF’Í5&ôŠÙ-]Ÿ´¿V4âÉdB@Fõç£])…S¨wäãÝÝMëUÕX…ú¢QÔ=‰X—|ú¸]<r£ºÖ½¯ÿ¼Î4Çj\n½¨çãhNR‹z/ž>ÀúÕ]A.÷É¤…ýô‚ízâ.ãÒjŽ¸/z»¶µÆþ©ù]H½¾BÚÒÜ	Ím3ÍÝüùÑh¢ªÜ¯0x!ek¢´-]JýÆÄøŒebU«§fÈ7bÄ^p3KOFÜâ¼¶–•ç]NqýCðN­¥öÚÙ“ÑÔ}~î<aõ¢«Áûð¥Û]`~$‰¯˜ã¨mg[ØKã5ÈNœdÃjsišRÍF]fÃÝCŠø¦-\\Oa+ë°Ž#i4þ²xš$jK]®£ðFHrPç-s“òen|‹¸Xq\r¦mfÙ`áyù]ÄÚC˜¡Å€ù¹ÐPy£É(ÔòìcÔ:C#òŠ8ö·]öàâvYÓ\n‚uŽ)ŸÌSEEõ\\ô>A˜?]L”V]ûµšè•r¿¿6|©ÛW©äèŒ„€ùw\'ÎY]ýÐÀ¡øV0¸Ç5,ùMÎŒ9Ïn·rDUuç7]ÿÀØ•¨ÃYñ\'¾TƒùãÒ¹0­ “P¬=<ûû qš^ÔÁTàÈº^ï†‡Ä·>`}jÊNGÑ\\\'Ì…^Í>\"Š5éJ+f´¯iª7h&CöÏ­X»±2þ\Z¯K^7qü²ô°Ud>©V¹N³ õc§ÓhaÀ‘p9k<^>Õör=`œ¾”³·7«Ê\Zë–å·è)¥xÍå^AG“œÈ^ÝÀ7 Í¾«Í6`Ñü*þ$^¹v„Ïé”_^Nbu\ZxÀ\'!T¶èþ¡8Êo½Ì	y›Y|‘~•C\'^W;s]Ø-4§¯àV€Þ8´4¦Æ^ƒÍ¼ºå€,i•Ñ^g öK‹Ïc¡ZÝ0ì(Ú!ÿ¹~¾zWê\":Nž^mþÜm[Ø(˜²Cí«,m.^ü—v‚DÝÒG=ms¨vã^·:–U·›Ûr¯UìÐ¬ËD¿UA6Yf¿ô€Cb^¸•U§jx”·{–Ÿ+\"&?5¹Y‹pÑµÿD?¼ÎåT^ÀÜ€×\n¯0{zsŒ„>Nzéœ/Ù@ó6×R^ÌŸø¯LG›µZÜ¯Qñ8VŒW—…9ç\n¡Hb2^ÍHR7Ô-ŽIAœÄÃ¿L#ç~{¼Ú†•øÉUÄÚ~ÙÉ^ÝŒ)®n¶Táh):3\"WjEv9ˆ÷ÆNnZ-mÑµËK^äPºK:¹`X‚¾÷ÂYÖqpËËI»ûÑ~µ^éªíe2¾Œ2eDÂÂú\r®ˆÅú/Vøñ½q^<,×Ù^ú½Ãîø.ß:®%5)4N¨€’c¶j,Ö¨6|^ý×‹Ü„úyiT­™Wé¬ažŠóD#¶ÌFu–å†æ2_2öÞf\nw/Þ©¹} \r¼<ºàÞ8Zûµœ$„_ã¯M7°ÆÄ˜Tf&%Z”©€1€ŸàÎSÅ/ð-þv_|BØO\Zß­/Bã‘úlk|™S|dÇˆhe³ÝPà_,îçÎaLOÊ0lÓ”B\\ƒU²{üïE¹r§ó‡¹@4_=>7bá™\n’¼6ˆhé¶¨Pj|õ\"ˆx»hÈy_?¸,êþÀIàˆbe}éé8Æ\\Lì£asŒã·/_T_:r‚cÐöß˜ÒsÌNÌ/Ý]é\nð¬{ìz–J_duÜ÷A›#fE£*„.\nn9í§žT\ZèÁ9pYbXˆ_lbò®¥R¸,Ë\'«´ôI°hže‘œRƒâêD8}H_o½µ°YÙ±ÉÔRQ™¬_}ÇGJ1m„ö]à~ø_8ó»@ô«zdf0p`oÖqqÍ×U:¤Ç_˜È7Q¿»«0²W“éƒA‘-@\ZC½§T•M2‘G_žØ½™•37~…œq/j¤ž\nï„ï9»SÞ#s©_±«Õ”J´å¨\nüÙZ“Dü¾.ªs½A	1ªd Í²_·å6“4	šƒÔPí¬K_ß`¿ÖIË¨Ü1?ä§ÅL_¸ùû±%M€SK¦9À$yˆï«Ã¶îgŠ€„‘_Gÿ_É$@\"¡4](ãê¥XU¸jÄ³f«´Is¡òŒÒƒ_ÕYÕUsEÆ¹TÐ4qP˜îåŸM¾áDSÚF>ŸÊC6_Û×›?&mž½H[¹JðR“¨c#ý ¦Ùœ¬M6E‚à_î,@Ä\\Sµù7äl¼oÑêFÏPÛþTŽëßÞ¨G9_ö3Ì¥Èþ3ýê*m	¡h\Z¾nM·¯² ñÑüìñkXì`Œž>:‰ª6Ô©fï‘™±	øÂµê(õr£áP`·>PÍˆË™À$I+=¡Æ›0úµt‘W26Sþ_¦<pH`>´ÁNgñ¾–K)ÒËã–Âžˆ¡p&0L@eë\Z¬`T¹°.õ|	ÛžÄ‰©[bTœÚçI¬ùŠŒœ©¥ˆ†÷‚``íõtD;ÓÐùµ?^+Ê“5mèÑPþ|ó&`{óYÆñ¤hÕuA²lT­ÈN¥-çoÂrgêÌìþ’`‚\nÁÿÆÍäùR ]­›sÂ?šI“di#®8Gp`ˆ¦ºhsþ€4DœUëž.f«ˆ$™»E¥aæ<p[Ò`’í§\Z»¢Ó>f”>à-\n})€ÙÞž‡®ÅgGKÖ!`ŸË!\r;^w°®³ÄjMRU\"&Ý»IžÊií<l^Hï`«=Ø÷ÝI xŠü\'àuÿàÐ|¤àÎ™K«ˆ!`±dIUgQ|X™!áfÀ¹~jŸm%‚ZöªÐÄp–`¶r±½{R©.1çB•iKk)Žß¦5M”²µ®Õ`ñüS,ÀÐ«…=êÊ3î R=àhR1Â\ZöMâ„$¾a\\C…›äÒ‚–LÏÉnôUË[þÜ ý{\'‡Ua\n‰U”Ø~®šžX‡s˜Ç\\\r>ßcf\"òó®a£2>îÕbçÀ[º/Wó‰–tz\rl´yÁoùU€da\'ŒÂÉŽ¯DÚu9MJµúÙ5u|Cõm¤FhS¤¢00•aC¸Õ$å¢qas©²6[`œšuŠËÖ“À@W]-Í§a^®¡³äÞëÒi¤¹ó’;t¬³Èâr5ÅQ®®*aœfê˜K¿¤†ZX~ºÁýÍº¡¾3ûbŠ]L¸<7a Ç+J#àÿ\r/_ÌìT±QP×ó‰OŒÙl‘é½Žl?a¿²E<2`\rµ_ˆñra€\n²ä·{!¯’{‘½™QØ¯aÁ²¾µ~Í§•žZBvû˜LjÚ*Ahó* ƒbÀaàè³Øó zCå±…ZÝ€œ ¼;ë4ˆr=“Î˜|­aö®âÝDˆ¦Ž¬ÃmE–˜©RÁBtÔ\rÓ?fQb\rÀ“C?ùD†¿÷K}Òú¿—y¥/„å;|MñT$è?ñb-é“a?Œ<óé\Z-·®Ììr\r$úø¤Zî…|Y¾\nbGŒ03âŠ¼šÒ\rQºQÁQ@„vIƒF.3íMÜ²%UábJ’m-ý¬Ê§èýÕ5Ú53P#ÍA{¸ŽáÖ6ýù\r54bgB—xŸËÍÉ–)#éB•„_ùu®ñõ©¨rÝß®+b¹ýWÌæ·(öŽ›: Œ|ã±×[ÚKñ0°bºKçõsÉm„FdåAÁëÛŒ‹­›R•$¦	ü³b»bµÙ²¥J®4k&rÿ¢hXÎ+Äv×ýOtß$ôìbÀ²0#Ï¦í–¤˜A*>¸pjqœL*LN*\Z4ÔbÏÌé;•±Ø½Þìw\"ŸƒS§8\\z‘æð£©}ÒN0bÛQ†\Z‘êB£×ZQXNT‹6ÉÏÞ{’¥hBÜq‰bé²‹ôˆ€®9©Ü!½ÅX±ø€:\r3_:ÆÉãmcc#Æˆ|Fúw¡J\0¯`w~Á^vEpÙûLÁ••Lc¿Ùú²Œ‰:¸ÎåUe¨ÓH CÁB\")SƒÎµ{èc&ÿç~L‰Rt j>Ú¯¼¤ÇöãñE@>êðÇ¢`ÂcIH1Å¨’¥?ª‚ÊÝ\"Šû= ãü\n·³w\"à{°¢ÒxcS¦g¡î±úy(ÎÅ0^£îðxŸað&[ò5 fc`G¬‚Ãè¶òÙ¥çTÜüó­~z¢™FÉ+ÒUÈYÚ,c­´OÿŒº`H¸‡Ä;üÐ³ÃÄÒCeìß]Ï™²T¹c»9®×›ŒaIâøaX8\rr,Fü\"Ï¦×C2Sy‡cÑÅÐ^\"†ì¾“ÏUŸäÛa‹?ø»ªWSQgb»É¡Ò‡cÕHo¦›Ô“Ä±ðÀRUó~ošÂÏ³,ÚPÁ)RWF÷céª®jÞ¾¨‘?ûl\'ò84ïçF=/3;6ª)_qÛØcï.sH³á*Ù-Ø¨ö_ê:Õä€À%–;R\'‹KŽ„ÑcûÃÊ—úÏ’ BZé†Ü7Ã²ß;_ÌZ–ev‹²d$G¼™ûjw}XX‰yu2íZ=ù²Io*Û6d/eÜ\\sýÃSø:ì§†Ñø„$fl©²mÂoéjd1ú3ù\'mœzìU=&Ùª$ÔÙ?tõØó×‰$ûh\"wd5[æ&*%ô×\ràÛG²Œê8	òpSÓ-ì©Ÿq`97dBÝ‘É\\ÙE©ÕÛgEÿ8\n–·ò¤ŒÆ±z\\\rxñ/§dPâ±±ºø¾©X.]âÌó9ÉFÚPžáö+‹„zdWŒ\'MJ¹eÉ~vxÎh{Ès_ª|qúa‘Ý´ºÆeÍ¬dcÞ3b½[·]	€¤~?;\\[ÑXk•™Ð—ºŠ`sdf/–ÈdBl›ÑâçÙ‡òPú›QØ=€Â#djq’ùe^Â1wK4IðntåfVC2÷¦çþ2@qòdr\\ïƒû=Þy‹ZÐÄ]›‹¯¶ù.×É±ÆúË d€|I¢m¡ÕÛtåPžòç€¨þº9‹Ø6ã£|dƒ¿	Y——ïƒ@@›“+¡ÏŒÒ“gèÊ>$/’âd‘ÌƒÎðæ‚qx?’\'?lí¹JÞkúSÐ#ßî­ßd¨”ð¾IX&Üšîs½!µ,ãËç,\ZVwYLìdÒ0èÀ±(žî¸œ…Xð}v–ï·`ñÞ\"dä«ôWîiÛö^$À£ŸåÌŠ_òµfædòri¤\"—fvxœòÊ…Áe¶K­A?Ž²¨Sí2ÿdóNûWN½VSCÆ¨!­\\K;e!£…×Ù*T¥âdüœ·9¬¦œÓ0€2‡ÓËÿh,A*ÿ¦;3OŽA¿e4¤¤ÿcÒr}šcÙ¸eK¿WC÷s$äXgŸàˆ-e5ˆkyHµ~¢„¥­^}ýô\\ ˆf”‡#´¸6Õ×ôe:iKû p[“óÑ×Æ8ñqBåQñÄ›(3”–eTm´?˜Uy7,’Ké\r“ˆpSUÈÀ¯n¢8Í·@en±R.	OFæœOXï™Púíh“¡ÜYC>¿Wêe›YöÌ»LýÇþ¶s{T¾ªí=BêrvIFUK×:eÌEB	ª¥¦Lz®t›¾=ãFœ,ìfa§‡ZÄà{­’Ô²eÖßJ*ÙÌbV†,Cv¬b¢Êƒû™Pµ~…ú‹$eØ“î»¼„Ôr¯JQ×(¶O@_Öy\'§+Û*&w²Ð\".e÷÷Ób|(G½Æòªï\ZìªrKÃÍ<ºœ›7ñÉÇ˜f=EÄÜ¨Yñð\nò2ƒÕfìVšLˆ$/DE±Ý×fl/ÈioÖÃVÛL5ärp¸HÍ…Ñœ5!Ùf1\'¤ó)UŽÉº‹OÊ+×pñâæ‚ú‹P\rëkšÎ¶èf?ä‡sÓŠÂ1˜˜‰@cd`¹åûè‹²Ó÷6üÄfS¾~¯\'h‚,û’P.E1Jþ>3&œú`Bù(ú¬Lfb\"=üÂg½.›ïê>ð{aÛ‡aN‡¸l;)êO&a,Wfh ÅP1ÂŽ8‘jIUúØ?7zÎ“Æjþuº­+j(>fµ9ºªâÈÈ†y‡7”æè,W2ƒ)ú©[ìÅ*ÊogäÓ¦\rúW:íPžyåÈ}p!î;•\r‚žc	%¸,g-ïÐ„Æè#h;>–Þ	Œ|¡„£3ÍzB×ËVøþçûg6¤BÂNpüúý£&áÇþ\Zg¬q:æs¸dÑÚÕüÞg;74Ù£·eZÆÉ=`7yÈþœ®´!üuTé9V\Z…gV¶|ÓºgaWoÄE½žÿ\"÷{QùTÊêS{>giI?F]	®{¨°Õ[¿Î•ù$¹^#Š”ÍžÕd	g…AôkÐèD·«	€dB§(9òÑÝæÂÔ½âÉ&·g‰aóaq®$‚œ+q«0k+&”´î€;\Z\nl$–hgŽ%b]Zjùd)²¹-³ŸpœFÏþú–jŸ 9g›ÔÅ >º›À0®n)³á´X2´)‚—Ê0?8óòyígŸ¤ÎêÆ>”º Ù—€×Y‰— lÁ\rï—\n	Pm¶Ag =‡{wu2©œáªx„’šµjä5ëˆ?þ¡›üÏg²;aÚÂ¿]†X±rÆ~·îö\n“tÑÂ¹ nø¿29Ž“gÆ.Å$óo8qµ§;Z7tz?À‹ÝÎÇ°æ»¬Ú¢ê+gÎªî#ÛØK„’Q]ˆ¸÷•\ní44w“ñK£ƒägÒÑHê7ÝI€ÊŠ—|¯HiÑÅ³lCÞ²ä¨»gÛgñdv|U=ŽD²FBæ;³~ìjZ¬fîœh\rÉÊ’Û©#j¶EÀ;Õ«åèíû}Qe-‚6Ä€ôCh\"“n¿§9ü(aà›h‡Þ¿ÇçŠ[ŠGQúˆ<\"‚h\'€+•:êèu°gƒcYcÜÙgÞÜ=ÂÒhh0zN¢™åW:Õä\\jëæX½%õ…@Ìf‰;ÄhBkD]{•8‹ÃÇhªºá~-2q ®ï¼ÁàaZ›zh\\´¢¦|qA\"÷®_;^þ¯g‹à•cwÌÎä›\r{Ph‰…íãÁ•¬÷Z}›‡Û‡ßb¢„ú¾äÎ”ärÓ>×hºh<gÔÌs).ª×–¡ª¾ŠWËð0¯xZHCDÇh¼]3æÀ…l%Yæ+¿‰!¨‹†F«o^Œ=•ähÕ¼oÌ8u\Zð:É8úNäî7 IM!ì\Z·lÔjô#7hùp­S€=T_k. æ>òUÕCÖmÞiV½ïiÔrõ«Ù	§!8¥»´©@žDîa¾E„Î{i+;Nªà3ÈÇÌ–± E†âÝ¶—Aä¹´¿Ê½£+i:ˆ¡™;ÆŽ0™$Pvû‹œúÎF\nSpô2×Ö¹i`W’‰VdšüÌägz\0• *Âœ˜¨Ná·Œ^àâeipZ&ÏÐû`UnÌ$Pé9½xA	‹Ó‰Ä½üÕ\0±i~÷·ô­†::lœÓwÅË‰Î¤Õ«â8QðiÛ(½wAi}eP³.P|S§[wˆÊë ÈW¥&w€4ƒŽxi’æìMÆW@žUû}ßP—O¼õÒO„Jjƒr4çßM_E{i“Ô0“yN›¸G\\8á9ƒ\'¶¯1+8*Hdi£ê¼iYS’Ê\'’ëŒµ`Rë^˜„¸yœg4i±n\"}„VŽ»u©3)!Æ«èÈúZÏ¼~Õ\\C^&Î$i²Ê±L.1©jÉužÀ‹ÇìéÑ0šuýå/Â&ñS0i¸ý¨áðvÍ*+¸ü&Ê&@kM&Q„ÊÏÍ’iÒ›o¾âÃõH÷ÓŽ¾J1ü¥½Ž¢À„ßpµ@tiãt.%´-Åx;\n—>rý#,œìKñ+È·iäcõíÃ\'Í”Òž»>™Ï:‚”2n²Q š§n‡^Siøh0=ú£Ú]8Y«E\n*õÓ½ž¶ºÀnsÑÜˆjh\nÑ˜ ä(€á&ƒ„£E¤¸¨eªI\\Üs`|j¼ÝÎS“×Ì=£sÊòï¼•Ì¼*÷¯aâ	Šñj!þi‡¯H4ÒÁ]ýeLÂ8žð\r«ÑS™l±Ècbj0¦‘4à1@E»ä©X»<Ù\0µÒ+&ŸYj$6g¶Cj6vtˆ5år#gAWFÙžÚÅÏ#ñúYë¶Å …¯~j<öð©	Ñ©*$Ü°*s£r‡M`¬ôeÒ‹!ƒþj=åë8Pã™NØä˜T\r˜†]L®®éÆÙTÝC\0\nòjGË\'æC1´Kðhû‰b¼õ*|¬øü¦YF¹¸jI\n£&U@š—”ýÂæ4o=±Ÿ¹ñw|x“Ó¡¨ý^ÏjPV¢Ÿü]Õg„Žü2LûRSlwµBqÑK¶¢’je+=ËµhOêd\n:t÷˜©(Ùþ³„ŽÒt¤Æ%¼1¿j|TT˜ *™·ðÝ/#[¶ý;ÔU[©B?,žÜ¢`5j‚Ììá4ûCu\"ØB(ò³7Ùã\rX ÄF4ŸušNcÒÃˆj†áÕP©.ƒcHqóI<Î;wœhB‹Nb8\\8côéj›­	Ö¶ÎÐ÷-òŠó%Z²L9I~xmHŒÕƒ×jo‚9\nÕ ›Î’yê‰[²Ž1	é—ôIÉÅª€¯jŸ\Z¢p‡£ûISñÅbÊŸÇS}Â_ÆVšÂ•Ã¤†j£œ&Z“y\nær[¦„!ÌÄ‘Ö‘IöÂî}	ÛI+§j¨~Ë´nBA¿Ã-¢ÒÔ˜FüOÚZ*ÐÔÕ3yA»^jÖ¯cÁ’Q1\0Fo› fyHŸDö0@)á„CÒêjà–]I\Z–âKxzÕª^«ˆê©!bu™ñ°jýSwôK–a^Ã&œŸÒ4	®ú‘ÜîtB»Û¬ik¾i8½5{ñ¨?}©Õù’\"!¼‹AW,@zàˆUk¹lqÇUsþn¶…3\\}%2¶?rzÅB‡Ì²ú¡ÜÓk2©{zå…×Ð$µ\0+3´›éQÓ‰XÞË¼£ PþüïkH%|¤QeÔH¢z\rY‡o•6Fp“¤i0[²½ç¯€kN¨IPóõ”Èõ-\Z7}H ‚ŽDCú;®Î®>£EˆÄk]°^‰‚=®Þu\Zí¶;¾dªê2·ŽúÅkøXÍóµçD\'wâ£÷â…MõÿCÞ\náŽº\'k¶3/BþžÜó	ßª\Z”pó\"ÖJ¥gžh³•»kÓä É·dZ¶qNÐ›¯\Zç,²F\\åÈ\ZíD+ïÓkÛUËÛœ[9Ø€jóLËÀ2u¦Á9ì?u»ñ‡£kÜ]úë70TÎÞ­q§½•#¯CÂÃÖ ™Ò²0äj‘kâ¬Zu”ÐÒð¿‘Í,†¹=\'žÈôö®Ð¡Ç—:Ì¨kïŒ›P–;åòÁ‘’N3pìãê\Zxq‰ÏRWö¯Æl„šåÖ»qS)ö?¦ôç¬ëË\\ZÔ­„”Œ!†?lÚ¦­”Ýøñ=•Q¨>|ZØÎüÉŠ»ôô>F5YƒÑl!‹ƒª}[z£móª§¥çÚü£W†Ö#	±Úê\ZlLU[«d¿g.\r•ÄÍ5Âîp\rQ±‘€<ø[«vr0l_](7e†/ªèÑ6ü¿déÚÎÝpëÁšk#»lšßH¿€âìñÝ‡\r]0×$õ{øå	%O!ÑØÚl­­K$Çs0FP|PêÇ\\ÛV¥SÍ&6B«=·úÑ²ŽRlÆi4ì¿¦¡rnµž±Âîu³)K€jð¦5€æƒW	lãîˆ-¥ùCüÜj–·Ø’¢gÉ\\°rÄ¾Ï¸CIËClùaŽ{!hÉPw{æ%&ÞÖÊY0ÆŠÒ’ƒ±|tm\0‚\r>œÈ‘ÕOv<ÈÚk¡a£eéCñƒÈÔù@mòÛÏO›]^Ë-,¥qsr°¤6µVø%F²Ú»è£ãmeÑ‡_îúTG\"^çjU@üÙs=FÑ†ú5|¦›m\rXCÐ9SÉguhö¦~¶ÞRkYmeèâý¯mN ŒÂÐÕ\nTmÔßéG#Ð˜·ã}‹ZšYÕ€\"m9¶­(Ô¼ü“±y[³EA½”óš§IÁ\"Be]ñm;Aý\rdÔ+ìõ¹é„j¨7áËÕýqNýÓy	Àv\"P÷m`§Ã6ë½©©Ï³¼ú®%ôÚHj®äl“Ì¬?™–.ml´’›ò|à,Cº+èIbI$Ó¨é¬\ZH„Î£^\"lQAëmlã§ÔŸÄB:»ú‡,¼%c5iN÷›€9¯Àmnm>ÞŽÙQQ0Þ504|$8÷Ò]W¶p_ÙÆLtsm|i)m`mðI}IdKj+ƒ9›VöõÍ€jÁ|,òÄ¥m~<]ŒxLñò´1±‹äA8•z˜\0†-)@Ê…øm–oyfrGÝÞÚT^5Þ”ó\\kpðÐ0ˆ[*!×èmš×©Ùs]S7LAZ&<ìì„–³vß‚ÈífP¿F¤mm£G Õê ËÂ‹=·ŠÅâò~Í5OURD\\Wq–áeâm¦ØŠ—„}—ÀùŸ¶àBP\'|{M2ñ÷gê×‘YØm¾­M ÈÚ½ñÝ©=F§VÛ7­RîÍ¶}9½dg=mÚÓ¥\'“éº™RÒ€ÒŒú*zú#:³×ö,û`$âcmãú`ek}Ã¢ôˆyF¾[­ÿöuÎ\n€e›˜²²³Å^mý¯¸ƒÉÀè»jšÑö8tÉ—ÓíKü\r±¶»?×G*¤znDs&UñC”Ôƒùn},­íií\0võ•_¿l\r³än4cyp¶¿}´í´%4ø¹m‹b&+uvBÂ‰¨n5ÚÐjÂ†Ax3fL•{ÐÃÁ“÷éiÆŽ9¡nB „%EÂ¶>é9d[[}·3ä¹+…hl_›nLÿzí<æßkÞÉ…7€k-—\ZAåAD×¤Ñ`(2nZŠ\rc÷ %èmGÔòâV–@mâ@vTàûIJæKn\\ ù¸§ä/JßÚ-+ÔÑ\rÎX*JŸ¥„iúHndkè.ëCz]É9fi0ÚñÞjÏ\'Y¦G¯úg>npgœgðûzó gº5Ìs.n5¢†µLŒWÂ4œ³±nqÊ0Ç#†O‚}À\"Š´EŠN„t²ž!ª®©CénuàúÐ¹ÖoìLÏ³¢óSoïcoUFaë÷[‰×±Þe\0\\nð£TÄ‰IÂè˜êïv’ÜêyOiÇ’4‰ªMx£Ÿn€èÅè-­ÇQ1H.x(jÕ«8ï¯ÇXßÊD Ánˆ!¸5]òÐXö¬ë­›ó¾èSã;Úu<}3U8Þ\' n”-‡yu_´¾\":~I•8õÏ*2«ùY‹rƒüã5än¨ì;àNæ9€@I-Åz®Ì¹‘¤>á™ØôGqÅü° –n¶0í¼oF!ÄV_1\'Ÿ¥”x¨Ähs<z=n¼¯ƒj¸wÛcÃ=ØÑ˜þZ®7×Vƒ=urýËhnÓG0’%E(G&ÜWX†Ÿ1tüF!°£ÐÝäÐnü¤iÉL&MÙ˜x=²ØN“ãf[¿y=ñ/´So+UâYûÝµß›r0~x†¹Os¤,2Ìwo‚°”šhæõQd¢MÂ\0…Ž;HÕ†úpïÔ7ðCo\0ˆE”ÏÅ¤üCwÊÊh#9\\é“½¯¯|öËõÝo2á‘q÷\"ë,Hf”!O›þ×¦œæwZ=P¢Lo5rášÊð à+£®öÒ}¾ô£Šo–38€øJÌo:G$ .¬\Z%è©Ð‘ËF›’Fªh‚SÁ§u”<¬oKSñÛc3çÖ÷¿úY¯Wö$ÛÇyæ6Vl21@˜á9Á>ovQ\"û˜„Œ“c4¡…’ìyI½ARÝéªKSUo‘QòÖt\'„ØFæOS’Ú˜Û‹¹Uâ.Rúo³›}\nd‰ÆÖ‘«%?„ÃþM€ì›ªõ¤ÿÊ;”·oË×…¿CHË÷œ€laèºÕ˜úqÞn‹F}Òúuoë£Ö‘çRà`#Â:ÙÖ¥6dÇˆ›8ïú‚ÐðÈ\ZoîóxõÔ6úÛ}DPÿ\rM˜bèÂ1aõ¦»Ú|iáN™p\n}\0ª]tt!ù…x° L\'m¾µ,iÎñÇfÐK#$sppmµ+Ú>ã\\#J2=”)ôÁ\ZØÕXÓÓ®=P	~rp“%h¬›ä¤Ô7¨=×APºÍÁÃc(@Æ¼›p%{ŽerBÝëÚ	¼Â…Ðd>HÞK5œÍû¬-c1>}p(%Ýx5IYéKüƒfM¤Q	÷Ú­£L_:Ì÷Gp7RVŠÄŠ:Û^Lî©~ôòŠÒ»:äˆØTW—ŽWp<D¤Ê9‘ÙŒÇ	 Dp›ëH2†¡•LReGþM«pLdvïX3\">ÎbÇ„„Yó‚_[M€Ïµ\'pó0ð„ŽpTc ŒOj-åÎ¢	suj®”4û¯IýTï×#°Á‚pkºæxèƒÑ¥LÒ—©í”)òDîÌA‚z‹Y€n±Vî8Öp‡~žçˆÃäŒ$\ZûtBÝ@g™Zz^L¦éÍ¥pšˆyüÁ²ÊÿJz\\ŠEµòŒHÕ ëT`\n“ˆ—Ç\\7p¡£í½Ò%‚Ñ˜È®WÔzìîÌ€+QSrë=«·:À5p©Y˜Ñ¹!eóu0vûß?.jú¹Æ[‚ˆ,Ä¨†!•pÁÈm£Ó˜´DäÖåÞ.už“IdnÀ·‚¹ú1wpÊ=DY\'cq‹Œà·Å­gawð OÁa<¤;Ö9ÿ–pÙuæ-iŽì,Úð€’pŸñWÃç¿c}hÊøpŒpèñëâ2ÜWÒ|Ô[MQßÍÒõ‘Ww‘v$|­CpýÞó+ü¸ˆLÒúÏë¼à,þWyü4mâŸ|Cü¨qÇ,–\0É:ã>|¡«˜ÎAC˜zßÂ½Ìlq(˜—FlÌè‹—njp¡Er-R~ÂOà¿¾SN+Kq*ˆO×DžšlªW2aëÞ\\ð,Dû%1<Âè–Ü­ï¥qq=ë1®‘#ÿ;°¡¹+”²Ù\\^ƒ‘‰”p°$ÆùºqYŠ3i\'ÓÚG›±ã¢C–?o(÷™˜€\0\"+I}lq[8×òdõƒ¸èwŒû‰ßs˜›#­bþj:75ÊqzLòkÃ\">àÙEÆ°zºx»áQçe6ú´ç¹éqzþ+£k×‰Fzø3“Ó7-¸R6>‹³é‘ÃÔ#n&q}¤bN‡Š°OÂnœžYV8èYõ¥R3SH‰C\rjq‘¼Ï‘ùþ\0dÔ@Ð›íˆ0l»,çëÿ‘¢Ö¦ètDq™CP Î!Ü3‹Óü×ëÐ°_ d‹	Ç¸uu–…iŠGq» YŒÆ±ñe$ï£irhNF¶I¥lóŠ´,ùoiqÁíÊ£uG(ëŠaVè…7fÌézà£îñžL¸mÄ³qèþ$ÍÑ1WÖ‘û·=–J=<¨À‘Êùí-\\#ÆÁ¯r\ZWèå	Ü¿d,ÖˆÿðL_@¼àJ£JA¨pb\\·©r±<ÌK§ŠêeûŽí2K¿­{EÃ…˜ºóôƒOòr,	RúB—¹“fæ0ÿz^ðŠ*H§a*âˆ:r4(^0ò¿ÍÿFÄ1°´È¶s¥tÑ\nr´4¹Îó¶rKX?¢kz^C…Ìˆ9X\Ze×ýF»YŽ38‡_ýrVÛj•-­jnÎÃ[MÍñw\n=pÉ²²d€4¶æcÚÏr_!Ûá¥LPpÇf<vsåß$â\'âú”â¤ôèorl[MÃ‡\'’‹…Á³H«$•ÅÝ¹§>ÅQŸ_ä¹r®åbðSä¢ˆšÃ%VŽÈŸV[9šn½®!ž„Ïr¸„ÕÃYÇòè\0˜jå‰ùo;ËÙq>wÐ,Üuž™rÌûÂùoZ•æž`°ïa%Ò,ü@°¶ûH\"J7¯xrÓm„\"•]=aàn$áà±7-j\"ÅÝ\"Ð4)NMrrÙNP_;æ bˆ»0ÛfÈL\"9u¡éS‡ÅåÇ,ræ§;´íÍ/n#í~Ø†®›—üªæp…$`Íš¼W}>rõQ[¡ãûŠOð½ßßGOÐ€\'Ô˜L‘—®±Ë‡îrõ]À`²8b«ý@¼é#T€ãŽFè\'w?Ý’6rø´ß‚ÎCZöÜÄèóîðZ{ÁÊL†¼!¶(Ûî’€Å;säµ#a\\±”’ïûž8Qƒù0²súlÊ}ß¯]Ñ6s\Zrµ:³<[×Rd™}:ÅYd±y²(‹Ñ©P€\"°äPs\'ý†j{õFCäºh™¨Ì\'GåìM˜g0À®fžs( Ç8¡(›äƒ\ZÎ>e6¡Aˆ¨RŸQ!3´¾>Ï†Ïös+ˆ\rU\02äå³#×\Z~¼zÝÝ€hèsî˜Ì«s.CU¨±Û õ½MË^³ðoSÌF8à6Eï¤ò»ûsNÐlD\Z5Ì‚Â2¿G†êW©ÏR½¥«»”FÄÕ–sP¶‡Ô3ã4«	5©²>Û²#Ãv×ñÙGÔp”sPûÔ4ŒÍ®4¥­¼qoÍ\"öF\\	^:QÙ·šÑs‡ý#XÛ–+pFXT%?œ?¥¬crS¡yNÎº&Iþ\\’–s ˆ”_£d´Ye‰kžP¶(¬HPÝ6P´Oûs¨DV‹iæšß¾ý[žbÓ*ûa—VaŽý	½ ¬ëøs²¿U”Œ$$ñÞæìVËògþÏÑÈb\"lx°mÊâsü2—il)1äy¼þÝj¤uõHuMÔt5(Iñ:ÑE[t¯*Ì½vdWã;1!lH²ÇÐì9ƒþ\'<«	CÃft›lT›^´âû7Çå‡?1Ü	[à‹]¨øƒ¨#TÍ#t:srã¶9øÕë¼caË>ýS|0õàø+/\\3•j@tB»ËyüûÆiC8Í¿ªžL4›D£QþÌî\0½oz¦tG=9’\0»“a·Ê®œéb>\Z€O™zò˜cŒÏõ1Å}tIqóÚ|\ZG¡wPÕ8±^6Âõe…NÙc“f	Ít‰rX#\'…ùXlmRq{ô¿8·Û8FùÜñ€Œ‹tÀ­Š2zèv´fû#´ ÛÆ:M´Ýâ³‘{%tÐ•ºsÇ)W­j³Dr¼™Dðiº¥<¤Ÿ6ÉN§ÃùFtÖá¸¹ÚÁ–]Þ¸º®á«H€ù™ZMm¡ØÜõ‹Úmu\r}[’µ-·È™×BÐúU`BEÜrZ‚nˆÈZð?*šu«…œÈf®KìÏóM· ]¶å=_mA98¿\0©u Nr8Äãö³\r1íæ\'„p{ñqbs/þ“¾†¥u#gTdý.C—ü¬­ØùæYg Ð‹±UWžæa{õu)Ör×Bæ.Îp÷óc“=ÃÑt\'Ù×s)¹‘Ó<Iu-Ñ£‘¼ŽAH‡´Z·64Š?²ðÑ§:á â¢}u6,]å³gÂ8M÷ÄU†dÍ]8µ7ÌNXÊ¢©‰}Mnu?|ŽPÙ4¦™TVìm+óìsÏü¨ù”q‡dm~)u@?î›Ô’$pû*½%ÇËãºër(b=ÏAéê—iòÔuƒ€¥Ã=Û¦µ´„íRnJ+^íãZâš\'=ÀÝíU\'Œu‰Ÿ‚¹@ÒüÝjñh´0/å \'0O¯Mu›;rõŠjùÿJ%©ÊÆ0$½«ŸU•CÌ:õ\ZY!uœè˜#eo^3÷“|xˆ¡„ê½˜ÄïžËPœªu	„üx¥ÓÁÐ{	_Eà•Ûd(^äš6uûõ™HßâU?/:êº¨äAw\0­¦x2Úš÷pÆ>Bv\0WbmA¡[¶ë8i¡EâäR¿S0E¬`7dà~›v\0Çá¹k‘ÉETvÒ3dx“eÊ™…–\0z?`•¼œv7cš\0|¼q[jëQ‰[&LûÆ—¿PÌNú¢lvË9ù\ZR\r…2ôó@¢ä]3‹˜z#\nòï¿q\r3¾vÐ\'æ2ÐY./T¡}™t b³HŠ<6ÚPy-ÜvÈÏxggïgy)Î¦ÿÒ¸s!ï@XQ¢Rc1ŠFv.”Î¡W¨Ô»lq¿HÑÓo‹¬r\'«Jm7Ïbåóv3)<ª‰>÷‘ró¶y(L¼1üyUé»\n©vâfãav4Zß}k¯ ÈjÅø>XÒÔËš¹WR/%jð†5t Äv6œ\\ãÍyvT\\MÁŒò	FQKG€u0ùíÿÜv?Hmˆ®rÐq¿\0þLš‘¤Ü>=e\nS¨óŒòR‹v@nÂL†Öî¢!rëìoóî\nå»îòµÚ·¹¦ÄºvŸïŽô!ž³ºþ¥zÉß¨ÆA1Ä ÃüÔ`©[Šñ³-v°;aÿ\'\"Ís Ü{„Ct±(~å+ò~muÞÂÊ@v¶|ËPu<>›n4päR.þãõsI<ÃÜü›¯Àúv»Û2áÏ‚¦¾Zû»ª7»“ºQóù÷¿½XwF€u}vÞ{_5Öô[átËZ;a+Ì¤X•\nx\\€õò&vëÃÿa-iQY½ÐhJt«	ðÏHiƒô”ç–2&ƒi~vòë1RÊCÖ…m²Ú×žRÈeV98¤¬ÌxýÞ§w× `g0O›õù±…!’·£+ÙU\Z4ÍÿjV½9woHpõ®¬åùÝÃŽ’ \"M^­Y\"ÎÿƒùSÞïˆÕ“§w¸A!Õ(vé.Bc?ð[àËD\Z;v…ßE”U¥¨w&C}5QÙ’×¢ÿuÉ<Ø4Uw Õ+hñÖÝÞLËOŒw0?±pºn~(§3e4«þþB¦!QwÆ»Lb®¸w<[ËSö%l†n,ó-SÀ~ê¼]MD¹pÂÇŒÃˆµ¨ðw=c^©:Â^N¾[°Ž äX“%Ê%NÏ,ôwDiÿgÅk\Z#¼ïVçJ PN]¼»	Y\\8ˆdÊœwM.ëç…#SÖ{Ð.¡›íœœ½¡D£G8óq(µFÏÀ¦wP±˜:B²!›‹nƒ¨$dÎ2e¸ã|6Ó¹Ñ®:0²ÊwSÄt+°\Zï¬®HH±ÇÜ·z H„–oËõ\'3{”¢öw]<½	^ÙJúdOh„¬þYþHª×žñ£t.ä¬(@,wfÆÆ¿toÛæÓ‚XXGö‘ì\nFÄœcIsÞ*ß¤£wl™E\'~ÜN‘\r4dAËŽ¯@¸7j;í.¡šW[ðg½‚w„»àG´’TÄˆãÑ‡_¤|\'K¿\r,½ã#scw…qï•X¦9ß\0¨¢ª§ýV\\äÀ•½éÓ%ÇÓtwŽ~B¥Í£aÂÕ¨1ÑÔ¡u?n·‘ \ZÞùöÆÊodw·c4y¡ªÍOù.ÌüÈ~H—½{æ_Ê—†VÐ“¿wÉ>Sa¾ÎÝð	Â?½œÌœ™Õszœ°§¾‰ðiÃ¾wÏÆ\nŒˆí~;H4ÔÇœã/tÔê«ÿ²_vîŽi%]ÓwÖ^q¹ˆ92:èâ§×_kÞæÃ_]¤z`Šž=*1wß¹x¬€o\0øÙ(üü¿+%õ5ëBœ¶BSrl?!Gwå/bÝ±\n]Â\nANŠAº\0¹ÛÎvLÌƒ¡Gx#oC:[ÒL6lˆr€z|w´Ç3â:«B‚=½¥™x\ZÛ“E…ž¡\\kª!\n\\D‰º6°RˆÍÜ~—x3z	lÇrgRMqÀè;çÃ¢¼h»À¤0ü:Ó¶x3‘Mé1«Ÿýw:Ìª‘xÐðM(òyð/2ð®Ë,x5¨Ÿr#Ð‡XtÆ%JFCD‡£±û\rÎœØ\0ŸÉÑxKPƒÓéØù%ÝL“aÚ¡ÚëUÌxÿÆ\n¼GŽUÄTäxP1v“£ÜÕË›o©Ô0{ÏWÃO†I- z²ïwCEâxh@j†±AšÎ­‚®Î°ÜhÕYò*~itÍ\nŒwé±\0%x§Õ$‡ä•P&Õ}ô‘`\\QyGpr¥Ì*}9Y‚xÅ·(í²µïG*&ýÈIAvœÑ„_¡R!‡?ˆxÈˆ\'eöîÅŽª4m#ÅÛ8âÕu¨ÆV‘hþ•û©xÍoÛ?‘!lN;8gÜ_€¹[j×œ3&Î‚q°3È¦QxÝTÀßÈ±Ñn¯^ÇÀJn\rC@ùëÔ Gú«\\xèö•»ÂS†½ï‡Âùn]±ÞBƒóræ½/óÝu<\rxô—…âYãÛ\Z†>kªŽEº¯­M—R6.‰™ä\r[¼îxöl,Bê³%æ\\°‡O!šó¾®S<æ³yð¼¿ÐRÅÀúxùÔ´W%\'7&\\az<’ AK×oÐ% |7ë¯ýKy Ý£¸x#\röëôjÙÛ¤£âEäTæCœIfà›nZy-ó8Å¼‹<Ûá¦@<]Je<¿w^Û„à½CY¢0æB­y8‹Vüx^„î·¡ˆîkúåj“¶ONlì\"3`‡y9èÖt­û½º$ßJˆf³¥ÆŸ»×çÅúÑ\n[d‡wîyK6³¨hà„®+>Aî”ÁW[­ñ¡úÜ×,ï1/ÏÁyd-fÑr\\áœ•>X­1¯Ê -Q¨ÿNÒyr:\'Ý?eÑO–¼ŠF¨Z»©«ÞÆô¤è¯®\0ž3¥y—8e„—ûöÔÞÝÖæ(Š´™—¢@ß$ÿòáÞk(\Zõy—ãˆ”‹4Ét¬F´Kò ö¤ï¤v9ßgö>M@€ÒÇyž¬„‰Ç§•8=Úuï˜<³&(3‹eŒ¬_Ü`\0„¶y«Uñb‰\'d04Àêt‰‹o¹/\Z+ˆñ]!Îóèd‹:y®\r!²’\r´s|Ü°k¿FÍËÿ»a2Ú¼@Åî\Zy¼Wÿ@•ãÞçÃïõ]ûaíÁù¶õXÇ%©T†yÉÜu¼~ìû61ò«ZÉ\\ÿ/[çl‡ýÙü(yÞÊL$L	rj™küàKƒô÷‡ìôÚjVx\0IÑsßzFÍ+Š1¦@‹Æ,¦ã›Œë0ŠCÎJ£Oà!Ôz‹Žñbö¯ªÛèø­¯Ö¬Û³yg¾FbçeEÝ=º¼èzLj³˜äR3Z\n†\ZÈÏÓæÐ“(ánfÒ\rô÷¸z$p~ñ»=PÛp\'’»áÿey¹èK!v^kzP¿*$	ÿõe²(WI!–[(„ôŽÜš>< º‰òzUm{‰Ú¿Y>pŽÀÖ¥x³w\nTÏmwë\Zõ~äìIŠz‚÷eˆe `ä~Žöw€úýã‹ò¼G$us4oÅ8z’Çó$²E†ðgÒã¶gŠ9šK93)Uó˜¹:ÔSz¢_ÒJ¯?Qõ)º”áÐÏÐð¾aL^ã;V½ðúæzªr…ÏOU]¤LÝWq$¿»NÐôAw¤ ½ÎÝN—zÉ\"Àö|‚5Ü—§î:lW8]òPübNþC~zé-6‚ŸŽ©i	F<>£Á’LO<kÔ¨1\n˜r\\Äzí™kùÏ¤c¾Qò=’ÔoJ)ç¡Ö\0.¥e©»2 Ò,zôHm¬aøµä~BÊ;@«ûlõ‰\'eÍðÛ¼sDÅ‘;{¾3ø™löŽpª^÷3ÄÚkºà;ÐØ\nìkÀúè{÷ 2žwø\rOHÜS‚uÜŸn¡±ÓŸÜ¢²»›¥‘{u)˜£x!âD@Ÿ|ˆHÇFÑ9ÝBu2Í\r<Õ[?{5úyÈ†dj2&«î =IàâU,qC”<ÂmËóU˜œ{@šà¤¨ð$g+ö•E’‹Àäôèg[r3òüŽÖ{MÏ3±#ãô_B?nÎýg²ìÑ<Ûvw-i{\n‘í©{iŠ;|-#qYædð_;¦üQHª\\©µù‘ª§B%ºÕ{saˆÀ¼VmHº»•¢û	Ù±+ôr§<Ä¸T;ä[‹{™“\rÅ›¢9°Å11ªT_P,[DÒçý:ó¿Æùwž{¢n]Ö\0Öˆ˜Ýn»\rÏµôÉ<§wË·X)ƒàÚ:{³„,‚tã4S)hùdŽŒ÷Â;›}KáƒÑ1á{Àg/èÏ\\ÌEÇ°\ZèI|\'á„›D·iûê…!H{ÄO”Wì=!ÌÐW\\\0vRý¿ª&ÿÙ~GÊ½ÍÐ#{Ð©NïäÀ±7¢!QZÃ\0EÝ1ØÍ¦ÑûÔÚ¤!gÔ|‚…˜mÞÉ{öcDà1Ò×\"D]]=ØÉô-c\\ƒ|]Ðo”›(jF\'þÀ*À¶´áÙ¡Æ—îEF$K#|#•¾˜¡vœ”€¯h`JO™Ax®ÿ\'¼^Æ|(\\‰¼QÐ&j™‹\"†ˆ’·n	ô\nuÕÛÜÁÑ |4rc¦ÈËDV*Àµÿ¾¸{’3Fø|E¯d™Ë\rºqÐÈ®#ü9¶žÏð\n®Jìêtï|F¸Y÷c~\'¿B Ž_ïõ-dlè¼0h|QìhÅ[s†ob\"ý¶þA ºf/Ö$÷å|ýœ|U6çs\ZJZýÅ\rà~5ßÜÆª\Z|ºßæ$Øù¡Ýš|Y\ré¨:l_žÆ™=§¹Ý¤.M\nðÇ×º‘*¼|bà)MGA\0ÌÊ3Y\0Žï«öÏQª§ÿ°½yLœ=|qÜ7r’œ®ßŸ÷{Ç,À\'‡ÌŒÎ\n¾À_ÛÅ|‚&ë•þ1´`À	••Bò	ßNt-s¡ó e[|•™\Z$Ò\"«_wæB°&iØòt\Z|ª³†|›@&o•|ÇX4Pûu@¦C¬oÕÙ9›RŒËd³|£zp-€v¼ˆÊdüÝÕ.Š,[\ZÈÂ|Qëb•F|±ÒuˆßÌôÄ_íNacýÿ˜µ:-·Ÿ•;|»üpÑ¨²º¹7{Í+¥ÃôFí;Óé}ÊU¤|Êƒ[ÃÂ„^BcxÍ‚ÅÊ^ˆ @<=ð·£FòDÏ|Ë†ðÓ°P—À<Õµ>ºÔDdA.ÒG}ÉÊ}­_|Ï…z’á,Ðj=g§È·ô	ŽŸÙðê²úTF!w¨d|ÓN!x¨äV$”W8qIA©öC]1!Ó’	­±}^ä¼\Z¥%EòÝ·2=¦›cûìÌƒP÷FÙ«ÅÖ}ßÊ_‚ã˜þçÜØ¦b¿qÛŒ(h=æFïÄ¼}CYÒ…³8Ö#j<¯ÁÙëQ\0Æ˜:Ü/¸DÊ}DË	4?¬¼Žþs¼·.M¹ç*‹£î{TªÈ‡¸Fd\r‡}c‹ú±[–/ÒNHÊjüûnò‘‚Ã¾ëL•\ZXm}eExÀêíI‹Å<°»gB\Zù9÷skfÿ·þ(hº}yŽì#Å©¢Mßss˜‘ø®áðD£°j\"Ù}{þ€q}•”P•d,Ø_PšÒ9¤1·+Bw•†ÆFŸ™~M§ù}Êž¯Õ4!ÏìÊ¨Yô6Y%ûdX‚SÙ»¬\0Gµ‘}ÛÂ-6×\'°f¦nT Y@©¡y_{|nŽ<ÇèÈ	}åm™-Ö+‘Ñvi 1¾ûŸs„\nŒª›U¢÷¥‘8u}è)H@ÇßŸVbR\"\"Í¥Ø0×¹ãöoüµk’¨¸}úŒÞ	W€¸úb‰2ácf©HBŽ£y‡ïuù©P~eý2èƒÒçý4x¹`›ßéâQ¦x<C­4ÆÜ_¦~\n-5ÂRT½¥ú¥ø×w4Ìê„}3“}w3&Ïy7~ÃCp†¾V_<r‡Z¢þJ†ý‡GÔ¹?Î¿œ\\~>,äO0FçÜÿ2vÆF\r}ª÷Éž“êÀkTZ;›ªÓ¢~DZS¦TÌµöp-7êEev_ñQyšm˜K\\¶Œ”)p‹~G¢6œ86ê*“Ùç£ü\" â§Œžf\Z¦=^×\r¬‘~PjgkÎ–	üöf:§‹\"ÙvEî¹Áy0ÑsÕß¤£d~QoEÙ3RoJ¨9>æX£•èçÎµÇ\"Ø‡Ü1ƒ~vÝ~Ðz´S5„ÞÈ¢«Œi½yˆ®ŒXñpÖðdH~x«\"&/íÐâÛV¤ò¢!¸ c»aÝ6Ê¶ftÉ^‡Ø~r §‡ˆ‘Ÿd †KHqŸá•#ê%´Y¿Zê—‰~¹ÜE»UaáŽqRh}Ÿóìä?£B@Ù:¬‘ä°§†~ÆGl*h$*V«{M¹&UlÄI¾\Z\\Þz’¨™~Ô;ÂYì¤›±N³PŒÇ¢±lôÅ&©4çœ%\0~àÉ)+:ñí ™1Å¬Øˆ\"la@M¹¢ŒSÓ½kÐÃá~á·Õ„¦:ˆ×Ù«ÒÚ\r…rq03aÍ½¶íÿä!{â-ð~á¸v—œÔ<¹gz_¦çßÝ‘á	RC	~ž5B[1E¸É_õ®ï\'ƒìÀ¥&xmóò øfí•R2Ih+Nq$,!%‰>o•5ô&qœÚëZ—q-Sœoˆ4¦PÒÇ9ëu›,›ˆ£ù*á3‰æR®“ W®IÀL\r9;`\\tMQþ¬Dj7iÀ®D–ÂfbaêÞ9SžÁ%â,#ìÌ”¾¤Ïñëc£~ðrƒÈÀÇrÈw´CpMñÅ\0©w™º‡dÄJª•]@øÆÈÝÜ¶¤eu©¶_³¯öŸ(ŸÜ¨ujçÿø«››³éÐÇp½PÏóœŒå5\\†–ðÖŒþ(×DÊÖrüˆñ‡‡ÅÒ3ñf!UHžŽåQà^3þì\n“µACª“’«Äásÿ¤u–<œf•8sÒó®l‹pÝZþ®(Fc1÷\'•€\0$6i2ÔnìÉt™òö_‘oÃßÃvÍß‰pjâ›ÞOYv€qQß,|äa6¸Êíè-=SÖ¾I‘ªpdÖí€%_#µûÎåŸêïkCÓ ! …!òns`»)^a€LîikýÐ8>:Gõs ­à^êu`ïJÅ=TÙN¡`äÂ€Q5cU±¢ÐFa=åOÈòœÅŒèÜ°ÁTõ®\\h€X…8ÝÓçºGR\0§z_BÃ?<(ôÐŒeo·€uÉ:Û@Goë5 í¼—{`ñåºdQðz]À‡<€{#¹G®Œçææ	;€c¦¦ÂÆ\\73!Ò}Ö\0´20€‡ÍŒšã¯B“¤i¿\\5,¦k?øL‰ÇŠ*_È„çú€‰àbÇu%dNà¬âv3Û tp>?X?æl:\"€œxÍ9®à‚lPîyf¸Iu”‡™&¹pË3œ¡2‡¾Æ€¸ñOkÑh£WSŽbÜÞ^S\r )ï[Çe÷D<Ý€Êf6ˆ¯‘¾*Ÿ#6“á—ÚÔ:ÄcKx:1#Ù¨ä³€Ý†=$ñ¼Oè/KfÔºÅå–„>·8~3>×‘ÃÞ€ù©Æ\rY3¾¡5é)×ôæØ>FS¾‡Ë=ˆ(ª€ûk)¹Yt×•ä©‹Å¼8¹]c’>%Ú9\r’ËÏ¤Ýç€þ–fz»››Uç¢âÏ<éMhª&E•NŠ+Ñ€Û÷‹ôÐ“Hü O>ß06}ÿ#¬ù<Q“¡ýðnºúàwßÐöÄköVYÔ‡/ @ƒœ‚¦Ñëò|Û€²ž\'&ZË¥~oÆ—ZÚ–‡ñ\'ïú6g‚ºi0B±<a 0Ä²[«™ÿ\0=ÉÆòUðª0½ Ó-TK#¥ i¶>×l¶.¢Z0øKªá]Œ<Š’l>æ&Þ‡Cy\Z|W°¢®	Y|z>6ˆÛ}½¿\\ Õyñ‘«\\–FeÔS#lt^5:~ˆ/®b]¦©Š{ô©Êý.\\+úBá À ¨B„°ZåÇ3¨#f4.xÍi:ˆpY´AdàŒBÍKÒŸ\r!U3JÝyRï^£ó2Ìv *§èPL<î‹ÿßÅ§éSÒ™™w8Ø«Ü‡Si.=$#	Åb»/ð:ÝLV“¸çäœ{l©´_§í3t ï¯Ány @ã8\Z½fU¼Œé[ÇßäYà<¦™Tý®iì¼Ö´	ðJ¾]ìÚ8´NøØ»Ôçÿ4mTýëñ“d‹6„Wo›kµë,Ó®?aËGü£æËŠ¹BÇ7J?°­Únñ)ép)¤=jk\"/%>‚Ë;û¹×ÚÛ’g%@tÞlˆsÅÝÀîËjêj…rÆ‚r6yZ¹±û.÷\\þëÎžú\0¯õÀ?©`ðb{C‚\"$—v¢¶R‹âø9ãyæ©ÛÉìo4óh:	\n¡*‚fÆŠ2•×gnî…2Ià {C“[HrA\Zb‚‚ýÑÛ–÷Ü†lWÏGŸñ·UaòÔú¶ßGþòèb{\n‚ˆiáòkTðvQ4Õ‡¬úÈéE\r0E…)l‚Œ`êŸ&@ò©šºº`ü\'a1Š‰kÌ–VS+\nWy‚öîÔM‰öå9>üþ±Uð:¾\n’´ÆÕ¢\06‚‘¾×\r»Q\\¡lz?9y¥˜˜N¹q©ñJf0Ûî£‚—[ÜÃÔ;P\0º½¥X-\'*›˜õ\0Ie#Þü¨‚µÒCÑïø¥Á/ÐMÁ´þ„Óè;ÛK\nAt/†c‚åC\n˜]Ç\\ëJÃÞê½ìÞà=¯°\\\rRqñ¥L ‚è…ªpç/ˆÙÄ¤üDQ.¹žG¶ÒÈ—{õ<)¤ìMÁP‚éÑ|ëÄúyEÔ^8²Û}“îßØšn÷Š¶t²&O˜‚ôø8(dœó56GJ\'CÛ:R,;ˆZ,œ\ZFÇB>‚ôÉ,\\¤	XwêÍl4ÿ¥>‘Ío¬…à\ZÈ[_‚þ6‹.$Kyo_3Dë&QB²¥¥éÛ2ÞÏ\0Tý\\\'_ƒ©MEÃw^¡TŸw[X«j4—™¢s··®ëGÚƒ<\\Ø&eûï¬\nPÏÂ\\¥*ûFy´?¡š|áI‘hƒFIXÌF¯‹Hå¿E\Z*9Ý¶×£/B¡‹‰€Fú	Â>&ÑƒJÚ5›4ÇÉÇØA6•“#\"b2SévJ¼á@Ëä’ò{ƒU­1ØÚ¸>)T}Â…°4¦ù:¶Øî4ûSmÅþåƒVˆí½YWØÊ>\0\0qM[Ol\"o èˆ²3S¥±\r(7ƒ_ è»Y£o¦$šbµô°Ü¤ì™rÞ9‡«2é4ÕÑ?yæƒ€i‚¿>~Åf±½KJú…ƒ` õéôÚ3èÔuxñ”Eƒ…æ¢–^Õ—ÈcË|§üÜÙž4ä|c8¬\\Ãž9YƒÛ³%ˆL`N/~sÜ†4ž}?\\Qî†°CãþîÛ`®ƒéÕ¯—&m&=ÐC}ÖÎc¢”S<%ø•`øý	ƒ ¦&ýÆI¯›EibÜ±ºlª“@!´ÛÜC¦ƒ©×\'0:¢IéWU„sA«@;éÿJ/8ÔqÚªígÃƒ¶›lDAÄ×‘A“=òþ<ðž¬ñh9)¼Al¾…ÏtƒÂ©±‚|yg8T:5,uÚ„F…œjðX4Ž\rW<0Y°ƒÞ{V9‹\\.ÌIp?¥H[™sBÍHöxGq¤ZØ8/Zƒß%¹Fw<Êè+-;åQn¹gpŠŽ®þÕŒplñVöNƒèç«f–›VV.|ÄvXÓþ•N´°8D×‰ÇDáŠG„g•B@¸]B ÌyòÊq +6Æ€=¦’’_€›ñ7„kÔÃyÂ~»ÓmèÈåÁGú|F©Á¢¦:†9Ÿ4„uZ7>fà Ø«D„†—ÞiÔÇUgpþÙ©väª„–ËŠÏo„ ,«|ê$ùAßŒÍü`¤ØÉsÕÝ„¦W_øwÃ\rz]Þ·vÁXÖ„#»b£ÛxNÎí„¦£Öq‰FLþÓg~~ì4øUÚŸ+û\r¦ù  °•„¬™?Î¾zÜ2lãŒÊñ=ó€!öß¤$¡x¡”}„ºÜÜ…öºe(86 6g½PE¦¶tµÃŒ	ús«Yk„¿÷ýœþMcÇÇ³o1+Yœðlç’»©V#¼º„õ„ÏqÏ«ïp_§j§›fÓ?8omc5Ö’ü\\PM%½ÅÓÕª„ß	T0Jñ\0ç™ôÍ(=ìDÅ*ÁÛ˜ååÓµ>ú‰„ö\0âµZÌë(×¯¤Î‚ö| îÆ\0‚·#…•Š…Å¸ÚlÕsƒ@0jd2S*\rç¬Kƒ§™²³Œˆ¥‰…ŒT(¦³g’.´Ùƒ§óýt¬}	ŒzCSø0Êj¹…)wÖd‰ÏâéVßåœ¥¶¦1ËÓJ{ôôhV æ‚ð\'…JÓb´-i.9ÖEAù~Ÿ+|%\0ö…ÂìùŠ@Êm…V‘wäç%©%È: 3CQ#+gÖô›	•–e¹}×…Îì@%s5FÅ’j¬fpvñÁÄG°¸ñVýÛü…ŒMvxÂêÐ!!ªˆàîì90MÖ—‚¥yµ‹-t3o…ŒXD±Èwå‘XÁâ² ¼ ï‡xTüéñA]W…¦¾eZ\0—p›ô¡õ7¸ãßg KëzðXF¢êD¢Èk…©5pB÷Ž€#íŽƒä:N¿þÓp[·ÏÈFd›*n…Á¦7Ãdë·1\Zh6x:i6“žLf ¤`O÷z…Õ~¿Ó\\Œ‰Aj!ž^E¥h©†Ü×ú{´RP¢…á‡hOì‹ð	ögÖpª3°²X|)F}h¾9P¤á*…ú‰K_	Ë÷ý&Z2J”i;és±Àb¸š…~~:¢†~UwÏiÛ«uE™fµIrqæÒæp“EæW?œ†ëÊ#ƒÜˆ³*Ò\\ «ý©f«}·ÕªÌ±mÛ½œ†24ójºi´Ý(S3ð„¤\r25y\0²2ySÐ¡ŽfU²†^xƒ>ÿÔëp$Ö!¿péŠ[ör\rf^ãnœ×E†i±\0©ÂûFs«\ZN–ÀþÌÜaFRÈ«‰?|Z=«çp†ƒµþ¹U)®\Z±¯Ëÿ¼É!ø›Œ:¾y®4†„ñDY\0ý6È)°Ãâ|šÕ)õ0¸x†;Q[5æãS†ÉÊèÈ·¦dTKˆ:o‹ë¥VÓL‹§•E‚ì”2Ÿ†ì=ðÕ¸NÉ69Øõ\núpÿ«¦=x/NîÓ³Fs†ï/È—Ü\ZCªþŽeÜ»´Œ½iL$µ@¿V¯_%ÁÅ†þÇörÈ(\rnðç¤b|8íÖäöŠÒš¢b²‡ú^+Æò­‘MrVŠ5ÑÈ-\rñ¤×\r öJÜ<‡$ÚjŸ¡§Ab×¹¾W\"0AEßÿšÉà=câÝ¶•G¶‡/twv„7©ìKã›´ÓoGÇ§„vçÓæt™ä¯aAX‡m¦4Î@ßxœ5ÔgÇ@ÅOƒÃs¬t7—z½¿”‹Qæw‡€Š™¯·\0ýå,ƒ7‡ x/Ë@69	­ÐŠÜE¸*#Š‡‡†óÝ/p?iëQ¿ýkÒgÆ±y™ÛÅ {ßÛ#‡\\o%E9ÁñPÊËŽs„¾]¤ÙhÍ‚R;b¦E:\0‡µÖ7Û&[ˆ/=sšøcÒ´ÅÀìLúøHòDòl±‡Àœ_«÷úŸdþ+¸²%nþÐG#HÐ´%Ü˜r„ŸÏÜ‡ÊJ<¥\nÓ”—w2´§öÃÂñç¬{SU%ö’	N3y‡êÖœÎåƒð#ø](®Q\'nÞ¢¸y—z¶Ma¿Í|¢®‡ðÏ×ÿZ„83P#êèWÑ(P)ö‹Óç\n¤ÙôÕœ‡ðã£7|š‡#ü«|˜¤‚igû˜Šª™Åå´‘‡ùØ>³=ƒthº@~1²J³ÑÀµ#x9QªbvL\nê‡ú\'¬×bþ•rL¼\r8øÖ’ØÒ\\„êÃì’8˜¯c…Iˆ…~(0Ò; ZÅ³‡…4öÇ81‚O ikù™ÿž’ˆ(réô.PÆŒØ¤öÆxºîn±®GAhÍYÞIå£ˆ0ãvü¸ž6³°¬-ù€ô£Wk)(yó–jRvˆ5Ó“UþÄ“*\Z™°˜\"ÂLvÑ::	ÿÆÈ”jÊF»¯ˆ@V:™2GÛˆÍ~OÉÜ_iS\nJ£ìI>)õD3j\nˆEòšI5xpÒ*I£\r!£	Pif«Vqî‹×lFäDˆeEÀ:BÉäÇ‰ñŒê”8!Þ>E™ÂšaCÜtïˆe©Q‰s›Ç,Mz™ÖX{ð®\\[º(HfCP”A´»vˆy5åªéÿÒF·Âàµ­Y^´ªÒìã4}ù!?ˆ›~nD¸m ÎnC!Öºù4åK…™ã¸)Ý…Œ3€_Êˆ´àö_¬1å[“”ÍÀFŽ*›J‹Œ¾@-©$¥ÞˆÃT˜\0€í‡€$ïTD£MR¬ë…¹£~ÈF-¡š5®é™‚{ˆØª\0†÷Wx&¯_‡	3g_`ÆBÆw½iÁ[úß\'ˆè¶Y›d4 ‰wº£ñª°‹½ý;/u‹)Ù¢X´àÀ\rˆìû¤/_oË¡[’¤‰BÛÇÓó\nKKxm¶|¾çT*Hˆõ9K@k‘„df«ÇÿdQ0?ÐW*ªæ­˜fa9ˆøÙž¤Ú‡š·]îS³Î…HDWIôîFã~¦ç„°‰<X1g9]=-ãÒŒé‹ýý>èÅ¡0Á8(ô¥š‰\r4hþHÅ”ÕÓHøblƒœþ¨X¶T»\n«\0y\"‰aRTf‘þÅB-.ÄRc/“nµÔMœÀ—,=g‰$§(}óBâÝ®D–9i¤¤@¡”‚×]dEÁÍ^‰CAm”Ë7ùtb¡vùá[5êÔS{GåR™i®6‰K7ø¡3!˜Úþsºtˆi‹q)Õ¸JÎ\\(\'UÆ‰RÇÂ/¯\nfJ„Ãh”vi5ürr¹–\\z\"6¥q%	!‰k˜—ýQ*ú;MŠžèÁ£°uO*¼§á-\\jµ‰mkeŽw[pÔ¥1ãÌ%œ õ¸7c©p!L—7wg‰~ë]\' Î=,7þ9‡v…•Ü/ü_—¾œ!ß€P‰°wS5˜ íb#fJîW¾neoRÞ¬´«ôA¤ïW_fE‰ÒR_éþ\\e+›Å!¿ hoæ¬Ê%9Ó­Ï¬‰ÙƒÌ	’–§KW¤e2ÔP¯î¾‚–[ç, Gì‰Þ7oˆ\\;›ÝïÆ’CÁ(Û”ªH\\Ý˜9™Èfõÿ/‰å‰V©ú•Ó|Ù³çøiöˆ¥¨3<Pin\Z¾E«O‰ï¥Vo”Cu	Œ†ìš17,så·u¥Í‰v,±¿²ü‰õKóyJc¹eòÅFÂGÉÕîÕü2Ÿu™«]\"\\¤‰ù#3î\nVÜdH-SLö86Ý¶ÒÀ;¡›6ß	‰þæyOÂÏêÏ=ÃPÏåoŽ½ßÐ£?¾”§ŠÛbu—êùùÈ×”®”­®\0ÿ‘G¨\\%´AÌÇèòïŠ\"õóû¸^õÐcÎ¯ãûk™ÛÜŽoÎTŠ+%§Å$çÃ[Š[ß/tH/ŒÄ(ÝŽ2‡Š–°ËeqÇ3ÛžHë-X‡Št? ÿL›ÑA±ý$G¢í?Cž¤¿Œqêœ†GGÚTŠ|æPÂ:6«¦hL6^‰E„zPu ²–KÃ;lù)Š™„‰ª¸cÿë<S\"²ÍUÎBIï“—D\nm?‰5øfƒŠ¯ð¥‹¤\"M¶£,áO=Ÿî:“ Gà>êŠ´þ‘¿m‚`!ºl{_,D”‘L–Î+Õ2€iþ4Ç„ÊŠÅ…´ôë.z;£ý& ¨»Þqé±ç¢Ã»ˆ¯9ŠÍýÔ€ÙjÖƒ7\nT¬ÔtiCÜbÐ‰ÎOKñÌŠã¯¦0NV‰¶É€kÅØbˆX9¡ý´¥åQ\\ª\\ŠìmˆÝ,z¦oôºFÄSI‚aÁ)~óaÔFí=Àö2åçŠû\nð)©¾œÐòá}$îþ¦ì‰Á$÷•¹NÜ)‚”aãûŠþd*\'äI<Þ}‚ª)Ø»Pª*l¥—Âw‰ˆKB‹}ÞœõúÁÃs2C`»ÁŸÝh`Wâ>¬®‹!•í\"8zH›0Ñi¡ žÄV(‰+Àûk§a–Pµ‹)ºø²2\0äÕ’Î\0‹¾ý¬á·UøÒä(ríbwÇ‹9k\"m{ïRØ7èa%,qºJM0è˜Ïwé)å^¨¢‹_Î +£\"g%ç”–O0û®[!·<I9ãÃ\"¯žN‡E‹hÜ•AOk> f5ÊÆ9%,ÿ<±×îš9;]9Ë²™‹i©í0ÕøÌIcÓ;ÆåÆŠëß@ŸpÐ¥P\r{I\0‰‹‘ÿ(<C„£¿y…µ¡Ï¦]1Ô£§Ë¿D¥Grcò\nË‹ÏÊpC3Q3®Æ#9\\\n#IÕhq24›>šM{‹Þušs½Š’¹!Rd/ýhZSóC	î›“ç]_¯‹ûW¯-{ÙWFùvòv4[åi?irËzGÜöa×Œ/¸\nÙ‰Ÿp ±®RÆ?61».x¡‡l‘ö\"²>£Œ¼ŽÜ%|o¢Ê®o3ƒú®–dÝÜlÝˆàs9Œ?9§Ü:PŸkZœ‡À¤I%-öÚäûU¥?œ·÷Mü$ŒL¹eŸâ¢’U_F=Ðç`o^™FpiO@²·^/¦ŒX\røñûÑ!ï¹Ðh“æÚ6KÄw?®¡o=—7Œoƒ|<ÙÕÔ›RéSªÊKVQLn­„wŽ—ø©÷ÎrŒzdóÖêä^ŸÐ§GÂÙDC.%ÌÍ{?_ïÎÿ±zñ¹Œ‚(Î[Öä… @h9<}ÖRù=Â-ôï+K…[ã;E¨xŒå¥,kÝ x”÷°¸É~6uz°`ØŠii–7òRµŒú»¡§qøÛ3@ÍónMÜà©5Ýˆë7¥-7¤Œÿ”#“K…èT7¹n.…=Å$·£ÎqYõ¸\0þ\"M‚úå(\nOraŒHQ°ùè61…¬%ÙºxŒO[AÍ¸úëña\Zð\"`ÒƒÝ=È±RvH‚m†…‰f`´ü±l¼sžW¿BBÔÐåÂ\nµSd3•–“WºçLš+&ùìŒ‘cD`§_«eßöd£vJNá•ª¥À>bg2†ŠZ•THêFÈS}íÒ×!*‚rUjßÍk´¤$4mxY¶J _‚Ã\räðîkøÇ@7ÔWð	Úñ¤$w(æÒM€PÚX…†pCì}Ë²û˜ùãýÝª¨V.¡ŒWPr÷™ÄÖE!å“oÏ¦¬¿½IŸ]§1PCN9\\¼fv‹€qÁª\r´‡7jZ2¬)i8›&þË<0~í€yb€Ëi¯¢XfK¦×»Z H´ãWrµRkLÒéCÊÚ›/Äx\0œës”-QÛ³·¼èÎÅ#ø\0Õn{‡óò]\rÃWÀh0Ù@î²=ìrþØÏIKÔ®ˆþ~gÄŸ0âÈ£)!»Œ„Ñ±ãK&Ø@<“\n%	d§>?‰GÖgÈt!½3]#Þ³jN7è£ž|ÝÂ&?¨Ç°ÿÕ²bš>ÔÊàÂÀY>r]™b¾ƒŒ¨Ï‡3ƒ¢¬õÞ´½Xà´>mÝ>ÐÃƒOUy‘vò†H\nÀ;àQÄ±g\"·¢©WAÒ§_gÓÛsìˆëUþ™M’œ-Gm\"¦Æcµm#{œtµÓ##Ÿ‰!á6­\'D„«óõ!¢õ£Û\\Ö¡‰qâ<pZò«÷«¤q3þÀglóª™›°#¤iâUËP£¢Ó(sP°™g°‹´ãÿ/Dgˆ}‰#÷Ø&ëŽHâ3Ä&XwÒ¼Y»Ï:z½ q{ëìIŸ†<îsœ¸­›UxŠtWËgAO/©’mÆ°Brbª,çÌ}Ž71‡–­ÿO[¡“§ž\'GçºÖÁ‚d7z\r|¤q-[ŽIvùÂÎx»D!ÅfÏ–êåcàDFCÅ ]•ñ5íŽX»Q\nx¹Ã!§sÓæTªŽ„ô½PÄÂ¾ÚT1¤!Ž`µðBÝIòÙrQ˜µ¨q\"‡ã”Z¡F´~Þ¦-Ãd±õ™ŽlWê“]!“r†”tÊTÅ$MKP\0â¶žlþ¨O\'džŽ‚]<ØHÅÅçã²Ý§—‘rø@Xa‘’â›Ê\"cÆŽˆ| ßÍW00Rõå¬¶8³¥Nh.¿s)Ý7\0;XŽ–\\âtª‘•I7žÒSc4,¢O/`Ò»ÆŽ¬õ[%pP\Z¦ý›ÓÝcFšØòí~¨c£¹RøË†Ž»ViêMàJ¹\n12Åô\0Ý„´ï¨x1€Xú ØŽÄ\rÄîTé=2&{$©”Æ·`z#?@øÌ\\Å\0uŽÙ@þøkrÇíyßÜ~¯ˆÄºC9lØxu@÷ÇÆáŽáH¬þÈÎyá>7·ãÌHÖf²ãFÛ4·«ñ””<\ZÅŽé‹]sLé¢óoxEl!\0œÏÏü·gUg¦ä\nó‚ôGŽú†vãžø½\"…@:~‡CGôKE`Â^-ÔBÁ\'F*òS1?´||Çwôº–¥~`Uaüð¼ê‹=\n3ƒ-‹:o‰RFñ*&ƒ\rÃJsâJ§¤ªˆ\rd^Éšds=Iÿžá<îF¥Ê—Õ\0“âjðÐ(O—‘…ÄºhYefáÅÛmÃVrÎ%£ÏÖ)Ó‚x	©ëcÝ`³9«yÅD#îøoí˜×\r…—µ‡æëp†j@\'û%Ó÷š(ð±‘¬§ð„\r‹\"`»4¡ëÖ-XoœlKùk$ëÑ¯„fù7yÓ–‰ëus#ä†i$	…\\X„i „™</jÕ½\nÚ¦*Ï’\0œ+èØ”% ÞVé»‰êŽyw¬\Z1äìÌ1•0+ôÞ ¤ÙÜ]øë²  “ö\\¹UC_sð¶öè¿ç±!)è~Í´Ý­ñ>ÖÂË¡Q5·Æ¾œbós\Zp.“(Y*é‡¨u½’%yÇëy‘eðS¥÷h\'¸:‡‰üx\\ÂéF`fè¢s¦ãBX#ÄM¬lŸ–äWÊ\0ê’#ó_óÝâÅEÙœëL‘¸‹]ZEƒkw$Øþôh|¡çëaX¥x’NGñZù‹n7ÂT-¦×6fO°ïlb]Æâ9P…Âð½…Œç@Ê1Åü^xzëêÙoU5¿e2yþü)qŠ ­n +÷£â¯„UÈ0i°¡Ûq¡¼Â ,1Ã¸ÏŽ£ã,°…¼¹™ã•™£Ð}@íLÀ’‰(ßÍ™VZ—g«­|_}ÐU)©³87^»*¦S$ @Køò•^/T¢°\Zªé”2µÅ\"\n@+øª²èüãà\nV)-d·˜ Ž¶Cù×+v«˜®5Æ¿^Ó54­Aîlƒ°es¬ú¤ú’^Ø×¤š RúæcÓgïÚÓ€æQöÛ‹ìØc÷@´y¬‰‘Ð®*•]a²ÑÕ/¢“>^ôo</º9?ò©¼s‘®‘:î)Ù1§\"€{/†ïpTjä®Ù–É\\û‰\ZÅ?M€‘¡Ðân{1)\nü› „-‘QËG¥\Z?ZŽþ}/3‰‘\'“õÒl:Æ9±wâ):Iõ™)Â‚šÌ’]O£‘CÂ{dv”c^ÙÌŸ9Îe³§Q‘Û_ƒWo{_‘T7ÕQÌÊ‚…÷Îwû L.è°‡M ðÆê=äBÖ‘’\rå¬\0AtÈ‘Nä\r¢ý>§-¦-bmYUMe˜‘¼I†¦_i ¤¥V¶ØÄHˆY(ñ•oÙß œî­Á‚‘Ìñ¦5š5@	^Ên4èk«¸=ú\r	»_æK–Þ\"‡ÞX‘×]4—ß@™ð´NS	ªÑtžw”Ò ÿ÷aF^ýºû¥‘ìËî–˜îáE!”Ôö@Z­[æ|†ãi(~’\nT°”£MOmKÓw`Jåúñ€çÜ4/ww-6ÊÌ’ ž½q¯nJÐ0\"dJÝíª»‡R\Z5Îò,¥jd¯’\'Yˆ²BcH‰7*Œ(ß’,æ—$Þ©ÒÕÏkŒàš’3`tmœ«ý5^°7¡}´MÒR€`ý-µxñÉ’c‡›ræ-‘AÀ$Ú:T¸þïÇV¬8&óEÃ75’qÅä¨YæjY9èÚÜM–Hž›®•îEX¸[X²’›]@Gš3¦¸‡:Omo]?G¡ï[¶!YŠÖ’œáõûSß1Ö“Ñ}ôdÏQ*£tÉ/ð‡^RÃ¶Žµb’«=9¯ˆ¹@ˆÅd…“£æárŠ 2H4×ÑŠ’®JMBÆòÑ¦«}ãí\r™20‰2h×(G:è?{’°þr\"¸\0\'5Èw¸÷Ý³ó™tÞ3c‘4­Y\0VI:>	’ÍX\"ôFq³—U¸{–Þ ¹iM$Ìµ<‘4‹–lûñ’Ø¤í ¶ƒ8¶0”/\n}¶J`3¿cl6éÆH¹W“	’9z^q-ö¦û7žšïŠ6,‘s­vÅ„Te}´¾ “5ÊÊ;³uî÷+Ä,3.¼¥-ŸÃ9š#FïÌ}¢‚E“\'$$˜¾It´üž¥ý÷¯ëã&kîû -–®8l„Z6“>FÔYŠ\\3§œ8ÃåfÿGæOÉÃp>úKes!2“Y¾ù…f«xM—«Àw¦|W$Ô<‘&hÒñ•§ë70€“k7ï·N2wF™ŠuO4-@cët¢É·3´(°ü“y\"“/S‡5à øü¯M3ü8¢i¯)BC[ïÜš“~”ZWîÀKŸi7ø‘/ZŠŽ¼ÉªHz…&‹0,·“ˆ°?R-âÆÍeÅj2­#XíH¶\nd³5\0Â·¿“ˆçô¢x¹¿\"}ïv}¨ñÐÐÑu0\nâM\n×d†¸>¥á“Žƒ@,z\n™Œ¢‘&ˆÒ@]ÖÒDÝá6N‡ïI\"\"{ç4“–:g¡²þñ\r®¦ŒIýS©Älž¹Ð£­ÆÖï/“¤¶í¹m~…Yønró87ÁðÝÕECÌ\n·j1sÕD“­ã)UÇ@Õ3ªkó{];š²Èì‚Ä‰·aÕŒ“àÐÍQôdÆÿ³8ý—k5¸ƒòœ5aiÇ*äUW—÷s“â‡¸s{qÃúœKcB¸Ïˆ*›œ\0å“&Æ¼\0?wío”^HHµï^zçÜS­&^ »žF”ñÞ¿hY;ÈknÝ”|ÎTSäÌO¬cwžÜñDÙ›OeièÍj3OÐ)”ÀZÝŸi_ðô›­LÆ5>©}R%ÁZŸøÅAâ>Í%|”ÒÎí´Á@Ö‚p¨wØë^õÜo(‰éfPk\"E”ãÕº…l5ÑzƒZ†«8ìÁØàÌqªº½}\rÏÐ2”û{Â$ŒÑ7F--sâž›G2³,aýÀî?‰Üd•Iu3„ím§òôK=ðøžëV\\‹±Ô‡â˜|¾ÔÞ•9ÒP¹T—ÚÊnÕ¡c6‚\nÞ¢‡{z®tŽ˜@•;=¤JMòZàÈ}`î¥èóáÁ‹‚ùà·¬e÷~vïJ•`ØÍÝ¸¼òÂ¹\r?’† yît®bgÉ=!Ó«¾ò§•ˆQ6ÀÌò9¡…`\"-tPƒ§(cnƒ×/˜ù¿æÀ>š•œ)b@HOŽ€?þ¥5>PQ¸ç	áµFšç¼ƒì`•·À½;<và£Ä}\'P[ŠY%/?_@­e¤&«ú›•Ðý†û¼\'³õGpp2[zDªwN´½ëžjúÃ–?Låu5Reêv¹&ßÎ-”kUobE³…ÚÀ–7Ü¼øŽóðzL{·Ô{·MËTG.{©‹}¦)¦cÀüž–Ië ¼+@êÿ±>Hã¦#qL=ìëaÂ.”cUÌ\Z–Mw‰£¨æíòJÍÃ—¨ ú·õ\'bš\nÈ}\Z–Q!£áx˜‘\r5±ÙÍDQ’UäÔKÿ€Ü……±§Þ–‚À:(O.Xiß+”&	õMâ’EÞ	¸ˆ¾¬èzFg–Žùo¢1‹ù:‹Ñ³\ZžÉé°>A¸\rq–ù7–•0O|Á%6`	‚PIŽYã;I (ËÅ¦Ï‹YÎÛ–­å¼uf/ÝZú¼\rÒåÿáGüs<Öhï¬4ÒÑ–»oÉWxôª³Ûº!ÑÙMz0V_.=*ym\0ø–ÁCª{!YÃðR¨†a²\"¥š	`F?MˆËU‡°Ç­[*–Îa:Ñ&·3Ü¸<u×LJžÌP†#é=9+Fñs–ÔÖqÑÉIB§¾:®U{G@ÔBší=ËÇ\'ØÖ&È–ñq4Ù±x¿ˆr°ó*ø¶Ó¦wŽR–ZÒ	›ZëJ–öh>ÔE|7´ˆèÜb½{Ñd±ð8*ÚÍY±ßyÑ—B.÷ºõí*¢ó	òlò2Q­Š“_d_§ï,6—QñaA[þØ²—¯ý»æ=¹‰Ø	2þâm…í¼Ÿ—@êß”>Ê@ATm~FmÓ “NÉlãl>èõh—IîÉ2Y¿ÖÖ!ƒln}¿°1dåñ¥ZÑÅÅ×—K´7çGù¶÷ß?-U>˜‚»ººƒÑtQÉ+qíKz:—pëc×ñÜuÈºtV5ÆÈ¤m9\Z8Œ°Œ£q}—u}oƒ8>&©VÁï½ý&NÛAµ²ò,\r™ÌjY—‡ØÑÒnxIvæIv°òóÔšÐë!2q#&aˆ“ñ;Lù—ˆÁl¯ðÊ$ã®d£š3\Zå&2Ô	%¯\rÌ%~ŽÐ×W²—–‹—+n}ˆÒÅ`”ÿ+j‘Ò	þŽßQø¨Cè—œÈóçØ[\"!ÅvÕO\r#-óSÕZ8(ÉƒA×Ò·‰äh—ŸÙÙþÄáÉ/¼°vàà.OÁ¼2žW‡¶ðÿ\n—ÍÄ\n\\yqÐÝ#1­˜êŽ6¹&Z\n8ûÓŠ´‹ý—ßUuBåà©‹‚9úELÔa=äTì/ûÐ8Ž,i?Á—þ¿çÏ]‹êÆùÿ…‘œ‚â¥!zD–W+õ®µjJ˜äÓ(r ]¤Ê\n=+À’ÉWU}O/injõ4Çu˜9“Ï¯ã\\-£/O²Ò5dXS^í`æM“.˜NÐS±IÆwº*‚/\rÚiüwà‡lžüµ%Ñ7˜Rêc(òZ=m­±ƒ“ÊÀÛ—šAùÄñ\'Ìj;Š§LB\"˜^Ò/µ±:Ž¿óqQðÆoBßf õl¿G2ÄœŠ˜w¬`’wþ²”níõN‘¢ÿ3=ÛÍŸhKr¿rºi˜ŠòJŒ‘8¦[úC=S¹Ñ¡Êk¤Ó{£Ï[„k˜¥ìF€ô`“Rl>§Ä)í“†oÉ8³07M¥R×nÍËï˜˜¯wã¬ÕKÒ\\ÈiU¬VD}Ó3yøœ(åîsŸ¿$ÿí˜ÊTßç±»a‚	A²a½ø| ;žTróÉ¯Í(£˜˜×&o{÷©!¥ùû2ëoÊªŽžÒ’ºçD^Ð¯D1˜÷¹C±«°ÙôoMtË}ÑqqXAÖiYQõÃMÞ˜ú\"#¢¡ØE©ÉòJp~&w«¡»¡® Æ_‚„Ú™6=«Çïuqùe4_oq–Ö‹tp^B¥a@^#š™$ªg‰™…Kýdãù²/›Ä—5“˜\\H½RøÔ]Ü.™H%Eqùùãà £Æ©cnœ­Œ‰\0»¬µÇÚü»™pˆŽ\ZYvœ1]@Ã´©ó¾õø“Úy—$]‚Ô6¥ÿ™ëìo~†Ü‡÷] OL÷HP¼xò	Ý9lK³S§ï™™’#ô¤ünØ6¦½@#Gb×bµ5_é*BˆpX¹ã™êÃ[u\0T‘9££ß< 	cò&Aèw¼\ZíEÎNê™ñ£Y°—qÎÜÄžiù¥6§-%1LË­Ý;\ZÍþ™øò2’ãuYë@\n’¸âWèÜ‘Ðº¹Ö%?¡í¾òš‘Ÿ–;…`,èÒÄCÁÕ‹ñúBè·xóøŠšVõu(|ë«/§ó9¬µ´ôJúÛ@û“¤hyš¼½¼(¤¾KË4š\ZU Œ+h÷±A\"ó?ò_6GAmšìÞšÌè€!3¿hÜ„óþ£\"äìVj`Õ’š+ë*GÐ6jÂq`8î&R1`ÙÏóý\r\Z{Ûøƒ š5y¨G‰\\ú‚Úñ0ÉìM—áx[ÅøÅ-òýª¸š<P6Y£‘êEÅ[3oHSVÐ˜ç E]:S*ÑËšD€ÿ›Ï{vJ¯Ò-C:IËJ™*HÇ]½˜˜9ý[šFŸÃ|A9»’xÂÚ~·d‚rìï¦š[;èŸ#;.êH™AÛ£¿c…<¿ÝëEp&U\nš‚OþÁKEÉrñBÉÁ±øÊ³õgU¢Þàa1/•ÀqXš‡ûå¤žËd°‡9SyrCT\0µÑ«.Í´YbÛjNZ¾Mšº¤ì<hýÁs±Õ½Iº–\\Œ‰è5\'Ð›ßLøIÀxX›w&×³Ã?/K$^ce?^ZdO#Ö%¡XxæŠÊ†¯¿Æ›-F8ÚãyŠ“d™²ß]3Îf^Šéœë6CøwƒÙ›g~xˆ¯Þ¤¾!ÚªÊÈ –÷}+¸`¿¸™Õa›-Ó¬3+¹†À@wØFõÝ_+xË·Ó€Î+\'CÏï`›œ&¥œÍoB”hà\0”6ÿ„Êú—6½+£ìu0†›¥!:»–MêîuüYSê¥¦š%Cp‡¢¯,\"G†ƒEN›¦NN×ßL/•4ÑÿÞp`Î‘á¸Ø41½úP›«‚céÍqõÛ27¿í«¹Ì1ÜI±»Ê^ªÐ¦³›¼DvÔnZÍUÿ‡C7Œ¸òôUpx, w´ºŠÇÃ›Í€úvNxÌk¡l¢fB2ò€½Q²¬W½kñœ´UÚœ\"**ëðöR”èðëõ™¢§Ük˜hæÏW`­îÙ­œR|¨5µÒç˜Önu-\\Å×:ÔœY\'KöFŒûƒœ\Z1Z¹S%4äéüVb*P†[°±‘™d8geÍ½C\Zœ\ZSï­j0–‘13îÁ¡4]Í)—½ÕéÅÎ¶œK0ÜÒ›z½ú\'uÂz©¹u÷¦À¿«`Ì¶$Ëœ\"µXÐÁå•ê•ïMNáÍ†¾&øVª\'#Ç™ÌO¤‹œ0Ø-kˆq2w¹Sc¶³š¤?d¬ßUÈàõH\nQ7œ3hÊ«ÛâæÜm<¢ÅGM]’3¹p+L‚¦—KNÇœHRfžµ$Ç|ék´«|s\rÍßúÌ£64\rë»IbmœHæ?ÁC\nÇD†ÞÔˆÝÁt9!¼  ‚Ãø¢ÁÒD¯œWòÒ~šò<~ÉÄJ€(“ìuŠâ˜µÎBþ&šâOÁÁœœªç‘Š[m Ñ¬ž˜¯7§ ƒÀAmÀ¬ÇØ	,œ¥¦„ùL…CTœôNR×€Ñ‰”@;êC¼Ou¯Jœ±¥9Ÿõ¨¶˜®\"ƒ\ZO°Ï§Ã‰á•Æ“‹{OýNrœ·çX«ë˜ÎæUé•œ¤QÓÙ©\n i/$–Û:t²niœ¾„ØKSféÚ]é›cÇäÿX\nn\Z„÷ÀF³œçîæÑç÷€ˆp™pJ„æV™®ð¬ŸA#\\1æö{A…œð ×Ã»§õ«Í¥J«ï“OmOš:Ï™éçÜl˜W–5œüTŒ2³îƒDB$‹^VyÚg¹½É™~ú|§\Z¾qQIW#(4¿É\Zòb=9¼úø-C¤/s‘#6Ë®…CÛŠ²%G´8µëóqÒ)Ï¥Üâ£vÇ¯j7Z›í÷\"Sìèeë(š¨µ«$KVC‚Üäm[ë;†W8<{bçæ\'ÊÅ“…Äq`\n‘3ŸÝoÍÞ³B@8õ†JcÃ½³Ån&VÉ¹Ÿ”/[©)Û»zƒ¤[ŽÒ÷gö±EÇ>b`*ãe·ÑÐN¾Ý“¿\r	é´ûƒhÇÐÊHjøÊã	gèQ.Xþ]ñŽz˜Ñ©*gˆàw¶€ãã/^xGq1%S9ëû?RÁæ°#¢¨B~²ñ::†ãXò‹g5[mÐåQÓ¨›CM.C\0çW{•â4\\vkÎÁÙ†#\Z>Oæ;ìjGgß¦R0ÆÔGlàY(ëË\"y4‚h“/ØEì‚¡»p°¡4¤3­37¬-sÕ£Ü+×«ÈvC,üöäT1>K)||yDá×pä‚¯ÇóÀBÙÜç½£× #A.®{Ari=¿M-·þ?Ú3u;­ï\\™ÜÝ#ÃÇS´†ùÎR²\\¹;ÉY¥¶üßµz„›ŽCFª#LÜ!N@6¬„9‘žjØc@%à ÜžÚ?LŽÜ$bmjT0)±ŸÞåº ôÎã|ýlž¦€`$ Ö\\{ó›Ñ\"´º?~cj:‡‘¶ïÃ¨Æž‡Ç‡ôŸ\0(¥8à˜ƒGþf íÈWiâpJ©pMbVgž®C/ŽV!”WÑç—3ñßÔ¹i“9±Ý*mÅV wž“©kZŠP[:Ðí¸ýUjB¼ÁŽ5†‚E²®“ ž$í\rˆ(›õÔ‡þ~YïG=C\nwêê…­9G)Ž\\–Mž0xa$k¸´Ù¥·äÇ4­a&dkGS‚Ž#<›Ëýxâž>)\"&%qÿÙ£íøu4ˆKM¿$î¡ožºÝ­{ÂA\ržQIç¼Qó\ZÓ(µBß}Oà^Q4…uTìv¿ûîÖ1žƒ•úˆ)Óæ´\\NzàÞo”Ç\'\n]Ág\Z‡çuF¹ž­(:\rá¸ÎSÎäà¸ÎlßV¥l&Ñ×rÕ\\;;ªPžÏ¼¿ƒOa¾Œ¿ÔèJæ÷àaE¼Á²7ìdh|˜žðÚSí¯äöZ6Â ž>ÿ),ÌÉ(…EòÃ<Ÿ––¯~ûÉ<©‡k¬¾Ñ\"`	Ôð¥[Žß¬”Ÿ\Z)^Ktz â`t^Úu]Å5é8ipvk\ZûÜŸŽ£ª±%T’þŒ”®›1žÓ#§WÁõ$ÐÛ)z/WLŸ-Z‚„E{ÔÈð÷ûKÊÑ­vè·_‡§½_\"“l&ÔŸ3ãI49°q¸ÎŒáïøZœY¿FU	-&\"Æ(¶Ï6Ÿ]†•–\'ÄÃ:¸‰áÀËrQýFG‰ßµ™¹‡¢#Ÿb?ù–ïyâgñ	Vúiå”Wÿ’Ë\ZÚXÝJxÚµÕŸq*Ó×V8ð,xÑÒ¸Ú$­Ý «IBS¥;Ã É•8ŸŽ1ú°¡¬lL\'\\š¸ud€øú³jœFÚ×•VQCŸŽ3›x)Ä!éTU›33Ws/wÁ˜q·Æa_KBŸ´Ó	.A»ôê‡ë·YæèÞDµ–Z<ÞX´m\ncŸØÈÁ{m‘]‘RWr‹Þ™”« ò¨V¥ ŸB™a×Ÿç§¦Fz™ÂþJ³O#Ë%ÄžI,S«MÄûVœ[uŸ÷\r÷uB„—V–èoÊÓÑê²þ¿Ñ#ÊÈêIv4¯Ÿ÷dªï?¹ÜÕîŽ„QƒlHJàÒ6\\2Äúmeû8(¾ ÔÔ\\á¥0¬\Z%ëhe€[íÂ>K5\Z´ ›* VÁº\\”òz%ÎxÄ¦Y1xYf[FãX6cÇ *ÚÂŽuk…§;•¨)‰ógR‘ã”Ib~¿\Z 4žV€ +u¨äŒ÷´crùè›>×\0_ßs ;ÒÏ¸ŒÒàˆBáõøsÔÕ1M—+JØ5C†$‰r <0”ßçÄ É‹[!Í‡é»Ÿ·\\dÁ5crýF‰ P2¢ur±~o‡(ï„MàÊFäSÇáâ“*:lØ5\ZÅ> ZåD¹rgåoµEIÜÅH¼÷Pé½g÷”^ ]nÍü0Í/Ç¬àˆ÷Ás?ÿÛFü×ÏŽãIïìs˜\n4 ^ýTÙéXÝr&Ô’l¶ÙÁ(EèC4)öö£¯Š\Z rK(‹1ÿ2ÔeÔ^Zrð#¹²‹–ïjŽW ÖyÉ5 ˆ-e	G¿_óÿåm» Ðríƒ?gW¸¬Õ ˆñ rš¡2Ñ¥þÎ@F?šå&……Ös¬~¿“Õ ”($öÌ».èÝÃ×LxkWNg<ò¿åöüó ™\\ÒRgž…_¨üÃ1’Éá3Û¯)16œŽOûÞƒ¬  ^L³;¹¹Ë‹ê.#Lè¤ˆI.½§]æãÿ °+ÿ„ÿ«Ýæöé›ÞÐJp«·(ø9Ù°XÃÎŒ\nð ÂÒ\0’¡ Ÿ*pÉÄÌ•ì^ XE†1¦¯oO÷ŽóôŽ Ç3rß ð˜1nv\0jÄHÀåk7ÈqÍ-àÕ;CÙ9 ÇæRêÉ_ØiÏ$ªÏÔŠ¡ž¨•6tqmäÝ4_rën Õ‰$u·*&?º¬e`=8ÇÛæ”ò9Çþ=¥è\0½ ãåÜ¥±ÂEµÚÝ‰ÊÇX8«ÍYm	»éãž‰ÙQ¨­ èlA¬§Þ\nÀ!„gÂëúCn|èI²âÁ#*ß0\'p éò‡Tÿ”,œúÅRr¾ºØ¡’¢ A—öãªîÍ5¤s¡ÖŠ©soŸÊŠÆøÂ/¶]O]Ë8\0qg_€Ç\Z«¯^¡\"Âƒ!gñù¤»´xšu¼Eª\rûÌ‰8òi&F“¡?åøw[â„Ÿè¿¢Z‘ Éqü»!\\äÿ\'-Qx\0L¡D™¿-Z#SÐ¦÷í[%Éšl“³¡ñz*mÒ¢¡PWá1ù \\>ÍžuLvÎ}È:wžÑçP([f®ÂÞ¡0÷¡[[¢ÿÙ\nudv8ÔfŒ…ä¡R»¶Dœlž‚Õ¡e»$šË*}Ö¢Zhý\\w‚OWïÚwËSi7¾G™;¡x„…VùÙ\"Œ\0’ž·Ý¤ˆÆ«ñ–¸H›à2ÿ`¡zw›`oi0æVj×\0ÙŠÐlj.Ú…Bõ¢ìº\'¿¡|ZÔÞÃ¸súæ-p0p@¹ß[´¤¼øêL‹¾ëf‡¡¿d@Äâa1®‘ÞkvÁžŠŸ<+r¼	“½HËù¡ÄbXÒž¯L„¨ãæW1&“@þrŽJÖÞÚ‡¡Çžsb¿_˜`6K+Á·“lñ¢ù|âS.£ Pð^¡ólÔä	l9Õ/È¬x`ÈóÞ:eu)‹Ÿn\'»\Zc˜¢K]¯œúà¨QÐ ð‰ÜÂLø!ž¥jÄRÉæk‡Á¢VÊ=~RŠÀ[ºÎC¼;>ÔøfMÃBòRò+¢mš£vnã	tÀ¿;=%J„áyë ¥R%ø0Ñ\nfþ¢/e÷ë‚áÃ–¶IL*ÔŸÎrWtô&BmvWU¢#wI•†$ŠÚKlh5ÿb4:ÎÑ•Wnàw‚¢=\r‰¢0™CìURù\"õ$d¼Ã©6ñ¥¸ù°)¢ISÆÑ¶—\nàE]ýmùY5c\rwcDç¹ä4˜Aq‚¢X½“´\0Tëí«¢±¥PO›]\Z8UÉíËmVqþ¢^o#™Z›Bô‘aCuÍwIT-‚$e‚·*1¢hé·)à­Ù¿“ýÒ vŸSh_â­=ÚXDÓÓp¢iÿ-½›wÐFêa¡\ZPN;æ«Ë®ž°hƒ·Jû4¢mB¢´àB;ô3Ó¯ñÏÍhPÏ;Ê)Ú“Vz\0D¤ó¢r?Ï{Ù.‚Å<ƒ§õün®;  Vèà.Rä»à¢yƒRŸTx»\\ÁýhÜþ~DÊ@n\\Ç¹”ßiv•í¢zß{ˆ\Z”]_q­|@ØT°bs™üBzV&Î¤ìk<¢‘ùx%´&õ–ïëyp¾Á5à×L&Á†]äø[ÓRÕ¢•Y¼½BÑµ…\0­É\\4:\r¶a·’™¹—¯o²|(;Ò¢°–¿Ló]ê²€Njàù°ßuÅza¾ÈhpF ¢Â3–‘üHûÑO³)-ÿ>!\"\'Ù$t-}ðÆ×Mû¢Ç61p9“Ç¡©ô¤ºå‰ÃÜkþ£×TbÊ:XË%nŠ£¢Ü¢“ÿx²JÐ; œvww§ |UÔ-ˆ%=™FÌìùŒ£ÿ«Mï¿ß>gq=÷ètGˆOwmjdÀ)¹íß£\0‡¾$QŠ%_âîá×Þâ{¬1ÍÞŽœ7ëÚ…£\rÄ,?·ì•ñÈzDþx¡•‹&†™ù÷fvõ©£8PÆ?³±Almèí ¹Á:2M—è”ÞmÜX:~Ú£8å ,Ë´ÿËí”t»úý©žT^×¢+\0Â°^£Užä`à<,MW¾é—Ât\\œ‚ã’+ŠTÃ„\"^J%£â;Áž³¤\ZÜ•ŽAŠwöÔW¡II¡wÓú	‰†ì|£ä¥îô¸dÊ2Lu›ŒŸÌéƒí=#ÏJR9:xÝ\Z«z¤\'‡Ó#m:…uZÇ¸È>8Ðû¨ü·„|×Î{K¤iª²E<Èþ¤z?eL²<M\\¡}°¤vƒ³6Äó¤\Z¥8zRv`Ý\\.€)ïŠ.ú^ÀÂËpÄ”·¤/E{~2	Evš“£h:¦mþîwµW‚åÃdÎÓ¨$¤B|Sž1,¸¢|ñ¢KÆY$TTL_Ì|£h¨@ß¤P%ÞHD>í¤¿óÊÙ¿ff?_Ë2“Y\0d#v¢Çæ¤Tœ„ÍUùÐ¦Å[TmGònaÐÈmqÝY\nT©orqKK¤crµ <#P5r±hf_‡D«×mÖ”mNÿ€+™K¢¤{÷VOÚu-Á¿ÒQd;Ú++O;vœDÌ)(žP9Œh¤•]í,vÉ®v–Àš«±JMÊ(0(&™#ŒìŸ´>¤š_Q7%ßl|µ[ØôŸl°|Éâß˜AÓ†–ÁIŠ¼Ž¤yæ~èþÁk\'$Ñ‘±ßãÈè^ÎYÑ\"½ awE.àë¤¯ŒGÓÜ=ØÃ[öŸFJÂÂ4Ù@Å·ž¢´æqaûb¤¼n då«É\0þØn¿´Xf6?,­¢®=Ê¤¤Î ×K\'ßë9ˆƒÃo—dÐ?pˆòàGŸZ{âe&\"¤ÓS†¦¿\nT¤kêN&(uu0ì!Ï©7Á$šV9Õ¤ñ\\`”toéËôGßã\"©ÝöîŸ*°ý+cW d«¤ú€”½+ªÎŠMò?\ZòL š÷ºr¨Z%\0Ì\"lÓ¥mu¬¤9³u·H|¥Œü —ØÜ–aQLþ²ÖU¿ž½¥‡ý0\Zú~{vhœ‹âÆ‡çw’RjIyphó¥gs¥Œþs Ñ&Ñ:°×Cã¿©âé\rÖmÙ9>zo|.Òó®¥”\rÇ©óP¹\'âRëIÑýR›š\0ø¨‘)Þ$ÅuÅ¥È¸[G¶ˆü&R9»2àÙ&­€DøDcQ¡âEQ¥Ó‚_Ÿoóù‰fIo	˜}B’3&Y$P’ô¤Ê¥ôŒ½ÁAÐÌø÷]]ëhi¼²È{Ü Ôƒ‘Æ§cÂJñ¥û}|‘ß\nÍ¯Þ°AÍ(>œµjÖ2OÆž}VêO »×¦wDÑ{¢so	ˆkÐßjLAÙÁ£¬žRƒ	®˜V¦)þàÎàÏµ9ôD[·üý¥.NVÔKuZ•\'Þ‚Õ?©¦0×¬á¨’–çÿÐ;J;\0±j=\"(‰ÕP]<Xõ¦4Í£m%ïÌ†\' ¶?Û2¦[üQè€8/sG¦7mÂíÕwÞ){¸\\I \'ôQ}mË®$ÒR4´U¦:k‚$âGw 1æ@ï¼Éu²iLÄ0KÄ¸:ì@¦E^Ø›‰36€v‘ç¨!l{°PVw¢éSá¢!¹n¦H+‹ò\"†\0Udà–:¢ž\nõê˜O«˜*”SÐ ¦LùÙ„ýŸì.\r>Ö›n«]Ð¾öøÃ9ú^	ºa‚¦ZË_p®ùhRf}¼ê	PÞ¯šZ™{Ö¢J„ÁZ¼¦b±«ÍR«u+„$Jp)Û°#è˜¥Œ>æXV%¦z_XÂí@KOuKMF©øõq:…RSO† ™®uÑ¦|=o%-™“ã„Ëþt,už‘·.ëàØ —\r¦¥°¹«À¶\'í»†ü÷Blm&µÙÂš^Ï/‚ÆØ±-¦¸ñMp êó÷#<_ØË¥d^»ÊÆ´ÔÏÓÁ5ç¦Ä›înåÆ+ÜÜ‚æË¬ä§\ns5ÌøÜ*ƒD^àkŠ¦Ê2mi^¸+ßQfú\'ÃN,ŠntR&ïÇ*‡\r¦ÕSˆPœKô?x»7Å.ÞýÕžÝ*LÅu¥KÖ¦ð”âv2ZgÒ,zê[^¨£×…”ªYç¹÷güöv´¦øþýâ­¤YZ¯V%›Is!ÁÐ±©ŸÜj8>Æ\0Ø¦üÕü›ŠnéÿG²UÁvŒèi•¥3‘D¼¦CA¦6DÈ¦þ¸`íLs<ò­òŠÅ¢ìÛÉÞt¶E§>Põªô—ßs§±\n#HNoŽý­œãî&í©¢¢ÔWZê€ÌMl§s¢`bFœ+¬u\0²¶#¯\ræŒ LmÓNßŒu®‹äí§uc^=¬Â¡DU{.¡¯öÄ¯.Õ¿¥¬]Üñ­d0Ó§zEvGL7…t|Ú%\'Œ§4‘¸%¬Òf‡p#e§hÓ-ÓÄÂœ¼hü8q9À¹\ZxÅ	²VG’%%h/%§Rñ/ÆäðÎ®qéòeG±F^6•`v‘BI	ð|2§—PS?šhFÁMa¤ÀæÑÈ‚U«E°~z–“Þ§ž#Æ^8Zõ½€y€©7UÜ²º={ùŒsñäÎ&ˆFW\n§ªR_	Á\'Þ×H™˜u)WÆC}ÓD&›7ü,H‚§Ú)m-ÈENÓMì”A£ÃûªÍ›	,§_~Y×µ?ck§Ú_\0¡Tó0y†k€õåæãM38•WŒ\\ãåQ7F’\\§ÝÐ\'ú®F•|S=Õ’áï«\\[8¡(YîÿYêû´§ëVd7{mÿ`C’9+§eý©f¹Ò¯÷6‡ó êíU§ö\ZaÀzß[î_”K }PìÃ0;¶rÉ‘B©ç@?§ø@[P×ŸòÑ^“3æÔD5Vw\0ž\r\'€îTËí§üûP´Î¢`Ä˜ežÎ­‰Ñuö¬ÐK>fL˜/¨Â/Þ\'F9r\Z!æÐp©ô\'6D;%^-ýxh¬¨%O 4y:X”0•Ö^ªYuGyDñ³QÒ÷ùbþì¨(Æg«ðEpÖ†õ£riÝ™¡hF•áè=ííÄyZ”QOÀ¨<\'à Ñ–rÑvqS’åKU7âWˆß¤_iþô«9q¨Kü/{óKÆÕÂY	GµýÓLËEÄ\\ÿ.f¨Ü«ã&O£¨Qo	Aý4fâ”gS€·Õ‡úh%=Z‹NØ=þ_¨Qu~Ò¿„žú$3GÂŒU4¿&\" €KFñ§¨j”é T(¦5´å—Ýo[á‰…éw•O«P\\‘¥>0¨–3	æó{ÉŸÓaÃ6]0\nì¿*É(à)Î\n´ï¨–ÇžŸŒ\0¡“z½v÷VÛMAJUªla‘1 Æ·Å¨œŸrXŽä>ÞÛŒó5SÆ¤H[{ŠëPgð¼Ù¨¼VÌ!6\"	B˜ÔÐƒ®«h9¼¯Ûí.ì…ÎF²8„¨£éñve8û:½Ùîc;°%èÚt}5;­F[ ?EX°¨ºnØ´G~ÏZ¾Ý¸§µ\\¢üB[)¹¢zì¸ºãm¨È¬Oû¡…~Bç·|A&´–ˆšÅþÝ†ÅÝÊéBJ8?©L ô|F² éƒóKGOª]ˆ5^ùAG¹\"$èA[?©¾:ÒMÀ¡ç2(ÃÌV ‰£æ—åA“Âì/|bý‘.©Ëå4ÓL\'iWFT³ÐŽØ™‡ËÑàr7ã¢î“75©F|D‘ FIJÓ5å3mÖË,Yl¦wN¢Æ‹¢Fù©e\\\\¨‡¯—y2…#Ÿ¹niÀüÔùF¯3œ’æ´N†©r¢b0“ã3jgŸÚÑõ¥Ž\\ûèmPßPÌjxà©„ãþ5æ”Pû$jä¨ó¾\"ã`õ\"vËR€\nì³Öl¸_©›ÖËð9È§n‹\\\ZÞø„r»Rã\\¨ê°ª˜Âô[³©¸Oâ¤óo™Óøý\\.‹¬a 8âûœš„4rÁ5$†©¹‹	±C\n†\ntYÿwýrÕc¼\'ÁSy»û:G©À`}.û,‰]|ííºÖ…ÝÐ¿ŸÐµÂÁIø†Û©Òb±Á–¹ØÌšúØù×ùâw[$Q²Ó¬h,·aª“€»\Zø°ÎÖ÷cN°ùC…Cýn°ÐÃ¸•¿‚€‘ª\'È\'¦Ùc²L:bøÓÀ_ÜL‘Xxý0IÊª+Q©°Ð;Ëñß/žhE;è?TÒ8èVÜ’ ’—÷ØªA#Iˆƒ”ŒˆÕ%d{°°FÄØíï\0+¾\"6ÎÆ¹ÈªJIZ;wè%—¶!ÕéƒøW9åëÖÑ±÷SÃ	}Í9nøªN-®>•£ŽÄ˜tÎü´¯üBâ¢/Ô£(qØúÔ[ªT&¬à7,Ç¼]m+7‰^Áê«’¨®¦†úvóK7ª[E¨u\r:‘‹&i|: 50= ¬åSöUuµ5°²ª^_w|)‹W6›¯ÙcÄ*&ÄªÑù]›ÛÇZÖñ\r4¬­ªt„Þùãš\ZæwMiÞå¨ÆG>B\\Œ©gôÑªv“`Î(1in£šŽœ ××5U{Iäoò4BµªŽî]’SfÌ1Ð®#²8ZL½Øúó¤õ¦ è}÷åOª–BåÈ«[yíû·‰â®Ý}BxwIüZëÐ§Ê&¼ª¬*Ÿ—Ëg”H-#=a×$-“-ž9\'ÀcÚªÊ?I&k½œÔ¡èE•YB=Åb*Ò¿Î3Ftª×5èm¬{æTÔ<g‡F+j\'‡pûQœÝª÷\"}ÅFpz.ºù¸TÔ&lG¢ÅM©ki_å\Z–Q«\n€]í(›´_å,pgi1”³õ¸}þ¯.’Í‡3wÀ««z¢$W<¤§leP[™?è‰ÂÂp®>¼ËHÕ«#jÑË#Eø‹é^C­5¬½Å‘Ü”)=Ò=mfãht«)\'«¨z1*˜~6ºUãEèÀÊýü½‘éæ4•[kP«1¢®¹w¿Ó®ˆãÿ\\ÔÁ ^èÿ¶º`Y~›F±«9‡õ-Éa9RdlwÙjÃRaóéS(7Æ©¦\rÜ\'«E¼^´¿rnâÍ2ÍªU?‚å—¸W\\ëVšeð«L,A/š\" —›Î4ô²zXô1é]í¯¼½[º«MT@JÅóŽûmä4ŠN«2a0Nm).:ôÒª}«]ö%¼vÛÔác¾ÒÝˆø(ùY»“Ue%Ã!¶TF«o9ñ·j›:Og7(½ûd©øKQAª“ŠërUÚ&«³©›†¢ZÖÀ¨~fû,é·¿ûÿ‚¿½Ü»\ndšŠ«Ÿ`«4Ï.­{ÓmÏ–ÜS‡¾¨à9\n]b¢G+\n(x«£©7öÂ\"€Î÷¯\"Û5nž‚ÒÛÓçWIiÉÑÒèa«Ùz¤ˆ_Ý®o^2S\'ÎVAFÉXÿj#»–[Í«à3«HÎÏÄ@!Š½ íßÂ+siA$uN9µTµ«á+ å«ÆºDüƒ=Æ#Øwüj¦xíyÓ‹h‰OB.h «å2š—;ÏbIþq‡ã‡ÛØSÃî]ïBšÉ^	þíQƒ«ð;fWV¢•\0sø“lèä^€—ä°}!™§Ü/e*¬\'ß#„ÝW·l);*š=¹$º9¿9Ocor]ÜÈ¬-ñÊbÕÞçà‹`üàå(¨dÄõ\n#äD!†êÎ¬VÁeazÓÂîåß×UÜž|-ŠõøÒÈT¡[7Å|¬|ï¾A®©tuÔÌÎºia2ü¤´¶¯Û0¶Š²Ñí½Ä¬ž]F››sfèˆ*½MŒš\'{HsƒÜú©l€\nmL¬³7,M!mÛ–¨Ÿ\nþ=FK 	Ê.œ˜.>D(¬ÅÛÙªìO¤¡õ-ÁRº6”ï§äW=±ùq;7žÐ6¬ÓÜoæ’´²\rV>Ù=ðƒ­5‚øó…èt“Óã[ß“¬éÌÎÛ\0úÁî¨©ÖsuÁ1 h,OT³®ÿUÌ¬í$¨&ú^€9¶]Wgà½³G‡²ÐÓØè\">­J®o’e\'¤7XŽw†(šuc‹J§¡º[1œ½\r­\Z•/yF÷û²&’º°ïë}=\\HíÔV@r\"ƒB­3~†‚YÆ¼\n\n.fd÷†Ù\\>8{Î†ðAHÿJ­E´š¬ã«2¢>ÊÆØü›1Í}‡¶Á›¬“\0æ:a­TÔM[Ð-o	‹‰_ó¼ë\\f\\Äj•tƒ¶±­z\"ÝHP¯’Ÿ«l„ç¼³¹ƒü?úÐx4ÑP,æEå®­}a¸b`á€Znæÿ û ¡/Ÿ^5®ÖÚÕ)­¢?T¬ˆDôÝçBu®ä=781øèzö`~€Ã»š­«éñÒR\'‚µØ)Fÿ]\rõ^›ËÓn@­hÊ5â­±™¢ˆÕ˜°A-zÜÕØæò¼‚£Ó.kÑ»/™ñƒ­²V\"5PG”•±7ó}jÍ!–mYZvˆ¯r¥IÆ’¶p­Ã4»Øñ¯§æ{±·‰JÚÍYEÜÔxÆµÄ(±Ù«E¦­ÆµÖá5ç¦dãì=?N®rÙs¬©½þæ¡.£P¾ü­ÐÃ¤O¶2É:~½,úÖ)ZÐUÞs†kÔôÕ\\u­Ú$œªþ1£JÕ–’3ÏÞ1G3p³»øR˜mÛç®œ<åÅ¨ïõÜ…þÇù7iãUå\'£¨£z¸:	® ö6ú¢îˆïã/Ðz@’Ö6TØ&\0âCp›Ë„ºŠ®(™¥$µ€ƒnÅTw¦VýÙÕ;ÐøLQ72€®NÇÀÍ‹-mÏÞ4|¦0\0;¤ºü°WË4ê²bˆ™®Q(ÉžÐùö@âtal2œãX“¦æƒíæËcæýïI®RL¸þž 29‚¡^”d¯6_V$CŸ8tà{S®\\ î‚ÒÛƒ àƒIîôŽø£ƒbòÿº\'h·5Ú®_ù¶Ø\ZQÉ’iêëˆ™O·sÆJ™:h[¾¿Ú®	Û®_Æ/SttòRÊ”åWé‰CUÎx´´~²:rÿQâ¨®w¹¥˜†…E÷…Áõãp¿ÌÄVÑ¼ÔîøüÂscÄ`P®‰‹EØ‘¯]} Üƒwúz,ôû<šâ?§Pªà&ä®•#®ssÂÃj6tv¨DzàELZždMëª¶W‡ñ9®›ITLc«¦r\\þh	=YkHTxD£eä»:#®®òo±0m°öÏ¿i¦úyŽû®½³Û‚÷l|4¦h¬®´Nó´‡ÒO~%„ö\n}\Z¸ð·ãôÁHœ®¼[6‰aù‰ŸB2jf×7”ôœ¹ÈÔÜfL~Eàl»f\Z®¼]ÍÜ¤VB\0nœ%MÉ/‚ª[×ã;„*ü¡öæ›þ®¿éÎ&/ÿá_Åôè¼/€!ÙÊÀr…Øæö½Àz®ÑÂ¾Âü Ô$etÚÀ%±Tn5”Ç?ƒ*ÛB‰Rg³§®Ýdm?ÀÜ*\r4›&#4°NœeTsÇÐðßMÖÁ®ä!™r­÷ËéÙ£Îßýœªà0aêTæÉ\0àÚ²Œ@Þ®í.m)¤Nãu—´40ŠÁ§¶d0n”–h\"í¾$ðý¯\0÷$ò§’ý\r‘¿ÌO;zjJÄÒ,nq ƒU8c¯³¯Á¼O¾\'„x™ÔvW—\"ÈøãjC´+o“„%~¡œ¯å«qõ­¦Oô\ríïÿï˜æP´‰\'ô§GrHq¡¯\' ¼Á[y‰-NÄIzc`ì#ÉÕÓü‹¦0¿Ñ¿û×ß¯;„Úý<	`>7þ¸Ts|þ46é¯f’’B¯!Í{¯C*iÎ‚\Z\"Õàcå9ÐÉq¯L£Ô¬¯¥· ä*7p¯€Oð6¼S`Žníôð±jó°ðV…FmTª`ü¢b3&¯….ÃjÓãÝ¤(qSjÃp!puÝzI0J\0‡øÙ&\\Ar¯¤Ö¾v“ü°æW¤µ^Ü¨ºÜ/„,¨G‰pÀú»Äßœ¯¬ã@d†îÇÃŸ-ÞÈ§Ò›‚°Òx­ÀÿºFkbûsàz¯¯X¤˜h‹Â%ûMµÏn¢ñcCE+c:Ž¥\0¬eÂôÉ\r–¯°Þª¨ë~„\n€M×w_‹øa<å>VÔXœ\Zlàù5jÀ¯²~d3£ßv_hòi­Ð0â7àÇ§?Ô{e‡&øóÚ©Š¯¸\0ÍÍ\'4n@ñþÃÓÿÌØ\Z¥.ã^ødiŠ$GÙ¯Â6-Ö¢\0¥¯qú®ñxw&a\'vúVçÆÒ§¯æ#ôcÇÊwr†4w³¤¡%}´P,HÿÔÓR(¼°‡¶€ÃT÷©6aúÛ\"@€ðšJÂmÏ l/Ã‰hSÙ° &^SçÞÑh=.éMå\næà6SÛQûãœaHtŽžú°8h•‘ísàÎ]—±\Z´ŸU*Fþ°Rg:ô(¯ÛB\\°L­|Ô‹àÆ\Z/Ë5––Lr¤ñ`[ªRB”Ø™W*_ù5°S¨!ý.!ÍÄð¦ò5C^™žÕÛŒ	Â›±Ä°ŠUq#\0°ù‡„HD`˜Œôñ>„v±Ôó·+’OëÛé°ã¸sCUÚäÜ)åOƒtß¶ôäÎÚ¹/m3R«?Ô°ö¨¤w‰Óù­ÃZLÔ¹ ô«ò£·¢5c„Z÷ñS°û.^\'Úçå‘°†%âûJ(ÊV‡“ /+¨µMèÌé¤±\0ä.yÛ3š6ªx> [/.ÒtT¢]ÃwpX×%þ]£±Ùº~|4uá­û›oÐÝAf\\ÄúQ(¥ážÃ‹±\ZÁ %ßÖ|^¿øÆÄ]ÙéöYØ^úF« #c*(Øë±#œ\n=<Ìeæã^ Ò·\'#Sâ=w‰W| K:Ó\0¦kG±%¿™¹oCàºØ‚lõ\'Á»Nˆ\n–p_·˜ó ÄŽ¨±+$Ýiç7=Íù˜Iû5™·ÙãÙiBÖÜ4<ïÒ±,óÔûFÈ‰g•§M½èÈRhj¶áéY€…Ä±/Ê<)®…šê¨pâQ¶ÊÐš’ç…P_súŠÅZ±0TÙXŒ®Añ’#6{ÈK>Ùù~¨„q¡Iâ=!±486À·Ñ>$ÐVsÊyJy9ËDž \ZÌ_`ºX?4¸±=!ß\\óz—RhpÚ}…¿@ê,ìrâQà!§Uñ±fY5¥u¤¡àÏ±€\nøE›faqÙÒº§¿Z:þÒ±‰…ûÇb¸ßÇLÃn-#[\"6ž1zvi~±Š3g¹F\ZÙ4\Z/ÇÉøÒ—|CýA»b9„gä÷=±ŠØ><P¶0–\r”Ëµ³ê¡Ícš‡+\r*+H¨\n$^Ñ±“¢&>HLi#a\"£´¬ØO¿fßý,Ð8õ±›,M4aµ!÷ƒ_~ÑšâCO×´&…Â8ÒY­:íß_±ÀØ‰üÄú…ðíÿ\'qP—#Å·œŸ[ï¨ðÜ`µ~;±ÇñH¤kMXÖMÒL•`b·…Öÿ›:ø$¹d®ûš\r±×9\\+Í¿<wCÏÒ}œ\"	º²\nT)Q\\u§:êb&pÅ±äÿ}ó–BH.G—;d\\ZÃáCÏˆ†\Zo/Ýþ±’b±îoï#¦Wø¿×±­.]H>Z*0þüëãoo¾±ý¼±Qwf<É¯]Þòqm¥éf¬‘~µpÅ¼ö=²\nßÂˆ.ŸåªÝ5YÆ6èÓ}§oÑŸi-íý(¶~ê²	ÇW÷Ïp`$<õ\\›‰5wJkSf36Ç§Ç›²lU™‘ì§yª’u##e«dà	ÐA3Q5‚R»²p1\'rëSl¦¼ùY(7wAä£ãO)FP]™°ÄÄã6²~\"ƒ’åÞÒ?B´wMÒ³(N`Ûq–Ø¯¨©ÍU²””]ÌÒ†\0êêõÿB¸]3ªÈÛ«Å#ÉíÉCàd5F²œC;Ô©yN¹¨¥*)Jý-°ª¯æÞ´1vôj.²¬—¡«¥y‡1¹BÇ·Çqk\n*;zÃÉÝ8jšçÈc²ÉÄÈ^´à§å«\rmŸ)áO7•x{@*;ã=³²ÛËÐþ@Šøsâêã³;õJÊ˜[Ô—Iø>~§®Ìö4³\r\Z«ÖÆ$AùCÑSwXZ{ð}»aj†Dû}bÐ9³-œœÏ%«\"ï!N˜Û_)Ô\\š˜¼Á÷*1Ã°ïÜ’³5o3˜–rX\ZÓ&?ý´V\nŸÊ)¼K‘-øãMé$¡³³AéíÍŒ·‡ìk	«Ð/m§ñdæôó¤œÓ²js³EF´<3•Ág“«{\'¢mv~®D¥E‚fM³`•öGûÂJÃy•$°:çxty*YÍß°úÌ%ðüì³^H\Z&E5CCqÂ%Ò.AB·Ê£VžÚ—åý¿C;³‚7\"ÊA…b¨IYI„\0ç:—)Ñ·Ç¥Ä`wcw³˜\nžNÏIÇÅÖ+Ïa\Zs Lz·fÙÿ#4C\rVvÌ³»µ}§ÇÍi¼K4KTóTb=2UáŠ°OB–¹`‘³Ë³Æ+T¤Àë9]Ëð-!IývãÃs–¦[ýhý˜÷Ï?ðÆ³Ë29“¼{·qKÎ¾¹Ð”ÿ!¡ïI\0žŸ(ñI`³Ó·—Û¯	(î’Ãhs-âÑ™¸G«$%TBy u©³Ø©äþx‡×™;gÒdBŸ]EÓ\rßâr8áùïÏ³â+N+RâfèàÛUPt©	à9áâ™x²ØÙl†œ³æ2ÅªÕ[jÆ—Ih‰¦*é@I=ñƒØh‹¤¢QÛ¦³ìïÑ…0rÃ§\r®bRÊvO~°•nw}ß¯žgK3Õt´§¹e¬$°Dv„­ÞôE£Z6ÔfÑ¸‚+(¾ê)¿Ñ´! åç„\"aDr¡9aC‡53¯§{î„ÿAÖ{ª´*Ñb2KwwqÒ¿¹o&•ðîG°DÍ¢¨a\\ôLôÕ´+^Â	œœÉpü£BJ¶ÝxãÃÈ7Ö?Qá±·£[´I‡‹!â´Á“>¢°ª@œòY‰Ÿ›{²<§˜´NÒÿ²ùa+âƒžÏ78c*QtÏS,á8Î½Ü\0´Y7tR~ãçå¶ô‚k”{š™Y‹£ØD+)îàY;´]‹¶‰ì^’Ïe-+‰A¾nõÖò÷5&á¯ù_àÿÖü´q4+SHæxæÄ•{Å?fêÏm3¥¡ÍÈ`êöaó´»¡û.#,º‡ÞtŽ\0W&¥–·³‘Ü;yÂc¯ˆŸùª<´½ÔÐqÙÐŒèË2ÄýÚèÑù5Ý¸ç;ˆÍäN†k´Ñþ=xnÒô%þvA ”[¥y8nî\n	(h‚!ú¬e´Ø÷®˜´kbžHkŸµ½ö”ðÇ[b0Qy7ÇŠŒE´Ú3SjzÅ$\ZM]°6Œ˜8€Dz´ù£kTykm|¤-´ìD›6¥8…Nó?£%aPÅ§)…]NCÐ1¡Cÿ´íLóŒW\\M!DJ‚y®7Fá(<\n“ÔøoM,Z´ü—ì`1OêYÑï²†A¾Qç°Î2:Á*ì t«Ó\n«ÿµæhO|‰;Ìz(¢Ã‰Š\'ÀËô¥™œ£¥äúµˆ;·wh‘{á#6ú„qY¦}è½æ6GWÈµ!~é÷ëÒ™ZÃ£Ïƒ~SàÔ÷ŒžLKjJ|¨µ4ž¦<Ç&Cn\roÛ¼‹—0+Ë>‡|ÌîPJ€±Pµ*ù m¢ôl¹ó·à@6TÑ•Þý\"Ž¨‹Ò·¯AðlµIïHçîÞÖûÙæ &dtM6×ç³&¹Ûµb¡ì8ÿÏZ	k™{Ù<Ù…J“W©ÅÈ~\\ìž¬2µcÃãß\ntÎ®JmI!K3|MÒ1ªõàj¡+ÌH\\èµdyòÖö‚ö†q±œE~’ßƒ!Ü>\'c‰ëªÂsÙtµ³Z*J^Ý;6Ô³\Z~IDÕ®$xÇPÕiAU-µ¿”]†=“—©\rj1•[Wfî%”¿>qpð<ÕŠÏ\n…µÚ¾²)ì Ë^^Èc%¿æW­€£Ïmž’Í$µã:\'bL gÝ}dA	¼,¥r×æô·ÛwKw/á>µêò&z©káÊœjM¹®U:~o‡ãÑh¥}¹5®[µï;ÄRfªñÉˆº5äk_ï÷æjQræªQµõVÛ\'é´ÅdÑM õ2*^äº\0ç\nÉqÍ#\Zä‰©eÞµú²¢ŠÕIÁTv5´Ü„ëSy8û#±¿äGyFâÌ$¶\nr`óèZý¯p¿G‡G*¶\rr\n™è>|õ«èY¶&”W4x¢°Wç’ª¢Zœ)±Ž\rÔ“(aï¿y{;Ë¶2¬fá°Q˜,ÆòÑáÑ+<·\\\0\\\'™â®	¾ý¶3GÓdÊß¬T”ð²ø*§ú€§ÒÂJ\nÃ^D1šÔo·¶=á$(1æ¦ùŽÉ\rÛ–™/ùzh‘Tç<Íð]’˜¶oÖ:x<UqöPJ‹}PI ÌI]è‘y lÇH\npá¶€uÚ÷!°4ß’íÈÝjFª\nz÷ã\\Wšâ—|ó÷rÓ¶‚bÏ’\0EÖ0+F7üÌš\r–<!-:Z[¯ÏZjäý¶…m`_«»¦õï÷2Í]Ü\"Ú{(4«0{¢Ö£ÀëŽ¶ÃØ}\rq;;)DÍm[Šÿ5­¼!Ú&ç`¦µ¶c¶à>?`(Ý®>Hfü=ð\\ÃT¦-]gžˆr˜”•{ñ¶ÿG[â\Z ÜÑxËÆDs¹uÍ¦ýþÑÞ±Ã4EXD²6·\0„Ü—D“¬áÓCxÞbQf‰rÞ03‰_LAŒ_ÜÈg·20mzø·{T()1ÖZ5-PqBñá°ÐÒ–MŠ·Gx99d‡ðŒ”äŠNŽûç5“«½8ú\'¿Aá·Ð·{}ˆaÐ‘á8a¬;[\Z&+:ý3Wçë¢…?\ry¤·©¥³W¡å$%[—¡ƒ6åúÓâÀPmª‡´œ\\I¨Y·¸Ó*‹ÒÌ%vbb<J<˜¯süjïÚÄºÔ´Uzäï·Ä#Zž‚Öõv¦Š:¼.NÒM­Væèrz$É}ô9ƒ·ÊÜ÷:ßqÐCœ»¬ >,Ñ|’ç4öÇ0F|=­.·Ëá2Ç¥Þ{ÌE[rÄPE~P(^ÉÞ\\>]!·Õrç^8Â¥Z#uð¿ï`íx+I[È0ÙN‰M·ß[xäV\"2ÃûFê¯qçâÃ‡Ãâ“õ“óHÆ•¸4ªí£6#\r0Jš7\0ô[iùõrïB´®Îã-p¸˜ñ*©i²¯Æ­1Õî›{‚×(HÈ ÔŒæD®Ÿ¸ /ðú‘Clgõ’9Nv„ºÜDB\"ÖêìA@%€¸\'+hçLñâ‘ÆÖ^^î+½#e¸)É.æ\\µQäˆ\"‚¸6zƒŠÀ}_T4xæ°ômúaªÂ½#EÉü‰¦Ïï¸>u—ÜáôX˜$={+cÜ§løoÑàTÎ\'.õ—Ž¸E‹“ÞÎî]³á\"f)|ØnsúöM€–dmÚË¸hÌ×iÛïÀÔqÅ…¿ùm	¤Üwb{Ag¿ù/š÷Å¸˜síÃ¤6ÕI-Ò-mŒDW4Ç2ÂŸV•ó9ÊX‘¸™-¯åý¥ÖÔ¡ÊÄýÆž±^©LÒí•GäÍ8ã¸­ÙDC<ÂWöÃFüNµú£B\ZŠ· ‚	{÷yWPJi¸²¿È\Z<@œkÏåqýsa…,jJÛ!ÐwÙSžåá¸µ·¹Þ™Ü)==€)±¸©eFKìx¿:5D9@“¸Ø‚ŠÏ¨\'¦<Mtï©v$d]#ì§›ý¾„ëß¸ãX[nJ•@ÓôÊzv»ŽT\Z0:tð{Á^!=î­Ž¸ãÕùñ.`8GÔ?|Àæ#ÿCˆÕ=ˆ²(Ë6×›¸òiu†h\"KS1©ªüR˜¬Êñ®Ùï+/ÿ;þý¸ûiY–.7/ÚXýèÌM7ž~Y”+ÁÔ/\\‘ì1Åî¹ênçX \ZA°\rÐÒ†àµÌEã÷rÌBèöÈÐ‹g¹%ú½î3ÜÅÇ×³ØE¼q=v,·¶ŸVý\"¶/ÖCê’¹=‘¹Ï8Î¡uâ„P	ÞkÅ‰/óLšAN3Ú)ä¹ECCä¹=ë÷‚Ð\0µ{€×§Ë\"};¥Áé¾¡Œt¹O«ÂÛ÷¾m—_·’ªjWG€ú\\ÆÉábojÀH¹]x!+·>½ÙÜöÔŽ±çÀýzžú¼4¦Jþ1Ð~J¹…Ç9K§mÁ¡ûÁ`§›vØ‹^Ã“GRfñï¹˜òÜ&¤½vcD´€ Oºv‘ÀcQø]¥P=Šãø¹œôöí$aF‰«×jFä&|uPUã¢MeG1ážø£â¹³Ûß¹ã²åãbÛ¥!	¤9~ÕüGgl¯òª¾¨÷È¹ÎÞ3|oµ?ÌD^aÑ@ ç²C—C—õ²ÐN&ÐP¹ïSçtâi²Çz¡r³é{¯cY ©®Gè±ËÁ*3¹÷\0´È‡z¡=†B°£–øl3ƒŠu@šÃ¿c÷´1Ê,Ÿº)ßa)çqÙ¼­qþÄfâõä¾L†›ÿ1ÙÑJ…|b(º#}©\\E†ÕºÂÊ¾¤Õã€—¹ˆŠUù‹Lâ&›…º6©¦\\Y?+c2$Ÿ«Ïòç)6êí¼8*æÈ°:Eº@}æÉzPWE4Rýc	Ä‰ðÿÛ“jïÚ”\'ÄnšºMþ}9É`ñAR)õ’’¯y€©Æ$±*[óØÀ|¶ËºVB&ipU¦ ™.—âVi“Ëtt‘]÷\\;HÛIºdÝDpp’øSìóð’²Ás°J£‘Ç¢–\ZòC2]ºhšä?³Ý±Ö†–~8žÙl©Èª4,Çž?ð´ºˆlÿkJã™¸3g>˜‚ËÚ·ÀdGzfwSCå<º§v®Ð\0ëæf{¢æ8:¥Û\Z…\09Aô©øB-¨º¬­HŸÁðõqÔgp0U²9|‰ôwd³šGÍµº®\\±Ÿ\"î‹R·ËLFÌvÉ©Æ¡-×&i¢§õöºµÿ˜N±JŽ)–áÅñs¼¶+Á£áNüôm–ºÝÃugÎhƒ2%€é.¡g¸™0¸ú¦¹KÊõ²‚>âºäœG£ÿ€.P@Já3t–B¨k¼÷„ÓÃD|$ƒTðs	»#žà©ya\\©Ú«:Kè€B Ë8ÉÙco4™ÚÔ>G–»1J£`¯ÁZ§·©ŽI=³ôcBfeµÆ·C„\0«»22ï§Á²Jn§óM†°ìF¢Æ2ð¸Á¾Ñxü<ŽÆŒ»6&FµL\r‘Ýÿ<\ZRº#ìº£Ldp=è@fIWðX•\"»MBÞ1ÐQwoX4bx±c)@DŽË¥°Îk»aÅË¯|9Y\"ô”ˆÝi‰¦*éUšùL<6\'I>·»b–5pª<õeëZ¡ps³Ð}ÿ[ŒÉY!°¤šmÇ#»jì%Ú0žbïÙNøtR&y­.ªûsE¦£¬$i»/Ê8&ˆƒïså3o‚˜¿ôü,\nß°ñ½j˜ë<»›,?×ò]š¿š/ë1ü{¨–¨‰õÖÆ„Ú/ë:QÞ»ª®ÇvÊõí>rr)qåAoè\rË:;(S>»´ûB­!VÈ5Rþ_Bµx< |9Ä\'bL*^»¹Ã÷÷Z\n·’’\\È©ñ³Ä|òÐÉkZ‰=¿™\"»ï”CÊý(k\"!ë™Û~°5ž3¿´ñ…üÔ\r€Ï›$L¼¼X§Y5hn.ßc…e›\"ÉÓŒ­	Ÿ„\ZSÉö¼–ÇÜ:Éáþv´B¾ié7JÌ7Î]1¨kÒk©1GÂ¼,`|]$9æ`ª,ôûw\r>®­-±Wû¹Ú7*ë¼ç<:‹’gjö6– Tz30Â8°Xháµ^~mÏ~¼ Ùu×µ´Þ„¹†È22’RYŸRP4H9‘ÂOý}X¼c@P¼`ù2Ñ_°ÍPVb–BÈ­ItJ Ì€r¼›ù¨¾c×GñJÛË´ `’nØ˜¹Uœ’¼\nš÷=¬±¼¢øIµ»¯Èn}\'þ`C˜5Öš%ý{·A™ûš/Ð^¼®çr€)·prAJB‡QÿvÂepþï÷)Ì ïRŸ™¼½Ny¼ŠÄH¿°ïy+3‹H(H^’e½E1ô”oóy¼ßÖŒHFÏõÐùY?\nŒÕü}VµÖ„é­˜n¶érô¼ÿ\0v1£êsÔNí>cIDÙ¦¾Ö„Ié­0ÿ-½*;:ÈÇÝj»lÔ3 0d€âscîŠ©\0q|KF½0šŒ_qùå­YsBK¥bÖ·b®ñ(±7^:ÿÅË½2‹dl@üWHÅñÖwÝ\0™€	wWœK9˜“‚¥ŠÙ½3C,wÅõ’è³WÌ‘Å>ª¸\n›c6i·Sú!‚àº‰½Y8V#r«Q‚$[)‡¼zºnÃ¡œW;¿»WÑ Ý¥½pÜW£Í]BS7÷Šjˆ YË4òci…³–AíW»\\ÎÀ½~Y–õW4‰Í#a0Ó<ùg|.J¥øºDS‘ôy·à\0a½¿e¼®ƒ÷æãÔ¦G9~½rsÈjJÐ‘OÆè½Â}ÜÜÕ5á›eÿ3¹Ù3ÁŽmhyDæŒQ(½Ä¤àg^ÏLØ\\FëqA\"òÇäýÃ’Á@ï½Ò€Ç[;žK¨kq?Bæ†yÆ:P\r\0ˆË!—‹EáÃ½Ò#¶‘äMOz«þqšƒŽ~…íÎ“8é°,Äõ„°½ÕŸÿÌ/äÞ¸j!TˆŽ¡¸«ãNTØ­¡×	Óâ“½ä…¬+.SÉ^Q’iÍ¦š&Ã·êÞYX1\"”ýƒì½çŒIÛ+rÏ|ÙwÔÍ‚T1a>00nio½ú+Ë\Zòoo`üyfúnÑyÃ=CÑÎúÕª8:÷Î¾eZT£‡ÕWÍ0w XÜ$âq/Â£‚1Ž»„½S4¾ûiÔj#ìDÏê¦Ë]”ÐUuºü¤_ˆÉ(KÁ¾œ-‘„«ÿÒÇn´D(@½ˆÿ¸º&éƒ6Þo¹Zä&µ¾$ÂÆbÐ³¡XâŽ\\mfkJã—Ú“­IÂçŠÊBá¾(ð)°&.£}‘_æjÎh®F(®™œÖ«‚ä”ö]¾*|WjuýÅt.!\Zf=Î>/Î\'ñ¦ü„^O‡•o¡¬ÓE¾ArDx±Á•+žè+`Õc`¨/[¦Î‚î-ùJëHÚn¾OQ™…þ†„_÷*‡}ã£ƒ³ÜŒ£Ž€ýâ|¹¾QÐ‘¶\rq-F‰äóVÆ0´€šˆ@¶¹¦ä•âÚ¾TÙ†ùìÑÊ\nÞZ–•~ \Zó—,oÁ{õÀþl[¾UÖø«·E¢X}AJv¸d\Z´¿<`eaÀ¨÷¼¾X»ì9$GoÆÏ)åÍÕ¸r?SŽ´”*Ð8ŒqÂ¾¬m¯)qpùìßôpJÃNnxh\Z‰a±Ä? Ã4š¾¶áø»FsfYØ2X7\n¼@k%|/å@J:y¶$Lq¾¸rh)uF@1ãþƒã¤ùƒËž–o”ßA<îæüTQãÇ¿\rù94Jbä© ³rª1øõÝLL¬ƒ†“Ù£d‡¿îO^,ØRºô§N¾sSnì/Ä§¨ot²öUö¤¯þ¿$D_‘ýP!ã†d\0LpÂOk7õNlû²ØLn\nq¿&x2„ã´Ûå*Ôn¼;Y{šíÀuDWß[Š–dêgý{¿dœ ÊBïsÈûùn·ü‚½ˆ9¿­“içãS*LDE¿$ùƒƒüApf­–l_:YTÜ^,FdÎ”‹PÁÜg¶E¿˜ÌƒV˜À§ëíÿ÷¥õš@P¡8øí‚S0šJÈª¿¥)Z/ˆÔ@¦·*ˆ6ñyêR7,ä“¡DÁà¿«„\rm–îèÔ}QÏ4%{Ëâ°{`ƒ\"2nEÝ*V$‹¿Ê·Òx¡c‹RYK¹¦S¿«M¶´‡O-ÝvY¥› Îð|¿ÐþÏIÆ€^Q.a²W(f›Ë¿b\n‰;UB¿ÞÃgùnÂ½ŠÂEã•9À¾[9­|<C+~î¸T¡”¿æRBE÷´ ÏüÐnH.ÑVR3+Ö½½fjÂv„“5¿ìû+i#\"iR,k2qÏX¿8	Ö ,It8™¯Ò‚ßYîÀüŒÿ’Ü§G8)¡NÜ*è¹‰àèü*01ð‹G9À!1òßåÅ}¾WŒ«F°8¬|ŽVaÿØópVâ\Z2ìÀ$R9Lž‰ÖG&m”[¶Óp(šf$ÊRËÎzXÕÀZ8t„§þÏ80pV¢Ûg<é\n¢­E:0o?ò%À“”Ú¡cÖàOˆ\\Þ±Dið¹¸c,7[8ƒNGs?À é×Êÿ3¤ÌU‘Qf~‡-X5ÚÞ\rJËVæÚÇÀ£-ðˆ«c%#ïepž~ÀÖ8Ïš]kÎd÷nOÀ§æE‰Å¢”¤7˜¨?>¹»AòÉ2N†pñ$u³ÄÀ»ÖpŠƒ6Y¸¸`È»Íÿþ#¹vñ˜Rë0u^®þ/ÏÀ¼\'~,·èÊÛsJÌû$¤·òTl>6ÖH<ÀÀoBr[¯é°n×¬©*ÂªX¨zâ‘\"ÃÊ£›YÅÀË_£à”¯<‡³â‹\'}§™Í@iÉÀXÀ¼¢^kÀ×VQÄþà=Ê§‹!Îàùá¯ìô±d€~¹+ËOÛÀê½Åiígi!ßÇøÌHÆ\n\nu+o}¢Ð¯n€“À¹£Àë¹˜¹[€ÉhD—e–(¯ÞfO¤[Ï“v¡À÷©\ZædŽÇïq|j?RŽN>‡AA¸{z=Î\0t÷ÅÀúWs	aÝýiÕùi¿W[/;´‹q‡P~ëSr|žÀúL¾¹ü8ÇeßV@Ë5œœœ Ãè]Äû”U°žVÁ1Nk™ÀÔ†	§3OÊ‚ÑÂÙ„“ò9kÇ‹L[ÁS³‚8,ß^+î¾\\é¯Û\")>(JãêÎû‹,ý­e¢ðÁhè=Úá›U—P|ç…?Å7¿²ÚÑTvA2YB¼\\_ŠÁ†‹´dÕaê¥åŒ!›\"“QYPÂï56#ÿ*Á­Oy½Ô¬,°œs2Œæê˜áx§pFõ—T-o¢Á°u	ªTTï>ñ…&W‡Øm¿_îxËÐ˜4rþkƒ)ÁóS–d¶1DS²™ËëZ‡Ûó”ü–½\"¿¹:4é¸ÂR¡ÎsïËGW²ÔÄ—TÜó\ZZâ¾Ô%²À´ëªÂQäýaK0Rb=µô¨â«Ñ¶Xï×®,c\n5iªk¢ÂhâaßŒ5©úÕ>tÙŒ¸^8B’rZâ¤`^Â‹ã=1¢{KÒôÃ	œ¬~žØ¸1„`\"ìL„\\|›Â–w.Dk€ <Àÿ„á d¯Ãðžúr‰¢Ojñ³Â¿<Î~üÍ°zuùh,yqpåhÓÁ½O3A(æYÂþ)Šsâ³0J/®¸@Ù(rO| A®>m¿¨/[ŒÍÃà*nB_ûRG-·YX‚Î/ÂŠ”ŽZŸKî¹qÔ0ÃÐ$…ÑHÂ‡¢ÛÊÝ]po=\'søþÊX&Í‹EˆÓ;\ZÃ*sˆ\n¶7)ùþ]Vl^BÃñü—>ææî¬þœ¡ŽÃ-Êt@“€^~¿«×Wá-æðO&4#Ãh{àIlòÃ1ø@—lhbù¢®T7a+¯ÄÄÖy$½ý[Êã«7´·ÃB¤7kÍ¾3žµ’K³¾Ëd\0Ö.eÀ‹½^7AAßâÃR&DúGm1eEšê¿:Ã¢íõ©…¡s®êl”ÌïÃ\\ÇKÇŠ­œÁmîÖb\0™V€Ù96 ¸—\'¼?ÐnH‹Ã‰ÅvÙÒÎþp\Zß¾€­©Váú‚ÛˆZ6ñj¬j€Ã‹ã±H%¦ÿf¦VŸÖ—·ôM^´Åÿ^4Ì\Z°£ÃÏÎÛ•t}ƒ‡y%Jnâ„æí<ñ†~ö…\Z­jéÃ¦g³½Ämp(_ÂYN³Œj‚s>šþ¶¦ÂESiÃ²\"æÛÓƒÆ‹»äÝ—T^ôÞ‚¨‡¤µÿwû ”ÃÎð]EÔ«è½™â.ßF=|²ÍòÀñÕÖÞàÃýí•V?\rå&ó²ÚÌEHDu`¤FŸ2¦<Ë\"hÄ	9ÿÒ­’¶dÐˆV¾÷oß¡c¢8Q§š1E/Ê=¥Ä\rX ¦Ýƒ	h^Ö/÷WXgjU@Ú6%±›0I\r÷Äâ¼ÛD4e6ƒSðo5RéZfÞ±îÒ<Å¸vÆÄ+v‡Dö·>ÖÜm\0Ùü‹Š³Òa)Èä7t2ŠÍ«AÄ:®õ©ÑäðÁ‡yLÂª%XÜš¿lYDºøŽÓ}Ä;7sÌ»Æªû±„ô²?ýð±£ìÖÃ­sÍ©5DÌÄ]®#knn\r¨¦ÙÄñ)Ö1­:¨\réxÅù¿g	àÄl¨!÷¬Øœ„S\Zñ©»c/$.BE½k\'ZFyö|ÿAº¡ÄvPUIEAL`¬ L_ùá2,õMtÖ)oáf.Èz%Ä•†Íx\'ªu~zŠ‚¨­…¢e|º\\EèÄvÓ2r·òÄœÐv 7“¢g‹iU÷eÞ«tÈ¾¤!Í“<Aßa‰OgÄžŒÇ‘ãK]Q_örŠoÐØèžXÏ³.úÚoÔÄÈáAÌ³\r÷ÌîÙÙ]y ëÅ~1]	L(p_ÇÇ¼ÄåÜ\Z\"Ôö\r h÷àz\ZªE£’S)nnMRŒaÅ\ZpK3=V#ejài×N<’VüÀ]À¶\Z˜År¶”?ÊÉ_}ƒŠ9z¹ÐÁÒÛfi·•`âÅ.=ÿ»m˜\Z¨Åláa<c†GBžÃ\"$§–¤â)ŽÅ8¤Æ$W–ä**„fè±S/‰,Hóãk!]\ZjqÅBàlãú¹À°Gu%ö?ncÖòfd•vä¶ßêädÅGB–wÛ«ÕiJºOà×¨Zì@ž-½.³qòÅJµÏÉv\"ª(pŠ­·Í{vƒ;÷fË‹ ö&UuÖuÅUÿ^$dÌ`ã·ÏóŒvŒî7îfErRÇ-üyÂÐÅVß*‰Lg®ÅbJù„êxÈß.g0Vìƒ»ZesWTmÅ^²\"¾‚Q»ÑœG(Í¢Ûe²Kü@^¦(1ðÖ]! \'\\Ås™¿rKªSÛáèÐ#A€/\\Â\n¡óÍ\Z\0Šc|fýfÁÅ›<=ª!Ó-uWï=«T\0ùc¥á„’ËF`”±×¹Å¦O­´\røÃ¹¢+¾\0½Aö\nN8øø¶Œ5pÅÂ BŒb÷tVV:Ï¨<(ôîyŒÄk^¼ƒm¼<üÅÆì¦e•é6€am÷Ô®œîäúR%M1;–¤Åï@t†!0¦%äÚ/;¤+(Ý€ït\Z•Uô)ü²ÅñŠátäÿÎ	-²¦b[í)>°×\Z\r¾Ðgó¬6ÆHƒ\n© w28+ÝÃl r®Ÿ¶oëP@üs>L×{¢Æ4`ôDÐÓMï¼ÈçÒêµåoœ°aâYÃãmù€ytºÉÆP*ôÁ\nDÕ³0AA\n·k´z}Ñ*ç‚$üc†ÆSÑ)KxX€®1ÙÿØ×Ó¼©¢ÅËÉÝ~ÁðÆbÀüÓÝ¥ÿÏ9½wEE3ƒ²ÌÉ|:Gä¦u,vÆlÈ¾lÁ™td±¢“A±4fè–ÂÁ@HÙòÑeXqŸÆ\Zd% \nØö[ÑKn®Ž0ÁóÖ!ò–õ&^¶ØpÆ„+ø•ßÜn‰T\0¹•ìo<\\?³Õ_.,¹OÓ”UÆfBÌäŽà±ÂÆCöÝ<Z¾x0‡ÍÙÏè­ƒÆœ¾î´5-ÀZd«Â“n3ÊI×ÜÍ\rC¬Ï\ZHùücAÆ¨žf}û¸À>^zûT«RsEyø»º:ßvÀÊ‹8Æ¯—<å„1¶´Ö³Šðƒ-…Pßf@ˆ§GÊ\rGàµyÆ´.× g]¬Jz¶ƒ•`’™Ø½¥­$LóKf‘<ÑÆ´sfçO–CÔ|u…Ìt=)ó´ü«k% ¤Ya”@ÆÓÅ³tÑF\\Ì\r€?¶ævÃÑôWCYn•qCÝÿ}8|ÆáMÓ\\¡“<d^ï\"Ä…’9Þ•„A†¤Â„N‰Ä”ùÆæªòœœ é\\bæZá‘_¯u¢C¹,PI1à[\0å2‰_Æè³H9zn©Dž¨	¹·•rY[œ¸áÖ\"?¡\"ÄZÇÿŠcñ¦±¯°gœ\rÜ~ òÒÇVÚáƒ5?ÈBÔÇ $ýi1aî0EQèaQ›‡¾â“Ý2¤šFÐ\\>0Ç/á.…€\nwŠÇ\'”‰O-\\mo}%-“¨\0ïŽ¥{ºÇ@—£Á\nˆ{éÞ	Ý’Ûéõ­åS/Ç-6RÆÓŠèØ\0·ÇY\nç—¬ó™}K´ÅÀñ‚ÇÂ³öZ?¬Aâ’,\Z©ÇYáêum¥ÚËÞ<slMÆaPL/é«+v™wdäÇSÔzéÔQÍc\\ìN–õó§äæ~(fZFÄJî‘~\n<Ç”ŠYðMÙgE+ÞUäXÛ57·HE´¦htÉ6¢îsŽÇ£º@x?ãÐLû·HeßxºÝ¸q’º*Õº„¸ÇÇa.‚ýdNG÷í¦kN×šíPõ\'“hH>[Ò°ÇÑÂ[g¤¤-éÂdû­9#	‡35¶{¢ñ¢¾êGg{ØtÇßöÁ<ï¹y‘SÝ€ùà<Ÿ³†NÏç!)ñvÒÑÇì§øXù³^Ô\'€P¯1|Ñ€8&dàÄ–KÑ]ÇÈ	’ÒÅä©ÀE4vó÷ú×Û¬„Š€>t&gâkÈ\"ŠºÎ\r¥+´í»fUºÊ°4ØxY¹*RÄÞl¼Õ£zÈUªcÀë\n5¸K™™‘€éÈ··»»84]$Ë0T`1ÈoôFûÅ\"—¯&Ô\"9 ªÜÄ(ìœízÎ&ÎåÌ±ÈuÃÒÆ§åÆçžÛcîáó¯uÔj…ÍÓ„líûtóÈƒoîg•´‚Q’—„ÑíýfåùßðìEñ¸-fãÈˆ„ØIy\0]QÈá¼£¤Þ(™í®ÿüïÍ²ñÈµ0”•8ÐÈS9ºM\\Ô1Ö´nƒáž Á/{³†4È»IŸßÅ”»qÒdÂœÜ<ÚPlÙmüì,9/,†I;?%ÈÀû½y[.]_zºÕaZ%ÛUò$DW-ê{Îü};¹yÈÁ*¤0Õ›sÓ:@Ò&¡O\nÎÑov#žÏ½0ÝÅD#‘ÈÉ#²âa~Â7ÔºM‰ñÞ§/<]¹ÃçFtãÍÖÉ,®Îƒ_¤šœ{â*‚O%E»ƒûHL\rjòMÉDÑŸÃb³SF\\žv©¶l%\'ÏÍ°^³3ÉEŸ>ëúË‘§ÁYÃÀ,XñóžäšRk¡õø2˜úÉYËuc¨‚?-ÚâüþÌÉÆFí½ÀÙ=Dq÷¸JkfŸÉ¢úÂ::Kqî©³‰é¦3‰úŸ5ÆFûpu@ÿøÉ®am†€È™§@•DŒ²m¤PØå”óÿJ‹ë¢É¯	j[IY|Ô²ìªb‘X$n°´…G>Ž‚²ÉLIÉ´ß10RzÊµ°†g\ZßÔ‘7¤„ùÈ²ÓûàÊª%áœËB]gë\"`.EÉ¢q§’²çª×à-C·ÎÖÊÚ9šúÿ6q ë„<R†_‰Á\n‚YBbÖñëÄS\"¹BÊ-+GãQ×JÍ2²ÙÙ~snmàª1+ufÁ\'sOdÊNðtk½«9^{¬­ýsx*Xà®\nŠ—ßb¶s‚¢é·ÊQÝh\Z÷P?ôÒL·±°y§8úß&‰>ûÚI¬¦B+ƒaÊwqËïŒ\\…ÊN];L?sBisíØƒòóï(Ü€ÊzHú»Oˆ±?ªÑÛ·¬‚GØÛ Ô™Ñ>Zÿ“	œ~êÊƒÄãýyÒg-ÒéŒGyv»mëÿ\"å”GB&i¾7qÊ¥™¶v2œËZ‡ùÀ}K_³	Þj¸ÑæI™l0”9ÂRÊ±~o©ã2\0“?S©V=«­÷¨ZÌæÁßs‘ñÊÆLMkþ·;PÉhJK{’+âf‰0Ö|°#½›8•:kÊßéÅý ùòßªGGß0hø‰ÁdâréŽ„…\nl§jßÊãs!¥Î~éøBÍOlÚ;iïKe?¨>VP®bAªÊåyí¢+ÚÕL/S©ÕŒ‹$.öbnëeÍžBªÊî‚xÙM»–gòàþFÑhäWõÛ~d\\Ó1ÉaÙ\n§ÊôTp@æÂÇ˜vDz|¶3E6’Eð¸	jö\\ÄP¹¶(ËgßÚCüŽ?à#ÌÓ$/ëñªT‡¤«èA}åû\\ËDUÚ¹^˜±ŠŽ\\æ¢ÛmïÅ$ÿ·Io¢*áº¾V\0Ë!ë[… šÿ#àÙÞ‡´*\Z«mhø¿¥p»ƒ6¯oË8Ídˆ9#×ZËÑoÏó\nT¤#ÿŒtÿ‹Æ9rd77¾Ë:²¿Ø#!”ºµ]6î†£I´03û—ÇÑÑµŽ†!RYËBUx£ØÄlrXw¶c¬ë<Àz!\n’bïOð¦¹ËpÁ¿L35pD^8ÁDX‰ŒÚ#qÖ»ê«Þ\'ùfƒêÙËñã.N!¢­q?M£†Ë*Æ]Ùá-£ y3,4P9Æ•ËŠ“%(½½º³Ô|Óâ›©µœÚÝvq\0½å}Éêí\\lnË 9‘ÕýHŠœÇ±€Uh¸LgNÄ{1W(–w£\nÛËºC¡ûÁ„ü\\Õ=•vp°¬OÃWó )‡ë[îÐ¡M†ËÅÍç2êÞS˜­éÝS{zb½þ-ïÍ¨¤ËÓ4]?¥^Dk=3š!©Z=	©ÿÐkÄñBÂ§´«ÃéÍËÕ*P²¢yX&%¾0VõúÉÚþ¢>\0ÙVûKNËô\"KP´¸K…/+¡Ýˆ«R$ùfßö!ë>ŸÉ7ËôMiéØì_‚\"ª4†ŠÝ	»»ZgÈþ®ŠƒÑ\"aËôxh\"‘‚Œ’\'M÷iø5á5LˆÞÒÆÙ)ƒê¬\\eËûŒVAÎåšÊáþí7”Äø©rdÅÆmÊÄ¶beÌúT¼©»Ó,Œ÷î—WMz(²¾Ç=ÇŒ	ß<Ì5å/Ÿ#P…N g×z\Z´&°Œ¦Æx½Š­?49Ì<c\'‰c:y4ÎOg8Ä²FèG\0\nÖ£Z7|öÌAqú+SO\rÎzÌ~(ÇfÆY²êàaÏÎ¹ý£y=A\r¡Ì`œ•]Æ¢ VÇ]¦„×)#–ûÂdÙOŒX1¶¤rÌeT8k“,Á—YžàÁh\\ÀºcµúYNµ›ÌiT7v1§X~J¢©£´éƒõ÷¨ê=_[i„\riJéÌq¬Ío2æÒ‹eŒ}¤±ÙXto|zJHãŸÞ°žæ>ÌŽ 1‡B›èSÞøîb`;\0&:Tuð%°f^Ú5Ì“>-Pc/s‘rtæ§)¬ÐxK>òl$,¥\Z±´øŸÌš×çQÕ\0uû4J47²Á:ÿ\"R,6´µÎ\0\\¼–Ì¨†tž«…X\'×JÜ³Úaióøm¼é>#MˆeÖÈÌµò¶ £±‰Ý*Ìo2Òd»‘¾*_6œ¤øc\nzpÌøÌÑqÀJÞ±³¯e Xí¾¬{~k¤¿\0aÖ’9¢ïpA¶ÌÛ&¿ažÑ&Jù_ÌÚÊ\"OŠTaÎ\n¹ž­SñÝÈø.ÌÝÆ7Ä®Xþê¹è`j\n¥föÊ}‚DåEr½ÌñF þý¤Jï?¾CÁöËNÐ¢´rÉ7ÞÔe§AÌôVk¥Âƒ];ûYÐ¿Eä™¡m6%\\‚3deœÍ\n¬uŠ8K°8BT×I)–›ÛW\'÷–À„Ž³|ª=Í«]m8Å‰”­n-`¦u–&ŠtÊîßœ¢â‰ÃSáuÍ¼j2€kpæWì6—{0@\n-“¤¥µt9Í$·-ÏVrTÂsYÝ¥¬/÷Øåˆh)ð£`ô6¹Í3\nç\0fByj­Zi„Û\n°FŸØºØÞ\0Ö Âµ#Í7Øf„¢œêÔøhCaT\"Ñ‘^>2„–´^~\"¹Œ-ÍI-.—§¼\r’Q1*aä÷	D.Ž…6¬ŽÝÍOGÔ\npÌQjÁ×‘8ô.q}PæÒ©ËJ:hQÍyyf\\uñ¦á:ôÑ66k<¿RV8:xêÊËÈ‘ÅÍˆ{g-¿Z}³ü^0:‘~¦É+Ã>‰x[¨ÇPÍ¨œë—8àQòÌï\\äùÐfM­JÖý’õþ¾¦‘¡ÍÃJª8¾šGš–\"œçƒŽN/6åÊj–)RVñ9¦§ ËÍÊyOóñRv‚ÛnXÄ3§f%0y8x{¯NoÙ:KÍÑ°—¥y+î!·1š±ŒîE†æåÃ€í\'¼¿ÎU¨¡ÊÍàÞ %Ix¼ž½„`¿ù»²’ÑLbðÉšÜ[_I%®¨¬Íä×Ç†m_‰|SL¬•¼ hŸaÑ\'\n¹Ð	(Ó\ZÍõ\"f_Åi\\µ›ƒÂG=X¶1±å¼!5»4ÂVÐ?g÷ÐÎ!Ù©ö!_#‚ûü*Ç“³Úç¶B	:¥ý’_Î$ÔÌ»°{Ï›àÊî‰@]˜ÓŽÁSŸÆC\0Ôà3éx—ŒÎSœ§Øè\ZN½ß| \"ˆhek•>t¾3Sÿm*3ªÎ^ñe®9|#Uê«6UOµµ¼ñþTb¾àìo¡¥~ÎsÅ/Üâñ‹.y±N+4[xV¼˜5·+D”\" žG{\\Îu-TÆ©ºÅØ\\XÛi·…ˆýÁ{Þ !7)÷Î{d£2SØõ¡¬¥¸gzfÄžóMJú±KKY1ã¢ÎŽÆuæÜLÒ%ç\0ý‰ì“ûƒÁÊÍï±ÏM0û@Î•¿NÐ:ù9ÉÿR¯}³5U\\Ÿû_ƒ…^s\nÈ|úÎÎ—¡ù)ŒnS&[{T.€·6Yãîi*¯H¯óó³çY_Î¨š4û—O¿¦o„„¬·aRË¯§«^Nrk/5âÎ­wJ.Ö¹¡‡Òˆrï²úá~Ñów=4ŸjØÌÈÓÎ®Oœ†O®ìyƒÂ#M¨«PìuæbT2.tÝ‰Ù°Î®Þ¸F¯\Zg¨T °‘ËïäiÈ†0bòwôiñ¸Îúâ²ži«`¨n7Ì(ü}å¬ú9‚/ø#T˜?ÏDP¿X`þd¡Ó‚®óã|ÚÑ›:Â’D˜3ãCÅSÏCŒklS“´tÃUa\"6ôkHD…¢¢UŠ·xKU¶>5›ÅÏJÊ§ê·-ŽL‡E»{_Eƒ¹ñ\0§	ú©RB¥}êÏNÅs®EC‹%ÎÎ\'õÛ“ßŸRf¥?’\rˆÄÍÀÏU¸neˆÐù“\"Ÿ4ˆˆØ\0Cp/à5éûÌý|ùÏX@ãºªÿûgpü.§¶\nÀ5_ãUqÚ s?K3ŒÏ^ñkÇ§!ð\0Þ¼LÍÞ½\r‘b•Õ£çÝ­,Ïl™uÝš·àÅ>Ê-´:„‰[BÇ“|*ïC–Ç£@Ï‡8Ù7!ÒÚ\" (åRÏ‹‚–2\r\Za­DDŒ{…oàÏŒž=_}³+~òæ½èÀÎ(Èže¤ìvrC[mâKÏÏ¸›ö$ý¸âaÎŽ5Q¿¹ÃÖc¸ŒXs§›ã‰Vjv…`dÏèÈŒ÷mm„Y³×ÀQ,|¼:´K’Ê’º%¥DLÐ#Êübå´XWbºpú?²Íÿ\n©Q¸@xËHcëÐ*XÈOLëÞa/£öÕèö{Ø’a™·wn\n——yLÐIàF³Þ)|#¢µópš±SŠ“RƒNbTÿ—isÐm¬óT¶ÃJ{)AïoÎÈnÎ;Œ9µ%¸ün[:ÚÐmö‹µútØûÖÉogæ87ÝPÇvÉZ:ÍEF¡¼úÂMÐs,–¶¾æÁì6äÇLb!’G3Jv^5KÊ`GCÐŽÈLÍX]½\'kªÒAûm”]·¾›J7ç½M”B©ÐœT±ÑFC)k|šÆW³jƒÁNÆÉ©Z] /e{Ð²e^½²·K\rŸs ;Söe‰D+ãVc¾ò,/ÔNÐ¾‘;ìc\0×„5s+œ{ƒu‘¥7”ú·^“ìŠÐå”ß­kFƒ5-nÍ!íx`Ok´ŒsãŒÐîu=J$˜ u	š°8âöÔ@åZx`Þ÷™#Þ)Ž+—Ðî™p­oáPŠË¤hzåÂÇY÷‘[|`ýà;]·¢ÕÐú¹á‹ÁXË–<R²hÊ#IJç‚á* Täqª²\0t<¤ÑbŸCK7j¹BœYíCÄn‘Â»ÉÌ¹)B#)öÑ\n@Ë}ãn¦ÇF¯ÉÎ>Ûk7X*¢úveÓ{}b‘¡ÑßÛÓI¨ÆñP0Î¹o-Âø¯„jÂÅòCÑ-û¦ÑæW¹ÕBBu´„ÚîžsÙ¿	#gÿ2­&º*ÑBå+u€\\íÛ§ãƒ-;í-R8kðpŽ§4C÷9ÑRWJÌ¡f+V÷¿UÍämúÒ9jŒÔOø§D†ªÔíÑzqè”·‰´žƒ‡ò™gƒ\rÓ’dKäùô:DÑ¬Þ¼.áA¨¼ŽÃQ„¸%8;+Ã[}©œ2\0OŠÑÂÁ\nqbm°~	+¾­éžÂj¹DÉÅ§¤É½²Õ5¶hÒ#ƒjÔÆóW7äî\"×eÊK´CóÁds’2R‰\'YÒ.·Ä‘3ÍþEŒÞ9D>Þ	›.¨Ý2˜,Ÿ!ÒYÌS‚Þý[œw\0m0HÝ+ÂÇÙ\rq‹Ž(Ï2÷=ÂÒa5“§š«×ìÐªøÚ¹-á¥{øé˜UŽ´VdHÒr°ÏVŽ”(-¡W‰ß#Qî¨Šù?`G÷uGp~n-Ò“Djk“Âÿ€h‡‚¢ð¼ˆ)…fx³wÿêËêLQ»Ò“–saŒ\"Äo?á†ûþÐ©£®ø»˜Šc9C§‡…öÒÃQ¨ “-¯yj™Ö$ie‘ÙYi{pØø¹’\\—ÒÅ8ÏöæÚªÆf.ç$F¼õL6wfžj\\½iÓAxkÒàÊ*^D.oÂáäRí|Dã9O²•4[žJƒ¿²Á°Ó	\"­<ëòÊÆ¶‡‹Š2»î,*¥5µ÷pÚG¡ÚÓE¡?‚‡:íÃzMì$ŠÖîq·eÆ­b€a2³E!td¬Ógj\"XkÀ‚‘Œ»’°séÅÞ	&åQé=IŠÓjòE‡NÎ7Ž\n;Rù®}l¸þpfV–b‰m´¼‰ÓmÂÿhîc\\µJ¸Ã×ö~9‘HíJ¿¦$[¨«Àx[ÌÖÓ~Èm/æíûÈ¶”ü>ßÅ©T.)–,l¶;;¬o[Ó†ÜË‰DŒgšu\nÄâY2.å‡C0ÃŽMÞ(Ó‹;sd‚O¸ô&hÚgC0–»¶‡u!Î[+Ô\0ýÓž*Ø³ÊêjEŠW§;éÞÙä>$:ó¿Ìˆ4dÁQ+aJÓ¨+±`qs•{9¿¬„OF’œ°x¥vNms‚ñ{êÓ®ÁÂ¾Š&º¼Áj\0Ðv«S ·âÀúûÌì|.åkÓ·Ä†“{çº¿mÃ-a.G–ä¢ÇB1«ÿn—·É×:sÓÍÔœ´í÷éÌ¶:wyjœ=º¡üÒ•­ÖÄ«6xö½¼yÎÓ÷SÌÅžœy[9Èøå l:èZ=ÖÍæóÔ/?BËÕ<\\Ï|8èW)\0Æj|·²¶(	Ëy¼zòÔ6§•33Wq¶\'§Õx¬0`¡CæõAðW\'®>Ý©ÔK‚ñá•\"wª-\0CÒÿ˜V!ôýŽ)3Æ§UÕ§yâRÔœI|y\'ÛÚÿñ vädñô§ÅŒ#ÞÏ®t™èÔ¥å®‚³E¡ŒO1ø\":©9¹¡(ñTQ²æ\"ŠM4%ÔÁéô&r’OÐfA[È²4ªÉÝqU}Rà\"¯µ³æÁGÔÇ„ÆøéL¶g+¡\0vÎQò§v1°“R2ß¡ÔÏ/Æ”Ù~—Ïž-¼\\Ø ª\Zû­@G>âØÞuèôy‰ÔîËax³òn`ù¥fãw?Õ6y}>ÒÜm\nM×æ–ÈRÕ\ZVËòy¯f`™T‘Þ°ÑÃ˜`‡ñ¡šÍs[Õ|œCÎÈIûmÅyu>j„©Š€™Ç\"¦eû[8%Õ\Z\rúÈÛÎäË¤‚\rN}ßR—ÔmãD<ÕkåžüÕ1¨\n“ù%¾DÍ{RÓ¢\0›M+ÚÎ2ÔÓ¢€ÌæÕ;ß\r´MÊ@†Éj¥ù˜c£3.·RÃ2 Ÿ‘-ÕOeZ}{®‹Ç 7 tBR#\r¿¸\n0f“_`Û½ðÎÀÕ\\É\nð}(“nÈaŸ¯îw×Cð9‹-A–šIQE„DÕ^³Yl2ÿ¨ÙJjËf\"3¹—zW£0Y®ïP{ç”{Õy„Tzwƒyj†m€ÔË¬€\'äï¨fñäÚšGÕüÄ’õ×GNÛ2’õ*íœRmWF~„mK$QŠÕŽ1øç¨Ïm.JM\\kØV¾?1 [`u>\0!,»¹Õ•¿ð¬Ê>­oü*ý®å ,_wE™ ™Ž]I`[3Õ–érÂ\r¬§GÿVpGG¢×ÝŠX3íßø€›ÀØ;Õœøºã5IË†ƒÏð3Õ§KnLm\\UîkÚJØµlLÕ¦‡`˜A»^{·ÓãB»ÿbƒ\rNÆ¦‹€†\ZßÉÅÕåJ¬>#ó\nñ\"7¨ñï`)Šw¿Þ1ª0.Á^RÕ÷bÇâ†ö±ê´šfÝÕŽÈRS\r€ñGñ4åç‡Ö(¯¹!úOX*ŒäöùŠý¤Ò7’A©òl±\"‹ÉÇÖ8›åÔs·Õ‚‘g\0[ Lß;:w¤â?Â6)n\r}Ö&ŽÀap6f±K)¹^o©çOs‘<«—ÈêA6ÂÖ3æAß¯†%wZÎ5-DÜÚ¼éîé@ÞÀÂ—°×ÖJ‰S›\\<‘CÞÐ=s\'WI&\Z‹(þÐðvaToÖOá,\ry\"¶ÆºHoëõS­vêP	¾SKÌw‹cp­ÖUô%(ÜláfU}â­æçñ¸hùp2Ùÿ+nDËÊ­Ö†ãvBÇ‘dX ±ç1f­vH¬ŽÍyÎ)ñ«lÉÖš‰ÙÄƒ3Í’€\rÎÄ¹„©ðîè’TNô3À_*˜.Öžê£&úu×ržÌö|ôÑÖi+Q­`Å¸M1¯UÖ )–ø©í–8Öôl°÷/Zà¤Rö=²Yp…«ýÖÝO–¯2IûÑu>&Ë·À ™èuòUµÎÄ–ƒ«ê{×®‘§kdo\\•¤æÉíoè©ù~(yØ&j×ÍÂF¦×ƒÒ%¬@¤I¡µŒ(ª.#–“5U[Ö‹DB@ö…i~1”×\'7Ã–ðŽ\0ñW”ÀÆ2j—ñÌÿÊ™úê„ÔÑ{`€ü×/f˜„Ê4°¶Ò\' üê3¥Z¾íø™°€\r7˜¤×01]!Ö¥\nÒc3*ÏÓóaVÖ†e¶Æ—ÓÈÔŸÕ×9RíìOt\rÎC_Þ×ù§Ü4cØzÿ¨S†ÞâsÓT×M)†P­HŸÙ¹ÅœkÏŽ%7fˆ+È$Ú.ºÚ~Ó›Û×Mxkv„\rnÙsŸž]%®”³°Ìÿ¡T¬Ä‰Ò©ª×^Å{ðÆŽÝuî×ñíÐÿ’º“Îj-{V¡=OÍ\\î×j±ÒÕ??f&:¦së[#µRDs³¥;Ê…i×mdJNRéjœí8?|›ÄH!‰sÑ’i{OT6ò¨Ðëµ×{z4˜8ˆ0øog3œx×àF±‡RòýÇ.ƒè:+€×°É§&ä„‡û2ëÇÐC.Œaº‰eE0ç,9×Ô\'ZS5€›‡ï4ˆ¡G[«»\\e¿€}*<ê|L;÷z×ÚxÕÖx?&ÛøWFèf­=èãxé;Ò¸™.uL×ôš·)Ôœ2ŸûdÇÏL{ù€å0€Î3Ê5¾½Y’!ØU\nhq\\¯®DÞGÛhB„,Ú;b&´Ü<éC­Ø$ìH\n>š‹»‰T¬ ÷EõGâN™Ð`öâ-ðÞ*ÍØ(ºqº¢–#Ôœ‚¼D“]KæƒãÐX ÂÐØJê•n¿ú·piÎ®oÀ§(ËÞF ‚…°ãýrr^$îØOÎ5µöüMÝ&õJúùüDÏKð‚0£FãNw0\\ØPÝ»s-\"»d›,½ä¸–ã„nÇ7z:€nÕÉSKn‰ØŽ\\Xüâ)ìÐ¨Â®4ÁÊ¸cWÃ¾#E5ÛöÓ‚Ée%çØÃâ/šÞçh] “ÅÍÞ²»#Ñˆ9“²ï`vÚÉÁØêbÙ(cÇ/›ï²Æ:»²ôø+õˆßÂî„~ØãäZØðîüµµ²öñ|\0uŒÜ%rvBT‘ iæ‹·ð“óØôÞ‚NÜÉ««Ôýá¿à/¡†=õ–1†ÜI¶ÓÿðÙDj0\\l›ÒM´51(Ráæ;\\gÕŒeøÕžþ$çÙ_,¯j…þè–¶Ãût¢C@÷¼ÏŠ¶ü€‰¶Ù&8H×ƒaq_¤/ñÀý •³†™BuZôÙ&‰?´yØÊí=Ó¡¦ÃC6™d6òmÇ\\´]vayÙT*«f‘Z/ä8†ß¬ÀœU(WòÖíöUòï—{ç-–ºÙVÍ—œÙ8$4§l\\ýÔL4y¯\rñot«f`8†Ô^Ù˜‰ù\"Õñþ[Ñ,ÙTý#ŠHÕÎ5\0ùF	\rÕRšosÙ™ßý$¼Ñ°„¹ÕR¨ej`^„ª7Ìè‘Ÿ%ãà¬yÙœ›³¦ÿMèó¾9\ZÖ/·´ÖÊ\'í«ôÖõ Ùž˜4bVtîƒûêÕçtk‹À…Ep%ñ~D`%Ä\0‘;Ù´Î M\nŽ¶¿WX\nŽèº¨Ò|Í|3ßœÔþ+ø+¸4,Ù·ªç´±˜1]ùÖ²lzŽ¼bžVPê¹xëÌœ¬=ÙÅ­Í?Æ/‘’¿ÄŒ)å-\'LÔ— xå!ô¢Uw²ÙØ_nFaõŽÙ>e3¼Ÿ;vzšßãtÜåÕPi(üdÙØÎ|\ZVw7BAzÒázMk+Àš¸øOš5î­ÆÍ@ÄÙÝ&}ˆ,pyÆF(%²Ldïö\r*n=YNtÙïª,kšL®]*–º]>N5c	Ynô±ñl)\"†Ùðïqšqpu˜ªuŠ‰4FÂ€æÇÖÝ†$ÍÓ•ïžÚ_Ùp~Ì*Ìß60¤#¤?BTèP„|½Âÿ:ûX´Ú\Z@Öd­\nf!BïŒÏ>j§×\\R^3Òâ¹óªÚŽV™ÐcZ¼Î=.\0…ý¸¦ÜˆÜõ\\º\'ˆÆ,ÿ™(Ú.#ËR[$V<¢åZ>f+ ÿ¶mÕ½Rh_i;1²ÖzmÚ6@£Ìd÷3×5(•G\\‘Ü§Doi	PŽp*vwÚ;ÇèääX?=æs|V§F˜ýÆ¢Id³šE<8µÙmÚJ.•EwjôÔöÞÒ#_\ZÜžf®nN€þ7’‰·ÚU/¤“è/gÿ#ªÍJK²Ó’Å]å ¹‡üÀ²Èý|¬M™ÚnÐY‚M\nªŒ}2 `’ÛQæóßvÇñ_í\rzBž^=Ú…¶c:íÆÜ¾|@¸°lõ\'ÆÒe±©—ß²“ ~ÃÚÚ†L-u5Zkw‹=03O¸Œ* ;XJŽ¢²\'z0Ú«Å²¶ÿöT\"ÏÛ\\S‹@¥„Þ¥–+0yrx9ôM,‚›Ú®(‡\"¡Y<%°I 0c+	¶±ƒÄðMÄìv1ÚºQþ©GäƒžuÆGiÔ¯Òg—¯Ìç#dNõ ,ˆ—ÚÃòÖ¢âü’¼ï¶è_ƒöš5†^Wç{£KbÚËFÐyPXÈÄpŸ^MºÆ´s>ê\Z‚HÇ.\r¶ÁÐÚÐýßZ£\\UDÑàþOÜtóÞ”³&Å”LZO\Z£4ÚßvdUÓÒòé=‰Ã…=cx\\÷µé­ž5\'ÒµÛdÕ»`¹›k½Â_[aJ{¡Öp\ZœE=„(X‚’óÛ\\s	Ãp¤JŒTX~†×\\és±Ak×\Z-=}FÛb–áœ¾ïTEw!§†}ža}.›& c-BÈ\'¡Sj?Ût6–÷õSzìÃ¥¿ù«Z¥ã‡æýëÑú,jÕÛ‚wT\\â… ¬+Ú=ÅÑáž¶ò…b\'^÷xØKÃ.ÐÛ£ë‚Ô°<€ÿÐš~_ém?#±†¼©í#B	î(ÒÛ¥~b%…w\0 ˜z±9ŠwsÓÔnùÙ>Dy1Û§–•ø†è#)\"Uõ­ÎÔýG¤þº´ÛÜ‘é]õ­Û­M:EœÞZÛ<v(@^••òeõíKã\0Û³}sYDk6›Ðë‰ñÍMµÃ(kGN‡Ø©\\BÎ‡ÛÁTÕjñ¤5àDžý­-8FŽÚÖQ\r%Ñ.ÝmÛÄ5RÂã–©\r;ögPkl„r<âèCDŠâ0*\nö)ÛÑÅÂmÖÓx:°.ÀožÞwýpÔ´6b@âW‚FkÛÓ-¹ëÖÛÏìïÜÑ1éäq‚[¢4š2\Z@Ñr»: ÛÓªN‹÷lT­D“…Û,\'›;Î=«¸†%È~æ	H`ÜƒÝÌ`@}6ç°Ðï[d=w\\˜Æ+yåÍ%e‘-´_öÜ+ˆ°^•ÃJ6ÂÊ^NihÈõOJkföiBªÎáÜ¥DœÌ‰I~Ñüñ§Åú.lœâ²v«Pg»ášwv\rÜ\"aMIøÇñ\\ÝP¬;bóÕ>ê§’5>7Dub«lg ÞÜ=z^«z)t‡õ—?Åªïé³Š<)–“+$á>ÜS 4Íh¬\"•hAD\'¶\'|ëº6[kF=×\nyiÅõ«Üfóm»³±‰Rþ²…ÔÌ—U’iØœÏçÖ!Y¹Üh‡Lêça¿þé—¨bøË|\r,7@\\\'>Õõº™0ØÜnƒ+SûúK‡ËÎ&€s¯„ñÑ‰·\\;Y·q»9š‘Üw¥m3Ÿtï	›ÇÐ«Qvš#`i-1ÙžäUúhÊÜ‘ñ‹‘„Ç£gþÖÚ\nÜÜ÷4 ]´Dø$ƒ¯ñW¢¹Ü—•E¹V¼8Ö‹i;±fÀeä|­Ìâ¢Ë¤†ËÜ£x³ÅL#Ë!ÝîE±~p#‚w¼ˆöpý1[©0L´ö\nÜ±f²œžX¤ÅIñ`&•›¯:•=^bçKGÁ\0.ÔÌÜ´&Š#¼Ôkp‹e`£ò·ª± h™fÏsIžXNkÜÉ:øµK³º¿:õ\"Â‡$_åÇ¥ý\Z˜†g ¹…ÜÐpSI”çÛ{Ç«2jP±µfåGi+YHñKÜ×€¤á…îÃÞ&¦©ôf8•§ÖŠ„ó®Hk[%ó¶¸ÜãmÖrÂŠÝs+n²0ÙOfüžßìÖ ®Œ7Àíy€ÝÅî§g\0xâ-“•¬¨8£“ÀøßúEèmbßE\rHÝ	Zº¶m¼Ž‹Ý\"®6‡Š¥N`ï! B\'wC•Ë®”Ý.°0{\'~K.sJ›·µIPÚ«º&nR‡	°2ÝJ¶ù¯X}šúkŽ;\nÿäöÁé5ñ¿V´ržû4ÝŠwµ?ÂœL)£ä­K¸ÿå†f4Ùº\ra~÷tnTÌüÝ©zK›±u‘ÃYáà.ÃÃmýiÂ4Ÿ’«*¬UTâÝ´ªÏøî\"c¿YO€|Då\0øÁ;í.ü¨–ÓÑ´º*NÝ¿pü\\ä/h#]\"\në=Í/Êþ‹¢MZÖƒ²á×IÝÜ33¹u n°±M5Kh&ÍbV\\%˜Z$èiöîÖÝâC±1Ù~sÙ\\å6ÎrÛ˜âôŒÂýŽ¸\nÎ£ÉÝêç6tt‡Ž|ëüÉhf¥­S?îfí_z¢ªŒ`ôy‚ÝõïÈë…(Hú2\nyÏ€8â…FÑp¿˜àBÝøÈk¿ÂÊ«.E» Ÿ\"yË3ø(ÉO6ÂSuÕ›Z&ÞÿÎêS,®	É×Ôpö\nb!êós!œÍ®]‚>ðÈÞ\n˜óOºÛjÇøÔ5»RLC‰I˜e¦ôºèá»”Je\0Þ.S”Fˆ>í.œ«çÝî¨wïgÞ:$€\Z	ž±ªVÞ8{äõV÷íú9Ë/ÎjÚzbbžÞÛhFøµ+”\0~šÞXÛtáðÇž¬ƒC¼¸{•Ðã%¨©fÍ\"‚´Z_m=ž‰ÞZ>D[¹{¶©Î/³Žm9qNÔ9wN|\nÞÖ¥ÙÂsÞj*Ðñb”ŒîTÿó…O5påp´`€„)ÂÄÞ–ÇpöŸÂ1iýÅÐœÕ¶û&ñÓ19Þ }D3Ì²»Þš$>ªÀ÷ª*ñôÈÈÖ~wa°\rÔÁµxŒš„Þ¥\\Þ}ü9QZ×è\rHO\Z™+ÈCµ3\rÍ‡q†Ñü™,âÞ±ÔÛî\n1ç¶$Äd8v^!*˜3Èçó#Íœv@ÞÂ3¬&h±N;y‚B\ZàªåN¤ 8	jüxÞoùÞÖXQl~?‹8’¹•¸ÖiæÓêi8|¡«†þÕLeÞþú¯Õ÷ËIÓ_y:÷¶Ž“&Çë³ûRªzß²<OT%x\Z´âÜ‚it11E¹gÜU&½¢2ß1°YI\nf	œê¹Yá¦ŠÓÏFrLÇ™¼Ø7€ßu…¡•´ÈS–tÖ—ù³õpèœÇ¯$U‚-²mö©ß ‰—~ÐÜV°>ƒ¢¯ò˜€¹çEY\r’,i¼Õ‚ˆþß!\r„2nÄD¬›À9Té%TÖ–Î\r>™‚›ì‡Æ¾âÎüßRŽ’˜<îF{È;xÙ¾Û¶IÄx3¦\nézÇ–ÛQÊßh°Â-nñ&ûU±ìe\\ÑXjš`øünÙ­Å|ò&ßkÁ—2ØùÊ°ãS|§ØôIÚ…ß†RØýy¹rÿßv@|ßz÷%ÌÓ¶p,Áro;B5\0±ÚC®…yaFßvÙVNcÛŠŠi÷Ba•ÖáÜÓÆTÇf€Xß÷ß| ³jòªÓb·ªdPÏCW>báæ°$=OÜtÇß—>G8jÅj±4‡•8µ-sZî‡ÔsÅfª?ß…y÷Rë˜zå5ñµT§˜\0ËDUç££	«wÌ¯ØßŒ\nû‰ür†ƒsgÉ´ÅÚã5Z¢}Ì¼¯õâ„ßŒõPÊý½Ü»†\0·{QçÐ©#î÷m,Áx\\`ar_ß”õÌ}>&žIy¸	p‡—Àby1©°8‹gœJ\n °ß ƒ„B.qf6*_…í-×ëªù‡¦W–I£Õ4—öK2ß§Æ)óö¹¥sûgñç¯,„øüHeä|•\"ÿjÌ‹2(ß¹VïþªˆÑçûÏN«A=´ÿ²XÝÀ÷\"ìÃ.€\nßÅ…i‡2—³~ê<´g»qÔ´TÏ—öæî~‚%>‹ßÔ6mÿ®“–_¨5Óô³Ÿøí›è}Ï;[IßòFêöi±Óêã|x¬7N¤™*T¤ÏÏàZ¦´j”\rßóu^kbÚµÄØÈ)†P\0˜€×[\'à.¤l7†ä^\rßö?Š%ÕRþ¿êc’Á­Igl‡ìŸù–¢QRx\ZÐË®•à¯R«-S®ZoŽ3Ò³CA›j»—¯	™M”‘^à2ÒÉ–<”tfp\'ÒÜP6ß±Éú)¶u›´@üŠåàS…ÿC­o†¶­m9¬Êô…4]·2IeEü˜k…„qàhÂö@N>ÌÞ‡Í˜RRSo sªBycó!Íõlàƒª¢çê	MJh^ö…`Å¼7¶ýZà=ÎÚà^Ô¯¤¯à…ÏÄ½1ÍTg‘«Ø±ÿÀDËñwàhÏlàŽËÔ‘“Ëì_‹x†4Ž°®í\r[òÏ	\r+¹ù…¾~à\"j—\\êç²ƒh_EÌV\"¶§·R­ŸÒ†càœÞ}œ×o©iÓ¿FpÜ&KÍIPÊ½±D²á[‰’ùà¢ÔE=3iJ[aÄÝx­(aB½tgñP	Š‰BƒÛú†\"àÏ(ÜQGè<C°<¼’¥÷êF\Zm_=|…kÂ„±BÃ´àÑ4¨á>]F´fw\'à‚†ˆ¥¥¿æ¬šêã­Evm8”àéaøÄ†î¨¥êJÊÿ½µHÚ¢#e§ Rû¾7\"dáè”ü|Ÿ¬“ˆC„ÊC0½ü²óvÓÇ0Ké°\r-ÊáèÉî´èp¹Å®úº4,™áéKY(—IŽ á xD¨Qƒ¹á/¢tú«àÅv›±ÉîÇ¹Uå¿8¹á-¦â©é4J \0ó)SÖ´ÅÔÍëò?Êk\"4àZ¹.áZ9…\r¡k²ÕïXêÆe‹_^ˆq(Ñµû/Ì¹áh‡Ñ2¤úë2&ÛXˆt-ååÛÂaüœZ¸námúsNâQ\"?»mFN8ª?™pi\Z²hê©HæzëáŽžO,äk”h¬iY£´eÕ8;w*AÞŠ&\'D:á™Ð5’`ôv>‘çdèŽkÿ}< ½ºö6Çþ€ ™áŸÈ€òKBîÛµ&|UBÆõ\0¨Y¼Ô;@7Òñ³ìäá GJãòÛ½æ·+ÖI¾¤-…“Æê°i3×<áÊîe\n!ñd>Ççáa‚ñ÷ö±%+£eT7 õÒ§gáÑÙå¢é¿ßdë§ë‚ñ,w=	©{|\ZZoÏ¢.šÀáÜpÖ]íU\ZeßÚûO§lP¨ÄÎÖ&A{°Š5áå/ÿÆw?Z)H%ÁK“-œxrNœpê”¨Ôò%ýâ$,¶©…©5ö%mŒœüäí§¾ÿÛ,»\nu(Þžw0âKoHJ,aô»	”r†U9\'s?Ì|ˆó™«¾äôâR0™ÏAtRWëE  )©çÖ…uT‰±¬R¹ÏYÅâT6™Âr‚ä³\Z¢IZ)³þ[w[]ï¡=`Lï ÃžâV GëLßä¡÷™¬¦mJ—ÄaÎÏf¤o€\0åÔâW»˜eØ2Ú`Ô¥:Z?¦š¢Óì^X=GÈÎ³¹âb<H”G§âwE×21ïwh„a3(JÇ@â€µ`úiz  òy}ý³fWÌmhïGmM•³¶]â˜H\rìu’‰:ðº4ˆá›Ì©¢i²ô÷——7[Gâ¤ì³™rã/a4 v)šw}Uõ³+ú“è°†{3â¥¾¨Ïµ¹ó¾”êç‘‰—N)]ôòW1—Ò+Z±§â¨*Ê Òu<àÿeëëè\nÞç,›§¥&­ÛÍ­1¿âÊ€Û:If	ÌÚ¦%‚‹±5Ð@Q‰85õÊ‚1Û-5âÕÂÕ¼ymén*$ï\\lµüGš…ÈÁ*²EäM\nlâ×­Ïm³[ð-ùB²8Y´ŸÙºª’d™¨ûJ6áÊS.âÛV59á†ûœú4*·„¶f¿H	¼‡ìr™š*\0ñYâã±¿;+h<Rô¾Ÿñµ¹VÅ_ã×u&RƒÅá‘:âê˜Æ¹éW\rbC¨JŸ™9 žnàFB ˜yßJ/ãad¸Ë“V§ÒBZLC€ù¹¦;’wxãY^Áã-ª³óÑo/@ø8Ø7²²Ÿ?ð›Ì!c°¬^ªHþ\0ãEœ*ÐÚªIòz3^M±Ž•P4Æ¥¶FlÃwRCãH1“\0H\rgf´^Hq*ƒßvþ6MÇg2ÜÂ¬°ãI®Y¾–”ã›g²·Ö_¦Ëùµ,ý\ZI.&;Ó¾rãV<SgàU|¿4E+5å¤Cõ828¨˜‹Ò½ãoù\'Û?ÓõŠ_æ8ÅäÛ—0]$47F\Z£A#„[°RAãrÐÅ57‡Ç{›0²7f=ê9GûcNÌÃùyÎŸorã|‚¸Aî\ZíU˜\0®ÎjJ´ŽÎ†PÈM6.\n?ã~¢oâ•ÇÎ¥™TXJ)*a›†ºL#ôVÖñÅ·Šîãú42Bê2Ž¢ü±,u¶ïÊ•n}~ÂÒ‚Z-ã¨3¯6	Åàž£›ø>Ó¯¥\Zÿz?<^ÀæÁ¡…ÏÞº©ãª%8¬÷\"¿yÙ±OlBæ=VG‘áhó‹!â³ÌKö<ã°ÄB˜üšûôÈ™o¹$\'®Aäd›“L¤•™xR¸UãÙJšq¯Ç;»(5nOÇj¦nYZ5qÚÇPÜ ÄÎ4ãôzgzBìtWnŒWþ¢&»cÞ\'J@{TçÈÖrŸq¯	Ÿä*k÷ÓJ+ß0úÏ}þVL¾f6	•âÇüÓ†`lI*Hä?²6­‹ûÃG§}hêoÚBƒêñ Ÿ‡%ãùµLä@¡Ä¥¡òübu‰(FHP\\È¯C9!²cnÀäN*NJg§ª}YvËâµ7ÑOh%.\"A—Xä*ä¯‚·:«rÿ µ›oOÇ\'7x¾9´ é)y³‘ûjäÑ?wkÑ6òÀŒ£(.¥T–Êv—Ì¯1‹ëª½¨»‘äæûŽþ5‘NËíbð7Ù³UwŠÀ*)Úh	+Úž²äé‡\n)Q¶àNÊkÛÂUî4žÉüJ°M›Ñ\\ÌñêVäë«ßõ^1µÜîÃç¨u²îrYÞ¥1m³wæô’±täìÚø¦ˆ&˜Cr\'BMFÓu\ZxÙÒ/D9Á«ðzHäó&Uéÿ>È+Tœ­ôKðùF(—³,`:7­†QäøäúÇ±-F„¡ŽZ«QéTÆ·n\r¦õ·{ŒãÁåPuÀÏ…ü¹~û\r|F¥ÅSža(ãJ€}ÈŸµA\rå1PÔxœzšuíîÑ·±;gtS7„×éGn+‚¢Qå1âÆrg¤“‘Q× ygáÐß5ù±.h¢”f°ÿhmå;½öÈk¢ »ðô²±W8¡ÜÐË‰Œ¡ôÚnátåAÜèƒøby—MÏ;(ujûù?Öó]ë$ÍCÞÿì&eåZæÃ%¿,zf¯w#nØ”5²0DŒ*/r…xª¶PågÖæb– =#à¢\0öMœ)ðÝB×áã…\\eù±åˆCAøï²wƒŠÙwK°HYøªÍ\"÷´ä0d´ß·žå”À~ÈØýkí:µ£\nìøäâY¨Ã¯y.¾5 <€ä”å£oÊÆ¼oP?¹–†ü©D¸“O%³úÚµN:(ì²å²{¥ZØÓŒU†J•£øk#H‡…T]^¥Uÿ\0T’jå·Ä…[Æ·G®Ï¥ÂÖ±!IŸzóAè4Nÿ:ÓŠÎå¸ðU	ž[–ÇÃºêæy-ÈÕÜòøŠó˜Ê)­ä›5åÈ_âBa\rcÿ­‚ëÑÿ;£ö‚pîæ×vˆgm-,åÓÈý_í¼\"T›Pœ].íž­jî¦8\\3Çc\ZÙ^ÔýåÔ@i# UcjH«q.—!þâî¿Û´	^UœÓ\rã¾såæžþ;må¹¡™F}I­-6áœnÎ$[åé¨Ž$\nÁƒÂ9Ÿ2%ÍV¶ÙúÂ”Ò0D2`qœ¨åî¨T&²¹%ÑíqŒ5Ã¢ÿy\nVÚŒ¾™H©tÈðåöØÈ:œÐ<‡k%·›û‘Âäÿ (õ„Â1²Ó.æpŽIŒ¸u˜Š¼ÜeIªt9ŽëÔ]„\05¹ôå^æ\Z!žùÜcçxN°®d×iÔGeAI@ï\'iÛ¤ÿz¿¦æ*ÍýbT‘JÓ-2ãÔÌ<…8Ko|’nF&Qó Itæ-Z\r“Ë…‡òH«F® wbä9Ñ¿\ZÓxRî×ãÖcæIŸ0ã{šÈeQDäÐ ìç€{‘°~aK\\-ÖB\Z¬æ](5zÆ!üUÇâN[áaÀ9»{ÝÏÏÆÔj©›B0PúæoU­œÈÛK¯˜j¦ÚaW”Å›\'„´—Îyˆ³¬Yèæ›—>Öâ@-œÏäºì=•æ	gò„_šð³õæ¤ñ{-SP+f£´QúpäÔë87i!*Iåíà§æÕ‰{£¶†•½o×¶gbUŽ•œhº6‰ÿ–XE’.æØÛR‰un5jšŠ©ô¸ÚO\0é6\ntìuÙ=´´æöÄÁTÊà÷jŸÝbGar¸Ußê„~•\ZoZæö\"TÉ·Å\rMÙ +èÂš	`‘ˆÌÔgOålæþ:”æìâæøl³}s1¤iJoÄZš3wÔ/atØç?\\pûŽiEEËþÊ,›8±ÿ¸¾)¢TÅn,û„q»çSFÂz”È²MRýÃW3ÃÒ\\ÏŒ€è\rÇ×q¯Äò1?çXE¿°GD†f°ÜL­SÂq…†`Ö	€”ÈÙ·ç‚¿EÈÃî$>9¬6g\0­ëÃˆ¿];µÅlˆ¬ ç…\0lš*\r¾ŸŒÆ\n%žE\'ÈtûûFëàä†ùç—°fùWeJS’“ZŸwëkìX¹ºÚ±ÜòÓçšØ~¿ç‹\n}Ê@™=ÞáÜ\\Y³ñYÁCªˆ]ÈÇ¢é‘ç¢‚€†Ò5 ¹¢Ìc§Z¡Ïç°\rö»l¶Yç§Æq\n\"Ž)\nŠÑêSe]œé~¤&^v¹ŠwçÅœ‹¡´‹‡v|Ú†…`z`±®„²I{ûzÔÖC€9çÉ]Wªòˆî9Õ‹Ê¸oz=ª®™p³røÄóþ7è\0£H\n({ÝS=gè³®ÙÿÂ‰kyoÌä?þ”•¼è½¸Ï8Õ‡¥Ð|BÛç’D…Šÿæ«1˜‹3œØ7šÝè¶íÅ£é¢\n<Yz\'±ÉjìXœ¶»`ê¡fr¥Qè\ZöÈ¿Ó4ÿáü«M†F/Ç-îf‘¿r“:CK\nèÛ8]“›PYÝÀ5Hý¼ågbÇÜ:’<žxÝ¢¦ÔXè‚Ç,sèÝÕ\Zi™(±6è²¿!˜úžÿgŒÑŠÑk8è-¢Â›dŒ´xøj½)”£dmˆxÔÌß»‡ë?èJíck!Ô›è“HæF¼fKè\Z¾–ö­ûRœ$H¤è´ZYî¡Á€\n~íÜP.åêxêœƒ N×ýÃ®(¹gFèøw÷@è©YÔÌÃÀa_‰^ËËf¤¢^êÑÂ(Ä\rOèý«>×è¸­,“×ƒž¹š¯ýð\\qç§œé\'Ê1m[ÍÎŠ9Ê´ PüxUÆrí‚GEsóé>< *±ì0V÷ê‡çå£ä©Ø\04¾~Òt¡µúU‰égLóQšù¢ºŠÒùç£º1ZÒktx¬Ã*ýš¸5Ié„³~ã¾¥Ýµ„n„n\'´-˜ç„ñ˜Ò‰VÞ>çéˆ¢Ú›Ôr],?i(R;¾À½}¾˜>•ÖÜéžQV!yvpcÌ’P` ˆ-že9rJ“K\'tÅÏ>;é«¥úÄ§gZï˜ÁúŒëCÝÞ§ÔJ oÀé*^ñ¢éÉ°1–N»JýR’áiÀBèíŽÔOõÓ¬BÌêVé×h´pCé%äâZí–}¾=¢™s<Û”ŸË[Zè#g *éÚé°\Zé;1\ZE”?Ic®_€†æðcÄ#ÅˆÑMéèž-µ[\"¹n³Eª*9‡p“:ÖcZT\\×ç›:_½êXí4P£ievØûæìWßsoÚ‹ÅLñ­QBWÃb¥êe¸xþñAíj,p¤rñˆk•jV°iƒÉê›Ù]ÈA¦\"”¥‘±—3#Àq Æ†Ö\Z¾)+l\0#<9ê¬¥\"Ï•ü“ôA¥ÙvÕhzÄJ>AŽqƒäWß&zUê®V¨šµÆ\nW8 ­²`\0ayxHÃµ¹× céêÎÍ¿Í°µÛ9Oü8ñ^^ç]¦½ýt*fæ%ËýYEêíÆ5ð<Ê`ðWÿ²hµ«Ëj0g÷_M†üªÑTJêï\np²…cÂ‰[«ùÇ_:E(.)“&$*~Ï(gf“ëØ;Ÿ—‡c©×\0Ì¢¸¹câ÷eÛ:Hb>R@\'=½vë@5)ÛëîyÅ&¡Ö«“†‹\r»¶œ;ÄðÓ&ëÆØ›Æ¿¯Ø»Í5|V¿{£×¾üA\rreAFzK`ë\"Ù?ÐßE¬õzÛêcRœz±ÐÍžó.VÇ~!ë6ø˜k8•Ö½¬éÿ§ W\'Ð|Ç˜Ìý—rf­H	/ëA”¹.ºy—aÿé¤·’#‘šÎcÁ¢ð½^Sá§ëAƒý_šÈß7ý\'hcvœ‘]½Ô#\':ÙzØëK×lßà?÷YkÒéÅ2‚óÉìW>§Øô-ˆMõëPûN`g?\\\nÂ\rK¶´¹\0ðßJ<Ç˜3bxT:ëW*–Óªr—î-6¢föpxc×,hoNƒI÷ë[Í\\ß`ÿnBæ7$Î‡#tý\"S¬mÐÚ-®§Cë`Í¬ÉŠÎsÎE#)(»ØôA[”h™\'ù®øçë|àùkaOïIŠîhÝ9A\08(¿?¼K\nµöÍ ¸ë€ZNt­aÂZ¬”f+Ç ‘\nõKèá°ú·°œb¯ë¤LDL9Æ4“Ý¬JÒæ•ÝƒõCí¦lE<aÇˆ…ïöëë¥lã.Ä“zÚÍ]\nºÕ\Z‰ý:›Âzs\0nÄ½Ìë¶ÿ°>¸eÅ[7“ÒNJõªttŽ@êŽ`¶2Zë¹\'S§VÙ\"ê*‰XAŸvkœOx¼Þ¡ÖmdFFÃ…fëÒa+‡6È¬ç³åÁ÷)rbÆ4”Ê²g´©}S“xëÛvÖ»–aÊ©ÆD\05SS†-’Î*Ã^Ó…Œ\\w²ëð­Ò%`0Š¸ª•vl·¡µ\r®˜˜\n?¿4É¿ìrÖO©n¿õ_4Ä`…/“-ñ\'ÀîaYI|6Æòì`Zâ4‘¨\n¿é\"ž±l\'ÁãU8yîkSlöØµAÆì(GL¼¦8!Õ<z½KrÖiãáImV‡e(iCxùì/?‡¿¨O‘¾ÇE¥q¡²ði7A:Š3\r”³˜¢:ì?°ý2=‹,¬+)ÍÌ»þÓn£gš³»3©(·î¡ìD—íÔaˆ!_yþ	ÂQ“VGK‰³Ò‚½šsv@ÖìNºËÔù\0å}AŒv³¨ÃA¾‘$Î=Þ08Q×j€®ì`å§\ZæËÜ9ñ÷•8Ra>rÕZåì!´e%©ìd¡uH/l+ÒïÞ âÝÔîÖ.„ÃÿI6Šñ(Ûÿì›Žy—Rôjò·\nM¢Çø¯Èx\r.sˆÎ‚÷…çßÁŒ&ì®À’¢y¥îÃY#¨Ç³ÃE	´è92¿žžä„ì¯»ƒvnjs,_Y{\Zk•˜]µÙ›z¸Jò^zêì·{‘MŽþÉþ9l+:A¢ê}0¤š0ÈÝ.½@LìÆ3¢lå›”‰\\ÕHiÜµx„fîLl#@Å¤‹åe+ì×¹=’¾¾³So\nhÑ±¢Ù‹!J~áºžÇ¡É¹ìá½™Ág\rÁ„yôuCxÄÔ;P{ó³kØîÆéyMìã#µh .˜’?éõt#É ‡‚£\"ü‘ëz)`–ìúRI+‹_#aØÿp[o×ñ|\'ë:@ôîóAª×} EíÃé¥¬2,ò’¡Á)º“w_êDÊ‰Ô¶§Í‚íÎÔ6j4°0FŠ†Scö\"«µ~ÖÖG8<\'óÀˆÞí¹€ƒ³½‘:ïÁ¨ŒMÄ6©ª¿/î¿U­9)íO…àãÞáªÞWTÁ>•ËûŠSÁ€0\0É;§õQOí%$Kðþ	œÕ\'ßàÍ•{)²°_ºÒÂÄŽ#/qí&ôOÄ[Ê¶Ñ÷O¹\"Â²æ,êìôl?2j&—Ýíí,‡kàºûäþ›¥û$t3ßó?iYÏ²YÚ·O†í5]Iÿç{ö¦Î£›¤ƒÙš‘X‚LëlÇÌòÌ#,\níWÓMb™©X°³zp)\'ì•Fñ—â{§ôPniqŒ¾9ío§ÃÌ³l5Êy9òMb†&iK–èues¶<%íqÑ¬6ÙþI¬¬½F™_‘‚\'Q•7—3#5XN¸íxL+ºÖ–}	gTj°ô,Þ)0fœ’Ûí§­;7p>íƒDy(éº-s\'ìã¿#Ö›XÌÞ‰êÎ†•>¼í’Ý9ÈF„Üð± Ê÷dÈãíÖ°H]@eéPaí™yŠÅ&)Ô§ü»0Ðx)/ÒmÛ…ÍrÙUzßí¨•þê„¼Ù&š•¹[j’}wR÷Eý·¥vàäíÌ{ðAï„ñôG‰5öFä¿i	y*dq]œOŽÈX=íù>ý’j*¶¡Ììš¬»eí3Öpž]æ¬LØ}ž`îÔ`ÎDX1ó¨˜äç¢Ø¹“óWJÍöšÍ]cÆˆfî	uøJ0f°j\0Ö‘sìÐZR‰~•]ÍÁ´ß*Ã¦Üî\"Ûrd SŒ2é!æ{—Ö£:=úNzäàïÃg†&þî$—F,lKê¸‰/Ã9özÞÃœu ê\Z\"Ødmî*\ZÜîä¬XÝÍ¹[I|•4rñ_œxS‚´©î*tÁ–€Û^ç&ðÆ/Ê\\$ÌÒêr\\`Ê³aþÌî7%€¿eÅ±CS6Õê€ÿÒÇ€èh¤2.^W¨wñî_NèóCœ³ˆnÜd,y¼p¯¾U³~¶—É2Ê©ùîwÇ:µjUÊ/¸ªt#Lÿ¿Ž\"uât…âPÇw\"î…´LÛx|ï(.ayâÑ«uÍ#\ZžÚ„e÷œœuîÇuIå;o·è,1ù{÷˜[rÑ¸5é¶b¨,î ù½‰B2ó«+YÔGHéõ¼QéM·®p+ÖÊiî³Ç2ÑvC°­’Æm’*ÑiúžüQLC·H8îÀRvJëÜj…Ãoœ™×Þ¼f2RFt½¯…	{[OîÖbº4˜‚ÿ?Õøäfs^ÅYÚÙ\0‰©Á©¢½À^÷îî%ümp2X[j_aG·…¹Ðâ…v»@Þ2‘«b\\þï\0æ“ƒí«~*JÕjTÙ\Zw·?/™cƒg—‹)eÕï¬øöZ~&¢q»ÙN7Óó Z-í‡ÌÉÎ…rõÑ$Eï\Z3b\n¦îæNyoHëN„mQûÑvaýNï/	äYï!vâ‘46]3º]£ë3è<§µÚ—“ñµ”ï<‡*=Ütó…¡¢pE‘KL¶ËÈÖ[œMrx%\0ïb0qq¬Ä‚õ®|x»î’ïñ:¬_³˜V…5:áU–‘Sïo2Ò¾Pÿu‰A_•*}ë~Êô‚\'K9ö;ô¾ÿ4ïÖp«ä\n+=U¯Oª}Ýî…6ÔŠ|¼‰è±}<yï­¼Ö‰KîhxÞ«(Ráïñ1Êõ=~ÅPäwÄïÂºT¡+·Inö™\r{¸ãMë™ã÷_ðà»˜`3x¯ïä4‡•Lê#\\r°¼Ô¹FÅ \"‹$qÏcí@\næÿïø«CñâKnAìO] ™`þo§¦ŠC›ýK¦‚ðÅ.ˆù‘U8u…±›iÏÄèH<pShÛZØ°/ð\r.‚Oôû}9žfPkÈoøÖ2,”=A}P¨ð#\r5ók´à›,P¬D·+ª>J»Ô5ë”§ùn€Îð.\0UŽRqÏk\'…¾šž¨i_i,…\nÑGËô+Lð.\rQŠ\0€½%¶\'óyóm–_˜Ü#ê?ÚÑðE1\0«Â² ÷7“¥5mw>ZÍùß2Q2K=¬^NƒÜâðq¤Ùó¤íQ\nôIS„}V#íN7=‰êÉ·Š5øÔðžgD¼ò©>h]3Úð\n0_¬ÑáWg¢1*ð¥VÁ¦ðåÁFIP´¤ x¯‹fìvL»@èÙÄpàðÀîÆR;K˜ØøÊÑÀúRÌñ[:[ÿæ*w¿(æ1€ª yðÎjL3Ë‡·d„\'­þV&}l›Å]dOìÑgñÆV§æ:ðÓÙ5ÅËfHµ¤A~l!/»6äyÔ¶žî!ª¹[^¦IðÙ·O3Ç³EØ}{˜ÝY¶z¬½Œ‡#¦âñ€@ðÚöXaÍ°]çâ()cÿkÏÐ!~só~h®íî¢q0ðÛÁ•X?8ùÌ…™ƒàH‡Ûi,+xú¼ÍµŒSEñÿÚà××}%]ávˆ	§‚\ZYû«¨á<ž}]ñ8æc›Ü4=}ŒXíj(	;ßÝwãgÎÖ¸,\\Rñ‚0©$kÆoˆA­…{¿°¸†ÿÊ2#ì˜amªˆ\'™ñƒY#ÎòO®ç(&\r\n0Ø{zÉã€öÇû7¹jÇá»åñ¸4Ú‰3Åz\ZríK,îIÞ—ÅOeÀx¨ÑŸ‡ói}„ó.ñËkQ¾_ê3«°9‹y\n£bÛ-5c,R¹–ñè3£§Å\'„r´˜.]9cËx·ªßšY9í\\~ÏóòÂØÄfÖÊÆÇ¶hýj}u—pIXåpâÚ¾Î©T²§…òC\'VÛ¨/ÉéH_n{ÝÔFWÔê?^Õ®¢VŸï‹ òN	±á»-«²²j¹›Çs\Zjhß½CáÈ™ªIùë²EòbäÁU‹aöÈÐË9e×½R§²X‡?æ¥ˆ1±µòih\ZÎÒ•üƒX¼T÷9€¥€ÛòEßŽ¢iðšÑ†	òv²••&²=GžŸéVŸkr2Î×C5¶­¸ÏmôÊ~q~Œò‰±Ø;rfXá…¸½“eXÈt¢Åª.+[¤µ£ûòŽå’©H{vúÌò./s|UÈZÓÈA§h$DU²sÓËò­æúIÍ{\'\01ÁãâÜŒ˜ä‡røªŽk¦ŠDßäòÂa²cÉö´ö#kôQbm(ö¹(· {ia^¨\\vì·JòÖM©”C`QA6 _Í~‚jÓcˆ,1®îŒF\n)7Üòä©¾!è@¥˜ë	Ón›ˆ÷K^$ÛëN€Vj¡ýÊqòì`J…BZ›Þ…ˆJ¢Œ•X 0u¦9 >¥!®‰v1’ó ìvªêÄ…¯>¡›ªÐ¨î&ÛD™6X]`ïÇ=ó(fyÞÃ2ýÉÐ­Ï9¼àexÜkzªBü«4Ûò6óHy·/=žÝu4¼_c¦µ…	Î¿\'Ž‘®M|4³ógE;+\\¹)HÐqÏÝ{@ÃdX{a2ÕH´=·Äó…GÍÈ6Cm­Å:î|ÄÒ!%¨â…p8ÇUgð¿Œ«ó’ë¤AçNˆÕyúqoÊ…#&]#mV°Û•ºrÈ¹ó¦ÂÔLá=¦Ö6mzQh¨´ZˆêöòœàÁÑÊCÓó¬ µ¨ÊT¯Î±ˆˆåi•½ß Pom\\D5~Ô!À…„ óÐ—†ùÃ÷e¨åãW‰_6|—T-Ý>{ÜrC\nÌ=±óÚkÈÅRdŒj€¦6¿ÄôžTãÏÂëøÎ\'‚³¢óù’3HÎ_cxøÅNãžÛpn¦¦x{V…«‚@Óôf!··D.S°°J/ÞxkùnZ¶~qÆê6Lê‚¨$Ôô¯ˆ?{II%õ&œV(Aw®Ø<ä©»„Êêcô$Ða‚=¥¸®èµ!3C¹PY¬â¡.c%Ç0b?Oô)MíŸ´™ûøË[Â%>xdë]?ZŠñ´ž1õ€¼ô5ÙÎqö)•9W/`¯çkWèV*à_i_\'hÊMaôCQWÜ~KÛ0±X~DÎ<ý¤Í>Ì5ëO!	U\'£ñôIaÓ´9+¶åí6ì§ÚfFÉ£7«r,Áõ?ÏËOôP“Ó\ZârŸ(gaëžu;YˆR‡>èºv\\ÙÂ?sëkô\\¸ ¸~Ðm†”àVýâ|Ý¥\0™‰!ÔôÙ–X6±¶ôaªv›/%1UÿEd È_w\'±Þ¢—¶×KGs³*<vôu.˜€ùìê—S²ÍA`\n¤	t§úÿp\'â\\Ë‘+&ô‘¡*u4ªµc	\Z{\r˜ˆ†ö¤õ@l(2Ïu¥Üô®-V°ÿð’ÎâJË€…¢z•Ø§`*#–äjô¯xZ¶É&ç\ZÞ{C\rB¶]¢ÞYá#ð<\0!_ô¼M~(‰ª¥ú­kÜà_MèÖW¼ÔF‚i‰]È«ÓôÁë¶åiË’¡BÙÝl@†jë!ë\0@‚þÎ‹ôÅ²Ž3÷´‡²pv`ñr9HŸƒ(¶cßWÞK\"…$ôÆGàÏ­\'·6ÜI\"óVÛÉœ=«Â0¹Ûþµ¼²ñ\ZôÇó×hÖ­Ý†<e1L¢!Ó³ø„\ZªŠD¤K¾—iôÏ•ÎFUö…élt€°*³gª§ëÐVâ˜²Ã¹ÇËô×ÔÛ¬ƒ£BjÆLNƒùhZìíe%“D\'‰ÇüG}wîôåEÏk*	ªÏWØŒj»¡|•ÂK\'’ l×Èˆ<ôí²ŠÓÇÒêfdUÈÆ¬¶æ‚ÉÈ\\ê¯fHÜËëö÷v„õI¬IšÝwßd¦4\"°é†—ÑàÞÒ0_Õëhí^1õ Ê-åcÖj¦HtfÝ¬Ó?óáÊD)Ä\'·ÖhcF,õ4¯|iÓQl°p§êt÷>ñ%y£¨²ä1P¥bBüõR‚ý¦ô[B}–\n[ŒÚÜ;	I2qè‘UÔ>åõn)Í„¸ºIx´ñ´VV$ºÌZ=¾”qÅUOúàcõƒïæ\nÔÇÌ4\r\'RŸ2ä8ÏF(>Fð„2 ”Ýõ”Â\"Qj6¿h³ë\'–Vh¦­~ÆÆAd’º€7Üõ¦Dšc€ÉÝA‰\ZµH¯zyÝÀI“íîêQè‰]‘oõÒ%<»°DN«N‹÷Mž^ó®^º¾/jC9òtb–¦pö\r<ë!!dŽeŸpõÂ\ZÂö	¥0mz“ÃÇ˜é%ö\ZNúŠñ:‡J0¼²L©ð2æû\"L±íâ¯œtÂövr’`GáÌƒÎSý€°„©Â$ áÁ2|‚¨>éõ‰YöwMüW[þë ´ßIËî/¯H-j\r%èD’°³Éˆ€öƒ+¯P4Õg.½àžÄ{ÎáÊþ^WœÄ/![quöˆÍT ®&gÉ–Ð\r.…Ä:Ø)§QÙÝ7‹Ý£ð ™hö³\"bŸY(VÝÑWË|/5[ýrðÉ·*ÏÊÐM–ÚÔlöº¿ráþn©¶zW„úm:føO&y(ëHÜ´ãÔùö»\nª#_F¯D:±®Õ1IÓ}U\"\0HØBŸ&`Æ8û€möÈ!U¡c%rT ”êã.ªqƒx†ë¹ž=\0öÝG_ÍA”›ê7©¼œÃc0+›Ù^EÎéh1îä„{ëó÷9UÍ,·ŽÞ%k1X\r LcNï‰;½<KÎ÷{–*Òúk“L¤½œÍý–ìE,Ít*«J¸.	ì—÷¼»*æ­\\5œµc%ªaû¤PŸTÁ›g³xÈ»÷õ¹‡ö“5Ì—\"~RÐåÀÔ6õÜ>· 6)è½÷=—Ü|@” ÔƒÄÙ\\¯›HVq2ªÎv5Âo«›,™\0÷7ûIÑ´ùE‡³£™Æ90.BAeµ4>]yþS‚Pk™÷=ü9iÎðfCu	l6E€#ñZt,#<‹\ZLÇ4Z¼´÷Z<&Á^‡SÛÜèŽVÄÀ?½ÀºR†ÃŠ¥]€‚	„÷ÞÍ®6ÝØô»R¾ŠÔ¤z†¤8\\4”ùwæÄc‹÷ßyŽ¼€Ýs–˜øM™)9@óŠ£îþÉðŠ2î‹ÐÁØ.Á÷êVü/B°Îc5a—º\rRI G>?£¨çy;Í+šú‰÷ô\'ùSAE¦D>ÌÓÆÞqqaç_ÊËØˆK)ôAºø2©Ë-[Ñ 3»æý]S³³.ïã\\þŸ0×”£ÕøB/\nÉj“z\'açÿô¸·§ø½÷ÙÕFðL\ZøH-L	`$p1/>:r—ýÞV Ç™=={ðÍOrøRÜxgÓJ9G0>z×c&öIÃ†b4~¨*LªQøRkg!iÍïf¦nb.*ëÍÎ·ÛØð¢$ÏgwËøTÎ©#;?²Ú`Ò?ÐÉ;\"ŒèAäöY|û—X;uøaôw?oa”æîbN$²gIÌöÏôõ+Ç·áR.øeî\ZúèàÀôptñµÖá£ˆ¥É:\Z¤`\'8Áy`ø•¥w‰Wðö0ãÛÈP·ªR†Æ‡²î]±Pöd«Þ$*Hø9\n?šg{Ñ÷¥gsû	gOÈàXžIØ#nø¤¨!F#YÈ¼v\"|é:àÝ¯CG#\nY¹E[‚‘VŸwÎø¹i¢%¨-%Fþ\0ëåÀ[˜nî1SaŽ±Ó+ÒÓä]øÛBªE2Øs–ÅŽ)–?ÔŸÌB°	î¤*èZœOÿøÛ’n+zü`ß—Ý×]£^Žé‘$¼d›gÏÒGf¼øçmä°G8²@~nóñ?â	x¶Ä*Õ‘x½kûþS‹øëžµ9À¦²ú”U×RÝ¼\"¥EI¼ {†`zåë$„øì¨€qíæëZ6hÖ²C¾†R=¦8H ‰ÎÔÉ<øíÍ>æyêèyå=ôû ôØƒ•ÏGòÕÓ©&˜‘øî0ýÔ*—·²üuã\0u\r™æ+M\nMÆ¿Ó4€øfù_žMG…àæ%2q¹å¾0è/Ò“:;å…êeäW¤G’ùÊˆÝPäÄ,ÔöK´”A]HÔúë%éóûí¦AõæQùDæ´ÛžVèš¹xRBBy%ÄhÑWv³ÎÇ¶mØ}nùGŸ”. Õƒ»g‚ù?ÂƒÐr°Ð¢js$_”D&Ö—»ùH«²á­s%âúÆvüx-âèî#õ¿¼?	äêùT¥¹´5á«)ßø\\Npš±¸Áè[Šá>»ä&¬ù]Œ‘âˆ÷:ÿœø.»Ñ¥×‡„¢Ì4öšžU‹ŽÚùhnl±ÃhÀÈÊ«ÍjF¬**\ZŒµóWînfrP#3ÊùwÖ¢$ØéÕí¡Â¡æ¡˜3þ¼­DÇ\\È[¢I£€ù——wD=O$l\ZÝžðïåIâ9<€ç0oxé¼>ù­L1 Ì\Z?–¯ê÷fè]ÅûÐt2Ðˆ˜èò5û²úùµ$öSª¢(Ô]4âP¶Ó•¿¾cUÜvÅá¢­—(¯cùÍ„É¯ýTÎ½Ú$_ýƒâõ®¥Søêñ‰©ñÐŠÞ|ùÐ|…åÙnÓãD“~½–v-³;&ˆ¹ãWî²š¥0ùá;äé7Ë\"‘L~Þ…»LEº`!à)lÌÊ›ýhLùëOØ/Ì©3½z4ÎšûC:Ufz^^Gnçõ´ãùì/·pR1‘CúÌ¬20°2€J½Î<±‘:·_ùíB!s*þ¹Ãlª°ö6ÇÕØ\"Q_ýÈ¹©2®¶ša7ùî<\\U}Ï\"A¨´²sÜÂ?—ÜC9‡»Òñ`Âr«Èùð0Ã‰‰ÏÃîò\0èØ1¼Öy£iúN7,N]Ü8äùûÏª¾Žü˜ÌÄÍÜC‘,01›SÍ­ç-€aœ½bùüªpYíx{VcÞÿo€ølNG¢qlkb‡¡ùñá¦aúòÃ±ÔŸ‡ybÐÖ@ËYÓäÔ(J5}×¸d“t`Muú¼ÌÆ‚€Uz[çºw\\=Ê¼\0[\nKixµ-b>´Åú,Eýd½Ò”à\nNß-Žëî\0´9pM0+±½~0Ÿú:6rÂ½cÉÏ	…âh{€M\\ó¶ÒËÐJ¬š,ºk\r?úúO\Z/Þ†f…½à?½xÈƒ9ºú\rQP@\rïÌ\Z¾áÁûúSÒzó½¬\n³ÀE´OŒ“µÇwF.Pùê)n>³ù<ñÏúW¨ÎS)¿‡Ð_×]µæêÃYÿaŠ\'kY¹­ÙÿÝú_otërã£)ÍÖC§“¹ÙE®IÇm/½;×ïàëgúg¼Å­Ž‹Æ±Òà0`ü®£8^ùùì\\‚¦Æ‹ý~– ú~’J±Ì7$kSsYme(°|£‚.¸Å¹zZàÅ[ú¢¸ªëª¾l°céì‹…ŠqÚo×Ÿ¡¸KÈÖ›+ú°º%íØ‚Ã!aÎ29\nÜãÈÿ½`¨F_h” *Šyúº.¶Z±Û­Pî0·¨\"€’j…ÅÎ§=xat\\Kú×h“£á9¦õÀäwÇÐÄí¼;Z)õÂîKþ~ÞúßQ‚[::Ýü´jžsÞØ^Z@2nâì³ve)e_úäuî‚éî!Å9½]´we<»¹‡Î¹iJkNúíµBST…ª½ð hÂZs©*†÷²[?	PO´“vúóDÅŒi*ïŽb÷ÕÚ*¡;Ø©D“Ú¨²nó/Nàœúú‚¾sh«wí¥äk1]ÿ\':ò&e¿t¤b¯tñîúÿ*Î\n\'¼Z%±À$^Ùòô*¹B¥üR_~ñ;AŠ•òúÿk8«Úæó\\=†>Jõ¹ºÄ1íÀ~(‹æéAcïqûo%TFþO-ÁGzÂJTN>Ú\'¿Ùñý‚”ç˜#.ûD¥=±ôøÒÙaÞ:ôß\'j•Kùä WHS’ªÜû`\rÈy~Eä~|ˆ\nRËi)fl—é¥”e}ã)ldû*ôÃ€IñFª^‚È¯—Ü’ì‰åWø’é@ž~½Ý˜ÇûTÊ`Èl©ìÀ Þ9¾˜çªPÞkÖKVÒâdªÝ*ãûbý¸zúHpÀfÀœ?÷@Ñ˜Ý²àI ù¶¾ŠG±]ûqÓM;ŒÕ>l\nAíµŽ>åÎk˜hÇØÝRºÆñ8ûyO¬ŠtïldôUÐý^Á­E¡%OˆðnÞ¹Á~}û­ÙqïcçsÏ @€\"/äÙÁÅ¡|sP|0›‘Ã´þû°Š!§JÉÈ[h7e“^ïJžT«uµV°”Ú…ò6ûµ»bJñ³õRê©#ŒÿÔ²‹Yu¢nénO–œûûäc\niz½N£y×Šìô´}Ëœ.Üþì®\Z»^¡­šü\nøx+©UÇ×1ï›wëî€zœ)­\"4„+ÜB\\ü¬’IIÿ%¸%è\"Ð–XŸœ¢å~X4;;Ý]*Å	ü&Æô¹ô\"TÑþQWvRiº²dú3’mþ`aÅø3\rü45q$¨&Î’9QO*z½kB…Ž€½µžþjdE,üTg‹OrP~øtgn©gšÉí(¸W¦{v¨êÑÍ^ôüZ¬è}ÈC6Ýž÷«+‘?‹Û¸ZøPËd?Pü\\ÄÒùèƒkO×ýÃø}H¦\"Fï+:ÌµLZ’KAüx¡‹ÇÂr¼^/û£Ê\'ðD‡~ì•4èdôÍÂ`8`qü§r×À’Ø|\Zéã‚5¬báŠT2¼®Ëph=´±ßü¬®—§jŽ#ÏjR……ÏÕ	ðª¨Ú|‡zÂþü03Åü¾Ü¸OV1¨SlfwVç¦Î1	üØl?Î•.\r•üÆ¨;p¸-ä¤e*îÒÑ`žˆÊ[í§p5UÿüØÍ³§Ðá¦{œ£án¥¿Â!z[Û>µf¸t4‰üî÷s^¦tE+WêLêÕ¯‰èÿ¦CŽêøÒ©Ï‡HýhŸZ;PáÈ.¤çóËs.¸1º›qþ+Ü‹\r’4Êý$PdµuU1¹Èô×8›—ð<Knâs¡µÀpGR÷bý:LÀÃ0ñ÷¬j}¼y•ìŠŸWÄ¿ÇSh¡5GHý;ÛVƒ­(üÊ(Æ\ZB\0ˆ\rËlÅ—™àÂBäs°#3ý?+æê‡Wpâ¤P¾Mçk]¼<px_Á\"RÝLki ˜GýGPPù(ÔÏžÁÓîSËá3Qý?(H|,ø;pŠñýH@yÆ„¿k}Ì{Œ¯[«ÇW{ŒLGÍ.ávOÇ«ž\"ýM\r6IcÄ÷½ýòE‘«,M+,¢Ç–¸åfŠž ýMPæ†[°Y&åð¨Ï\rŠ¯,·¡ëYDxÎÂxæ©÷ýVÞŒ˜\Z­Ò~´VDéÙÉZ6ßaWÊÀ_à÷¢tÊ©kýy°ŸäÚ1±Ð©3«&³TtÝÈ¹£ê8€=âËSýP¶yóYmíí«ˆûm¶æ½UíI¶æÏOÀF	!•ùýŽî›qÀ¬Oç¤~Ã¾`·Ï·7“i.KþÜêK´ìýœþ;Œ¢3@¢†\"ŽÁ_Ò“dª/5¿ðýŸà%ƒ´Ûè9”U6>÷Nc°VŠM°Tp÷W \r0¥ý¤äçZ|›\\ŽT‰-‡±BýD\"Ð,QÃuÜ³Á÷n¡ý¯¦.˜ÇíñÚA\ZÝÊX¦m,¬éP\rë—J·hÜýãxÅQ#’›\0Â‰Àtgû¤ò¡FªÁÎN¡õßvýó&›W\"üÄ²}:€®ñkÕSà÷-e&sñcôþ1héØ—]m3ÄºXq°Ã÷ìjÂ_Þy®[+xòEèþÇV0zÙêÁxiÇþ\nÌí²ÛFž\nËè·þ7‘Û4Ææ¬‹\\ó Mè=„°æO‚¡–h³¿£™’þL;•-ºÎFÒÄ\0ÓÙU±ƒ*/·—ÖÖdã.>z_ÛþMEÈMÕ-/vÄç_Ú…c’œâ¯é?,U&üß\"–‹Rþ[à˜¼Rá±ÆØá|LìõŒ•§<uQR”V³¤ ¸xþs 	b[Ðy¦iÏCàâ¨õ\0öâôãTþq@W~‡þ{™á¹œgñIU9ÿ\0ÅØÚ¡Swíq’\\(LpR^þ_mËo²<eÇç{„FE²P\n-ÀáðÞ,5Hþ¼:¤œ@¾æÆ\rà%·­-ƒ™½½à,$y·Ãkèþ¿\\ý3†ë”¢ß“{½B2—Aá™êÖGÙ<Š&%þÁùß¼w$ž¦™cŽTVÂ¶\r‰|fø7hCÁp\ZÐþÝ8šwGþ+‰dUxÑÕXcˆÑ¨Vò*¿6Øi(ÎþåHÖXwÙ6[òþ|ýJaÙÍ´çÐ–Òq^ü¥þìOžh;xAô3×÷-\r¬ðèhMœ>kv7¥Å[þòžÞ×‡d£Ì‚zR<¯¿2õêèKˆ®ÓØÃ7‰I“þýIÆ!1&™j¶‡[6›¼ˆš56i¹8ç›nžtþýl™*ÿÇñ?·ˆò½/]À\Zø4í¨¹tXê*ý¹ò5®ÿ2ó.p²Â·Ð\"„Fœ6ZØ™\n¹Ý$zŒ÷z¸¤\rÿ9`\\&S9â~{-LKÅIÛT–iØï;•u!®öÿ7ôÿ±˜UÍe°H> -ôä%G µ(ŒmÎ\0˜ùÿDO;†™^ñKÔälµ¿½€Ø¸!à/?aFÓzìò#ÿU³%föî­{øxóÊiŒ<ç¹f¯œ;¯˜µ–š‰KÿZ9Þ°NúÝWj_‰Hñ¬]ÏÍšV”IùR[ëƒ›ÖBÿk¯®’~P,oü¨ÁÊ‚-~¦BÊ¾Ëi>1¹/#ÿ´Þ#öÛyš‹XÔoaª…\\DÅžheb¤‰õÿÂàhƒæ?)—3Ž»1àuóŸ¡s˜Þ_sñ³¢Ð¨dÿÄ>V *RˆŸ/\0˜ˆòÛãÓ·ï~rÆ%\"ÒÊæžòÿÅò8lbØÎºÿ§\"ž7eŽEŒ=n~ÛÑÍ™\'2ÕC/ÿÖ?»›	C¿Q–¾Ûc2 Gƒ‚”â“½eåÞh£ähï‘ÿÚÝŒ^Ý@óË¶\\},nÑÜ¿Û›~AëF×,ìÿý{Å<n—Ð½¯>!Äí2ú¤_UÖd~ ÞpØç²7O\";}±àÒØ\0','no'),('useNoc3Secure','1','yes'),('adminNoticeQueue','a:0:{}','yes'),('touppPromptNeeded','','yes'),('touppBypassNextCheck','0','yes');
/*!40000 ALTER TABLE `wh_wfConfig` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wh_wfCrawlers`
--

DROP TABLE IF EXISTS `wh_wfCrawlers`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wh_wfCrawlers` (
  `IP` binary(16) NOT NULL DEFAULT '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',
  `patternSig` binary(16) NOT NULL,
  `status` char(8) NOT NULL,
  `lastUpdate` int(10) unsigned NOT NULL,
  `PTR` varchar(255) DEFAULT '',
  PRIMARY KEY (`IP`,`patternSig`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wh_wfCrawlers`
--

LOCK TABLES `wh_wfCrawlers` WRITE;
/*!40000 ALTER TABLE `wh_wfCrawlers` DISABLE KEYS */;
INSERT INTO `wh_wfCrawlers` VALUES ('\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z','‹üÀ•>b0«oQ1Œö','badPTR',1525619788,'cwh27.canadianwebhosting.com'),('\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z','i±³| ¬²OoD!˜Ãš','verified',1525619788,'');
/*!40000 ALTER TABLE `wh_wfCrawlers` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wh_wfFileChanges`
--

DROP TABLE IF EXISTS `wh_wfFileChanges`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wh_wfFileChanges` (
  `filenameHash` char(64) NOT NULL,
  `file` varchar(1000) NOT NULL,
  `md5` char(32) NOT NULL,
  PRIMARY KEY (`filenameHash`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wh_wfFileChanges`
--

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

--
-- Table structure for table `wh_wfFileMods`
--

DROP TABLE IF EXISTS `wh_wfFileMods`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wh_wfFileMods` (
  `filenameMD5` binary(16) NOT NULL,
  `filename` varchar(1000) NOT NULL,
  `knownFile` tinyint(3) unsigned NOT NULL,
  `oldMD5` binary(16) NOT NULL,
  `newMD5` binary(16) NOT NULL,
  `SHAC` binary(32) NOT NULL DEFAULT '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',
  `stoppedOnSignature` varchar(255) NOT NULL DEFAULT '',
  `stoppedOnPosition` int(10) unsigned NOT NULL DEFAULT '0',
  `isSafeFile` varchar(1) NOT NULL DEFAULT '?',
  PRIMARY KEY (`filenameMD5`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wh_wfFileMods`
--

LOCK TABLES `wh_wfFileMods` WRITE;
/*!40000 ALTER TABLE `wh_wfFileMods` DISABLE KEYS */;
INSERT INTO `wh_wfFileMods` VALUES ('‚Ž\0¸ó¼²+OW+','index.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¶%0;àõs¦¹Dm\\¾:[','×€]¢H¼ðÿoÿ&…àY\0YÉ±	Â¶ù¹‹˜\ZëŽ=K','',0,'?'),('˜ÍÉ[²/9} `:wÙP','license.txt',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','“HÚRÁ÷_á¾üs` Ï','ØO…ã öºøí$:§cû8WJGH2ø5ŠÿU’®?Þf','',0,'?'),('a§?£ª_×Ë¢¾Ð6j¨ìX','readme.html',0,'UÒŸyú%“¥³)îD','UÒŸyú%“¥³)îD','š3À5ëšÙCìJ5ï®E™6Ô=}€¯Ê¾Õ»HÏÖ?\"Ç','',0,'?'),('3Y–#Íî6r\nýYpì$ª³','wordfence-waf.php',0,'E< [‘˜	áQTà}â','E< [‘˜	áQTà}â','6§:aOV. ´ýÁ„.¤ðþgeöðM³‹.ëâºÙ','',0,'?'),('çÃÕKÿg›Ðå‡o#ç0','wp-activate.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ø[ìæ Jn{Ü™@{','Yì6ïxëRÇ6?;¸Y!¬ZyDc.ˆBJ„','',0,'?'),('-‡º)7¦5y°8cÚâWvØ','wp-admin/about.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','3O_²,4·˜yôÓ89<Vá','xì¶¼ ‰é·sYR…ö»ähv2ÜØÙWYr ›¶jÕˆ','',0,'?'),('XÿæHå¥¥(»:ÈZí©','wp-admin/admin-ajax.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','z°¿µô$\Z›·¦','åÃv†ü+“^Õ3H\\­5¶»#!;H·R¦M¸¿h’Ø','',0,'?'),('!1bÝ…9 ª*ãÀÿ\\áÆ','wp-admin/admin-footer.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÖTîÈ­¬¬±Ö{Ú','6GãnÂ,zß”Á¿´!†|L1²¸¢?«éÜmrHu','',0,'?'),('ÈKUõg0MU¿/šöÊ‡','wp-admin/admin-functions.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¯Fêû$ãs:ˆ9ƒm%aF','?ø!mä€W–Ád<2Ó|7Òçº¿SEÉ3“¾s\"','',0,'?'),('@èm¾·ëÅOÅÝW','wp-admin/admin-header.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','t‚9±÷RX¹#Ó’',' ²q5L<W7[EÇ»\"ãçêUkÇÉñ‚ëCuÈëÝ','',0,'?'),('í]š§@ƒ\n—«>ÄºîYn','wp-admin/admin-post.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','>Ì[s´à+¤£íî,h','®ÍªEígqvO„W®ïß#uÍ\ZgP»X¬HTâ’áü','',0,'?'),('”ˆ¦,H(bæ_F”O','wp-admin/admin.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¬eæãgÝÞ¢ÑUØií{','ŽÉâx±‰YèüŒî_R„YE ¹aQ1T^ÙXeøÇy','',0,'?'),('	XÎt\\4vNI5‚ØjËÂ','wp-admin/async-upload.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Œ\Z‡TËà=Æ«Üú¡¾Jz','†Ÿ”ó4¼¸Cs3RÐ!3)E¹èjx9‰\\íu¹íÐ','',0,'?'),('\"ÓÄ6\r+K{×\Z!a','wp-admin/comment.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','×ø-oâÌ¦°lómx¥Ü','¹ˆªË–æµÃCÑ?*âþd\'cÎ€>X0ý)ó·XÑ¤Êþ','',0,'?'),('kMÏü–œ¦šîÌ™Ysp','wp-admin/credits.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Q•YÍMŸÊþeÊ=9úœ','_õ£­Úÿ¢Ñ;KKlRl»¢ò¶Y€p¦\"Ì	q#;','',0,'?'),('¤*O-¡LÏ„ªÂâ\r[Ûu','wp-admin/css/about-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Â`¬¤M¸%±©ÁŒ%à\Z”','n:Ê‡N\rr½:çïQ%FRLÌVt`îþpÉ³Z:c','',0,'?'),('U¬nÉ“b4lZ,I','wp-admin/css/about-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','G\rvÕ´à`-Ìˆ³\0×Ú','¢!ø‚H½¥$­Üÿ%‘ñ†\0(×³\r«Ò›±áb;','',0,'?'),('ÉA7¨\'áC#žwŠSûsŽ','wp-admin/css/about.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','»›o¼rR+*(§êëŒ½','ØRBwÒ˜·&–£²¶&ÅSŸSŒ„ãžÒlbŽâ;õ','',0,'?'),('üJ’§ó!2 ¨Ü\0­€Áü','wp-admin/css/about.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','6d¬¯Î¹Ï|œäh­N‹¾','ÃƒdÔöüËrI½€.n°sN\'%Àù›VCL¯nŠ','',0,'?'),('”mÇn9ÆF±6·','wp-admin/css/admin-menu-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Nömÿ£4å•ÙÃlw09ì','t±±{®ß•ÕÂw½Õ¬RƒéôÜ8™À×!´$°“\0Æ','',0,'?'),('T´]\\gø¯ö4ÅºuP²;','wp-admin/css/admin-menu-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¾þ¶‰G;ñ‰ìJ9î’Í','äßõA½]\n…˜\0žÆ÷\Zñµ\\‹µ°Bý{4QÒ','',0,'?'),('Á\"êZ0\0Ø¿e…Ô¦pß','wp-admin/css/admin-menu.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','+N°ñ+[_¸RŽ°‚¸£','ÔÀh9³eèÂ8d\ZN]©wfËóì!GÔUFkŒFŠP','',0,'?'),('ÿE58¾ùyªäÔWsÖOºÕ','wp-admin/css/admin-menu.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','J\"®\0iãw¶Æ—üÄj','ñNÍåyÚújøñ=r»f\rE$–phClîõa’','',0,'?'),('`ŒÇû\nƒýó†2¬ê¯‹','wp-admin/css/code-editor-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','°‰oð¼¼Ý?S1„.`','¦šÿ}Uþ)÷£¶µ¬¡JîBœ>XYêüÔ7`T™','',0,'?'),('=¿²Üf;Vódl\"§À','wp-admin/css/code-editor-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','v7ïÔdôÜiÃ?x33Y','}&õcÏi)ªÚoEbØ¥„–_;\'èßKT¤Ð³så','',0,'?'),('—Lß¨õÏ¤Œ(º¹R­','wp-admin/css/code-editor.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','F3ˆœÅ®Ð`}Xœ¬®Œ','|N§*Åÿ}Ç“^âtÜ€ óå(—·¯8h€áÏ{y–','',0,'?'),('~}â{ ÝÇ>Dí}¦<','wp-admin/css/code-editor.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','rÃ¥¾9©3Øv;Ý³æš',';ÄdÒiñvEÆ)ˆŒ»(T7>¥œþÔ$Æ8nºüÅ;','',0,'?'),('ïÀûP†‰a`Xuî¥¡','wp-admin/css/color-picker-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Þ5w†}ë=–ø¥‡¡{Y¯_','ƒÖ¯¯‡fý¨+Èzß-cµ#ÏÿLÒÆÎ„öïß;','',0,'?'),('ÒrˆWê®3¨™ãá¥¾V','wp-admin/css/color-picker-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','íU«€°§˜¦¬ú_T','#N×ð¬À¥B$‚6Ã K£ªvþñí¬NPáRÇ`é','',0,'?'),('FóÂï?æ‰C;$ŒéH\r\r','wp-admin/css/color-picker.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\")[ù)ïHy³jd&­','³4ó¹Rhž?áý6õ‡C´.zßáEEÍ7îZ#Ìòg','',0,'?'),('˜¯Ü¡9îu_\\\nÃ9Á\'','wp-admin/css/color-picker.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','—\"€8­¹˜î8axÉ.','[¶„yî¨ŽR‘×tUlâÆÎZ	&[ 	tqŸïÎf¾¿','',0,'?'),('¸J|6}ËPß,\rÙ›','wp-admin/css/colors/_admin.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Â/ñ»-´^ã‡›¢4v¦','Z@ò+Æ±ËÌ(¼ÿÄ€Ù°§CëÕ–ºÝzz¶`}Ô','',0,'?'),('ueö,\"\n	îh¸g.','wp-admin/css/colors/_mixins.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ØiÆ¢Týñ­È¶(','»U9õÃ¦él’W?9Tçc•²ä«¬:h(','',0,'?'),('©¢=CÑ Ôæ*TXô¹´4','wp-admin/css/colors/_variables.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',':µ	k\Z	rØL…²„Z','šPjZx\0p>¹‹mFÛ3l›r6ö3¹E~Ò“A·gÞ','',0,'?'),('58çdá`S61K>Û®†v','wp-admin/css/colors/blue/colors-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','«·–ÈÓlG\0;šÁj ','P—\nü„›V‘hGH©:Às	#¯D	×\\ôYRŽÆË´','',0,'?'),('D©8hFÞ›BViRî¨','wp-admin/css/colors/blue/colors-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','v\nƒÑ½ç•,!:fQ¼æ','ù]ã:r3˜N¬1¹×^ãÏ˜Oîj—Ø¤¿q†«K…¢','',0,'?'),('çàFüZY¿ÑC8À3E','wp-admin/css/colors/blue/colors.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ù?¦_ÞÕýÃ-^Hú~¹',';BzH\'¦ànÂÝLýCÓBtõñu¹G¼ôå ªmÒö','',0,'?'),('tm6Û—ÀqºÿŽ.£=j','wp-admin/css/colors/blue/colors.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Xµ.…(Õ.ƒU .îw','?êmÐª0ùIâíí/„›~ýì!,t_û1©IŒ‰','',0,'?'),('Lñ>t™õšNÿˆ†‹Ý','wp-admin/css/colors/blue/colors.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÙÐ5I×”„g,)Z­YM³','ø\\k›ˆSÛëš‘ßn wWýš	ÿ!Ó*Á~¦vÝ','',0,'?'),('Œ½´†juGCtOÆþØâ','wp-admin/css/colors/coffee/colors-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','áøÒºÖCá©<ÉòÕŽ`ª','*€@•ñ˜bn:¼‚oÞ¥”é›sî¾ë\\ØùûÁ','',0,'?'),('²‹q?%Íõrpþø0÷7ïq','wp-admin/css/colors/coffee/colors-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','NÔ$K¤„¤)_¤)•u3','¡ÝYùš ÕŠ¹{±ù\"Id5]ª€{óÓAPÓË','',0,'?'),('Ï´ 3P`#8^ÝÖZ','wp-admin/css/colors/coffee/colors.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','šRe© \"úI#$û4U','Ôe$vçQ-M\r…š•Ï<õ}3²†F¸õR‰','',0,'?'),('íùëeC˜¾„ðDi!×ç','wp-admin/css/colors/coffee/colors.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¯6Ž»ƒPAœ&v±«—x','ÚäåÊ_^.’®Ÿ3Yõ\\ÇÒ½¨IÈ\"X|š¬,gžÇ÷r','',0,'?'),('xIHÞ.”9”YÃàBO','wp-admin/css/colors/coffee/colors.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','9~8 ²z#C0É^%aÎ','\0{µZ£r~˜d0|B¥Ü|]×„Èùj¶ÚÜŒá¶I‚x>','',0,'?'),('jmE¤ÑAXÝuw›>Ü†','wp-admin/css/colors/ectoplasm/colors-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ï\"öÍðÇTÑ~–†ƒ•6','ÿMÞÕÙIcKùó‡éMÕØ«}Ïå=-KÊÊ¼hù„Sã','',0,'?'),('DÕ¹ïÚø»åØ$Oaª£éô','wp-admin/css/colors/ectoplasm/colors-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','6¡†Ð8È5“ç\ZÈ‡kÄ','XÈÝ¯Vf‚|ô•L‰OB7½üÿ“zeõLmÌ','',0,'?'),('šªô¢ìH\0Û™À®h™CÁú','wp-admin/css/colors/ectoplasm/colors.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','qçXŸxÅB7Á^¾QM%','nû*ˆ{[$àðž#\';ÙoI]P—zÏ9Ò`pw','',0,'?'),('[ŒÃ#Ü§\Z>]¿<¦','wp-admin/css/colors/ectoplasm/colors.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ü|Fiõ+WæºFÆmý%','ÅcÒbUv`WÆ\ZªÊÄÑmMŽUÓ©QˆŠª£<Î','',0,'?'),('ÌMÏTq&[?ýù>ì¹Šå\n','wp-admin/css/colors/ectoplasm/colors.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','”qÑ9+Ø\"©Ñ+‘•','BÁ†mæN‘¾hÄë µ¬stN£ójAS4X\0$','',0,'?'),('ßq‚ùœŠ%Å±“ m+','wp-admin/css/colors/light/colors-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ñî\rñÜ:Cv„rÌ>†g','r	àtf;2í&+S•Û¢™Ž“+¨œ¬î\rA¶Cc½','',0,'?'),('-ŽfâÈ4]Û#\"u¸³l','wp-admin/css/colors/light/colors-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','†,íçDDr@º âÇÆN³','æ¨?žÕ‘ÁÈÓ²Xìþ‹U™A]*ò2‚Z;{|A','',0,'?'),('vð{#¿¹lš“b\0}ÓãB','wp-admin/css/colors/light/colors.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','.]%ò¥Ž½4jéïÌ','\n¢%°×²ÂUJÖdf!ÓŒ‰Õ8eé+Ø|hï›d€®V','',0,'?'),('ü9(FŒRj2¹n6]Š','wp-admin/css/colors/light/colors.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ã8Ž8”ÃÑ&dÉÚ5','W!kCV²AŠEhPô`äÇ ËñIyÿÓ›ÅmZ/Ü','',0,'?'),('ˆÞKS+¡e×ŽA†@“Š','wp-admin/css/colors/light/colors.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','H›ÖGå³#ïˆÖ<å^o','?=ÊäÒE‡\ZM’aÕXÿ¶„ÄºJ\"s¼æk;ê3','',0,'?'),('ú˜”çÙL?@§š.~O¯','wp-admin/css/colors/midnight/colors-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ä\"”`â•Õ­Å’{Yó','?°$•ô\rš]ýWÃ~+68e<UáWp!k{eÆX#X','',0,'?'),('«ô÷á—Ø3…-ƒ«4°','wp-admin/css/colors/midnight/colors-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','”œ³‡MAP¿EÕMñ¼','Úl_»Õ\\XIÍ†vZ{3×83èÚ¿››\"i3','',0,'?'),(';Þb­fÈ–0ÿ–¦­x','wp-admin/css/colors/midnight/colors.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','½;æŒ‚®«å¯!]õàÐË','D-ž_±y5,)‹ÞÃÓáòáEº3™€$eÝ®<','',0,'?'),('ÛãŽ_\r¬JLè#®@BÌÖ','wp-admin/css/colors/midnight/colors.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','<Ž¹8*Øí>\\@{´hq','¨0å~Ê¦MÃª²6»uöÞ(\'w:yÏ í¥ï$þcFX|','',0,'?'),('Ú†wú=Å¢ÄOú&¹FÊ','wp-admin/css/colors/midnight/colors.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','&ÜªðÄ|DW¸¼!Eô†4','SêÌoÍGpžÛéôª{µý‘\"¨FuS¾&§Žõÿª','',0,'?'),('Ÿ<„ (ÈêÀ‰*A]ŽOí ','wp-admin/css/colors/ocean/colors-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','šUöóžÖB27$¦xÉÏ¤µ','k1x‰zÀjï¯<\'èú#èX^–FÁþë¿o\"†µß¨S+','',0,'?'),('±§©Ù{^Ž†WÈíèóC±','wp-admin/css/colors/ocean/colors-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÿ	?ñŠï-ã]‘›Ç0\nc','²J­ÕQù‚ˆmüW@Ìõñ©Li#²-ô˜­áÔ[îNv','',0,'?'),('ÌÃŠ5ffÍ;,G!\'öó\'-','wp-admin/css/colors/ocean/colors.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','t4Ô+æY8ïDî:GLÏrÝ','*¹bÜ9¯_ë\"Q^Ê@¾¡[ì±\Z\r×ýL¤b{\"5¢','',0,'?'),('ž*Tñu\r¢íÓÖ ~ªm','wp-admin/css/colors/ocean/colors.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','0ñÊõ¬¤…•9»øCž','½\\×c«ãšŠ—ŸP`éR=è‡ãé<*uÉ™8OH0‡','',0,'?'),('-²êÑáÇ¸†%w=õâ','wp-admin/css/colors/ocean/colors.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\Z|[ýŸ¯lÇ|Ù±f%h','ÃÉ®»ú1ÔuZRªHÑ6­²IéÁ\r	ÐÅºô‡–ˆÜB','',0,'?'),('j×»ý‚óq.»*;§á2','wp-admin/css/colors/sunrise/colors-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','d×2ºâÙñ£(ôy£Z','¶´ÈÅÀ‹{Nî¾âÞ(î×ÞÖ`ŒJçÞÛã…Š\'L;','',0,'?'),('2jÿL,ÃÙÞW\rº®W$›é','wp-admin/css/colors/sunrise/colors-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','âÁGÚßp¨ì\'H?–c ˆ','	þØ§BÎÛ,îÑæ5§¿HNIEÑC&(£Ã¯x#','',0,'?'),('œ…‰Šþy85õÜÃ¦bÖ','wp-admin/css/colors/sunrise/colors.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ãµ”ÎŠ7ÊÐƒ¸WçÞÇ','\\ur‡çœ‡Ãê/š’0M\ZyÅwxnm©ß6ö<','',0,'?'),('Ï-Ó+ŽeÆáÔmñu\"¶Ãx','wp-admin/css/colors/sunrise/colors.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','K‘‘	mD—J™ÜkÉâC','•9ºj¡û´‰úyø$ö3ëÚù\Zg],ˆYf	_™ü','',0,'?'),('ÿµS©CRCþül¸Å','wp-admin/css/colors/sunrise/colors.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','V’‡\ZŠzî	hÝù’=ì','ýâ¯Q_nŸ‰97ÊL2„ó$¢îy:jàSÑ…‡ ÎÅÁ','',0,'?'),('³ÌW2ÝØDñG‡7‡V','wp-admin/css/common-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','*u§XùuS\nçº˜N“’','ÐÙ”“‘ BÃvèºô­€SjõÇZÜxÐR+\rê/ÞDâÛ','',0,'?'),('ŽŸ…X’‚˜HöovË','wp-admin/css/common-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ì¥¦*¬Ûhl&èP¤R–b¨','®LñDêú·HT?GC\\ØýÏŒˆ“ÌI®ÚISl®¦›','',0,'?'),('ü‰p·Š9½6Ã¨åRæ','wp-admin/css/common.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','!~Ç‚\Z1¶Ë†zPžêB',':8”‚&™_\0wYðÏ§<¥$ÃráÚjePç','',0,'?'),('\rƒvNõÌ[BáÓ&êØSL','wp-admin/css/common.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','YV nàSxV7kP¶','ÜŒz©e`;7\rj\"JrÊ¸O¸™‘hh=±\'µ„|Ó','',0,'?'),('óÿV¬“k9Û´îs¿»€Ö¿','wp-admin/css/customize-controls-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\r(å•\\2pß‡H«gÞ˜v','pw±¿2\n5f—ÿÁn\'‰ª7µ•Zˆ¦ˆj¼´‚C°Ñ','',0,'?'),('Í©ÿá‡p÷jÖ›`’Èw','wp-admin/css/customize-controls-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','YŒŸŽþoa@ô´;Ð19','óó©–%yË.ÙíòÑ¸ƒÄ†€M æfå£m72U;','',0,'?'),('Œ?š\n5ü´Hã?âàÁÀàè','wp-admin/css/customize-controls.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','N¢3îpËJF0·ø†Ñœ\"t','‚cR¿	?û\0}O7.q˜ðýYOâ¿ÎVé¦Íì—Xý:','',0,'?'),('ú.Õ¶»ÕñZg{Ú=ñšÌ','wp-admin/css/customize-controls.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÝÙø\rTÙª’žYa¶ö#','ŒBœWþã´¿­ˆ¤ÄóýkRmÓ¬äÐ7Z¶É','',0,'?'),('OáûÆÕÞy ®ýk	b±','wp-admin/css/customize-nav-menus-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ó²\'ý‚˜?B¿î	â','u“[n†M8JKx$c÷¦KÑ\Zû_(QFÉÙ2‡','',0,'?'),('HA„¸þf¾,Áõä$F-î','wp-admin/css/customize-nav-menus-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','NŽ †FË>œiØñ•','ƒÇË»!-ÎMÍ™tÃú1”4øè¤xÕÒ¾÷-¥å','',0,'?'),('A­lA~i^˜‚›éuÓÃ˜','wp-admin/css/customize-nav-menus.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','gªÓ„>O_KÞ4¢õÉÄjª','ú(†-@\'dãÜ&ú\'\0ò?—yàšÿ¤šVÔâñ4L','',0,'?'),('èŒ\0…]¨pÝÒÞ‘ê–	\rG','wp-admin/css/customize-nav-menus.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÃÖp¼U\'Júxß;Fö','ONnê‹W?Àªž*Ø>\n\'Àä§gä±ùZX)#C','',0,'?'),('NñãþHVû®Õõ}¶4G','wp-admin/css/customize-widgets-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ç€pT÷éàuD€xµˆ©','‡Z\rj}±üi›ûû€äÅ?\rb¸ûÖÒû·¾y1~','',0,'?'),('º¼4T¸(â\\9\'Œä3±)','wp-admin/css/customize-widgets-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','‰´×•–qT“|l‡c·¦','ÿ.’w‹ÚÕhB¤/·1C÷ÙSC=èçxO1?³óò/','',0,'?'),('ðö´øü•ø6$[£ª®OÀ','wp-admin/css/customize-widgets.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ó^ZqOF×i¸Ü°æ­ùB','qôô‰˜>Vì4ÇÀŠÂûgåÈíÇ¥óƒ€‰™“7','',0,'?'),('—ñb¦ü’Áÿ£º|e~ë','wp-admin/css/customize-widgets.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','™ÍÆcÕ¡›ˆ2sÌUXpÖ/','GÚpH;¬“iE)ÌT§m=K¯æ4ÇÕÝ0¿£ý','',0,'?'),('5ê?‰y˜Ä<Ù2Ì','wp-admin/css/dashboard-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','–ÔLÑÈ¶|luþiÊqá','n±ýHù´åXXž)fÿ³ÚYr~rôdˆmü„ª¡','',0,'?'),('µMŸésá;\',¼ÞÚ-E','wp-admin/css/dashboard-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ý åÎÅ\rÐAº«	-O:','Â5š[ládMÑ×geý¾ÅLÉûßâ½à×','',0,'?'),('²þ£²KqMÃä{ƒ±»','wp-admin/css/dashboard.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ô6TÃ‹Û!X¯]q\rº€õ½','5/‚Ç.wTA zu^4‰vìšIú¤·.³?¢ç‹','',0,'?'),('æ+‚ù«.âøÇeF«È','wp-admin/css/dashboard.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','aeû²Y­ÌxÈ˜2¨JÿM','ÏX&!Œïª€óãíbøgàf¡¥©\n¢³˜¬ÉŠ5”=’','',0,'?'),('8©@)ý±6yg[yåsQR','wp-admin/css/deprecated-media-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¬ÏxJrÀ0)zRµ£<ä/','\0£Ù¯¯<Ú(\'©È!\nNMØAÞ“É²âõœl@SŠ','',0,'?'),('˜pt_ Y‡ÁŒÊ7LãKt','wp-admin/css/deprecated-media-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','væ4rJš‚â‡¤Ø¡B¡','+—5m©Ñ3djhðD¾æ‹R,0@T€mØFv×Ý|U¾Ÿ','',0,'?'),('¼ð›ÂX\"¯-{ãÊ$48sx','wp-admin/css/deprecated-media.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ë.¥aj±ÚSKúi@Øw','wBBñÙi¿aí\0ÛŸê¼ÿ)g¦LÈWoºföÍâÖÔ','',0,'?'),('4aäþ[Iº}çØÜHÿm)','wp-admin/css/deprecated-media.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Yã{™“’¾ÅÔ9C\nDG','Û7^ ¿8ä(é_ËËjèÓÉŒû3UwfdZÄ','',0,'?'),(']§Ÿ‹âù\"}[’YÜRÚ','wp-admin/css/edit-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','è$»2å)N²?Û+ÀÎ/Ï','âº9ÒçKUÆŽ3èXeÙò&$Á÷Çòû-u­ÖkQ¸','',0,'?'),('“BÝH*mz—ÍN83üî','wp-admin/css/edit-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','é3~ø1èNÌÉÛvÀÛ]','moo°ïb$¨bðo¥o˜çô™#þ˜í\Z„×','',0,'?'),('\rœ:‰:‰ìõHHù:d','wp-admin/css/edit.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','R8”qX^¡¾:Ûçÿ7','È^£‡ˆøzwŠ(¦Uwöò¢&7˜€IZö7ÝêLà›','',0,'?'),('ó‡ç,·oÙ!Âz¾j\"ó','wp-admin/css/edit.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ïêUÈ> Ê	!Ž‹_šûL','Ž’°-úÛ‘ð«¨GoX«¹Wôkó%û‰|ÕpkèÐŒñ','',0,'?'),('6;I(ÖH²mÉ%¬Ãfº','wp-admin/css/farbtastic-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','‰ÿ»qà@!!µEkÂ',':~Þ°X#^sI>&ÁØÖ\0Ù.•ïMKG^#øÙÞŽ1ë','',0,'?'),('‚OÍXëÁg]<f@˜','wp-admin/css/farbtastic-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÕS@ãÎ[“\\,ð3|’¶!','£Sm¾\'ß;d`—ãe MØ0i=óŽ?>ÎÐ€ä¼?{','',0,'?'),('«Â«¬ä—-j=´u¶N\\q\'','wp-admin/css/farbtastic.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ùã8)¸úí}{¾øCûh2U','|A¹åLäºÉMbÇx¦d8Xï‚jX.ÐûŒÖ^\n\ZŽ','',0,'?'),('KnÒ‹D&sRôWU(‹','wp-admin/css/farbtastic.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','#Õ^µ:ˆG€(“‚±:k\n','4·°7V‡f›Ý ñ¾/ï‰¼å€êÃÃæDŒúW3p','',0,'?'),('OlqCcÛŽÐïÖÊãÏÌÐÍ','wp-admin/css/forms-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÁØ±çÔµøÙ%ÅŸ-Ï v','ÄÄês nM{HP‡v®Só~‚Á•[R·G‡ÔÖÓä','',0,'?'),('»Ê{ü]\\Öµ­	ôèdó»Ú','wp-admin/css/forms-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','vüá÷ï`É“rÁ=_š','O•È±H˜¾ii«®À\\6ªVAÆR¾NaÁ\rk©âõ','',0,'?'),('õ¥Ûý(ëÅø%ž#€9yn','wp-admin/css/forms.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','13çÓh{©—²h Ð¹ ÷Ê','xØ¥Xö£ËùpŒù¹ÉóB\rwX(>Û:Î&’á','',0,'?'),('Å‚j¨Dß‹¿.¥Ë–D¥‰','wp-admin/css/forms.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ØÉü?æ¼ÀÓä!Ð}æÐc\Z','‘SÆNa\n¼/he—ÉyoUH+÷+Î#*³lÜUÆ\"G«','',0,'?'),('µø§„¡ÉkMÔÕ?ÊuX','wp-admin/css/ie-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','öËAò3Ÿ³\\†ƒ)‰wp]','±Óæ†s«¥Ë>£„§L>\n&”H©Ë¼>#êŒ†Å×7¡','',0,'?'),('vs%Âz¡ï´úø¾FÓ','wp-admin/css/ie-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Lê˜ËÚ¦¹óøóOÑk','÷FUª±¿!}\\ÖŠÿô_È•«ÎoÀ/BÌ\\!','',0,'?'),('Eø&¯ÑVN®³‘\"N','wp-admin/css/ie.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','0‚ÐOp5‚!¢8¢','¨ÌMzãõåe¿®Ëx·nÞ»ºX),üÔ#–Ó','',0,'?'),('Ñ§›_ƒ4a!¢F¤ñ','wp-admin/css/ie.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÂòÔ½£+òÌo{­','Ä“©.ÿp!ih08¹ÌnædÚ7Mûlþ›òTçR ß','',0,'?'),('Íwÿ9=Ÿ_\"h%’×v','wp-admin/css/install-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','3‚ß~n£‹$š|žqÇ*Và','FÀö[%U-iZ1ôp\'©ÿŽºõ<wZÀžëuoÄvU','',0,'?'),('i²-ÿÐX±8V[~Eû','wp-admin/css/install-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\'QÐ‡QžÿHîvúx§	a','.U@A‡&ò°EO‡N,ZLÐþ°x*mò\'ÇïEo','',0,'?'),('<‰9þuþj³®ÿ„!Á$','wp-admin/css/install.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','2ÓL\Zéá¶0?°¸F™0‹','Òîky$Ýˆ°­ž4Õ\Z`/×Y	OÉ§¶Y›v','',0,'?'),('ƒâèÊ†×én¥Dã®–Ë(','wp-admin/css/install.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','‹ÊÙlë=ñ˜Z|YaHÍ','´yA¹¥”õ\06ü×#M\0Á\'ÄYŽ­a]sÝl','',0,'?'),('¡Ð\'-ôpÚ-Ïûñf¢','wp-admin/css/l10n-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','i°R{å³ª,Dþ_ÁÃJú',' Îñ\"…X\0¶Éÿ\rŒ‹R²>sFÓZ£ÞÑARƒv','',0,'?'),('vÃ¢,\\­+Q¹åÕÛñÖ§','wp-admin/css/l10n-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ûüžò–|µ\0yJ=äÂ','TE,Í±¢ !Ûè‹LbEùÆ^li0Ka´ÜPŠ','',0,'?'),('ÉÒ°†“2D´iÜe½','wp-admin/css/l10n.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','µÄ¸øP)û|„ðqŸr²€­','wppS¦½Ü\"üDÀ.¼Åo”MOŒmÇO©\'bËaÇ‹0','',0,'?'),('åHÆÌ4….\\ã:‰ç#àî','wp-admin/css/l10n.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','o£±Ž5{ÉøÁ³%$õ','\0®\ZW°M ë!åÿs½¹ÂCEû>ï&ÒDåÌpÂ[î\'½','',0,'?'),('¢y%…ËÆÇº~¹ne\"V','wp-admin/css/list-tables-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ªQGpÍSzÁÚµ;…­–¹)','Ô×pºîóµ•:‚oáLÜ“VßñÀd•\'¡æ–ì»/ÏN![','',0,'?'),('þFÏ%­³CÂÔ0»£¡,','wp-admin/css/list-tables-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\"¿Ø7Š`ˆiFyeý ø','¬x#µÉoZjmè1jcp…Þ×†þ¾^¾tÏéj¦7¹¦','',0,'?'),('|jª•x7Ç(Q}Ž0À\'ð','wp-admin/css/list-tables.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÞPmM‡O“L/Ô—(Oó','þ\rˆþkÈJ {Ò%b•Ç A³Å{rE\"ÁqÛ¶u','',0,'?'),('êkLN\0ôç»x6@','wp-admin/css/list-tables.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','U®WÂóïˆ+k‡6ðN	','¥óªÞPÈ§¥mËu¾hf\Z^PœìYéQ“ö:¨%ÜH','',0,'?'),('A{&Ï Š¢V>ì²Îs','wp-admin/css/login-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','p(k—Õ†Kürî\nºu’ì','ˆ¨?LŒÙ<¹Öoî1¢šºþ«Ó€ÿ÷‚É—+¥]ñ','',0,'?'),('h@ZÉ%Rë•Fß;ti\\m','wp-admin/css/login-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','WÚûv½«áêµQ*´ƒ,@','\'¦s¡–üf\rÈÞËt¹tÎÐU4„hvèàÛÏ¸q@n','',0,'?'),('¶º¤|jX–ù©ß|êfb','wp-admin/css/login.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','$þGæ²v€=qñÊ@Ú›»ý','4=‹átmÆvÜüjÂuÙ’ÅIÊI¡y\'Ÿv','',0,'?'),('`™&­¸é”¥~K3/d','wp-admin/css/login.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¯Æ­ñ­4É ½L5Mù','ïÍÐe6á™Í‚C8Tˆ™Oá	qïýZ’À³Flž½¶ð','',0,'?'),('rùÎ\n—Ûb°•#ð©é','wp-admin/css/media-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','i„ö°àå­Û—Ðü','\Z­î|†×YÝNpéfS9“²\reÝ%ƒ?ñ8ö;±Â','',0,'?'),('ÁzÝ¿ä¯&Xâ™6¤˜Ìs','wp-admin/css/media-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','í<(‡ÕLöûdõ[A5Ð','§Ç?´v“5\ZZªÏåm^ß}4ÇûƒS´‰(5?y*','',0,'?'),('˜£ýT¹D‰ÀFÒK1Ç','wp-admin/css/media.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','þ:ÿ ØLÝfªÓYÈ¨ä','èŠÖ!X¯|Œ»œ7b\Z[ÛóÝBÝm6ÑÍ\"Ú²','',0,'?'),('%ÐPb.Îÿº8ºGdÎtÍ','wp-admin/css/media.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','gS±ÁQŸRÑØ\'+:=Ú','4µWCŽjÕðì…“Ijµü¸_<yÓÂÏF*ùm8€Òç{','',0,'?'),('\Zïy‚„8R#O¬yÎÆ','wp-admin/css/nav-menus-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','eƒAŒüGgýø›çP','Ýá$Ó/²oGN±Á\r¹þ¯¿Ð¦º=ŠÐ^ŒY¢Ñýmó','',0,'?'),('Dƒ¬ š2û”K|&å','wp-admin/css/nav-menus-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¸:ã¬{õc„¼Êã[×T3',':œ;´ìç2ää$23CªÁ¤ØÓóûÿÄÃô×','',0,'?'),('¹®ƒqhÌn›Jýj¯','wp-admin/css/nav-menus.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','þ*hJùÝ<ÒCG\0î','ÜBµcž8®³­KO}€W±:Ôg=VïæüOaªH','',0,'?'),('½ZžÀWtÇp¥NŒh','wp-admin/css/nav-menus.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Â>Õ?eÒ£;	„RÕ4Ì]','Ã@‡¿•ôc^•©„iz[VÞ+³>ô3ÍÁÈäl.wQ','',0,'?'),('ûPhÜÈ³·¤rVâ','wp-admin/css/revisions-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','a“QÃÍê½ÔîFn0?­ç','¥¢-`/®!JÇñ¸wž€y¶†ãY²uHÃŠÌ#','',0,'?'),('@êtÜR>GœHhÄí×¡','wp-admin/css/revisions-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','H¡Ç¾4þ“¡R²îJN','{µ2o…ÅÜBæý«Ç%ùÌ¢ÇgÐ.•Ÿ•Qdð*³‡%\Z','',0,'?'),('¢ a\"KwTÕbc1S','wp-admin/css/revisions.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ç…©e\ZÀÍ°µ„9‘ê®','1ÚíSÄ÷–³×);Øt;Gð¼žÄõm,~;V<˜kvÖ%','',0,'?'),('\nýGÆ™nåð\Z@1+U]£','wp-admin/css/revisions.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','dŠf…­„É7ã7™°yº','Ñ/‚s¤\Zd9ððÑi‚Oˆð;¹øi‹6LVš>Û','',0,'?'),('÷­0rãˆH\"áYK]T·','wp-admin/css/site-icon-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','„;€w°}ÎkÕ2ªzÓæ','éî’Î±a˜	XgkfØ8j†nÑª®›=&`sØ§','',0,'?'),('‰‘ÞQã£WsñA7d\n','wp-admin/css/site-icon-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Å`_?Þ„=Û|ø‡§+”d¨','ìòÙMµ´ÈS»Ãõ–>j/‹‹¶\"K%qÞ£ýÖ~','',0,'?'),('\'=!Za„ÍaâÛæjUÑQ','wp-admin/css/site-icon.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¨ô}ŒE²¨Ôp0lu','i>ÂœÓº#ˆ&‹2Zí\'‚ŠK(*™«õÖâµ','',0,'?'),('›šn&¢âðn¼!å´¬î','wp-admin/css/site-icon.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','l•ËxÚJ‘ÅTGˆ˜','ð+ÊÅÎWµÿöVÛð3¯(qFèíæÀr;·|^ö@¤Õ','',0,'?'),('¦±–ëg„~Òw\ZÐhh','wp-admin/css/themes-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','@èbãÃÙ{°_ËIÍµ','ÛÂ·gºx¹Uä8RüÎáöÈ\'ý&§%xúzîp&?¾)','',0,'?'),('µœ5ŽAtß‚–m0iŽz®','wp-admin/css/themes-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','_óblã>e‘<M‰S•š¥ ','j0]5Q¨ý#:ï4ªÂx¢6v6œË¥}ò·íÚ™4-','',0,'?'),('ÊR±­ÙÑˆé°Þ¿¾0','wp-admin/css/themes.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','w¾¶ê2u¬d4&ØóÕ','›Lrãš)¦üåŽVP2‚ôº^«™©\\µ\"£M~`¹','',0,'?'),('±šÄfSu¹BìÍ¥?^yO','wp-admin/css/themes.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','îùéÇ‘¢¨%\r÷oËþ]½','Mx]FpUÖQxp4úÑB«Ïÿr´YÓ?!','',0,'?'),('‡¢¨3v´U€\Z3˜PÅ^O ','wp-admin/css/widgets-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','}B»rxï›®‹y£Ç&¢¼',' çÛt–ý-BG.ÊÕÐv6î™/Ó\Zõ{„DÌ6˜','',0,'?'),('s²E¸ÎžqÈp°BíÚÖ','wp-admin/css/widgets-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','œ²“nÕ5ûÅÔß','ËÝ³õÅñ*õpû	¹ˆ9®à¼\'årŠèùú“D','',0,'?'),('”!HUN&ï\"‹¨ÓŒz÷ô','wp-admin/css/widgets.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ócJ`:<÷¨û6éÐd5','ÿ™4 gãu½!åîË—rnÞ¥ô36§‰ÏÀ†+ƒœ†e','',0,'?'),('Eœ}¾~î¥MÊÅ-Û]ˆa','wp-admin/css/widgets.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÅRc03ªN«\'¬âTäx','èÕÇÏ4!/û˜²5#K{¯Í›”·Ý>¢ÿìkß,#!;Ë','',0,'?'),('Ž°Ö—]NR¼ïS{qv?…','wp-admin/css/wp-admin-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','tùÜõ«Œ’öfoõ,i˜sÈ','MöèÇ‘uÓl§ï2ÏîÕ“³ê\"Õ>´Z•†: ~;+','',0,'?'),('µ†»$(­g‹(Á®ÔPÚç/','wp-admin/css/wp-admin-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ÿøg*Œr®Ïæï§-¯$X','…<˜æúÙò\Zg‹nÅŠd²tÒ^O\"¼ò>#ÝÎ','',0,'?'),('dè4jà2UÂVŽ·$öP','wp-admin/css/wp-admin.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¿ä½5\0«ÇÉ!û*[','kæ¹ß[i·Ô|2þÇûô¹á«ðãEkÿ¥x/c™','',0,'?'),('×Çj0–©ÞwþE}Â®RŸ','wp-admin/css/wp-admin.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','+Ë«—xg¹ˆusU™þ','Ngá9DfdÛ€F8ñÚƒÆÔ@ÀmEÜqÖ‹PHù‹\"','',0,'?'),('¹Œ?ƒ0|Ãöà5uÆ¡ƒ¾','wp-admin/custom-background.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Hªä\Z—éœºû(ìãH˜A','Zà ›#k©@b.wÓ¾&\Zh\rÝ™¹Y³I”','',0,'?'),('uáqg\Z\0‡8‰hÔ­û\0ð','wp-admin/custom-header.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¦Ô©5˜†w¬œÖg\rU¿','),iÉ\\óýV6çxm‹ˆü\rºŸ·»c','',0,'?'),('ª;?2èáˆSýã§\0ûšp','wp-admin/customize.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','À	®+Öw\'Íq]Àqâ(¬2','ñjfÈ•xÅÝâÐ™ÁQŽÝ”™p)ôÿÿxfG\\Ã/','',0,'?'),('žîp?E^¢@·\'ŒãPEÅ','wp-admin/edit-comments.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','up~ì¬3=¥Ý½d°8,','È\\EéJk¤ìé½Í%ý\0r::ïA¤º),a}','',0,'?'),('æ\ròb\\ñ™‰ÄÉ²\ZÄë','wp-admin/edit-form-advanced.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','~p†Ï|f®×x×XÍ','ò:[2[±TPl‘äéœB-¥8®ŒHò’5›\'¾RÁMü','',0,'?'),('G–7\Zžæ²I&:íx','wp-admin/edit-form-comment.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','1­²ºe¤¢æ1ä\"²X€','”òÐ»œŒ3IhýÝ¸beápJ	·C@©WÖ+†','',0,'?'),('\n“µ‘b-ÓVø:ˆƒ|mµÿ','wp-admin/edit-link-form.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','øê¤`®í•ÚuGDÉ¡yŸ|','9iäà< ›‹,\Zþ²ö““ÌÍK›´h”µvMxÏ±','',0,'?'),('%ºÒàë8^œV<ÑtË','wp-admin/edit-tag-form.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','£7?Ž^qH ÿm)Î°Ì\\Y','eA`ÑdŠJSå½³Ül\rÞ=1xODTè>lià/\0&³','',0,'?'),('¾Šh¢Ýß)UG@Èx–Ìv	','wp-admin/edit-tags.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','9JÔgtFÐ¶ŠÆÒ[àÌ','gêˆ£ð=¡Gï©®†¥ ]Êø‘>–[— >¤`_P','',0,'?'),('Y…LaØ€µhÐ(','wp-admin/edit.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','s>ìße|â[š2:êR','I¶Õ\0N¸ÇÌBdõtMTÊˆ½á5ž—˜óÚ¤œô{FåC','',0,'?'),('pVYaâ\0ï­†=€ÁÄ','wp-admin/error_log',0,'#5ð--„³é&‹¥0©: 1','#5ð--„³é&‹¥0©: 1','\"±&g«¾ÞR*‚qü“ToÇ¥=è¼NÔk‘©Ï$˜=','',0,'?'),('ÂÀ1Œ’Á|¸}š”âdQ','wp-admin/export.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ŸïÂß¯¬ÏFDÚ\0KÅÛþ','ô\\SŽÙðåO7QILØÌc1VIÝõ÷Kæ5X¨[R','',0,'?'),('O§ƒµà&Ârè“•ê ','wp-admin/freedoms.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\'Í¡®ïqÅ\\f7H•Hýh','A™$é‘FÃpC#2?À–8Þb¿ýì?ÒÛˆÚ','',0,'?'),('æÎWûêÃ\"úÚêSk:Í','wp-admin/images/align-center-2x.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ž¾²-ór‡5*J7¡If','¢8tfç*JwÒTÂ^åÂHÙ>ÈñÊ1öJDÈÎ¿','',0,'?'),('&*ƒÊÄdÄ†Ö¸	ÖH5','wp-admin/images/align-center.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','	Ù\ZÝ¶µ4yæŒdY1ÙeŽ','Ðë†½N3‡X!ÅÍljÿh`ã®±ç´ÇhA]ô¸J‡','',0,'?'),('öV9´ÔK±áÄgoX±¹7Ó','wp-admin/images/align-left-2x.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','i…8±O¹ƒšìÐ^—Æc','$kb¶>¶àÎÍñk&ž:	Ú‚a¬7¹¶Zcdm‚´%','',0,'?'),('éªÊm¬Mt¨†ÛW³B','wp-admin/images/align-left.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\\ýy0Ïúd÷Zòo.hžÔ','é_]ê<#¶SÎ\"´B^U4_ÝQ<!@šx?J$®£KÏ','',0,'?'),('Ô].õooðÈ¦M-n	‡','wp-admin/images/align-none-2x.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','øXC™)[×°›-º4½','³ß§&QQ½p\"~Û\Z8S×Šš‰ïÍöYÞåëÅS`','',0,'?'),('MW€	å¦¾:Éä˜ÙŠ','wp-admin/images/align-none.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ñ­eqd2 ¡Úu‘¥Âñ\r','¤g(¸1†Xã¤{† [].¡üT‚Ž¡“AÙÄõ','',0,'?'),('vâG‚.Âg·AõÆ#õré','wp-admin/images/align-right-2x.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','hƒl½>rº]£lWÆÀx','¤V:ðh¯ÁÆ#È†BTÖ5i\0¥?„ùcÀBcá„ôÝ','',0,'?'),('ÃÍtnRŸØ”Àá¯ÎÆ%^','wp-admin/images/align-right.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','BØóâ‡Oe#Ól@:P+\"v','ò‘üÉ³üö‘Cºº?ò=ÿòè&¡°UyZ©31’¥!<c','',0,'?'),('™[‚Ÿ®QH\"pS1Èªëc','wp-admin/images/arrows-2x.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','— Qð†}Îñydb#6„','ø,cË¿\Z¯i(~æÖ×)•Œ©Î\'€Ä8[Aé/¨IÑåx','',0,'?'),('ÓE#lðÂLþæ_&Üª³Âï','wp-admin/images/arrows.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Úv’$ð>ˆÑßÙ>¿Y','’YW‰š(†ðN3–2U;ÕâÆÎÑ<.iDd!ÄÑ','',0,'?'),('¡DSæâá3.Ä¯y}ó;','wp-admin/images/browser-rtl.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','D\"‘ÙÓ Aä\Z®þ¿¿%Ì','+å•§îÛè0ÖçpÎÆœõ˜JMk ÿqçwœXØ¨£','',0,'?'),('˜›¯ÐÂŽÙêHË06²','wp-admin/images/browser.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Á²ùÂžµK\\„b•$þF','&$ñ†Ä‰9›¡àˆ×~_SHÒ_ÙÌ“ï%L¼¶þ\'&Á','',0,'?'),('G€9qóñë=Ê¥[3?aè','wp-admin/images/bubble_bg-2x.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','R=[ùïØÊ;’çcßÅ','—}ínÊvB.¦»ŒÖº\'®ãlø²aDâa¹sMk','',0,'?'),('QuoPXØØ\0«¸SÚž','wp-admin/images/bubble_bg.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','=,³÷º¦(Éå\Z2cVç 8','r½¾qMCY&¬fp‹3@‹-5îéV{È<‘M','',0,'?'),('ÒÕLt593–u^˜ëä)ÙÔ','wp-admin/images/comment-grey-bubble-2x.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','TYÓÅ2¶s,\rõmƒ¿','D‰ÅÀx­ŒT-¡¡æÜþw…ÃN„	 ¾PŒ{¦‚','',0,'?'),('¢ØÀeßbWüA0Ïd','wp-admin/images/comment-grey-bubble.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Y*\'´‰°©tÀ¶²F','7	®y²ñ®Œ¬ÐèU{Ã®¦ˆÔŸã‚Å`¡§]m¢ó','',0,'?'),('ÏI¢Ø\\j¶¬ÑxÌÍËg','wp-admin/images/date-button-2x.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',')R“,$kù‚„)6C¨»c','ÿŠúÛÅøTlpE®xQÄê\'H9owµ{(|\n¥³','',0,'?'),('ýÍa„í\'@Tç‘“‰õÖÊ','wp-admin/images/date-button.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','—Ž.ªÚI•V•Äö','AFy®WI1Cx„æ¦)ØÙmUgû¢ÎYA4[‹™qC„º','',0,'?'),('j%M»ÉòÑp)Z‰Ä','wp-admin/images/generic.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','øŽ•ÿ\'Š[#98!Ð','§{uë£åÕK[gÍ†ExÜ{¥:ß¼‚úlÍ¨GÄ«','',0,'?'),('È\Z{gÝü?Ñ3gÚ¢\Z½','wp-admin/images/icons32-2x.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','µ%¤*ùúüøÌgš´ú»','×#!$í¯Ø@ì0gé¿.Ö;i3%!ÍýcHPë•œ=','',0,'?'),('ŸÎ–&¿¢NÂ,õ¥ïŒ6P','wp-admin/images/icons32-vs-2x.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¡*04ÿG4F—	&Zƒi}\"','ë.aú}…‹hwÓ6œWEÊ­–(3ïJÓ­µ9ÓEå','',0,'?'),('‡«L UÿÕÀ¹f¯àuâ<','wp-admin/images/icons32-vs.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',',ÖP*çÓñ{>v¥±Uf','–°Úø?Uü˜z¾ÔP\\™Â@†`¢8g;\r®³Á–E','',0,'?'),('Â1¨ŒWV(2Ÿ˜6²„³”','wp-admin/images/icons32.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÑÛ¬[çm9…çJ¡4Ì\Zê','DÌkCd‰î—i|a|™¹àÝÙ+ò\ržx‡¯ÌŒ¼ñ«','',0,'?'),('LÖÄüý8àï€õ\\¨Ý¼+','wp-admin/images/imgedit-icons-2x.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',',ãî\'ƒ£6U¦½ýÃÌát','“?àØŽ).l ôÐÏ%¸<²(_Ú 6ÿ`^c7','',0,'?'),('{õ‡?ìÑÕü\r’Ú\n\'','wp-admin/images/imgedit-icons.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','KÕ\\2ŸÙØ}©G‰i;O','TÎNÂ~ˆå÷-Ã@°èNƒÐÌžVç\\¦”(u$Õé','',0,'?'),('¢4gŒeÊØé>©óÓß','wp-admin/images/list-2x.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','hÕ»ISÂ2ýÓi‚gš','ùîJüpáS_ò¯ÔXØØ#Ž‰UBÙ-zÔÔÄ,ç','',0,'?'),('­âZ\nuÕoK° ¯¶T;e','wp-admin/images/list.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','>–½*âÀÓ³ÑSñÃ','\\w«»T[…=°b­aCk©…ª;c£¶À','',0,'?'),(')úMæÈ^ð¶Ã»ozð©','wp-admin/images/loading.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','-[’¶tÈP¿ðì¯dì','Wì3pÁla	¿–PÕÝÊÅ\rñ´A÷Bgx<pßü-‚3','',0,'?'),('»\0²×%3[$x\0èâ.°Ž(','wp-admin/images/marker.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','3Ü*O2/Ô3I2œýè','~T¼@\\Ž€vUI<çpKÈ×Ä×a`Tº@cãÞcaü','',0,'?'),('@Þ;5‹XõñV¨”OÆZ','wp-admin/images/mask.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','üö“g~¨\"æÒJ÷²ä©Ž™','êž×/<sÄÔ¡ã)Ý\'‘.®1ÀjknƒK9QîôÉ','',0,'?'),('@÷sZö”^™¥Óèqv','wp-admin/images/media-button-2x.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','#ÛWIå…\\¸Ð?ÈÉ','Ÿ<ó‡:»ðtn½kbíwiÝ&Œñ	¸È÷R¡µÕí\Z','',0,'?'),('1ÜEfQ¤v#)ó\nÙ0EkQ','wp-admin/images/media-button-image.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','~¢ÉÁWÃŽÛ@±ÎbÕrÕ³','™,ŒÁgw?{àå6¢±U}iXÍTHÅåÿÐ%†ÔÝ¬ï¹','',0,'?'),('a\\c,I\"5TÍ±#Ì‹þ','wp-admin/images/media-button-music.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ïõ]ó2\\Z®/äÙÞ•','Heÿ}½Ká±ýÛ­XçŒYW½’/$\ZÍeú ÿis©','',0,'?'),('NQž\"*hzªrÃw|\Zø','wp-admin/images/media-button-other.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','‹Æ´kÇ|Üæ,Oã\"œ','¸\n6ù‚b+d‹1Êmã—¡_›ÂzøÑ‚Á3Šì®<í}','',0,'?'),('þýþœ)z]!?»±aÀ','wp-admin/images/media-button-video.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','«ªÃßØ¿råxñ4QêçÐ','Hö§˜¡¢lã8Ew\0Ž´Ü8tc”3îÝÖžÈVºÄN(ò$','',0,'?'),('a)žTMWá¸Ooˆ¸Q”|Ü','wp-admin/images/media-button.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','²¶Ãã6@pè’z^yeóÎ','_\ZêúˆýòSj×–Y ½óðè•V¿ZŸîGenç°_','',0,'?'),('\"’ŸNß¬jj)…Ÿ\0Œ•N','wp-admin/images/menu-2x.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','jGÿõþâù{¿>¯^;$‚Ó','–2]yâ×#h½âÄ2ö9ø> ^s€\rHå	\nÛÜgšÃ','',0,'?'),('* aØF²Ìð4Ÿ°uÛvU','wp-admin/images/menu-vs-2x.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','J¨ZY<÷iÇY®„bø','\'œ¹Fà½÷Ñ”E\0†õæè7¡É¡Ÿ#ä>sePØ¶','',0,'?'),('t]•ÙŸuÃÕuÛüåjû','wp-admin/images/menu-vs.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','q™€òLð,_¥;1/ïE¬','G²iH|ü×)¶E;³½\"_ã;Ô£4Ô»w”lyÁ','',0,'?'),('@ºXD\nÃ\nRN†tëÍÓ','wp-admin/images/menu.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','á\r9#‹dóY`	Œÿ','ÙlúÈIE/(¼p­–\0Òpnó‹–T-O¥z\"],=`ï','',0,'?'),('ëF ó8Ç+²)ÐØrÝPè','wp-admin/images/no.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Èk¿dÉ$ùŸÜŸV7ðÀ‹','\nà>ÈÒ¢~hÄZõ¤ÓP\0ýU0Ê;\' {õ)	¬>','',0,'?'),('µåµ+DžFÜ¿TZ[H7','wp-admin/images/post-formats-vs.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¦S¦l“ôH\\©¬¯¯üæ','e…t¯«w|W§{x¿y%K:¦»QE7¬‘åÃÓ','',0,'?'),('ã\0¼•×•oxi3%\r+]kg','wp-admin/images/post-formats.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÜKÿáÑ\0“äÙ%3¨Öº','9Æºƒ&Ï]Ÿ¯nŸEu¡Àa]iFé÷Æó¿Æ³Â','',0,'?'),('n]ûj7<3ISsQß','wp-admin/images/post-formats32-vs.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','·t.E¶­ê5G¥N\Zóþv','(Z¨,…œîªIm­Y,Î‡üÔ—ñÆtGŸ©£žú¯¸«a','',0,'?'),('ÎÅ“þúúÏ”ò=Ÿº#6','wp-admin/images/post-formats32.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','WY~O’ø{ð+_L‰kE;','k¾<8¤._D´ãK‹‚µßG[§5e-I(0w°áh','',0,'?'),('ò¶?{o_±°µ\'»nÖ','wp-admin/images/resize-2x.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','õáe?‰&h.éÅ\nº™','[·e 4úBd“*	.ÏWu¬Ð©sñ–Ý=ï=¯‘ü\\“','',0,'?'),('¬3!9ä=è6Ý¡','wp-admin/images/resize-rtl-2x.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','÷Éžç@þ’T0:ªÜ}','ÌqWÊ½6Ä–(ÒH\\îÉÚt1ÎXÜ=Kü¹eLÎ','',0,'?'),('ˆIÝ{‹?»†rô]¯ 7','wp-admin/images/resize-rtl.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Û’cÉZYÔ6ÚÅ','ÁÌ’¹«Ì‘\0‡çCb´ÜÄ†Â<ª ½ËQPz¿ÖÎS¶ª','',0,'?'),('~?¡J¼IÖb*×ºêeèC','wp-admin/images/resize.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','?ºDß$ô\rÞXvÈÀ®Äa','#‹?ý|‰góv‰þ¶ ¦p\nþŸÀ(¸!»7Î²ùî#u','',0,'?'),('\nf†‰Y¡·4&üLð¦','wp-admin/images/se.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÖÈ”BÃ`½Ú.}\'7:','Y­»›ä›è\"KùÑ{·U¼©×r™:2Š‹JL´”È','',0,'?'),('X—:8+Ë“2>V]¬Ë8à','wp-admin/images/sort-2x.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','nQ&Ê] ²0Ç-š‰ƒî','ã-™¢³4XéNzîP+q¨5³U»B…ÌàqÉ™yÂéO','',0,'?'),('Ý[6»5€„+È	án9ä','wp-admin/images/sort.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','.ŠËî™¿¼¶ÔlHj™]','”åôñ†DY~ÙÞðüAAÆÔŸp¹L9CkÄûàÜº','',0,'?'),('‡J¼&_#¹ñ3SÔq ­','wp-admin/images/spinner-2x.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\\q¼´9)hdxR©Éß]l','Zä\\J¬Ï)Ï“­q1CØçÒâç¤ç9—Í~&{','',0,'?'),('èfõi¿`¸=@TµçoÙ','wp-admin/images/spinner.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','°£Ýã1c~\'ªdvÔvHq','éIÜÁ9%ûŽ-7C­Œª¹PÏ<„rï\\cª\"x×{','',0,'?'),('PÞ1$¶‰ó\\*åC','wp-admin/images/stars-2x.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','õêA”§œ#æS²Me.^','[®òè€¿ý_(\rhª×çYÁˆ´Tî¤¹ðßqZ±Õ','',0,'?'),('éFÎj!Yé{.J=,µ®','wp-admin/images/stars.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','[¬à™><õk²{Òì(‘','/	Þï\"…ÚÀˆFaì±”<SYÚÃgÜ¬ÐØ‰FŒ×@','',0,'?'),('Vrm‘KE§p¼j×ä6—','wp-admin/images/w-logo-blue.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ý[N°W¢ð_pàw®0','Þ£^Qtä3ôHunUâ»Éà~²\'»T2','',0,'?'),('Jf¸3?ö“‡_rÛC‘','wp-admin/images/w-logo-white.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','n¦ÌîJvÛ¢~»y¬\\…','nÁDš°‹ _Ï;Ó!G«×cVƒ0M9ië‚=½','',0,'?'),('Æ+’ ÍgÔ¾Âq6¥^\0è','wp-admin/images/wheel.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','E0½ q0m»Æ\ZY%V¹X ','(]´:=dÓqÛ…¼O{9ŒÂ€Ô€¥vš…È˜~Š²Úó','',0,'?'),('‹%„ä\\ùÂMA‚íÒïÿ','wp-admin/images/wordpress-logo-white.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','½ÙqPûCª†-SPDæ÷','e£4ÑEºÇ?ú&õDsA‡Ä×Ê¬ª;ü)@¾XÉ’','',0,'?'),('tZQ¥Yz0…ú½ßè·«','wp-admin/images/wordpress-logo.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Æ°ùy¹æoÃ8ôË8S¥`Š','bxÃLüPÍ°éâ=^’íå÷¹aõmÏÅñº»1i³ß','',0,'?'),('òc\"ml ÿÇž>o','wp-admin/images/wordpress-logo.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','óNö%“d÷ïÏgÍÝÉp','Î\"¦uð™¨j-QE\0‰Ó[æ¦gLÝZ5ÝMD½:','',0,'?'),('€ÓÚºèu¶¿M—É÷[\r','wp-admin/images/wpspin_light-2x.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','}ï3ªÙYÍ(IÝò¤m','9N¹øî*òôµ8)ÊqÆXè-Ê´oo±y…T–É','',0,'?'),('\"w%â_ƒ„K\\ áuË','wp-admin/images/wpspin_light.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÝNmÒh§äÁÅ;\Z@’Ý','m5¢ªˆ^Ã­%Ånø4<E\"kø€XzÑÓ§Õ=ö','',0,'?'),('ü»<læa¬€,›bX,³²','wp-admin/images/xit-2x.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','°rœT½Ä`Ÿ¯?JÐ/Ç','-P½fy÷¼$»qÍ\\_x’…¾²b‰c«³æX.Ñ4','',0,'?'),('§mÌœýz4èLä¯úK','wp-admin/images/xit.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','å)£Xû¹`1¬ÜðH×Ê','~ëvšÝæf‡Þ|e¥]Ø¼ç\0ÈÉT\ZÌUl(¡\0','',0,'?'),('ØM&3\rÜÁ3CMaQ{','wp-admin/images/yes.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ä+ø¢7Ü‰—\rqZèQk',' =ÊQêâGÝëçˆ9%¹K†ææ,Ë\rû\ZFðyõ…ç','',0,'?'),('”ÉT²¢V¨íôª“\\˜—','wp-admin/import.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','óîñZšbš…=r~','êI×‰_”Á@ð“B–ÿf‰Fc„›Áó“Dä6','',0,'?'),('Ä³Jõ\n`|Æ5,HTõ»','wp-admin/includes/admin-filters.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','t†#s¢d‡Í}J÷£ö','|J_bz7Üâ –;ƒî<&õ¦ÿWI]ÑŸºÇ','',0,'?'),('D’Éñ¾Õ)baëkÚÅ{ËË','wp-admin/includes/admin.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\\{ŒzÍiPÃÆ\ZqÀ','·á¸büh$î•žw\"=c?.ü/@}$óåZ`Ê¨','',0,'?'),('Òª*ãÔHšª¨\n;t²û','wp-admin/includes/ajax-actions.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¬Ós(Ö4Ng¾ëOvX','Öúÿ–CËÛƒ ¶ÇvÔ8XLÉ”oúVgþ…C·LU','',0,'?'),('¶°ÎHº*¶á*.ÚS','wp-admin/includes/bookmark.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','XZ¾ÊŠlmã¶×A',',ÙDÞªÐ†gÝø\"©‰Šýb4ÅÚ3÷ÙAVŽô\Z3Çú','',0,'?'),('\"Øw²¾h²ˆ­Æ','wp-admin/includes/class-automatic-upgrader-skin.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','êt±Ð]“ì\Zc.*2â','W7k+¯¿r×ŸƒxÒYxsš§Ùmfð	™ù«œ¥ø<Ú|\n','',0,'?'),('nãÐº™Óvýnj=Í®','wp-admin/includes/class-bulk-plugin-upgrader-skin.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','4¢¼È8”öú¬µÓß§','&‡îÚª&´ò@¯sŽÅí2«Â%ë™Ã¹‡/á¢-G¥','',0,'?'),(' \'ÓÒª_U;0˜/<Â','wp-admin/includes/class-bulk-theme-upgrader-skin.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ŠÄÅLtQdz•LAËá','‚B¼Ä$N‘ŽViˆÊpüô“‹¿7EÅ\"óW¸Ìþ~Â','',0,'?'),('W7¤”{(„¦;:P¥š?','wp-admin/includes/class-bulk-upgrader-skin.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','~ê;b˜Ð=,ãÜJT6X','øõÒ•:µÜÐÅµµC)L±dº)Ñ¬õJÕ•Á\ZÚÝO','',0,'?'),('ÂjÕçUÃUé‘X\ZÐè/J/','wp-admin/includes/class-core-upgrader.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Œ–€\"vÝÙe\Z‹ˆsA',' a²¾ÏžÌicK6­W°\'Å0jŸ¦Ú}yÝWE','',0,'?'),('×M\0÷ÂÚc°šíø¡¢_dØ','wp-admin/includes/class-file-upload-upgrader.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','$ÕùÓ&fZÒm-Ö_âÓ','`Eƒ@ÛždAa$ŽÃ,UÃNn„ù)xpt‘ƒ|Ý','',0,'?'),('©:8ÏIaö¹Ã¸lÕm','wp-admin/includes/class-ftp-pure.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','BäbE½àE€>‡ÛR','\'M*i„*ÞD‘÷\"Ý~Ô:’#*aêþ™Aî,nðSÓ ','',0,'?'),('¥afh=F¯ÕÞTÒ:þ“6¶','wp-admin/includes/class-ftp-sockets.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','l¨9èU+E£îõXª+–','ÅÕ;ì	Þê¥ü:ó¹‚sÙ‡»UÆ€öa“èŠeŽ','',0,'?'),('ñøå“rp.u…3zx€','wp-admin/includes/class-ftp.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','É¾Ñ&_žúãsd™rjz.','ð* à,7˜o\0‡¿¿¤7]Cå¾ŒuìÓ§N]“UÅ‹B','',0,'?'),('º­:æÀX©¼@\0{*ÅÖ¯¦','wp-admin/includes/class-language-pack-upgrader-skin.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','I	ùQó²2•Š$5½˜àí','H8OEŸ}ŽçïÂ‡ò¥,EÐz«\\Q€‡–N!÷ÓTXo','',0,'?'),('gÐ¶~)²~¥sºÊž“ûI','wp-admin/includes/class-language-pack-upgrader.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ò¡‹½—LÑ9HuÚf%','ÄhàŸ\rh—/<ÈÚñJ¸Š$ª$§\n]àøÂíÖôçƒŒ','',0,'?'),('ç\"ÕÆ¡üŸ7vs+ö','wp-admin/includes/class-pclzip.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','YÇÐ˜–Ï…–‰ÜôWYp„','…ÇÆ!\"¢Ü„Ó°³Ò1¥ŒDEóñå ÷0äõ¶','',0,'?'),('W&ËÖ´ ª)+ôÚ±¥öå','wp-admin/includes/class-plugin-installer-skin.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ñ\n3Y±„cDÚãð°','¬Åªñè	ÁQÊp¥É’u¯ŸÐ•’7Sl‹ª=xs','',0,'?'),('®h/Í”žj—Cê¶\0æn','wp-admin/includes/class-plugin-upgrader-skin.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ä–ÇÊFz’±¶¡I|#','Wô´›Xî¹:SZŒ‰\\ÐÂH£þ\nV Hƒ“:W•,','',0,'?'),('v–)F¼Û~q„‡œ?b','wp-admin/includes/class-plugin-upgrader.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','QÈæú,>:ðìQKö‰','À²rÐ+€õ§L/àÑ³¥Òæ©`6ñu\0`w¶XÄŸ','',0,'?'),('¿™s¼óƒIžqF›Š£µ','wp-admin/includes/class-theme-installer-skin.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ígµB”I®®q­ˆK\'}',' «äZ–ø›8—:ÏÓÝï\09+öOïFâ‘¦Nï5\Z]U','',0,'?'),('H`°\\ñ æœr²§·YêC','wp-admin/includes/class-theme-upgrader-skin.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','_JïW;Š”á×¡„ê^º',']—{Œ²¹á`a±ïb\nƒ	-Záå‚2Lžl0P£-l','',0,'?'),('›3âôaD•w·P¶œŠÆq','wp-admin/includes/class-theme-upgrader.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','‚‡²h¡?‰:ÁÔ¡ÚÛ','dìo8†w:Ï¢Ìy´ãÜ·;ûh=t3‘Ìh¤Â)¤È','',0,'?'),('{y\"¶ÒµµÐÝ©¶{­','wp-admin/includes/class-walker-category-checklist.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','«¶…·²·@ÉíÕÿ@´1.','ª=ïäiÞiôaóüÈ»Ø|žeÀ}ÈëJ…','',0,'?'),('ŠøQs|âc·LØœVH³)','wp-admin/includes/class-walker-nav-menu-checklist.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¨²œ!ì¦³>ƒO9²ä.¥','Û\Zá¦³‘¿†ùÙôî=àŽ¦ö,Àçì—í=Z¤œ¸','',0,'?'),('Ø±¥-¤_}Z‘hûì\n±\Z','wp-admin/includes/class-walker-nav-menu-edit.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','®:•©9ÚQ¾á}oèØEÆ','8Ã¬IÂµµ<õ\r…Õ‚ ÙÌ~Ð>iÀùJ@5;J','',0,'?'),('Áœ!çàyÏF¼¿]ÉÆÃ','wp-admin/includes/class-wp-ajax-upgrader-skin.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','C®BôÁ¥¶ï®r2Ž‰\\','ÔéÓ‡Ä|u\\ª€Y‹Á„‹Å×VÀofÖNpõ¦ý','',0,'?'),('í§¤ZÅ\ZaYH\0 ›5î~ ','wp-admin/includes/class-wp-automatic-updater.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','hnÖO®ñç¸órL¸V0LH','™‰jˆZFöw‘1FÞâHim+]xY/›b\0Š§Å.','',0,'?'),('‹öÂYe¸.ð0s–‚','wp-admin/includes/class-wp-comments-list-table.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ôü«ö}0Œs¨uX/tÿ','µ&qKúµJÆb¤Üo@¬Û[ «F³FÇU­dÜ·Î','',0,'?'),('õ&/¢db¤dÈq°2/','wp-admin/includes/class-wp-community-events.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','©7¬—,n‡áÄÙj‘âE','Æ€@½æ¹G¬õƒãDÅP!˜äsÊÀÊüé±#ø¬á','',0,'?'),('à%çf\\+,…æÍ\0\\Y','wp-admin/includes/class-wp-filesystem-base.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','luš]ðP‰\nÇÄLì]è','û)7;xÂPÎ«ÇèiÆYéj„ò	(›é\'ÙK','',0,'?'),('ÊhFM<@`%q-ãæ','wp-admin/includes/class-wp-filesystem-direct.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','±¡‘&Ô”p‡ý•9','ÓçG!ÎínyÀÕ{¥ghW™sMGýÉqÑÇ–-ŽTÐe','',0,'?'),('6Ì ,õø_‹ìqòêùu…','wp-admin/includes/class-wp-filesystem-ftpext.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','oîs§ª§`¨@bµ%¹E','+¢Ä•»Ž²ØÌ•Ñ öò|>6øbå Eø]¶R„[wË','',0,'?'),('œÕ‹€PQ‹E|E}7+','wp-admin/includes/class-wp-filesystem-ftpsockets.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¤SåÉ«©~ÐaæÂ!€','¢¢C•FxÉÃÆ)eE¯m˜jçz×€BÄŒáEš','',0,'?'),('Íø‰»j(gù€~jU#·Ö','wp-admin/includes/class-wp-filesystem-ssh2.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','4òDT¤é‰.ûH>d@}|ƒ','{ÂEe;8ùÙ\rmu|égq(-åw®ˆpªxFP','',0,'?'),('v]¿z‹ðÔåšÃ3»tB','wp-admin/includes/class-wp-importer.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','dâpŸé¾c“ƒù Öù#Æ','Þ}…öÄKì&‹–°ê´`‡m™ÄÕkOÝ‹²ðlò','',0,'?'),('‚ìœý®v¿A\nGrÏ3C9`','wp-admin/includes/class-wp-internal-pointers.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ã¾I‡žNt˜#Sž#AÖÎ','ÄÀí#¤¢7)«o„\'öôÁuT‚/\n¬p«Mtæ‹ g','',0,'?'),('_î‘(íC˜ŒÂM6˜9É','wp-admin/includes/class-wp-links-list-table.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','î\0_§»ÝbË8y~˜‡','6÷Y¦3Ø$­sío\n1b¤ÌìÌ~ÙB£|šú.pôÕ','',0,'?'),('¼üUdŸ¥M…’ÙS$€l','wp-admin/includes/class-wp-list-table-compat.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ñ^~T‘Ó<Ö=8¥Ï°p\n','D±Ëiã\r»Ñ(E£ÕÛëþ4§Í}ï¤§âB¦','',0,'?'),('O	‡ÒS ý•Ç#ÅÿYiòv','wp-admin/includes/class-wp-list-table.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','=ªóÔT¨¤¥Ú€—eJ','ê™—¦Ä\'7Ë3®I+Ö”:OHo¿ø¥:ÑRÓó›r','',0,'?'),('³Vb(ktˆW\"í6(;Æ´ ','wp-admin/includes/class-wp-media-list-table.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','íJK#à0r\0ÄÍ\'\nn¹€‡','GÙ*E9a”Û§©¿Çš±Â¶Û ²\ZM†ú W','',0,'?'),('®ëþ§ªêâsp›Ðäeü','wp-admin/includes/class-wp-ms-sites-list-table.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Y…‘óÞµrkîHC','–Ä2Z¼ïS¥ßI,¦hÔ/ö¢nO\0;¼ô3@åVè|','',0,'?'),('äw¢ÍÓÖV¥Ðë¼!Ü','wp-admin/includes/class-wp-ms-themes-list-table.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','JQá~(èyOœkG‰-CT	','^¶Æ\rÄåh²ÅdGê­„0õ¾~ô­ðñ„„ÖÙOÈ','',0,'?'),('ü«i)33Ü¥ÑÇsÚ*','wp-admin/includes/class-wp-ms-users-list-table.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','îcy.\r³ËSÊ!WðÎ×','*çt™4±+õYâˆt)\'ðÈê÷E,/sŒ2B_8‘yD','',0,'?'),('e.PÈ´NB‡Sx[Û&Á¼','wp-admin/includes/class-wp-plugin-install-list-table.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','|_œáÞ…R<½¹2éÈï','VþÌVº\"uÊ5ø¾i\Z?-HJ`‘xPÙ‘WU7ØÙ','',0,'?'),('¸Ž”§œ[®:°—„…q','wp-admin/includes/class-wp-plugins-list-table.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Üª‰UX@êBå~Ê—','QM£7¶6¥MI2ËÓK»5¢Ñ\rw­R‹«ò-,iÎp','',0,'?'),('c§4L]ôËž®·Mc','wp-admin/includes/class-wp-post-comments-list-table.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\\4øZîãêÂeN]%åD','Z‡uEŠ><µ;µù7)AJ\ZO¼E?Œ­¿BíC-ÂVæ','',0,'?'),('×GÈ©õï¿6”¤³È\0Y','wp-admin/includes/class-wp-posts-list-table.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','LýÍîÞ¦×­¦æ‹2†ýã7','‘)À$ìˆ\Zl­·¼öKz›Mˆ…ÞÐ¸™ÜÖ=¼MÆ','',0,'?'),('TMò¢ÆüÊÝlòþÕôºß','wp-admin/includes/class-wp-screen.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ífPò²ÏÒ`}yÎOj‚','-BÊÛÖü›¨£83¥\r?â—¤šåˆú¯¸¶‚¯½›','',0,'?'),('\'Mþøwˆñ‘·ƒãÇ\rKj','wp-admin/includes/class-wp-site-icon.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','+U;cÁ¢+…ÐªQ°Ã','¶-õÁ$%îl	!	»¼nûçÎ\rDÍÓóüÉ	Óàá','',0,'?'),('L#Ö¬/Û°*Ìø3òÒì\r','wp-admin/includes/class-wp-terms-list-table.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','äŽ3 vnL\Zâ…Q =?','Ò*?-*Dð¨Ë(×£¢tÕ¾üLh5§¨ypPî^‘','',0,'?'),('¬\"Ú•K[@‰GÇûáá9‘','wp-admin/includes/class-wp-theme-install-list-table.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ì5=æ¿»b¢,)Ý-ã…','3½EA“ýþd&·Á>™Þ!	Wã\'È®™=„Ð¸ÉUJ','',0,'?'),('\"IFnº§­¸@÷aÂ}’9','wp-admin/includes/class-wp-themes-list-table.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','EäÀs¤ØBÄ¡xNHqNÝ','‰@’Ö‚DûŒà—SM×éö“ô‡íµ¹›·ó(©µ','',0,'?'),('ß=@\\ðJpQóm\\†À6','wp-admin/includes/class-wp-upgrader-skin.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','q¥í¨ÿB] ^®e‚lµq','O•é‘s§U0£Ç¾å¶ØRBÚPUé‰ËýÌ¶#5H','',0,'?'),('z¬öÕïJXÔw{!\rF«Àº','wp-admin/includes/class-wp-upgrader-skins.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ë?À¨HZáËŒ¹ëvU','(eðÐ¸Æ-C©oèûLO^·oËÌfgQšÉ…‰9 •','',0,'?'),('XÂ×ßG°¦“ö•åz„X','wp-admin/includes/class-wp-upgrader.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','+¾®îe& ˆ©Úœk›','yŠñ˜\ZU€¹Pp£uX“È¸¯ãðîíJÅ*˜äh5>ó','',0,'?'),('Ýò®–x8[!>ñX','wp-admin/includes/class-wp-users-list-table.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','hœWW>ÕÆßß€áªo¬','Ý~•¹¦>öuèÈµH+ÎhVm±8](\\=…û\\Éîh','',0,'?'),('|Ú&;Œr¢Ls5ùŠ','wp-admin/includes/comment.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ð—îŒñ¨Oú>™•£ù\rX','®Ó\\„è­(÷X¶S\'Þ%keu\rÎ¡P©Tcô‘','',0,'?'),('3k­¨oW‘5	k[mq','wp-admin/includes/continents-cities.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','D‹q.OB¾°6™\n§f†','Åí1V@BÚU7ü‰µþ\n¦´‹Å\0`/‚-ìZÈŠƒ','',0,'?'),('¹¹Î<ÿ	Ïf%ÕnŸO³','wp-admin/includes/credits.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','G.û-Rîƒ´ÝÅÑ«+\Z¶˜','÷Ni_¤£A¥Pìw•ÛþA…„\"l\nVøBOH»F','',0,'?'),('\\šÑ‚’?$€Í„8À’¡æ','wp-admin/includes/dashboard.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','w8-Ä€NjeåôE¹u','M5´74wÿÙXý@”ôD²×ß¹…n3æu°@Q|','',0,'?'),('ò?²âE_Ï)ŠxÚ…$ž','wp-admin/includes/deprecated.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Â¹”Y#©\'áx„eJ}w†','\n®×z%45-ÄÈ¹aSqC—Nž8]jµŒR3ØÈ.®','',0,'?'),('Ÿôx[Çe„ò¶¾>M','wp-admin/includes/edit-tag-messages.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','í‡*®¼yýæÈdí­÷|','\rëï¸T)¿\"¾¥Š_å¡bÜÚTÃéLETpÉÊWS','',0,'?'),('…¹>ÁAäBÇ7åSz!ˆe','wp-admin/includes/export.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÔK•¬Ñqc*.\nÆ=á','?Aw&ÿ_Ã\'{ª2¿fÂ{vÆ5Áþ±¸,¨','',0,'?'),('QT«ñò*f×P„å¥.¿','wp-admin/includes/file.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','e¹Ž¸…lê!ûåƒBm','³ØGLk­™£Œõ³‹~;Ú~.ñŽ4CaøKE!¤>','',0,'?'),('“«7‹ÖE#¾wÅ§j¯²²','wp-admin/includes/image-edit.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','>Ë“™C4@ÐZw¶','¡˜e{9×ø_\"¸œ¤X	ñ²‰²@\ZÍÏwlßí³£','',0,'?'),('\0Ç|9è×u…eäñá–@ƒµ','wp-admin/includes/image.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','LËæÛ]žÀâ¨{','IÓ‚\0îvã¼ó¨‡ü,Ñ	ÓK8{£à:%ï÷óZ‹','',0,'?'),('ØA¯h)Iˆ\Z]GrÞöƒE','wp-admin/includes/import.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ö\"n¤î¤ubME7OÞ+É','ÍúæÌ{I¸dbÍÜ\rê:“h0{Š*¦ÀÜü¨ô(','',0,'?'),('þcµÔwk(”‘ø43Ã','wp-admin/includes/list-table.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','N|(Ì¨£F%!×…²óo','–=	ÈWÍ•ëE€ gœŒü¥ˆy=Üµõ’î%Œr“8','',0,'?'),('úRœÞ=úÝ*ÉdòÕn','wp-admin/includes/media.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','û{ˆø|Àêüt$ÚÈý[)','íhØ¼gr(Åš¡ax’O7\rÆ±‚²uk±72Uh+','',0,'?'),('\n™qoãqZVyXœ¿9','wp-admin/includes/menu.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¡l2‡‘qlÎm+“?L“v',' xAú^|\rä°˜Év´´(ÂóP.£ˆ€ó®ñì²­','',0,'?'),('HÃ½ÍñiíZ¾U,H»L','wp-admin/includes/meta-boxes.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ýGJ[GZ‰ë~!0','Œ¾]ÝÆsWØhÿ¹ÒczP½~ÿBø\'½ÆnÑ@]Ö','',0,'?'),('†1äˆeUüMVý¸^š™','wp-admin/includes/misc.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','RP¹‘ ›”³«O5ga>­','¼ôFhÄ`‡D§sôÖ­+î:‡ÔÌ×=ä¢¢ùj»t','',0,'?'),('¯jÐ<M½Dd±—þî4m³','wp-admin/includes/ms-admin-filters.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','0ÓÁó99úŠêGÔÛ‚','ZhnÐˆúÚ#ô6d0â¯¤Ç=óßåàl(d5ðÀ()','',0,'?'),('‰7*ûø\"{ìóƒ\nK<','wp-admin/includes/ms-deprecated.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','«žãÕœ7©Ù–Ë]úõqº','V¾ÏN@\\ëx˜¿ø]µ‹9«’Q(ÈÊ ¡','',0,'?'),('f éœ°fØŸ|hû¹U’L','wp-admin/includes/ms.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','íâsh-æV÷3ÖUv','\Z_€Ã¢UA&´´µR“{>—[¯J?óz_úÙx‹ºÁ','',0,'?'),('(¿€—Ñ™—ÉÚ\0H<_','wp-admin/includes/nav-menu.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','W\'Þ¦ËL¸ƒH¾ÐIO3A','A*ƒ§»(TkXŠ­F0æQ˜ì8\ré¤ö6ýÍC\0Ä‹','',0,'?'),('V×€ãÄ\'hý—Äˆ+:ŸÀ','wp-admin/includes/network.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','6öèÍ™ýÍ¤NmïC8Ò¸','ÇÔ)·B P³ §ŽvÒÿR\riO :ç\'X¶c¹Ö1]','',0,'?'),('w®ô`MËá>Ç{Ôƒ´','wp-admin/includes/noop.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','™0½xFža#P®|D3Œï','åÉ_^]-Š\Z…rÀIj\Zl’|\ZÏßE\rE6 Ð›','',0,'?'),(';pR9²¶+óqpÕ®','wp-admin/includes/options.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','KJ°Óàcè©¢ècFTbÅ','-ŒçV*Kò˜:ZEÕH*‘”ˆ£ré‘µð=1ÕÙù<¹','',0,'?'),('R—§|Rx/ãbzn9\0*ÑJ','wp-admin/includes/plugin-install.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','„¸riwC½\\0õá{„{Þ','CyF´dÍŽäM®œ>Ì2ÞD×\\©Z/Ön!S±u\\7','',0,'?'),('q\"coëÞ£>«2Rhé]','wp-admin/includes/plugin.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','8Ñ•éBøéÁ8Gü©+þÿR','JY:d€mEÜ®5Ûm•/’ˆ¡q=+cá€8j¯e¨','',0,'?'),('ÃÕÅ5ÛV\"ó°$$î_ý','wp-admin/includes/post.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','o\\ƒäHƒ@²EbfØn?','·8e\nÎeS¬ýTÜUìUïå·MÒ¡°x¸IrÍHà','',0,'?'),('x–^mÝ]Ì²š/õÅL4vU','wp-admin/includes/revision.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','èÔ„*—B¨uŠ¬ü×Z','v«{@Û‰sMÓ’!9ÕÃû\r¬©J\"«<ê˜áèÂÕ','',0,'?'),('Ç«É=Åèm‘/àÁœ^','wp-admin/includes/schema.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','H Ñ•³B7jA BªÍ','\'C„w—E÷É?\ræ×…ÀòZË‘;Õíîæ‰y£Ew','',0,'?'),('( ïv|Tâ€” Â¥Ô','wp-admin/includes/screen.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Žz\0#ˆl;€!ú','a!íMtd’¤·¡LÃ‚”CÉˆÅkÞÊzê°ôEÇ‘z','',0,'?'),('Z¬ÊèÄ %/»Z¿z9ýì','wp-admin/includes/taxonomy.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','6/1·?F,íÈªÿ×0Û[','Ÿµ\nŽ¡5õ)¾¢æö%¶óÝ‘Ôwµù~üw/6','',0,'?'),('2@Üjåj\0¡kÓ²”¡Ó˜','wp-admin/includes/template.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ø¬Lp2ÕUllÆíÎ©Ê˜','¹ÆßcŸ²7Â:ã­¥ltEH.I5Õø\'ë­ccEµÞ','',0,'?'),('“~˜âLÉÎ*Ä,Ä<:¥','wp-admin/includes/theme-install.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','W~{’ãUaù{.ÌWw','¯)RS‡¿Ît´hÎÜåÊ›¥’äK	LäqI£Vh–/Ø•','',0,'?'),('é]÷W/>ï}<8è VFã','wp-admin/includes/theme.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','`¦À|BðI;„B[¨©ì','\rY3¯aoñ{¬òVšPÀÈdû0_ëÁ€à½ŽÃ³ÇL','',0,'?'),('8žR6ÚDH°Šq£-{Ž:`','wp-admin/includes/translation-install.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','lI~úù´ØÇ	Þ\"jÄÑ','¹Œ°×ÔÞcÆ>ÊM‚AW3IÐŠub\'ú<Ïâ@©Žæ','',0,'?'),('®ÌäUy/ÿ*%þåý;','wp-admin/includes/update-core.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','úþ¾ÕŸôJ…|í—À!¢C','PýçùHb¥¸QG\n~ú‹ÄKùïdí$N?DÜ÷7°','',0,'?'),('ª]Ú.Ç1\rPXL©','wp-admin/includes/update.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','eKBôwp€Ôð»ß»ñ','ìá§Ö4ÁÌÓj¢PŒ³Òñ™­ºüžôÖ­zÉS','',0,'?'),('íñ²ƒ=ÃúcäÙ‡œæý','wp-admin/includes/upgrade.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','òXu0—á:@çÇ3°w¤à','´õÔã4.<šï\\ºX_•\r”Ši¢CLçt6RrL­','',0,'?'),('Q¡ ·Ô(;Ø |~R8¿b','wp-admin/includes/user.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',' o/Ö\\ßr#­i+iÄs','²û­•Æ\"×k\'Ý[ì0hE0£Ëü$þï¥À','',0,'?'),('´ðIÇåØû.$U0]\'ˆS_','wp-admin/includes/widgets.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','l)f¤Öy=à\"Ã‹ã>–','„ªEÆ:sŽb›H4Åÿ‘¨ÓTD£w²ÕxIméè¹²±','',0,'?'),('’ÑºŸ\"ÌP5ìÓ^U\Zi','wp-admin/index.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ƒbN®]£êÈ	\ZÅIR£}','©¸$Cð~S1<´“È®\"\nâµÂ|’‹ÛQ,F‚uÂFc','',0,'?'),('B†¡j„)ßÐq¼DŠS','wp-admin/install-helper.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','dV²`ªìé³1&Û\Zl','šÉ¤–“·=\"ž{ÀN¹Ât¼¢Î{Ó\0”Xî\r+è','',0,'?'),('–6¶|;¾;8ÅQ¹4™k…ö','wp-admin/install.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Þ¦ b¯o)9>µL­š','g?;94Y,6ïþ±ÚþxÒRI©ü~Ár¦ûpq\Z)','',0,'?'),('z;j2WDº6²Œ[¡V','wp-admin/js/accordion.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ï?ã=Lá/å%NZñ\\ç\n','òdôLVq´—qa-ŸºPÚ&uÍ§™l:0òM','',0,'?'),('é^.—jT}ù<ÞŒI¾™','wp-admin/js/accordion.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\"kÁIüz-VäS\r;h^X','É«§Òõcàš[-3Ä¥6Ñ$±ôS±tl£-[.','',0,'?'),('Èâüfp°ñ\0!¹tDK','wp-admin/js/code-editor.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ch ŽÇO#È÷ÜG²«¦','oP7Íðp,Ï£g:‰GìC4šcØ\0B«orB','',0,'?'),('|«÷ ¸4ãxå\\ÐÏM÷n','wp-admin/js/code-editor.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',':UÑ\n0³Vém×|ØpX','´Šcë¢À+_%TL»^±¼að6…D2Üµ\\æº}”ø','',0,'?'),('œ5ô‡¬ƒÜ\r¿ËkÔÄ','wp-admin/js/color-picker.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','­ü^S0MÙ&d ç6I','Ï>Ê»ZLH8¡óžSÀºPò¡?§¤XÞ¡€y%]','',0,'?'),('çÏHâ¶ÇÍlö±{!D#¯!','wp-admin/js/color-picker.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ê1è`mÍÝ=´¡Å\n%','ºRÞë<Ý¨À„¤¾¶žl9fÇUqž®»ª=PrÉ','',0,'?'),('Cð/ù;)ŸªÙ‘î°o','wp-admin/js/comment.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Héuï3á.°\"­†ÖÐ»¸','[úh8‰ÒøÍ9h†t»È<³Þþ„‚¦`g3LàÐ¶8','',0,'?'),('Qý©ƒÏÛÁlêg´-Äó','wp-admin/js/comment.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','6í\rwÄ¡®‚ÛÓžÙ','\n×}Œy<ÿò÷ùÚÔ)/e	Eì½C×y¡gÚ¼ƒ¹','',0,'?'),('wýúÚòáÊ:}V¹¼P','wp-admin/js/common.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','lX¬!EãÙAý6ºË','önñì²±‡ƒÃ3t[’$®›î–yëë¨R: ëL\0','',0,'?'),('òÂÌ_fÂ $ÁO<o','wp-admin/js/common.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','þ¼C_Z6A§²¶Ë#h¯p','¬{6ð_$¹ºº—`Â§&‹uŸ<KhÂEØóeˆŽ¤','',0,'?'),('dãì­1íìµ“-…;O˜ö','wp-admin/js/custom-background.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','>\"ò”\'ØÊWq§Þ‘V‹','¬’ônC6.b]!ÎË)ÈN®Ee©®Ô¦fc­L>','',0,'?'),('} yTŽìZÝH„cDJ','wp-admin/js/custom-background.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','5.ïP3ÖŽ‰‚ê†~?','QqÙÜS`	]Ó«uéâJ»¼L]«àxö×¡±þ4ï','',0,'?'),('ÛÞC\nŽ—äU¾„ü','wp-admin/js/custom-header.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','2³\0X‡¤Ë`oìÀœuf»','&¨ÿÛ[/ß§Qè%X1ƒâP±µ@Xeþ«Éö\r','',0,'?'),('¥ünvp¬e„íÆÐîÊ}è','wp-admin/js/customize-controls.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','jÆ°gÛ-Q¬\0EÇ\\Ý×','$\rˆèhïÐSE¦›)9àF>¨ëí÷Æ','',0,'?'),('¿ÿdA#…öÍ*ç‚Å¹o7','wp-admin/js/customize-controls.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¸eD^œ³rGè}<2JÑ','´w²þÛâV†”D½Q\n`þÈ2 çËÆýØO5º³û','',0,'?'),(':DéJ$í¥h»†Ç…\rÙ','wp-admin/js/customize-nav-menus.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','³˜2YiÁÉ[¿Rïnß•ì','Ô¨†\"­gŠ;/öAöú4¹ñOñ©ã§ÙàÆ\Zn)€*|','',0,'?'),('HGh\'ßÁxúR‡¼Ž~\n','wp-admin/js/customize-nav-menus.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¶½U^Îþ 7|”A¢Cã','~eðñGO‘’Iÿ^‡2.ònªX4}ƒë<7ôŠd~>','',0,'?'),('­)[\"J¹H”î|çjkŠû$','wp-admin/js/customize-widgets.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','é-b`¹°ö+¨ÏŠÉV','F[Ùá‹z¤Ÿß	 ¥±¿ÄS”]Ï³(¥(c¨a','',0,'?'),('fMx’íª¹®	é+9•U§','wp-admin/js/customize-widgets.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\'$îW\n\'È§­6ËT|','&ÂÖ1»´¥9ø{õ>\Zê{§%H\0¯I¸±W™','',0,'?'),('âäÄ¸:ß,p´1¿ÛHr','wp-admin/js/dashboard.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','’q‰ÖÓä›ŠVg™žL','sá8M„M£,é¯(àèËß0\0h\'ü¥˜4GÎ™Òs','',0,'?'),('äßæ¨ÞzpKC²{\\>‚ó','wp-admin/js/dashboard.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÍÅ!…¼4kšU¯mP×cË','ÝeU5d@™~¨ç1Þ„Ö3²¨íÐó˜%\Z$›Î¦*D','',0,'?'),('`%­Ö½áj®±\'‡ÒPù´','wp-admin/js/edit-comments.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','©uüslÞÍÛûší€iŸ³¯','s‡{o™QÔ?1®áÂ¹\n6´G9ew{\rêM<AU','',0,'?'),('FÐ\'£B¤/í4{JÍ{w','wp-admin/js/edit-comments.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÌxHÕ‘E¶•>Ù±Ä','\"´×šJxÒ@TEµóÙH!ÜnªíÖaS@ºCîNú','',0,'?'),('åRËä5?’- S£^H—ý','wp-admin/js/editor-expand.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ˆ¨16Û@èè¹?#\ngêT','p_/­TWD›ÞîÎÈò((%	Ü6uÑ8½)¹S','',0,'?'),('IñV/’ðµ6¤sãÃø','wp-admin/js/editor-expand.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','E\0J&×;sv\ZÜÇï\\y','vâ‚LfvìâivÎ(‰ß?×Ü¶¬P¯qÎC†où£','',0,'?'),('8=ÀIå¯ôa÷%œƒkÒ~¯','wp-admin/js/editor.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','à†¢jWýàè-`kù','S_7îmªeM_ `—ºC¹¤w_˜\nŒ&é™Î½a','',0,'?'),('æâ££ôMåO×ºîïƒU®','wp-admin/js/editor.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','r· 4ºY€ˆÖ™Ü§°+o','ÇÝ=iBÍÝœÒ9˜Ÿ¶ëºT†Î0’­Q\Z¼ÇŽW¯','',0,'?'),(';RÞyh›ëŸÐRxK\r','wp-admin/js/farbtastic.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','§:óT 2Aq]†˜þê4’','ÉbtéGp®\0BM0zÂXJvœZHAtâM¸%','',0,'?'),('˜Ä/GÎžÓ¶[­ÇœîÙC','wp-admin/js/gallery.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','xÏ©e¿9eÁŠúmåµ«¶','¤’Ñå¨W?[D´”‹5‰€ó=|¸Jé4™|.Ý','',0,'?'),('Û æIÙ_X²Óš¼¨?','wp-admin/js/gallery.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','N{%é¼3tÏ9Ze&Q¢w','º.4ÖÓø7/>fÆnä@ÒAiK\r72øÀ-Ç@ýKý','',0,'?'),('G_bc©.,]&Åè','wp-admin/js/image-edit.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¶Â‹¤Ô±AœµÏ“lÂwðò','Dà<OŸ`XÑ®#ÁAÉK,aH…iG‹Iö!L','',0,'?'),('µã-Z¼³€:E¾:','wp-admin/js/image-edit.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ŠïØ5[ášq½r)ùÿ³Q','[Uw-GØß‚3<ãêÐJ›$XDUXYw9¬€”Tg©','',0,'?'),('›%n©ÍTß’	^ÇgXÎ°','wp-admin/js/inline-edit-post.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','WÌ=áN5—Ô”º!e\n','÷_¢~)<º=ëpÅš‡ZõšbÃ/H¸…WNcÎ','',0,'?'),('£1ào%¨ÀqÅAµ€','wp-admin/js/inline-edit-post.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ñÓ/\".w£`ÿ<bÓ¦î\";','3Ù[1ÏI¡\"@Òr5{úrÛu-YýÉ#°‹€','',0,'?'),('Ê(†q‚4Pè}ý5Ozük','wp-admin/js/inline-edit-tax.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','uiMó-Ú14ò®3•p!ó','[ìîvòô€ã’³[A˜ÿMu]ã[\\—ÀðºÚ','',0,'?'),('ù¢¸pöl4[²þ°e›Ûû','wp-admin/js/inline-edit-tax.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\'jQh‚Nf¨ÌÂfC`','êZVPëÌ¼2ØBÇ\n.6û$p`ù?\'3Ôõa¾Ñå0t','',0,'?'),('ólF‘®¾Ücë’•ÒLÁ€ø','wp-admin/js/iris.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','E`dýËüùõÈ™n¬KÉ','zíTÒÕIÖ5RK”b²æbú}ÍuHïþÐÐ’c	Pî','',0,'?'),('iÀ\\´¯›=Xïh$','wp-admin/js/language-chooser.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','	âPÇV0×tJ»J','âXºÖ¨€+æ³Ü¤¡Yå¢ï`|a—{„¡ÑP‘ÆL)ˆÂ','',0,'?'),('¡»«Z€\Zxcy•dó\'','wp-admin/js/language-chooser.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','h\"8Jq	t­ÑäF…','ÙJ&ë9W1úZ[!5O\rbÏ/Ÿ‚ýAúH~ï¨R','',0,'?'),('í°QR\"æÃ@3ªövàS','wp-admin/js/link.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','†uÜÐ5Ï³tö{ü¿zŒ','nõ”Ý£—¼—ÌoÚŸ5ŠH‹;\nÂibÓPÝ=•¢','',0,'?'),('Ú|À#éÔ°#{•ÄþŸá','wp-admin/js/link.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ùÿF”“0“;ÞÂÁ3²%-','yVgoÐëã½Çq[ ¢pãcd2.k~Èý“%8Ç','',0,'?'),('nZ/1T:{&^„/n¿ý†','wp-admin/js/media-gallery.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ð€H‡M#N5«®eÜq\n','H-PGÜÏZÀ‹=§»÷\"ÂpaÊý¨(l°ïŠÓÎ¢','',0,'?'),(':ŒŠå%H`!¬ûá\rè€Z','wp-admin/js/media-gallery.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','2–Ñú Ò’°»¡ñºn','i¨{Q\ZÍeF?9¡«}i³6å^•$¶Â¤¨¸|Ò\\','',0,'?'),('ÐØ^º\\¶XèPvS¬\\÷{','wp-admin/js/media-upload.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','”´dé´ìkTT†¯y_$m','z8LE[’¡­xu\'8iÊÌ:gßÿígØÙ˜lì~ê4w','',0,'?'),('el÷5s˜˜EïÃºQâ','wp-admin/js/media-upload.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ó NÖ=âu&MÏT0Ã	Ü','ºzr€ûÊw\'¥ª¨0‚ð5$¢…«Ø`­Ñ\'‹•“D9°±','',0,'?'),('r‰(nÕž¨ójç—ßb\"','wp-admin/js/media.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ù¿aÏA’À¤72>ó½p-','y\nÀ@ßË$5:K¸LAXÄ‡èaoëCÑeÒ=mÒ{','',0,'?'),('×ž”y„7mE5ƒ…O_Á','wp-admin/js/media.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','›æ:Û¯ZZÏÛýÕUÜw}','Qm¸ÀVë,â1Â7ìvmšè‹¸áøÔäøó©£­3	','',0,'?'),('©Ü ÍçIt13&','wp-admin/js/nav-menu.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','N¾<ÿ¸±uVš‰›S','ÂþÒyyžÉÔ–H ‘³g Ü™ß¦·[®o¶','',0,'?'),('Ýf…ãyŽü¬Ä§—*!','wp-admin/js/nav-menu.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','QiÙyþã·g™S²·ô4‘\r','ŽcÎt—ƒ\rD±W[úèâ;â“æ‘ÔNåd¬,¾%åÑŽà¡','',0,'?'),('ëå\"\rJ\04°¹\'i´','wp-admin/js/password-strength-meter.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','(GWnÄR“«–Ü\00—N&)','F>¿SõÐnÝ¦J¥áeA ñ	9ÎêÌüÔ²ÚAð','',0,'?'),('¨¬ÌÈ€ç~_qÚI¶ÄS¡','wp-admin/js/password-strength-meter.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\Zªt¢Jï˜+‚I‡ÁÑæÑ','»Uå»ek1Ì)I]\'c´¬-Öc6ü’FƒÐld5Ñ','',0,'?'),('t6·îžO¬\raŒÈ†ëf','wp-admin/js/plugin-install.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','‚p›Õ³Ãö#\rËÂÄS','§ƒNRI¤¸è\0úT}ôQ=,\"KÉvý8ÚÔƒ·Z’™å±','',0,'?'),('!ôÿ·íY0-z1àdm>‡','wp-admin/js/plugin-install.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Á®ÏžÖÉ\n¶”(ä','š8OVùÓôw‡q]„Ä¼+çcè„Ñ×\'+±<\r€a','',0,'?'),('Vž…ï‚™ëŒ$ØïŒŠx','wp-admin/js/post.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','AÙš\nÊÜö«Ú‹˜\"-™','\\àhÍôÃÞ7)k`‘bö®<ïgBW67Š.¹r0','',0,'?'),('M?,5Ø*îóÉúÜK*Åf','wp-admin/js/post.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','íå÷èC¾·èÏ–e!q','úØŽÞüÞÀ¦ƒhîº–ýã9Êx\ZnR»P…”7','',0,'?'),('P\'ƒ(µôë?+‹z´“$¡','wp-admin/js/postbox.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ãßÃ·ïÈÆë‚ßTãFS','!æSrôîãô£Â!éš0	óÏæá«?¦”óíxÝlž','',0,'?'),('O¬¬ú³R¯r¾©£èD•?—','wp-admin/js/postbox.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ýþ\'ôï®s{€­–íŠ	i','ã×µô*RB ÔÎE€ŽÂK^œªvÂl­;ŽnØXã','',0,'?'),('½²¼\\†“9ºÑ•F wí','wp-admin/js/revisions.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','MƒòümõÝ‡^åRŸ','„EméEî.\ZW¯†,Ucd=àº–¼LñžŸõÔ\0Á–q','',0,'?'),('økæÞº”e<FêÚ4','wp-admin/js/revisions.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','†D|Ì´2 ‚i','çÚfw˜¥²×‘ÁTêAÍj\r†\"R›žÿLlN«÷ðý','',0,'?'),('KúÚWÿ&\0\0Kµ\06‚Gô','wp-admin/js/set-post-thumbnail.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','+QSWmî@û~ÙåƒQ','Ò€OˆÖœ\04Ì›ð …X%ž,~äñµ@À¤3Õ','',0,'?'),('TËgslFí¢æÊžàõLy','wp-admin/js/set-post-thumbnail.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','‹ÅÊú8¦Õ¯!1z[','s«ÖÃ!\ZùC¾n´éÐ\0Tö0t3Ó’|Ÿü\" ','',0,'?'),('ñZ/¥¼û{LtåÕ®F$€','wp-admin/js/svg-painter.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','‡Üûé/§|Ä©ˆœ‚zü','A³Jù¹d\'@B9Šn{J½OBWI ÐÕh´-‡v:²','',0,'?'),('ËU<Ý?Y,õÏ§Ø»(','wp-admin/js/svg-painter.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','§šÊV\Z[‡¶*q&¨ä½','OfJ©z³˜é6._Uºm1óÞ_ÈÑ^ÁûàRç¼È\Z¦','',0,'?'),('G¨|$pÖ +(ª','wp-admin/js/tags-box.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','cue0ÃØ²#\'ÜÀñ^q¸ù','p5þØøQQŽ˜Nõ‚cUM3XÅg!ª†\r“Âg÷','',0,'?'),('§œŸJ1€«MßF°†<þ','wp-admin/js/tags-box.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','±IÍB®V<Äb÷è„Ú=','vöDJÞ%Dö\Z±<sžö‚iWŸ–%Ë\rFè¤t','',0,'?'),('}\\¤5æ\r’ð$Ôl’Wª ÷','wp-admin/js/tags-suggest.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','æ°í…ânpfœWÇ­	>','õ‚—<ð—T¦€$Ò§šÁ­*¢Ž¦ô$Q=ŠÚŸµ\nåk','',0,'?'),('km§|÷‡Kma0í\"*ˆk','wp-admin/js/tags-suggest.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','°âå‹¼¸eOl	rl÷è','ÏK:“ç/Œ÷Â££:ðêÇ~·Å¡j÷·þ‡·','',0,'?'),('{tÈE~ªÌPÛA´1ø ','wp-admin/js/tags.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','’áPdƒ\0xñœ‘+Åù','½~0ÂþºdÏíbw¾U[pONéÂh”qÐÊ5ëyœÃ','',0,'?'),('¢fkj’ÂN‰Uei4=%Ã','wp-admin/js/tags.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',')èÔ§ÓÇÁd2¹š<z]õ','8¶‡×äýút<;wœéu¥È0‰J-f×-°™8¹1N','',0,'?'),('‚@ßF ÑÓ (©¤Åe*[','wp-admin/js/theme-plugin-editor.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','R\r=Qº›ØëÞÆþb5\\','.hFÓÆþÕ¦|ÒÌ,<S94Ón.·H}Ë²;ÀPÑm','',0,'?'),('€ÖNxïõÚ‰\Zã8yH\\','wp-admin/js/theme-plugin-editor.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ëÕ¢‚£Ëé#;“Uø^â','Q·[6Ä©ì¤³/.å²R%¢›ÈÝØe:ÙaC¾ À','',0,'?'),('ó#\\ú·â¨/‡vXR','wp-admin/js/theme.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','RØdÍ’wQYÇE‚â','¶;º¶[R´vÓŒNDE–ó!õŠÝi‡\"î×ý„','',0,'?'),('G6Uæ2\01Rü¸“¢ÏJ','wp-admin/js/theme.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ˆù‹D›Š¡)BÊýx;Z§µ','3Þî©°N*ÞƒúÐ‘>ŸÅš¶z\\ÐÒp`ÈS¿%','',0,'?'),('+9…£Œ[BUûE–e','wp-admin/js/updates.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','­w|³PŠF¸Ö\0’,œ”','èà¦ZÓEÜf\\\\bkézØ\n012¿ð×;v','',0,'?'),('([d‰˜ùº±¡×ïBQµ‹','wp-admin/js/updates.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Á	Þ‡Í¼–î[eý2±~','Ý7åÀ5dÓjýÕ¿a€‰íFâèSN¯ÊRD´Yƒ','',0,'?'),('Öð„Ë\'>á[½žÎ‡÷','wp-admin/js/user-profile.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','~ŠJì	HÄ´ßÌ\n!','-ÙéñÚ%$\rÕ~1’ßáç!ô\rƒí‘_.;ëUÃ','',0,'?'),('ö¨£’ÂþH©S!;ø ó–','wp-admin/js/user-profile.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ì¦‹\0î…Ð¹\ZéÀ³','õ­¹ †öÓµ(%wo¸pó¢ü²†ã™/\rÍAm','',0,'?'),('RÂ¥ø²®ÍÊLeýq	ð&Ô','wp-admin/js/user-suggest.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','3)ú‹()Ý°4}\n“','…g<ä/oõ@Õßl•F£ÐÞoä\n°ÒIÞìV&_ŠaÞ','',0,'?'),('ÕXéð¯—$„a²ÔBÈÒ^','wp-admin/js/user-suggest.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','à‰T\\×üÞ\\|×\rã§9á','„ENš‹EÉ2·ÂcBK0s¶~ÌcN)b?Ä<Öü','',0,'?'),('¨åŸöŽ‚•—‰&Å»Ÿ(','wp-admin/js/widgets/custom-html-widgets.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','XÛ¸0édDòÞ“`3\"Û¬','4€f65:¼Þ\"µ\Zµ\"<¡©¤ïq£LfØ†wÆ‡›v‡{','',0,'?'),('{\n„ÕåR o­æR=\'gÀ','wp-admin/js/widgets/custom-html-widgets.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','‘ÞÙ#G¶ÌdérDÙÞú	','ŒmuÌæÛÙÐ4&ÙËiÞ?wöK-±†â¯K&O°','',0,'?'),('K¿å]Cíî©l7:ÄD\0','wp-admin/js/widgets/media-audio-widget.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','šüþ×	V#²Æ©û>ÒHŸ',' 7Çh$ûÒ… ýÝl\"‡£jÒþ·¶rÿQ¸j¼','',0,'?'),('Œ<‘à|~E.ÑY^Ô!Ö]','wp-admin/js/widgets/media-audio-widget.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ê7ÞŠ4æsF™Ä>™Ö“','’-Yrf…piÏRU“>¿ZÖªJÓŠ½t®Ú','',0,'?'),('ª~K•É·wwfÀCì','wp-admin/js/widgets/media-gallery-widget.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Cz¬5ê=:i…Îš§¤À','zü‚Â›æ}”-“R>NÙx^÷¡#±S¯ô;dñ','',0,'?'),('yA©‡0»¦•Xz(€ž\'\\','wp-admin/js/widgets/media-gallery-widget.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','?»À¹öÜ¡Rú8G«¢','Û…P¨{,a€’\\Õ	ìJ«UÄÈ(Ï#B$¼Ïÿ®','',0,'?'),('ªž4‘y‡3%k³ ‘³˜Ñ','wp-admin/js/widgets/media-image-widget.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¬qv¾=³\rü]YQJÁò','fIK=¯q?@Ú¢DÃ}°I#ôp¬K–\\(','',0,'?'),('|N! ;xãN&®gÙïmù','wp-admin/js/widgets/media-image-widget.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','°*›õhÝ¿ž´wøÛ@x<','³©¶·=¨Âî8t¢¶»MÙ.ž2ÎÛÉGü(@B÷ñ','',0,'?'),('À5Úœ šÇ2Ïl2{„','wp-admin/js/widgets/media-video-widget.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',':9½ŒGc	G!.ÜGg*','ôÌüÇ(Fkue2&ÍÉÌ,0m-+uÔ}r ¾*Fd','',0,'?'),('ÀË¥Ì°MVÐ—eªAú','wp-admin/js/widgets/media-video-widget.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¸lt›xJÌZ„°ˆ†#L','\\±)ƒÙã²ºû(ª2{‰U†¹æWõ—9iÞí°™','',0,'?'),('Å†L¥G¶ÀP(íÎ‰ÃÈ¯','wp-admin/js/widgets/media-widgets.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','B`‘×»`¡÷c[+6Æ|','\r»DTWîØ¤åòœè}Ñ¸Aóœø.Ì<Öº¼','',0,'?'),('Q;Úòé(ü±¬Mp*ñ‹','wp-admin/js/widgets/media-widgets.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','èèÂrkèjYYhŸƒæ‹J','f2sÓ	Ò\n-»¸&7\rä?ƒ©ü\'ëHíc9ÎÊ','',0,'?'),('Áð $öT†Xü@#Ž„A¤ç','wp-admin/js/widgets/text-widgets.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','bôÍ…<½›~(69]/üö','´*.÷VRâ;ƒoAà„ô“‘ÀÑÎGmVocl!i>h','',0,'?'),('bï§’p°A°+Ô-+Ê‰','wp-admin/js/widgets/text-widgets.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','2·«ïñpÛ+sïà·­','$2±ÊÒ‚Ûì\0UÑ?íï”lþ›æO‡:|“Äod9','',0,'?'),('RQ÷b7f§È |~Û“†(','wp-admin/js/widgets.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','á¸U]Ó]ƒ:B3F~DŠƒý','7àQ‹]^0.K¹vDË(;š\0-<7N2Áç5\rç»','',0,'?'),('®SxÃß4®@oÁwïN','wp-admin/js/widgets.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÞuoVi\\5íM§w:r','ØÄ\rÚDÉ¾ w‹ÿÍWëï˜Ó½9)2€®é©T','',0,'?'),('P73oè©	§ë\0æ=áŠÒ','wp-admin/js/word-count.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\\4°;nÂ1BüR§zQÛÐ\n','ðu˜‘*ç4Iyº^xjÀ(˜w©Û{€ýNÜM=ø','',0,'?'),('–âCg¿¸ñ‹}|ÇE÷ý','wp-admin/js/word-count.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','™P_ÉÒJ\'ä“–AE–¤','Ân}ûX~Ê2ã^_zhªÎNLÙÙÝª½§÷)2˜F','',0,'?'),(')è¹f><z0-AUi','wp-admin/js/wp-fullscreen-stub.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','–…(Ë2Tqë\0ØWŠ†%å','°Ní–^…;Ôë¦&:Â‹ ¸˜\nW1*UëyKeÅ','',0,'?'),('žÒ\"Œ¸på\"-Cšý¥•w','wp-admin/js/wp-fullscreen-stub.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','p\n”é“L{Aúg±ÜJ5','D§˜ù\"eÏ9‹VÖýI••m‰425CÚ¬AóP½%_','',0,'?'),('væüáâ4Ý|>í<´ÿÀ¨','wp-admin/js/xfn.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','âÖîË×t¯+±¡nÁ(k','’ÌÈü­9ßà¼N°ÌGà2KãÆ‘Tßàµ]Í','',0,'?'),('é »ÀyN<Ž €9€o\Z<','wp-admin/js/xfn.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','f²\'Ê(ô.°J9\r^','—B­F>å´~jémàbñŽ)ß¬÷¹ì½‹\ZÆ’qfNŠ','',0,'?'),('|þ»YŒ>à€Ð	ùÆ†Ä','wp-admin/link-add.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',' îª·Æó!q°!T	Ê¢ü','_lÌÖ&qëd*óÊ^ƒÀáwÒ	VÒ*f»-Ç_zL³','',0,'?'),('…B%v6ÍI\"Jb½Ç4Ó¡T','wp-admin/link-manager.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','?]ñ©¸æì‰l¹%‰,‰¶ñ','Ï\'hm²7°Ï2ªŽ2Ò±°\r\n\r²u¤e ºU Y1ÛP','',0,'?'),('ö€~¡‘äâ»âr„C›ž','wp-admin/link-parse-opml.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','XCjZöó5+õ–«Š?Ib','àTnU€È]=}WŸéb0“úh¬éŠ¬ÙÔ °NÎbV','',0,'?'),(':{Ãâì{7Ê9°‰Ÿð','wp-admin/link.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','nAsýC¢ 5	Èé„Ò+','òÙ°ÖÐƒîÔSõ»í§Q\Z§/æBàÓ(õp?«Êdº¶','',0,'?'),('6‚]jàvÙW¹k\r3-ç','wp-admin/load-scripts.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','úCTïžrš[¤Û‰C–\'','SÞ‹aXB·X4ÓcúÂ\nÔ²ê‡Ëß}†äNUGJ','',0,'?'),('W})Ó–7£Œêeç}5æ9,','wp-admin/load-styles.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','+”ªr¦âƒï~Ä´Q{¤','¡0	Vä[&	&UÔö2èv™tD$n2°¸$Õ\nzW°','',0,'?'),('´ÒK´ççOÈ–9×3|<','wp-admin/maint/repair.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','á€£»¸–áÍÌó7™[þ/','Ëþ²Ê\0ïfJf/É‡ áU‹£jª7Ü,Ó¼DE“N','',0,'?'),('J{£Ö¹Zi^Ã¹x•I','wp-admin/media-new.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ƒo’ÆV‚ª·h	Ù¨\n½','*unEWuÎ)ÿþže]ÎxWW}ÝÂ<\\Àõ·Ç','',0,'?'),('†³¬ºÃê‚âë}•Í','wp-admin/media-upload.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','òÍ´içƒÏïË\"ø>','\'ZÞìVSSDßán˜ºÌ½`Óß°¥–uŸ®=lg[','',0,'?'),('¹ÃuLç,îŸ&Ç‘‹\r1','wp-admin/media.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ˆçÈpSr¸œ)ÍnÖK:\nE','0ß.¹ÙV)IâáíS¢~’x—{+ò¢•í#¤ÄÍ“','',0,'?'),('ð$ŸÄ«¥Iˆ^ý“3·”Ñ','wp-admin/menu-header.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','àˆ·Õ}XãˆÁ;2;@Y','È(Í¤ÅÓ™Ž±ê&ÈÁwÄ‚O‡ôØ°X¥Y–ÂL4','',0,'?'),('¨¯ß\\àD ü>üF,µ‡ç','wp-admin/menu.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ZËòi’Rôá¹±‰Ü2','\Z¹‚:³¯_î±0ª‰=þ¦ã^G;eMª\Z°¸îÄÔ','',0,'?'),('W{°g- Xòéû\'=n8','wp-admin/moderation.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','TB¢“€YR â\"4ðo©','O1oBzÅ¢ÆðÑÂŽ†ªË\Zâ·G¡%âA³ +[§ð','',0,'?'),('vwÙÑ@ˆHÊÉz–F¦','wp-admin/ms-admin.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','š´—@ßÍ¯E…b6ä','ÀÎBHTÅÜ`C\rŒ#À8Ü9JÊèà÷N4D¢\r','',0,'?'),('&eeî\n3KèÔãvZ¦•','wp-admin/ms-delete-site.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','çßÝ`ÌÊ¡óë×óTúN','­çñ¿yKY\"ž\\öT5QT\\ø	d„\"¾ ŽpE/Â^','',0,'?'),('E¸Vàó÷,Õ%¦×,SM=','wp-admin/ms-edit.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ô/öÄ¦Ã½”º:E‚','‡‰«æ•”L`;÷Ai€^ãO½Û~·ˆ·M®Ý:e’\"ž','',0,'?'),('\"(}GÅÅrç	0—ŽV(','wp-admin/ms-options.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¢\'Ž\0Ê}Ìþ:Ôã†¯©','J3l+²K¾Óu\'ÆöÆ´>\r\n¼Èþf,þXÁÃ°€R•','',0,'?'),('¯-1ð8ü;§Tö/Xâ©]','wp-admin/ms-sites.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',']b$ëôÝÐñqœžô¸h','X–\"\ZëoÅ\"è|¯„vSÝø\Z{Á‡è¬Ú','',0,'?'),('´=b¤6šÞhs€ªæt','wp-admin/ms-themes.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','R¹K•Ê$¼IZ1Æi%Ø','}¦[v¼Ü0£â­„	wà^!“*«©TxWÄ„','',0,'?'),('\\ÜÜ…•Œ9‡ƒ·ÈÌ÷','wp-admin/ms-upgrade-network.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','|´’&\"îSm–¾8h¾m','Q²‰à¯{£Oè‚ÂåºÁ¨‚J{SNÑ-è(£tç','',0,'?'),('±kÊULŸíÇ¡¹$Á˜ú','wp-admin/ms-users.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','H#Èf{#Êƒ³ù	6Gå¢','	„[=Ž$Ä”*ýJ¡Z\n¦Œœc—5œéÉ[÷ëS','',0,'?'),('\rxÝ^´§¿\Z ƒ½<;','wp-admin/my-sites.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','1C4	ÃïCÚ­¼Œþh\'','¡‡ù<-\"épbÖÝ±Íš)%Ç€ÉíulÜFJwb','',0,'?'),('¸·áClo¦¶±–¯éÒ','wp-admin/nav-menus.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ìþ2> ¾œnAÚâJ¦Áwc','öcô[«)Ìê-	ußÄïC%–	7Ck4ÿç?Sðq','',0,'?'),('«o¢ù ´l>¼âx~I° Â','wp-admin/network/about.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','6ýfq¥I<ÈÅ@V!Ùmê|','`ò¤é,Mö[þŽãbœô¼ë&	 T%mßU¶eX','',0,'?'),('·›œZQ4ÇØ\\(‚Ü‡','wp-admin/network/admin.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Hñþ3pù×°\'e[g…æ”','Éz‰ÒF\nÖ~“õ–oE’^qê\r±¸ÎéI³ÒH','',0,'?'),('+Äãøt¨%R?ÒÛõø Ì','wp-admin/network/credits.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¡¾T%>r¬Ùlæ1q\'å¥À','<C’%Æ9>¹Œ»÷ ü=ÅýÞÎêÄŒ£ZÑIð_é£','',0,'?'),('\'Úž\0;¾¿?Ã+VÒªÎ','wp-admin/network/edit.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','”²¢JÉˆ2Fü?\"‰0','V²RMUv]Í)ÉådXìÐÆˆÜ¶ð!°ŸÎÝ´·','',0,'?'),('ÏuFóâ‘^Gú¥E+ˆ¶c','wp-admin/network/freedoms.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','á¯9éB9©DD\n²’S“®`','ÊÓJB\'Þ˜˜FRŽF/1ç­7AÙû\0y&á£ƒÈò³','',0,'?'),('\0C_\nìÂjD¨é@k','wp-admin/network/index.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','TÀôçåÿe**ÓdÚî','óPPßœfðžò*Ð§<È˜W™pS¨i“éâ`öC','',0,'?'),(']¥‚P·¿îTkvtŠº8A','wp-admin/network/menu.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','H<%qp”VƒxA	²×','ÒWç?´š¹ˆD4¤·6F`ôIcWøà¦¬3ÑQ¸¶“„È[','',0,'?'),('™˜[ixTºqÔÃ~Wv¡e','wp-admin/network/plugin-editor.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','eŒöKwÔ5UZâ¥»±Sj','a|i%×L?«€‰!ˆE§Ì:P¯x¯¾™»\rH\'','',0,'?'),('ªÚpº$^†ôµdZ','wp-admin/network/plugin-install.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','*ln,Æe/Êš^Ò','¨¹À.ËîFßeZtV¶‚ÁÍOtBÌH•`Ï5D0;À','',0,'?'),('¶˜ÀãŽÆ\"SÎ­`t@','wp-admin/network/plugins.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ä÷Íü­ÜF“þÌ9»UÖŠ','XÃMCCD\rdJ&ÀÈ-*<Ëâ4˜ÿTUù¼& x','',0,'?'),('¨£JÒ×—¸_yzxÈ÷6O','wp-admin/network/privacy.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Õkž~{[`PnÁ>üO','ž¾oGÑësÈºœÚi*JÉ4Bú%»Ÿ‹µO3*','',0,'?'),('Æ=Å}CðãîiðÜHT','wp-admin/network/profile.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','htÚÂ†oØ`Ù3v¹','Í_Åá!g‡I˜\\:¿žšäªäK[ëß—•CA','',0,'?'),('íé\Za˜]]ãA‰ê\'hŽ¤€','wp-admin/network/settings.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¾¶ÇÍÏù¥Ñ-ù#,d\'ñ','SõcœŽèžòÛˆàNG[Š§¯o¢ý>Ê~yŒNÙ|¹!','',0,'?'),('/»s»µC4Œ˜àÖÀ€ž','wp-admin/network/setup.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Îtä=$ÙÃlÕyé2î”±R','Qˆ\nèÌ0.sÛù$äšöñ˜…áÈêc¦˜\"tZ^¬','',0,'?'),('+³§G*#ô±íô¦”ýf´','wp-admin/network/site-info.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','z†9Ó\0Îå9Êžfnó¢]','mG¿Í†!|µKA-¨wÈ­\rõðAß\\b&Ê¥m\r­','',0,'?'),('yêŽäG•\\`˜áù¢MR”','wp-admin/network/site-new.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','‹ª½gCÁ±!i6nY®3?','Ç‰n p›Ó¡@\0rÅedÖ’ê³ÓcJl€,¼Q¡K','',0,'?'),('‹óycâ0O°g)Ï­Mf¸','wp-admin/network/site-settings.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','8\Z\ZÓS\'`q7‰\Z¦ùc','Ö?G2Šp§¥øÞ:‘N\"DéŒôÔëþìŽ','',0,'?'),(' qò¬h¢ö¾Bcø92’î','wp-admin/network/site-themes.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',']¸#KÅÎ–¤°)`r\"¼‡ü','Šó¯íZð2€UU-KÏÌíXêóîäºìöÄþ)‰Ç¿','',0,'?'),('áq@/»¹ê¦‘Ùž-MË','wp-admin/network/site-users.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','f—§q ›ÐD@ ­Ë„Ï¯','1œÃÖqúô™F2}Œ)cÈÅ·(ô@4{‘Ê’W£Ü„','',0,'?'),('n“ÆíÄ@’§AŽùF´','wp-admin/network/sites.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ô|q»#å°˜ò‰FZ','6›êýÙ“{ÅÉ½IÓÊØEÃÅÙÚ€Ê@Žžo<s.6','',0,'?'),('{N¤ˆÈ2íQ®uÔÞ=	œ','wp-admin/network/theme-editor.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','^)¿”ÎÅ­w·âÑqB','4(Vt\n­Ú¢n÷8D[“q’‡lp\"§ºŽŸ\ZèÏ<²ö“','',0,'?'),('h|hEˆˆf:Æ±2š‚~','wp-admin/network/theme-install.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','b—äÆpŠB&³#¶©ì','ædòÏ\'&©Q§øÌÉ\rñ\'¤#\\K–>ÜßÆ/\n$£!%','',0,'?'),('Ùë¼!}ñ=ö`*„gZ=','wp-admin/network/themes.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÃŒœãž9‹\\*Çx','/Øƒ/ÂóÑõÕì`í¯Ëã4MŒ¼Rk|½É…`Ž','',0,'?'),('7|oOU›’ùz\0Ef»œä','wp-admin/network/update-core.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','•·Ô~×I\'0YŒ','q=®mË­1Bã5Ž‰£{“ž®Ñ“N÷lRïµ','',0,'?'),('‚ý\\Ï(åÙwBêÄIã','wp-admin/network/update.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ü¦ÒóûÙòGTwüñ¬','C‚Ù€Q}N…(z{|/›ÀBÜss¯ÍêùÙð%¦L','',0,'?'),('r”®h’Åv†ÏLk/…ö','wp-admin/network/upgrade.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','£PÜ\r\rÚÌýôb¶=¸8S','û•pß3¢¯²@y[ªïÔ·H¥£;ƒ·ÇG]¨•™/','',0,'?'),('\00öñ#Š9ýœ¬Z4Îj$','wp-admin/network/user-edit.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¶­?aO\Z§ý\'·•	','„nFã#¨ì’µV}\Zø^šLÇÓKu¶øŠ','',0,'?'),('øÂ6K1ýþ›(îöÝ}/AX','wp-admin/network/user-new.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ßzÜ·™ECyÛVØÕ;','þá}yR»zäw_¸­a“[—¼ë½Þö¥åB©ŒOŠõÎý','',0,'?'),('	éñÏÛ09÷-b±…Í©W','wp-admin/network/users.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','È`üÿüŠ#`dÈ¯a','Fš§U†Ðe\Zw8CsœrÀ™Ôð³¼üçR„÷; ÛÊ–','',0,'?'),('ÍdÝêãlP‘Oê’ùI„','wp-admin/network.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','^`¨jÇ¸QªÏ2ƒ\Z^','`2W:dDvÿu˜ûá|$Bœ½˜þš£‡§÷ñ','',0,'?'),('­JTV0D·îoTAï¼»@¡','wp-admin/options-discussion.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','±_Ý¨YbÐÈû¸s“t¥Ò','W-T‹û²ìA+í±P\\ŽS!µÞ”ù!dÏ¬*O','',0,'?'),('oí“[¬Ðn3u‚ÈÊ¹ŸP5','wp-admin/options-general.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','b´’Ö–s:ÞÈåBÑƒƒ«','›æá{¾oà5mS%_‹õ~¡ë?\\FúüÙ.HÛ›¨','',0,'?'),('\rÑª1s1=¬¡`(˜y','wp-admin/options-head.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','šan}ÔhÑÂI›`q\r¥','Rzû›` \r0Éš\\\Z#z—áìlø¯•Q1røf[==â','',0,'?'),('¶¦â\\äÆ.1°Û-œ¾:','wp-admin/options-media.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÛsQ˜ºi¢a`ã·Uyæ','wa”­Ó‹…M—…DE÷oI‡Ýý™[Myç£Üû','',0,'?'),('ü)§£™Št\rî,½JÚ¼','wp-admin/options-permalink.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',' 	¯†-sÁæm°kÜ{M','@ppH½Â¸A•\\Þ$Õrò)—å}BÕ×ÆðÓŒ¬‡‘','',0,'?'),('Ò²E5|ÒÑµ‰C‚dé—¼','wp-admin/options-reading.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ä»L¥\"ù0n2«á=}Ø','ïÄÈÂ%Ð?ˆHK)K1;q.¦ü(Š9#ç”õâàz-]P','',0,'?'),('âL¶>ÙŸ‰#{6p}YãÎ','wp-admin/options-writing.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\nâ/’.¡v[%\'~','²WLx1Ý•»AÓÚkåÒMrêü£+tiJTñf.W¾Ô','',0,'?'),('dÕ(ÄÈ%JéùÞ@õG†','wp-admin/options.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','˜\Z	ç\"ZohN£büö°','‡,N93Ì~(+,»¼Øå4×Èb­?ûÚB®¦l›m€\\','',0,'?'),('aÉcµCH\r…‘=l@Ä¸','wp-admin/plugin-editor.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','uÚ½\"oÝ^äkÁ±Ñnc&','°–šÔ\n†£ÇVÙEÀ©Y‚ìÀ©ËÉAÁÊ;åê¬','',0,'?'),('ÊxjPÕö¼¨Ù!cÈx','wp-admin/plugin-install.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Q>–(÷2\n±’hUè\ZûÁ','==<ÒÍ‡yI±9‘J/7Ú>ã;bø£¼a-ä$7™','',0,'?'),('Oû\\©¢µP5ÑÓÿ{¾R®','wp-admin/plugins.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','|ÒÉ¼ˆô¶RTjM\n=¬','#S”{2R9J¶;Ù77$Óå/ë7•v:a•°5¥œ','',0,'?'),('”k‹¥—zß£óÔì×boÓR','wp-admin/post-new.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','»Ä¹¿çV8×ÅÚÅ…—•$)','>$-ã¯.¢\"rBcºÃ»ý U ´ˆ„×?úCC	ÝvIP','',0,'?'),('ëÝvAÀds½ƒ—µ®Kµ]','wp-admin/post.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','æ1¶iÛmÁ:YSíª)°ß','6í¼/±\n¾9Ôy¶\'ÚÑÿ¡ùw-pÚZÇDPt¥ÁÏÉ','',0,'?'),('Q·`ºöä8þM¸8','wp-admin/press-this.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','í«W£ö‡b·õåÊ¯6','Ìº¯¥®7—àë\nkU:¶!íQ+\ZŽÃŒTÛµ[=&øQ','',0,'?'),('cé¤Ÿ¸´(Ok1‹!Í‚','wp-admin/privacy.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','³¹Éä\ryJý0jG!¡”','Ýråí­wôø…1ñ† Š^o!WR‡µ1™2q`^<v1','',0,'?'),('h4¬‹ò#3Ç`Ž-Ýˆ¨\"¢','wp-admin/profile.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','‘„å?–ºÞ>zçÍ©íßz&',',¨6I;ÅG+Õpb€²lZdÁ¬”¨ycã\0','',0,'?'),('\\Ó\0õ£>¦+¢³ÁFbÐí','wp-admin/revision.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','|ru©H38ÑÄhÜ³','2TÀ~V6>r§è½éÑñ¯ë\Z	%%¿ais7Y°y,','',0,'?'),('§cã†ÌŽ´ˆ$\n\'@›\ròè','wp-admin/setup-config.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\nè’”˜/žßI\n»a:','_ô¡’\nEÿÆº¼Q7©zË¤wl^®\"ªí©}V—','',0,'?'),('Î|žÏf÷€îèÉ,2­T	','wp-admin/term.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','[,h;Y–æÃIDÊÎ€`Tý','H×õñä–‚¡#ÈRã6Þ7»\"åÖ”Ú¿“š²pÃy','',0,'?'),('&É`×OËQ5‘QÕ43¿','wp-admin/theme-editor.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ü%[4V:%h!¶=%wÈ','|?o–R(C=!8÷&šúcœu¤Ü­§Œ3Í²½aÃ³ê€','',0,'?'),('\nô\r£Bƒä®pÌ­','wp-admin/theme-install.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¬œBïÇJ™è’p{A­',' -›ô·˜Å¶¡™+5éQi½Ure\\Ap¤=}™wû','',0,'?'),('º©Âã^[X’æŽi³	í','wp-admin/themes.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','˜J’ž\'km¢ÏøÅìt','^Š÷^n©(GÉy[ðÂ«ìÊˆ¾Ó±u\r¸ýÞÀ','',0,'?'),('ñ7sþ\\]Ô}ˆAAùwe1·','wp-admin/tools.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','u1{.\'öiªÕ;üv\\ñKª','ok×EP,ê\nS«!³ùL#5¸ÚµÄ3‘P­}šÕ','',0,'?'),('Ì!éLTá3•ŸiÙêxÅ','wp-admin/update-core.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÜS˜®BaunÜ|Å‡zÁ','ÖÀ)GbDMÚfq„!HûŸŒ9ØÉUhDxµøM&','',0,'?'),('!o\r¿ÍAˆŽv7àÜe','wp-admin/update.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','SäÿŠ‚îhn)ÁÖÚM','kgæû4o#¥Ž¬\Z«oÐ)‡áB)ÜW¹½šÄë D','',0,'?'),('^@Õ²{\'«©_èâ›92','wp-admin/upgrade-functions.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','h\rä6å‡WdŠ€¹Ë»','\rÊ91|&QRl\ZÔ¼ð· 4Y;<H,=‘El —','',0,'?'),('éáæj7r[¼,”ÌüZÖè','wp-admin/upgrade.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','²ïÝ\0:êÍIêƒ%ü’0\0Ã','¾©ô½ÕÜ`Ñâ¦¬èÜµ±¯<Fhêò\'ðý‘','',0,'?'),('&t!0^g‡ÛbJˆc,>3','wp-admin/upload.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ýB}7RûgÁÀ†Šëñ','PzLù~k2˜žÝÐŠæa	1o¶0‹êŠ(¬R¦và¹Á','',0,'?'),('^9(-(Å²Åy ‰÷Ê0q*','wp-admin/user/about.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','™ì\0Ú‘KNý ˜£äN¾-','»gR¡\nz…?ËÓ9?Yœ¡ëË ãbÝ‚fÍ—','',0,'?'),('1s¸)6ªÓ¶™•¯C§…Î—','wp-admin/user/admin.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','p-R ÇVEoéüŒÀŒÅ$','¹Ù£j§t‘Ì\Zÿþõìö–µ/Ÿ<×£\r”6Û8”','',0,'?'),('É¥ƒÛÐ~\r\ZK4(#ãÅ','wp-admin/user/credits.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ù ´ûâÂÇ€[K}åZ','eŠÏ³CQFò¥½Ë[–^tÂCõ„Ò²[~=Yð','',0,'?'),('\Z¶CC\r·rüŒÝP.\n','wp-admin/user/error_log',0,'e‰ú\n=\\`÷“QðgUú','e‰ú\n=\\`÷“QðgUú','¹¾]\"°Îì§)\'Û3¡.£øBqçJŸÓëáG{','',0,'?'),('¥R;lzOé8m<3”Nie','wp-admin/user/freedoms.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¦Ë¹â©ÓÞ³H™t’íi.','~ÐÐl¼&Pð´}@M­ ¤ÃÐ64è°gDz','',0,'?'),('[ê æ|KòoÊÛŒb7ð','wp-admin/user/index.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Èý˜÷ýÕ-x½­÷Nb‰ú','Ý¹MÜZÑX*h°ºðVà\0gêÀc!ëÃ+5ƒ#5','',0,'?'),('õæØõ£y ø\0º\"¬îQ','wp-admin/user/menu.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¥)ãÓÂ»†g¹ÌEÏpî','5kYÉ#(ÞÙÍùßýÄéÍÔ|¢ìÂ6ŸP-¡~(“©¾','',0,'?'),('\0älDdƒÓýu^âáY¬â¤','wp-admin/user/privacy.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\'Ý×¼n\r¦úÈ\'›ÿ)›³','ºæq§OXuþíA³G’¦û\Z@YU2j.ÈÕ[P','',0,'?'),('öÓã­`×&X<ÄaQŸVh\\','wp-admin/user/profile.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¹ú©•€\0yÝ¤±&-','[À#BÙ½Üf¦Œ_M‰»Äú¹­ã!—Pk›;ö¤Ê','',0,'?'),('ô=üðq¯\rljA+','wp-admin/user/user-edit.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','*zu£c°øm	J‘ïeê','å•±áåÌ±		åp@\\Í©ØˆÔÑ9¿.a>vƒYÊ¢‰Œ5','',0,'?'),('ÒJh|±”0çƒ`Zp˜E','wp-admin/user-edit.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Û¤Þˆ²õ2ƒJ3òû T','Ž·ÎýrÆ:\nPOMý&l+Ôê×¥#GŒGÝý','',0,'?'),(' *@ADÒ“ˆ=pu°˜ÓE','wp-admin/user-new.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ØÇšp(µ&ìzOŸñ[<}','AíöV0rôú-¸ñ> |ìM;£ùl\\_P‰\"Ì}','',0,'?'),('PŠÅiz¡tîaé}Ôa','wp-admin/users.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','èsOÌ˜ìG”$ðQÅºi','®ÅÇ¦³·ñ‡ª¼<ÿÌ¾”)á¤!š4‚»ì¤øþà','',0,'?'),('™TêhËÔìzPŸùré','wp-admin/widgets.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','«[(§5<ÉÊaçQ¸­j¢','5‘FTÚËÐÉI_¶B›ñ•1ˆ*rmÓj%#c x‚{','',0,'?'),('I•Ä:BsÞ#×çÿÞ@×','wp-blog-header.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','í­taMm?¢%,=tÿzÇ','5Czµå0¨Û“uþXµÚI³ž!–‹Xµå¤„','',0,'?'),('Sˆÿ÷ÜpØ>ÙÝWr½YE','wp-comments-post.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','åL®p·%,2ÁùÀÈÁ§Ñ¤','DñŒ¤/©Æ@ZC2»Ü[‡ŸîZšpÆ¦À•m´¢çZ`','',0,'?'),('~Å¥Ïs\0Ì1yì$‘L}h','wp-config-sample.php',0,'ÑI†ü?Ie¦ V§þ¹','ÑI†ü?Ie¦ V§þ¹','„—‹ÁjÚbžCJ7ô¢ãüî/zÂå‹,F>­','',0,'?'),('vK;@ÑsºaU1;©	^©','wp-config.php',0,'^àŽX4ó®øô','^àŽX4ó®øô','\\HQÁÅ}%êÌ+ëÃ¢‘œäOçÉ©OxTƒ¦§Ü¬','',0,'?'),('ú-^gÿˆÌº@\0/÷“†','wp-content/index.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','gD,Vë§=\\ÆbP','k‰À—~	¶½UH\Z¥ÖxƒPêÛAÌ„¢ú<¡ž;X¨','',0,'?'),('CN>«ÃûjÔ}í«K','wp-content/plugins/adminimize/LICENSE.txt',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ó\"9¼¶sF:¸tè\rGúå','øÐF}þÕŒø©óO XòõÏíí	#ü«¯#¥','',0,'?'),('ý\n¿A±J«m9¥Ò0nP#','wp-content/plugins/adminimize/adminimize.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¼VìS~ÅaëÝ‰Yõ¯¶Œ¤','û÷(®r¸ê¬£\0 –©¸\\/¼\rF€8.„sŽáŒ','',0,'?'),('²à	\\EúÆû˜ÛøÜ#·Í?','wp-content/plugins/adminimize/adminimize_page.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','‡Ø\0ÆÉíj2á¨ëä˜','ÂòÛò?ß„~¾ÉŽã—óÁ(î«è[t“‘Ýãµó>)|','',0,'?'),('ÕêO±4úl“cô ;îO,','wp-content/plugins/adminimize/css/mw_cat_full.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','TC6ÏžF˜‚Í@Â˜Ø/','×\'ïd{Á\0üDj£\ZG`[qYþ—@}â¦†*ÙÛEHËo','',0,'?'),('é˜ÛPË{-[\Z/eõ!y­','wp-content/plugins/adminimize/css/mw_cat_full.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¾n£˜q\Z¸fÓKR<Âv;','ÿ,s÷ùU‡=$Xž¼`Ž½Û(aÁ?ÎÞÃ23o\"\Z','',0,'?'),(' «¯@Hr²¼U“àcA','wp-content/plugins/adminimize/css/mw_small_user_info.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÁÜ¬8Kiñƒªf*@ïôÞ','·“k¸Æj¿ÒãQØµU¢\0/:<(^3dÞâ‰zu$¬çL¼','',0,'?'),('<ÏV8%øtŠ¸œñ¸~üÜ','wp-content/plugins/adminimize/css/mw_small_user_info.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Z%cÃýÒè‡úÐ7ì÷}Á','®ÄÑ#tØ¼p‚&×c[A`?­TæéçðÆ‡U','',0,'?'),('SKX?ïöáF37¯Ì‡ûÿ','wp-content/plugins/adminimize/css/style.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Mwg=\'o[êY8)¨‘(','‘(ùb´Á;MýüFLt‚UI¬“»w¾½	+÷j ±ì','',0,'?'),('„¥mgõ*Nd]_Mtzmœ','wp-content/plugins/adminimize/css/style.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Öe©bº§BG·Sø®','€}MIËÀ)8òAex©·,¢çÈOBVÍiNKÙjU','',0,'?'),('>r#†îÿÛE×ˆ«ÝâLÉ','wp-content/plugins/adminimize/inc-options/admin_bar.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','oŒF9;œšªzuÑQu','/ocç/J>9•!ŒZzxe<(\ZòUõŽ	uÿ†','',0,'?'),('{U‚C$ø¶,\nâ\Z€_Q','wp-content/plugins/adminimize/inc-options/admin_bar_frontend.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¶lGYïú¿‹müýhØ÷','•kòƒ_€º.Ô¢¿ÕöŠõÕ°|×³~aà –’','',0,'?'),('€È‹£ZEi<œê‡`\0å','wp-content/plugins/adminimize/inc-options/backend_options.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','W0Ò¤ð½ôÏ„\\(Ðªñ`u','Ç<î0O®/mZã‘<³ä>Ëg	‘ÞÉ\"|éý÷','',0,'?'),('	JHN1’7m6ê÷ÛÊ‚','wp-content/plugins/adminimize/inc-options/dashboard_options.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','£Q³+I×Š‚·\rg3„\n-','\'HÐú¤qëŽ;wô‚L#¨æãÃYN´[¤XDÊ-','',0,'?'),('·´€cËe,°ƒÞÿ@«Õ¶•','wp-content/plugins/adminimize/inc-options/deinstall_options.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','•BHëïÈÅ¯&:ü','.!›–×+¨®á×!«¾äa	«¸÷H7×ìsÛ,†*S.O','',0,'?'),('1\nÀïg™Ú¿.ìgÿKY¿','wp-content/plugins/adminimize/inc-options/global_options.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Úº}ˆÎôŠ†ò’^å7aH‹','Æ˜™*.eê{´&:FŽõaÝZ¢v§Léb‘\\¶Õš!','',0,'?'),('j‹î€mïšÊÌ˜ÙF','wp-content/plugins/adminimize/inc-options/im_export_options.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',']ÀdÜÛØãÌçpªÅÐIÎç','ø	bÿ^ù-½¦”Çv¸>5_bI¦^?Æp Ñ','',0,'?'),('ZÙHŠùnÂFÏ	ÛM¦Æ*','wp-content/plugins/adminimize/inc-options/links_options.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ñçü\"òv>£²Å,…','Td8ÙóØ°`@²…VÉ™÷B#)Ðš¾`_€<úf','',0,'?'),('\\Çƒ7·ÍŠËˆ?úp\Z','wp-content/plugins/adminimize/inc-options/menu_options.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ò‰ÞKª¾ÖÎÜ6À¤É¸','´›¤ëÈÔäê’=cÏc˜øôr‡.\"ŽâØ·ü¡ˆ','',0,'?'),('­¼•sg\n—øçŠ“¬Ý„','wp-content/plugins/adminimize/inc-options/minimenu.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÅÎ‡<P^ÔNqŸœBÓ‘9Ó','”1»\ZRÇÛ6\'^4ÁVX‘Ä{	ç6ÄÁËu}¬´Ï','',0,'?'),('k…ê(Æ±UÝðÝlÁ=Â','wp-content/plugins/adminimize/inc-options/self_settings.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',')µ‰í\r{ÜŒ‡1Vå®\r','½qƒ,4ÌFå‰N2äç¹½ßäJ>þŒ ‰áåûñpù‰','',0,'?'),('»²×žÓzòõÐ{ûÐ°DÞ','wp-content/plugins/adminimize/inc-options/settings_notice.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','£5ù‹Ìí¡<9$®iäë)','VHZh§íÇ~\ZT1™>%¬\Z‰ÏñN”¨@{Èµ','',0,'?'),('¯Åw.è2–ÓV‡(s','wp-content/plugins/adminimize/inc-options/theme_options.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','hƒ„\"œQy©ßE·Ÿkl','H¶µ³ý	¨^¶2bn\\9m¹iTÜ÷´/§Õ\0z‰“Ç','',0,'?'),('È¹tFÃâ·z¼§\02…û','wp-content/plugins/adminimize/inc-options/widget_options.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','|›¢¾³t•¾Å\'Áš\rD','ø_¡z¨,ËôdCéT\\[!jˆ·­\\R$','',0,'?'),('æZ‚ë3‚²BHí²ÏŠëÙÕ','wp-content/plugins/adminimize/inc-options/wp_nav_menu_options.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','÷Â×ÆQÆb:6õá}','ã0)&ÿá \0²ÔËJ´LÌ¬(û=1’W:Åü2e','',0,'?'),('gI“#¸p¼Î{#žëQ­','wp-content/plugins/adminimize/inc-options/write_cp_options.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ä)0z$s¼4¾¥–^','ˆ~óî´¤hÎÌIÅËÓ„˜}»Èï$¬Û‚\rÅíŒ','',0,'?'),('Ö\\R‰ wM–ƒ¥+ÐS^','wp-content/plugins/adminimize/inc-options/write_page_options.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ppCMAÃÑgÇ+L„3$\\\0','fìŽs-°a_[÷J%E¤.ÐªAi%Þ\"zæî\'æ£È#H¡','',0,'?'),('r¸Î\nGâ‘èK¦Ã™œ¯','wp-content/plugins/adminimize/inc-options/write_post_options.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ç½¶“B­¿‹U8R¸cD','—ïÏñ†0yHê“°¾·*!v$KÖÏwÚ1{p‹ÿ«','',0,'?'),('LK5ˆ#œ\"¾áÌsÒ®','wp-content/plugins/adminimize/inc-setup/admin-bar-items.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÿ%ìÄ—™Ñ2îfZH{Á','ç.A\'I5\\Ëç,z^§¥VJr%ð6ù)ßz¢¤…Ž','',0,'?'),('ÝÜëu,ð:Mé»1ô‹`','wp-content/plugins/adminimize/inc-setup/admin-footer.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','À¾Ì^ç`LÌù€dµ','¬&ÍË¼.u»œ8»Œë«dÐ9	9J@Éâ—<','',0,'?'),('úÖøÜ]Ù+“_…/ÐÐ7','wp-content/plugins/adminimize/inc-setup/dashboard.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','›ƒ€ t=+’¡é0¡´¿:','Wêm8„ÐèÄ‚ui ëù22æC‘àígúâ$ÅüV','',0,'?'),('â¥™8D >Aq¹%9‘','wp-content/plugins/adminimize/inc-setup/export.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','O¡²˜r`	îºQÓ5”qŠ','µ:3s¼¥Ú¼*ü]°k@oÄ\'ƒ¹€éÖ\"êÅíš:','',0,'?'),('gh…‡¦†Ie³tCt<ûai','wp-content/plugins/adminimize/inc-setup/footer.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','QâðÌ-ºkÒ:–šˆò“','çn=í‚RNüb{ ý{dx€0Y%Æ4LI &H¾Öu8iq','',0,'?'),('Å\'í\n»†oIž !7Œ','wp-content/plugins/adminimize/inc-setup/helping_hands.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','±žt’ÞîuãÇ[òø8F°','W­”;Uïê«c®m¢9#=mEre·ÿ²nqšà','',0,'?'),('zG.Äè›7N,\n¸²…Á+','wp-content/plugins/adminimize/inc-setup/import.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','©¬Tòg0*ê\'haV}ÀÇ¬','²Y»,h,…rí•Útð/Hy‡Ä?Gˆ°˜éÛ«ïÌ¦','',0,'?'),(']›˜èÄ»Yñ;x3£‹ÔæG','wp-content/plugins/adminimize/inc-setup/messages.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','æœ~kN”ÆbM¡>Å§è}8','$1rÜ¼®ù‡`¤J	¡jÖƒ†µÅô1DF¬òéÏ','',0,'?'),('\0‹.SŽ-Â³=ÎMwYæ','wp-content/plugins/adminimize/inc-setup/meta-boxes.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','«N¾Ë-„ƒŸG<Zc0BM','™Í*ÓëÝ D²©D7ë!´ê©žVéæŸ¬	KùŽêP','',0,'?'),(' Ð\\[ïP×ÙªïÆÇÜ','wp-content/plugins/adminimize/inc-setup/remove-admin-bar.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','§Ër\n0ÎßüÉ4å¬|','óÿMwäÉ9Ööª”wÝœ¨|¹ßa«±\nþ¼4 ','',0,'?'),('iOhóMÊ¸§–|Àb´mû','wp-content/plugins/adminimize/inc-setup/remove-admin-notices.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','jÛhâÍåyä:q1¶ÎDK„','1Ç_ãëÓ@y»|Ÿ¾Û½FXÔ{\ZDÙ\'FCG%Hbï','',0,'?'),('±Žd„=:×ÎF\rQÆ>W','wp-content/plugins/adminimize/inc-setup/widget.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ì-?Ž=|<aÄÈî&™tI','×KUec-ZÉ…»ýz]@\'m9ãzZN3}E’•XaúàÉ','',0,'?'),('hi{µWÞ¥¿æ`ñ¡Q°Ö','wp-content/plugins/adminimize/js/adminimize.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','šeŠeMª¥‡¤´Ià','AqÃ!BþªpÕNÑÍ;Œë\\Æ5ËçDÛmôÒ>ƒûŽ','',0,'?'),('t€Ê‹µê_†ð¶×È¡ÈiK','wp-content/plugins/adminimize/js/adminimize.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ŒÖ¢ªzÇÿŒh…ò]w×y','üóŠÕp¶Ê9ôRßÃ¿cê-=/»y’®¨ˆ','',0,'?'),('=@t5r³÷C@Á¯˜Žjˆ','wp-content/plugins/adminimize/js/remove_footer.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¹9\ZËms„ëñ2¿zÑj','*¸ã›ÅÕ÷|E£tls¯Êß?‰\nn‰u­¢òµÄŸ','',0,'?'),('‰¶0ê01,\Z AÙ>‘4','wp-content/plugins/adminimize/js/remove_footer.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','LªÙ|cù¼µÛ6\'KnÍ','âè`u	µhÉLðºÏ‡iIÊpµÂ›±UÆ£Më¦`~Ø','',0,'?'),('fŒBÔ\0ù¾uòžR…Ö~€','wp-content/plugins/adminimize/js/remove_header.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÞývÍñ¸Zªg%Ý»2ü','Š¢R‚ÄsôDæÐájÌšø8^³{;X“òs5´³7','',0,'?'),('\\üö$;\'§*×ZðÀ','wp-content/plugins/adminimize/js/remove_header.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','h§cúþ©ñ\Z·`ÙK®O','´½Ú¼`C\'‡ç%nï,~îÑW²õ—ÚÛ|ìšL°®','',0,'?'),('k\Z³÷BdÄ;‰uÀÉd','wp-content/plugins/adminimize/js/tb_window.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','÷]ð‡J#§OÊÿ×R?','\rË.7Ã¾ü™h£³òÛhç§(¥?R•aÔšôÎJ','',0,'?'),('±b]zÊB»noºFâ','wp-content/plugins/adminimize/js/tb_window.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','X’˜®±²çÛw¡Ónéu','Wvå1?¬‚MB“íu°ò;d~\n4\\e§’5N,û§','',0,'?'),('Íq¼×Bp\r²,gU','wp-content/plugins/adminimize/js/timestamp.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\"Šä)ƒòôø[Rì”,Zü','wüzhê]_2òuà˜t™z;6ÏÁ¥šÎ¬5µ¾qD','',0,'?'),('Y\n‡?xÌÇ;õag‹Ûsx','wp-content/plugins/adminimize/js/timestamp.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','˜¯çÔµô˜|~¹ôÒ0Owÿ','R»MvGæ£¬Y‰ŸP=á’fÞ“,³sŠoÕ‚´§Ã–E²','',0,'?'),('íýô®\"Ù>FZ^ZëmÄÆ','wp-content/plugins/adminimize/readme.txt',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','SuI¡—ñ‡´\n”(À','ã²KäÁã»­ÒHø=b®‘l—fCOËBV5*mJ‰','',0,'?'),('ˆðw”Ái.¹w¾(M;0D','wp-content/plugins/akismet/.htaccess',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¿9¾‚|•­äœ2-þ#ñœ','ÖJ‰S›\\<‘CÞÐ=s\'WI&\Z‹(þÐðvaTo','',0,'?'),('ôœˆŒŽÇIÌ*Ÿ:oÍ','wp-content/plugins/akismet/LICENSE.txt',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','²4îMiõüäHj€ý¯JBc','¼ÿ\0v1£êsÔNí>cIDÙ¦¾Ö„Ié­0ÿ-','',0,'?'),('Læ¿\r¡†È¦:Õènòh\'','wp-content/plugins/akismet/_inc/akismet.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',' 7ÌÄ°\\®Ì±\"²º2‰m','qÃº·Ù«&½õÕUzHk‹o‡–VßÈ!+lVŒOª–Ÿ','',0,'?'),('Ì½ó þ˜ŸX™$oB¹','wp-content/plugins/akismet/_inc/akismet.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','&­[°] ËÜ<éÄóN','ªfq\"^ähSÛ;Xö¥–~øYííYœ§š^å','',0,'?'),('<B¹¢Ê±íA51Ó±','wp-content/plugins/akismet/_inc/form.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\'×4Îl*úÏ&‚çi','»MBÞ1ÐQwoX4bx±c)@DŽË¥°Îk','',0,'?'),('\'Póä™T]Ù	ÿ6ÿ~‚','wp-content/plugins/akismet/_inc/img/logo-full-2x.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ã®^K­ä-^øˆ>A·s{ï','ö%>œ:1¸W™µR¿ÚØŠÍ©°ÂQÔi‚ñ~Õ^G','',0,'?'),(')ÌƒÕ2±kÕh¯Ÿò! ','wp-content/plugins/akismet/akismet.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ó<..¨, n…º÷Ã÷ûˆ','ø/ºó±YQ€°;¥#æ6ÌycäÈŒúÊ—ÉjÿßÈL','',0,'?'),('ò–ÝÕjKé&·…íÖY','wp-content/plugins/akismet/class.akismet-admin.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','VÚcÈÅ“ÿö\r¸gÑy2I','–ßù‰fC Ñ~ø.§n,ˆº±1`Ÿªo9]å¦k\Z±¾','',0,'?'),('‹±fé¤§xMªP]~B—Ô','wp-content/plugins/akismet/class.akismet-cli.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','+ZÈyJÅŽ;‘M*[G½','$l¾°Ûµ	ˆ¬¤n¤ˆs}ÚZåÆ×ò¡‡?˜|¼:í','',0,'?'),('HêÑû!¾‹[?Êz>þòÕÛ','wp-content/plugins/akismet/class.akismet-rest-api.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','	ó ³Èø<\0ÖÔuÔC','’¤…æ„s0ŸÄ×É»s¢y0‚ì1‘É)f¨x¤Ÿ','',0,'?'),('„ló¿g<Ðë¹É=Æl‰','wp-content/plugins/akismet/class.akismet-widget.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','1O³2e1Ž®û¦rJàj','#TñŒc™ÁxðEµÇÂƒyîˆÅ©œâHœà÷î>Ìã','',0,'?'),('pùÀö—b¥~ƒoBkÌZ','wp-content/plugins/akismet/class.akismet.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ü/Êo&ôj}sÊ¼ÝT3C¹','¥YÎMå‘2£<Íß	VToÀ^%Fã”_Dt±!Éä','',0,'?'),('Aý°‰$hÜõÕ`Qøa','wp-content/plugins/akismet/index.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ïh•¯ PëZçÀºÝ¢`Ef','½Â}ÜÜÕ5á›eÿ3¹Ù3ÁŽmhyDæŒQ(','',0,'?'),('’o«/Êdð4x`¤œ','wp-content/plugins/akismet/readme.txt',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','t§’‹òUúÁzué\\\ZÏ','mçÿ¥<F¼hävú%EÏ‘1Ò^A›Ô»\r¡”','',0,'?'),('Óâ³>Zbµo&ÂÔ','wp-content/plugins/akismet/views/config.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','è» e«m3w„éÎg)','—ßÃÈDò/½ ¶-Å &~ô\'É‹‰œÝ±ÙŒ»äªÀ','',0,'?'),('¹bœE‡‘3Óg\'cZ (š÷','wp-content/plugins/akismet/views/get.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ný^?,Ú“¼f·/‡‘­','gë™J\Zop\'ö]Mi@’‚øó÷P;µ›ÈVK','',0,'?'),('­ÑÑWdú;C\r¾ÄÜO®','wp-content/plugins/akismet/views/notice.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','	×a\\2R»Š‘K•«í(š','Y|Ûb‚ÒþåO-ìb$×t+¤8jêK×¹\Z«×ÏX#ì','',0,'?'),('¡Þ;ã;/JÃKmRÿ—0','wp-content/plugins/akismet/views/start.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Îr5°žJ™¥\r‡ÛLÿŸäX','M\0(¥ÿ@hF(Â¨o\ZB°FœA\r™w•7™–','',0,'?'),('s¦ìÓ£Jö³Å~’çk','wp-content/plugins/akismet/views/stats.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¡­ÍAŸF‰–šhâÐ`','?O>uÉz·/AõÇš	n5E-ù‘I„ÆGUhß³','',0,'?'),('dF=úˆÏjˆ²Hcÿ ‚–','wp-content/plugins/akismet/wrapper.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','üÕlRKvÂâG\n.í4&ô',':¬›Ùy8…–{#ÍÕ¿…mçúöÖ6mzø6Y(9','',0,'?'),('`aHPÊ‘og ÑåoVK','wp-content/plugins/foobox-image-lightbox/assets/img/foobot.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','œ$_ÛN}¥h1\ZÜšt“','Ö`\n°Z{¸(PfAÄaü„‚;Z´Ò!aV©Evv5','',0,'?'),('=Çç«?Eø;U³ú\0Ê','wp-content/plugins/foobox-image-lightbox/assets/img/foobot_red.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','3©=×îªµ†åÑpÕ9E‹Æ','åo]§[Øì¬lkç0Å¤ÒId;~ãS{YÖéý+ÍXÓ','',0,'?'),('Œ<ŽòêMm~«à{DmèN','wp-content/plugins/foobox-image-lightbox/foobox-free.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',']ÎÐC¶Rm©îÉª>D®','ÎibÓÔ²ÁÄ	$«Ç> ;ûÚGêN/•Š©¤V','',0,'?'),('óœ|ýâÁÜn\"\\D’¯','wp-content/plugins/foobox-image-lightbox/free/css/admin-foobox_page_foobox-settings.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','}$~Ya„¤¹xçÁƒ·­»N','çhJ‰•?­iq7¿[ÿKcç|ç`”ó´…¨åOò','',0,'?'),('üqA/É€l§•t2­	ºñ','wp-content/plugins/foobox-image-lightbox/free/css/admin-toplevel_page_foobox-image-lightbox.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','v`¥ÎöÀÈ·@î©Ý”%>','Ã¿âr>¼èé“ŒbÚØš×ÂäB‚…=¾ç¸O)\ZX','',0,'?'),('\ræMi\'¡¶ëËÂ2…S','wp-content/plugins/foobox-image-lightbox/free/css/font/foobox.eot',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','“™·ŒÓ.£øB\'\nm½ko','ÏÔ­Ë#Î¢d.whà!¨Ðµ3Î÷`\0ä²~úVøAJØ','',0,'?'),('´X©ÄÇRò6t_`4û','wp-content/plugins/foobox-image-lightbox/free/css/font/foobox.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','P…©l¾ÒÈ¯V=#O','›aôhu(tE5ž³‰\\öÒ£ýiPÇ=|<4Sbª~îKT','',0,'?'),('Ã»7ôÝ0ÊÕ±æºa_xT','wp-content/plugins/foobox-image-lightbox/free/css/font/foobox.ttf',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','â¿Pq­GS÷B©v7¹','ynè©¾½$O¿”ŽÑ—u²\"N{Ê¥Ë&9TÉªÛC¢â','',0,'?'),('\'¨÷‹Ž’nZtÂIìJ.œ¢','wp-content/plugins/foobox-image-lightbox/free/css/font/foobox.woff',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','it™{\\ÀsÔŸ #ðYQÖ','œxoÜ?@.ò‚É;e„ÁE(s99Ç{¢¬‘ÂÝ1C]','',0,'?'),('\'é.‹7Ç‹Ê¯¥<å\ZR','wp-content/plugins/foobox-image-lightbox/free/css/foobox.free.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','øâü‹º	…œž›ÎßÂô-','2ä…üÿØ\"_WÏG\r&¤žóÜ#¥°ônˆ´›Þ','',0,'?'),('ªÅÿôÒ\"“tÑ“q¬','wp-content/plugins/foobox-image-lightbox/free/css/foobox.noie7.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','[‰@ˆEòÞÐÖzñv²','Çx¸@D¡…Iž·Cà–à‹*ŠxšÁ_À¨À5','',0,'?'),('õ¸¥µB8ÀÃ–ÚóRUOp','wp-content/plugins/foobox-image-lightbox/free/css/img/demo.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Üuª±)•DÄirç¿Šµ¡|','¢ƒ^9Aú,‡¨ØåBsìn	áR[»\n\\‹‚×Ž‚','',0,'?'),('\\mŸn¦ÁÊê“J‚Mk1','wp-content/plugins/foobox-image-lightbox/free/css/img/tick.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','½n¶e«÷ˆîBŠD±ß','LŠ¨ƒo„7Œ×EFå×ý\0BvŠº©€@Ñ$\\ÆÕ','',0,'?'),('-ý¿\rvºKqšÕÝ÷ÿ','wp-content/plugins/foobox-image-lightbox/free/css/img/tick2.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','s9ýlªŸÍyK3…€',' ÖG¿æ8nñár²QÂm+÷PNS%{W$q','',0,'?'),('ó¤¼¤²ÔUlº®Zadÿ','wp-content/plugins/foobox-image-lightbox/free/css/img/tick3.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',' íÈGáÑ ¨Ìðmqyþa','—‘öëº d£º<Q »™£Kø:Œ=µ¾l}Ó	Ü[`','',0,'?'),('vu÷ý69C|ÛB*žËü¡','wp-content/plugins/foobox-image-lightbox/free/foobox-free.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¢Þû¦Ü\r¡}2µò’','J<n¨J&¯û#é¨ú0š¥)Ï€:Š/¾àKî€¤ôÈ','',0,'?'),('\'¹›ï\'ÖÌ\r˜ødâá','wp-content/plugins/foobox-image-lightbox/free/includes/class-exclude.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','­«+ 4$lÉcÄÿ¬É‰ñ','3\r}šý/¨ñ^@N²n	Îb\0—G‰ZÏâ«5T’W™','',0,'?'),('-˜ŽM2¦8]%óetÆ’Úb','wp-content/plugins/foobox-image-lightbox/free/includes/class-foogallery-foobox-free-extension.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Åú­?5Ý´ÝgÝK8™','µ¾|ÒiŠÚƒ€[÷ƒz.ØUüsË~k<8¢µŽ69P¼¯','',0,'?'),('ÝMš\n\"ª›5yÉ¬\0H„','wp-content/plugins/foobox-image-lightbox/free/includes/class-script-generator.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','JhRªää\\üƒæ\'Äú(','\'²˜TOPp›B—íbTÀ.q`-’ÍŸ0öqÇä','',0,'?'),('8_/÷¿@²F8Y_|bÈž3','wp-content/plugins/foobox-image-lightbox/free/includes/class-settings.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','uî…Sà›í\rK67›ýMÕ','BÉTžð¬\nnÚÙéðÑL*Ï!•§‰¿ö”¼è¤~½','',0,'?'),('Ãªi88àFg§üè^Ós','wp-content/plugins/foobox-image-lightbox/free/includes/foopluginbase/README.md',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','iþÛGé£»«¨x©û}','ï\' 0iï\"Ö•wP¤vÛ™ÅU\rS8ì%W\r‰W','',0,'?'),('*úÀòÿ¡úÏ\'»³î,','wp-content/plugins/foobox-image-lightbox/free/includes/foopluginbase/bootstrapper.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ù6K®¡ÄòìÛ\rôŒ5ý–Ø','ÊÈw/ [×)§ôR´ÖÿL5•à yÉÝ.,mê+\"hé','',0,'?'),('!Î÷eð—ÀÚãK\r~%','wp-content/plugins/foobox-image-lightbox/free/includes/foopluginbase/changelog.txt',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÀÉÚµfóÜÞ,ÐIÈ…—}æ','JØ3¢¬\"/ô>æ‚ìé´½V?šþîmŠ@Â¼','',0,'?'),('0{,œÊâ‘½ÅÕíÿ(e','wp-content/plugins/foobox-image-lightbox/free/includes/foopluginbase/classes/class-foo-plugin-base.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','J³„Ÿ1™O?çfðë´¤','PB\"\ré.¬úAV\rèI=Ç8XON	ñkó;QpñZ\n ','',0,'?'),('Ëoè”K`dTC¿s¬\n€','wp-content/plugins/foobox-image-lightbox/free/includes/foopluginbase/classes/class-foo-plugin-options.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','w‡$²dr¬ûÒ‡ká?','yÄTÒ)Þ0èEýÇgÅ•ÙÝù`åÍbÈ¤N¢ÏajŸv','',0,'?'),('@ð\\þR9)•Ä®ÞhxRá','wp-content/plugins/foobox-image-lightbox/free/includes/foopluginbase/classes/class-foo-plugin-settings.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','—Ä]×3ß\rLd””­','t¡ 8HNc#ÏÃÿ¶ š³1æùÖ½4 ˆgîÂ','',0,'?'),('Äà¾L¼W\'ÕécTaù!ƒ','wp-content/plugins/foobox-image-lightbox/free/includes/foopluginbase/classes/class-foo-plugin-textdomain.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','’›8%žë§ÌãÙcã¶ƒ','Ö¤@r«›ë9=»ý?åŒÊ)>ºb›$²,2—¢','',0,'?'),('sTí°Óbo}ÔŒ¾#Û?×','wp-content/plugins/foobox-image-lightbox/free/includes/foopluginbase/classes/index.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ïá{J!u?}îçs•','AuÌƒµœÄ`ü9‰7}bŽ>MHêÃíJHhåûÎ|Fj','',0,'?'),('n-–ÕõÑmï	”NÿÌLi¬','wp-content/plugins/foobox-image-lightbox/free/includes/foopluginbase/css/admin-settings.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÔŒÙ\0²é€	˜ìøB~','ã°ÄB˜üšûôÈ™o¹$\'®Aäd›“L¤•™xR¸U','',0,'?'),('Ž·Êµ{?eeÙP/Yxù','wp-content/plugins/foobox-image-lightbox/free/includes/foopluginbase/css/index.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ïá{J!u?}îçs•','AuÌƒµœÄ`ü9‰7}bŽ>MHêÃíJHhåûÎ|Fj','',0,'?'),('I`~‚çÐ·`¹Rh•ç+³P','wp-content/plugins/foobox-image-lightbox/free/includes/foopluginbase/functions/arrays.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ó¨N¦a$]Ga6\0*²±','§0³×ƒ˜Ÿ¤_§\ZŸ?¥‡x•](J]/\rk88R]P-›','',0,'?'),('d…R[F ­ mQUÍOÂÒ','wp-content/plugins/foobox-image-lightbox/free/includes/foopluginbase/functions/general.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','G8ZÄ`Úˆ2x/+~~','%)“VV˜W³PöY5ÒhkqÚŠï¨r&ulÇöïBd','',0,'?'),(']â\Z“¦«ÝŠ‰\nRÒ#ÒÎ','wp-content/plugins/foobox-image-lightbox/free/includes/foopluginbase/functions/index.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ïá{J!u?}îçs•','AuÌƒµœÄ`ü9‰7}bŽ>MHêÃíJHhåûÎ|Fj','',0,'?'),('ºªêÑf·Û¿n…–6KÏ','wp-content/plugins/foobox-image-lightbox/free/includes/foopluginbase/functions/screen.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Æ\rNë¬ÑÚoWò^ÅtÚ£','ˆv™fâÑ¬³·²…ôiÆÑšSoH5>È¹BÉD¦G','',0,'?'),('4gh—0\0åG²~XUž','wp-content/plugins/foobox-image-lightbox/free/includes/foopluginbase/functions/strings.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ö%r±‘\'*v‹T×P&½','n6\Z-GX|å(<\r¡+Á5œgÙ¦’çh¼Tñ','',0,'?'),('où´¬„¥}ŸvçÊ\Z@','wp-content/plugins/foobox-image-lightbox/free/includes/foopluginbase/index.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ïá{J!u?}îçs•','AuÌƒµœÄ`ü9‰7}bŽ>MHêÃíJHhåûÎ|Fj','',0,'?'),('ãp	ç™‹9n!ÂèÀ…R','wp-content/plugins/foobox-image-lightbox/free/includes/foopluginbase/js/admin-settings.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','„ØNÊeIj¦\r4ŠQPÓ','¼­ï	“:8/î¶·µ*ÿÉÒ%<êëÊqmçn©1Xjw','',0,'?'),('A®õ•Â>Ý¿ç=±1G×','wp-content/plugins/foobox-image-lightbox/free/includes/foopluginbase/js/index.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ïá{J!u?}îçs•','AuÌƒµœÄ`ü9‰7}bŽ>MHêÃíJHhåûÎ|Fj','',0,'?'),('d…‚áŽãlâyÍ:ÖÀî','wp-content/plugins/foobox-image-lightbox/free/includes/foopluginbase/views/index.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ïá{J!u?}îçs•','AuÌƒµœÄ`ü9‰7}bŽ>MHêÃíJHhåûÎ|Fj','',0,'?'),('†0ç\\ËL®‹­Õ´3Ï','wp-content/plugins/foobox-image-lightbox/free/includes/foopluginbase/views/settings.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','.IÈ?\n¯/÷ÇˆB­7 8','s}‚Ï;úy{€±X\r6áa‘Ü¢˜\'©È\':L•ý–','',0,'?'),('Z¢ZUÄö5Mˆ‰¡µß¯¡','wp-content/plugins/foobox-image-lightbox/free/includes/upgrade.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','uˆëcúD†OcbÔoi','J.Ôø:Âõ^En“2Bgåû93€N#“õ˜','',0,'?'),('±‡Ž1ÐÞëÙ4þÎ^','wp-content/plugins/foobox-image-lightbox/free/includes/view-getting-started.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÀÍ|#f›BÄ+åäëj[¡','{Ómô„-Ì´i}šÛêÆÛ1W hÂ/T«£Ð\Zž','',0,'?'),('vÖ\'ÒÀ™­l¨j}“1æV','wp-content/plugins/foobox-image-lightbox/free/js/admin-foobox_page_foobox-settings.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','õ\0æ×›:¤\Z0Ö·@e','Txö‡Kð‡aß•“ZÿÃØÙ‚ã)ßXcÝúYÈJÒ','',0,'?'),('6ÛAê6r Ÿ„V0F`_ßp','wp-content/plugins/foobox-image-lightbox/free/js/admin-toplevel_page_foobox-image-lightbox.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ŽÚÒu¢øC?[`âÑsx','øm?È‘uè\\§‡_1nì¨æÜwNc™ˆ\r©¨JYwœ','',0,'?'),('Ã9µ(¢7I)NÁiP”','wp-content/plugins/foobox-image-lightbox/free/js/foobox.free.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','3–U¶c[j\Z0B@†k','L ä³£æÆdS¾·8ò,`˜ßô`l)î','',0,'?'),('2ÍtÚe!¢¿|ÏÕ0|','wp-content/plugins/foobox-image-lightbox/freemius/.codeclimate.yml',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Í<ù;˜õ[@Äóq0H','/¡’J‡u4óc*_Ë‘ò>–òŒ±¦µž|¯<;k5oN','',0,'?'),('FbQØ¿Øùùà‘,}²á','wp-content/plugins/foobox-image-lightbox/freemius/.github/ISSUE_TEMPLATE.md',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ø…û’+ì³’¦Mö©`•','ÿ†\n‰Ô:Ä8X¼0CÌçÏ\0­“iÔI\")F2J±','',0,'?'),(')[3Y}u±A­ÕçmeN','wp-content/plugins/foobox-image-lightbox/freemius/.travis.yml',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','òýÑ®è³éÚN²\\‘wBÃ','ýà¯Í™ÎÙ‚uÌ+×üìeÿ¿¬Œ[ù‡¬¥\r3','',0,'?'),('mÜÁ©5Í†K¹,ëâ-†@','wp-content/plugins/foobox-image-lightbox/freemius/LICENSE.txt',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','˜^Êfþ¯p…1Ôak0t','x6Ê@à©\nÛqvÇdR>àã²{‘8^¸_æà¸pQ','',0,'?'),('NÕWÉÓ–—lðä¯‘\'G','wp-content/plugins/foobox-image-lightbox/freemius/README.md',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¾ÿ\\_Ü{Äš/V_ª/',')Bß[÷êº)ÅáÏW´ \nÈñ8O±V¦CìÞ¿†×','',0,'?'),('èùHñÿ=K©Ôµ¾¥€NãÅ','wp-content/plugins/foobox-image-lightbox/freemius/assets/css/admin/account.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','{c)–›!¨arã	”îwD<','Ò†ïî¤Àøj`óDµÝvŠküØTJöÙ}ì ±\'©8âz','',0,'?'),('ÃF3ZðjÔ­µ,,|œv²','wp-content/plugins/foobox-image-lightbox/freemius/assets/css/admin/add-ons.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','c¾_î3Ðw$·ˆôœ–ú','×ýðdÈíÁ‹ú¼)ÿæEQ`4¿Já_¯=éî`D	','',0,'?'),('¯ß;¬$gÝÖ¬BÙ*¥','wp-content/plugins/foobox-image-lightbox/freemius/assets/css/admin/affiliation.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','(^G.˜ÃÕí˜/¨Næñ¾','b´Ø×¬hk$ð‚BeÀ!r¥ÿ+&{–]eXW-l!\\\Z','',0,'?'),('N™é¿8(÷ØJµUÝoŸž','wp-content/plugins/foobox-image-lightbox/freemius/assets/css/admin/checkout.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\Z¢T®†`ÃŒãi','N5œ‡¡¿\ríÀÞ3u¬ñ[ó×í&À``ÿ‰±b*úí','',0,'?'),('–?«ûº|Ún’‚ˆ¢?‚Ws','wp-content/plugins/foobox-image-lightbox/freemius/assets/css/admin/common.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÊÞr<»§ôsó=nÍ:','™èz/<hôWÄ9¤ã¢„À°\nX˜Ê£	ÚBOEî_','',0,'?'),('g¡Wb¨=žf8&×i','wp-content/plugins/foobox-image-lightbox/freemius/assets/css/admin/connect.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ˆžmØE£Òñî‡ëþ¶á','ðÞaéñ—Ã°ƒT.Ñ%e’ß§Tá	ïëÙº–I!y','',0,'?'),('\Z7±%‡;ÉtøëõbmI|™','wp-content/plugins/foobox-image-lightbox/freemius/assets/css/admin/deactivation-feedback.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','´³”ºµ^¦å*\ržif3','£Bs=½chÓ·.\Z®I(îF˜*Á}W³ÿ6F!¸Rn','',0,'?'),('Ñ6›àñ–´çìr¶â^','wp-content/plugins/foobox-image-lightbox/freemius/assets/css/admin/debug.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ä\'ã ü4ä”Ð²Y£Éˆn',' u&ëê±d´Loåç‡×Jog¼=!î¦\\ó,(ß¸¥','',0,'?'),('0b7{d—Ëdg%	ðU','wp-content/plugins/foobox-image-lightbox/freemius/assets/css/admin/dialog-boxes.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','$_Hõû6ë{è±3ß	­','Óœ´ýÈÙ}ìÆ‰\0ƒ\ZŠ¡žÒÒ¹:ïFKCÛ§ÖÎ7','',0,'?'),('ýò?\r!Uu¦’#.M9x','wp-content/plugins/foobox-image-lightbox/freemius/assets/css/admin/index.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','wt–ÏT£[£gÓî…¹&','€*yÂˆ™v\rJPˆ-:ÈT„@«­¼—\nÑó8Õ$0Â','',0,'?'),('‡üyRá?Rë{Ýºòd)','wp-content/plugins/foobox-image-lightbox/freemius/assets/css/admin/license-activation.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','xÆÿÕ)ù¬\ZzlÚ¾Ò','NÄ6AõêÿP˜vÓCp0“R¹ölb›#Êi¤ &¦','',0,'?'),('‘_³}ò[d&‘ÔÇÇ¢Ç','wp-content/plugins/foobox-image-lightbox/freemius/assets/css/customizer.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','öLø 	¼”ùq-Â‰—','R#³Ñ\0kAÃöuëÈó[ò·Ì¾ÿœOôï©’xâJ}}','',0,'?'),('Æ–·íœÎeDDz]ªƒ','wp-content/plugins/foobox-image-lightbox/freemius/assets/css/index.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','wt–ÏT£[£gÓî…¹&','€*yÂˆ™v\rJPˆ-:ÈT„@«­¼—\nÑó8Õ$0Â','',0,'?'),('Þ\"ÊyæD(¬ÍKk”ì@q','wp-content/plugins/foobox-image-lightbox/freemius/assets/img/foobox-image-lightbox.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','‡Nã5ñËÐ–ž]¸\\£¦','Ý7[8V$Íàçõ„°ÉîUri¥¬X^¿Äp|ÓÂ&J','',0,'?'),('GÈ£âøÍ¶/ÓþÃF','wp-content/plugins/foobox-image-lightbox/freemius/assets/img/index.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','wt–ÏT£[£gÓî…¹&','€*yÂˆ™v\rJPˆ-:ÈT„@«­¼—\nÑó8Õ$0Â','',0,'?'),('V}c*d¢™p@¤®ƒ{`','wp-content/plugins/foobox-image-lightbox/freemius/assets/img/plugin-icon.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ã/à²ß\nkÃé\n8¾','ÏšN’Ršæ&}óí17ùÚ}(ÌŒ`I\'¯Vñ}¢ØÄL)','',0,'?'),('UQÎÊ—F{­·\'å†òÑ','wp-content/plugins/foobox-image-lightbox/freemius/assets/img/theme-icon.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Œ³ôþñÕ3ì¡¢Žo•!','‹á(Ó_{ÌØøQPÜÂÐyVãlŽÙjyÊB•ÖÍ~ý','',0,'?'),('8Øùè¢óâT+ö•Re%$','wp-content/plugins/foobox-image-lightbox/freemius/assets/index.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','=à¤¸»â“tÚëÙgE7â','€*yÂˆ™v\rJPˆ-:ÈT„@«­¼—\nÑó8Õ$0Â','',0,'?'),('ùÕÜ?,iù£2ý*•7','wp-content/plugins/foobox-image-lightbox/freemius/assets/js/index.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','wt–ÏT£[£gÓî…¹&','€*yÂˆ™v\rJPˆ-:ÈT„@«­¼—\nÑó8Õ$0Â','',0,'?'),('?0e	Èg•xbõg¨ÚX','wp-content/plugins/foobox-image-lightbox/freemius/assets/js/nojquery.ba-postmessage.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','šçsòÜrLì¯Ï[Ã','àD·\\\Z¸ÀIžÓ¡[Ûª›ö¨×í¯jcˆPZgsªW','',0,'?'),('˜U]…Rbý¹žÙ˜ŠøÃ','wp-content/plugins/foobox-image-lightbox/freemius/assets/js/nojquery.ba-postmessage.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','gIºÀ®*BoÕõvÉò¹äµ',']åÞ€¡¤¬\\ÁÊ+fùø³R\nQ¿»%á× J‡‹’•µ>','',0,'?'),('lÌÖ»jì‡Ÿÿß›ïO','wp-content/plugins/foobox-image-lightbox/freemius/assets/js/postmessage.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ûe*É¥¹&½o€\'·','bM\r	º{ëTTït«×°\\øt•¨=þ{ÅÈaÏ½#œÍq9','',0,'?'),('+\"€lÔ—<ªÕ‡ZEa','wp-content/plugins/foobox-image-lightbox/freemius/assets/scss/_colors.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','•®ç¼e/ïß¢¯ÿ¸ž','ý|¿	Yëñ…ëFJš† 7Zs8k1j¬lqŸ;£}','',0,'?'),('sýç0¯Ö6RSàÖeì','wp-content/plugins/foobox-image-lightbox/freemius/assets/scss/_functions.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÔŒÙ\0²é€	˜ìøB~','ã°ÄB˜üšûôÈ™o¹$\'®Aäd›“L¤•™xR¸U','',0,'?'),('#.èT?#T“šl˜èåº','wp-content/plugins/foobox-image-lightbox/freemius/assets/scss/_load.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¿¥SY¦3á£~\ZÝ¡·‡','FÒÌ€x2VZ@gŽ;·*8C·…Ý2—çÉbs2ºV','',0,'?'),('\n«eï,xå›1¼ª$r','wp-content/plugins/foobox-image-lightbox/freemius/assets/scss/_mixins.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','êqO=Áok!õÍvŠ\\','o^³7Ø(Ñ­Þy†c\rlÀ\"4!’›ú(Ýë','',0,'?'),('ß:Š÷U›È!Ý™SB—{','wp-content/plugins/foobox-image-lightbox/freemius/assets/scss/_start.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','PõÇ\\+æaùòJ&L¹ÉTÖ','6†1CîŸaŸCU‘\nßÈfª äy¦Í\n400žxC·Q','',0,'?'),('üíHý‡,;Vµ	›©Vèv','wp-content/plugins/foobox-image-lightbox/freemius/assets/scss/_vars.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ì\Z²ZdbÀ8ó™Â`Bñ«','9îÁ†|$ï€Ôÿà kö—Èá-ýìÝw1¬Üº','',0,'?'),('¯óÇÞNuºsDE\'«uE','wp-content/plugins/foobox-image-lightbox/freemius/assets/scss/admin/_ajax-loader.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ˆY/¥í…©Î¥;eÂˆø@','œLùV!Ô1X=LY.œ«D	þo!éš÷×oø»Ö•','',0,'?'),('Ò(ŠÏJ€ÆØ „ÐùrEiŸ','wp-content/plugins/foobox-image-lightbox/freemius/assets/scss/admin/_auto-install.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ÿá{ìL¢ÔàýX{TYM','j/Á%$UŸ;½;uKÕBÚí¾²d-vNR¶¡ˆGØ[','',0,'?'),('~BË\'ý0ˆÇ‚‚Œ»šô','wp-content/plugins/foobox-image-lightbox/freemius/assets/scss/admin/_deactivation-feedback.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¶+±#?´—×MÅã7','ˆx0\0e¹Í}`eßr–Ëmyiö\r6®Ç¸rªOV5','',0,'?'),('Á,µ4«óRþøÄ','wp-content/plugins/foobox-image-lightbox/freemius/assets/scss/admin/_license-activation.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','æ«þŸÊXè/Aç‡\'3','V”%íþëq÷¸ö\n†\0N´ßs¦&Z·1ì“ZŸ','',0,'?'),('Ù™ƒQE{à!ÇYà‰+','wp-content/plugins/foobox-image-lightbox/freemius/assets/scss/admin/_license-key-resend.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\0t)»(b?ì–!«º›×(','jã¼‰þ¥F¨YCyfŽÙª^úq£Ð›>ê˜›ÁçÁ—TG','',0,'?'),('MTˆ‹|76êèÛ&q¿','wp-content/plugins/foobox-image-lightbox/freemius/assets/scss/admin/_modal-common.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','øv‹sõöw÷¸]íÐÜ¾','mÉÔ›*ì$‰…\Z\r•ön•\\1NGcoâI™Í	g','',0,'?'),('N’X$p^¯º-Š\r\Zå','wp-content/plugins/foobox-image-lightbox/freemius/assets/scss/admin/_themes.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','wöyµŠ”§ÏD·55©','‰×æºº@;Kk\\ÔÌíú\Z_wêœµýåàqá¸¦Ùv¯','',0,'?'),('ƒ?é\\]·ÆÑÝ ‹Î\\FŸ','wp-content/plugins/foobox-image-lightbox/freemius/assets/scss/admin/account.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','~]ÄàÅmÕ.™tÉ‰É–','Õì¡~3$Á8dJ%8ùJ*5XoÆŒï‹4O‹ï2x','',0,'?'),('nM:^e”ëÂýéì¨Í','wp-content/plugins/foobox-image-lightbox/freemius/assets/scss/admin/add-ons.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','znœÉvG,UÿE‘ƒx	x','êAlí•_ÒÊÃüÚ-ˆ Ð\"óƒÐ|Íà[5¹ö0k<D','',0,'?'),('«Þ!^tÃ…#\"ÒyY¿þ“','wp-content/plugins/foobox-image-lightbox/freemius/assets/scss/admin/affiliation.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','—6èi°¾Q¯žÊû$f`T','V%—êPÀÍ§°ñb‹Â„Âh-W˜<ú0Çb7j','',0,'?'),('…äðã1zŸNöAï`?¢\n€','wp-content/plugins/foobox-image-lightbox/freemius/assets/scss/admin/checkout.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','xB©ð—;….k¬=¾Ð','¿é\0(†$õù©TrÅºû¦|EP¥Öƒ9©ÛÃ)>J7ò','',0,'?'),('.µ¿¦¶mt~ÿ}a+','wp-content/plugins/foobox-image-lightbox/freemius/assets/scss/admin/common.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ø6?8§ÃdÒ\n„«Ó½ò_ê','=…ŽÉ Á˜hmã[]L,rR|S\ZÅ˜¦³+~£»´','',0,'?'),('¹žn¦:úv§þem¹õ','wp-content/plugins/foobox-image-lightbox/freemius/assets/scss/admin/connect.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ß$}bÏ¬²×VWMÓßå\0','»Þ[~q?ŒAøN,\'ë“nDc4í3ØRm\"‚Ýæ','',0,'?'),('Ê¿ñtÉÄ9åo|®G¡&®','wp-content/plugins/foobox-image-lightbox/freemius/assets/scss/admin/debug.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ø&Rb·¦Z“\'ÔËñ?ë9g','¼Žt UÜ«ÍÕÈ²Äêkðþæ2\Zí#›¼ètÙ¥ÎQó','',0,'?'),('\Z—îT @6÷¹qœœAz›','wp-content/plugins/foobox-image-lightbox/freemius/assets/scss/admin/dialog-boxes.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','|„/z³ž…\r->­£','þ©9D×¦OÔE¨ìŒ£èM³9 á(Ã07ÕÔ~Ž\r[ƒC5','',0,'?'),('P‘.úzƒ h…–‹Ü_','wp-content/plugins/foobox-image-lightbox/freemius/assets/scss/admin/index.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','wt–ÏT£[£gÓî…¹&','€*yÂˆ™v\rJPˆ-:ÈT„@«­¼—\nÑó8Õ$0Â','',0,'?'),('¤Jç?ð2 \\±÷uº^—','wp-content/plugins/foobox-image-lightbox/freemius/assets/scss/customizer.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','îhšaÂÍTIùo½ \nv0Ú','çÏcÓáWäþ§]¥;ÐÐ_gÂE;=·úxTßöÁj8','',0,'?'),(')\"›e_MD¤²3RC«x:','wp-content/plugins/foobox-image-lightbox/freemius/assets/scss/index.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','wt–ÏT£[£gÓî…¹&','€*yÂˆ™v\rJPˆ-:ÈT„@«­¼—\nÑó8Õ$0Â','',0,'?'),('ô›çäˆC©øµ\Za2M‡','wp-content/plugins/foobox-image-lightbox/freemius/composer.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','?p»	XÔ\nÊÒvT','ãsŒ;=sŒùóûËö‰-J—Øµcýµ…Š','',0,'?'),('ÔÔúŸÄÇÚÜªÒÛB²','wp-content/plugins/foobox-image-lightbox/freemius/config.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','’;…·ãn,¶ìsožžZ!','ØK(Öe ÃaÜnôt¯TMR£=ìÞžâ·…¸wenß³','',0,'?'),('ËÉí°öF{Âa72é\r','wp-content/plugins/foobox-image-lightbox/freemius/gulpfile.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Â)ÞŒ7Ù0?“â/%v','ÆìãX…„Šk–Ë˜Œÿ‚+õží÷&Ò«:#','',0,'?'),('Íú°¨´×#@	«\rû','wp-content/plugins/foobox-image-lightbox/freemius/includes/class-freemius-abstract.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','T\n:þ/2†ìT¼ü8<.','v]HIËäœmï“Ü ´ˆ¯Ï@þòÓ0dŽKªQ7','',0,'?'),('Y5ÇC‰´®t±íì˜Prh','wp-content/plugins/foobox-image-lightbox/freemius/includes/class-freemius.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','uDYÈˆÕÁUðÅ…ÌŸ','´œüi¬¥LÏ“pžl\04m“á÷íù…\ZôT ','',0,'?'),('ÙÉé©z!¾Ulý3Š™','wp-content/plugins/foobox-image-lightbox/freemius/includes/class-fs-api.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','yè·£Â2¼Zçád”ív¿','£^äç¼Yó~R!1#È‘É_Õ˜úü3×’êTØ–','',0,'?'),('ìå§‘4¤(Ñ¾þä†ªLˆ','wp-content/plugins/foobox-image-lightbox/freemius/includes/class-fs-logger.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¯¶†§†êv—{¼·ž’','Fƒd×ÆføúdÉå0Jq~Ó—Ù,ëhª‹L]Y','',0,'?'),('Ýä–•£ÆÚHÌCã','wp-content/plugins/foobox-image-lightbox/freemius/includes/class-fs-plugin-updater.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¬=“T0ßó¨Z™“7','–ÄŽŸkÝÛz%ÉMéÛ@|ÚÁìˆ·ãs^•\"º‰Jr','',0,'?'),('6–ŠTjð»Š—R&H¨','wp-content/plugins/foobox-image-lightbox/freemius/includes/class-fs-security.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\"œõ‰Ia*Ä ˆg{¦,›—','õß‘mDn[+AÒ 4Â,®×”ÖË²‡P¡¾©Á','',0,'?'),('ò\\ ‚Ÿ¸¦ÄÉ¦n\r','wp-content/plugins/foobox-image-lightbox/freemius/includes/customizer/class-fs-customizer-support-section.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ñ„UuQr’fÐþj¼í','2þ²ðUàùÇ\'¯ÁQvu*wû^•3óÐtô(÷•Üßµ','',0,'?'),('õkéX8ª0Å˜lZßŸÆ','wp-content/plugins/foobox-image-lightbox/freemius/includes/customizer/class-fs-customizer-upsell-control.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','e€Z‚0=mlœ\\›v\\ŒQ}','’ZŠcqûG4ˆ\\!=2ëãR ’É\"š«!O[','',0,'?'),('%<ý|¾Úf<	…BGÑ.2','wp-content/plugins/foobox-image-lightbox/freemius/includes/customizer/index.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','wt–ÏT£[£gÓî…¹&','€*yÂˆ™v\rJPˆ-:ÈT„@«­¼—\nÑó8Õ$0Â','',0,'?'),('£Ú‡ÇSu*#tg®ÐJoP','wp-content/plugins/foobox-image-lightbox/freemius/includes/debug/class-fs-debug-bar-panel.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','0ÚªM¬ºmÕ³§(põ|','‚7¥·ú\r0PéæßÙ\\	Aaâ ð$êm¡¨môßð','',0,'?'),('FTX”šÄLV‰ÿ…Žêr*','wp-content/plugins/foobox-image-lightbox/freemius/includes/debug/debug-bar-start.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','þúW ‚·‚ƒý\'Ä›½õVt','\Z‡!ÓwÌƒ3[Ör2±žÕ&&\\ªoÀdl;','',0,'?'),('<>bÓ«ÛIX¥ý­hŒ','wp-content/plugins/foobox-image-lightbox/freemius/includes/debug/index.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','=à¤¸»â“tÚëÙgE7â','€*yÂˆ™v\rJPˆ-:ÈT„@«­¼—\nÑó8Õ$0Â','',0,'?'),('Å¶¿ÒV¼J’âlMj0‘Ý','wp-content/plugins/foobox-image-lightbox/freemius/includes/entities/class-fs-affiliate-terms.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','5g‡ÒŸ •ØÔ’Uïm-','[ißXÖQ,™naæÂ*×néöf Â¢n\0Ê6ê|','',0,'?'),('QÉ›÷®jòºME‘áX„','wp-content/plugins/foobox-image-lightbox/freemius/includes/entities/class-fs-affiliate.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','X»&a0i¹uÇFXõV','´|¯e7NÊ•ùQ;w¾w™ ©%öíš•ï','',0,'?'),('º6¦i ]~È@Þ»‚','wp-content/plugins/foobox-image-lightbox/freemius/includes/entities/class-fs-billing.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','cÉáDÔ»¸\'ÃäätŒÈÑ','XÃ{Öì5ì>ÆTˆ*áy/*ôqÅªðØb_­njZ','',0,'?'),('!ˆ™ÖþJÍ8°yãsNm','wp-content/plugins/foobox-image-lightbox/freemius/includes/entities/class-fs-entity.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Žy´Gä©3¥K,ætn','›-Û?fÁ“RÿµÂ`\rs÷B‡ó­hsõÍ‘ß¸5','',0,'?'),('¶å9%Ø\'_™8ZéïÝˆgp','wp-content/plugins/foobox-image-lightbox/freemius/includes/entities/class-fs-payment.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','·ùc;M6ÇñåptÎ\0Óö','ÑD,+‰jª®ŽMð2KZ@\n›[¹mM«x˜Þ¢¿','',0,'?'),('EØîöI¿Cêï	DSuY','wp-content/plugins/foobox-image-lightbox/freemius/includes/entities/class-fs-plugin-info.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','A”µµÀ¯VÓ¥ÙµÜÑ¹i','PCü*ZL@ñD!}»Úþ¹&ñ{¹8D§wcH·:Ò','',0,'?'),('¯ön!N:‰íè\0VRpB','wp-content/plugins/foobox-image-lightbox/freemius/includes/entities/class-fs-plugin-license.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',';xÙ¶ï\r?&«Ñ¤7»r ','„wW6âäƒZ\"#IÿòÄ–\'Ä‘À7·0”@×%','',0,'?'),('Ÿt®³3aØïD9	 ','wp-content/plugins/foobox-image-lightbox/freemius/includes/entities/class-fs-plugin-plan.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\'ScÒPOHÒôð=Èb‘','¯\\ÁjÏÂâåW{ð®×5âd”ËWJy¬[‰%z\rç›','',0,'?'),('¶ó-/ë3-Õ4•‰6n?ßQ','wp-content/plugins/foobox-image-lightbox/freemius/includes/entities/class-fs-plugin-tag.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¹Ï3ŸçªBb¸ÕSÈZÜ','úÈù\0‚hÌÝÍféùO½‘zC\'Þ\"\nf8^\0ÿ4#ÝìJP','',0,'?'),('ð>-ÁæHîvöãÇlñL\0','wp-content/plugins/foobox-image-lightbox/freemius/includes/entities/class-fs-plugin.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','öK†à Äªd½Ç=K','@CkÃNé€cçØ‰/@´ln¢ƒ9’Š³Cí¹ÛÌrÐæ','',0,'?'),('ŸƒûO(çúO22™@','wp-content/plugins/foobox-image-lightbox/freemius/includes/entities/class-fs-pricing.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ºk4’ßî+4<âŠ*ù','‹ófÙÃ]Üü#‰µ Íµ¤%ûèˆêÛê¹¬=ÆØ>”','',0,'?'),('+Œ›bPÿÚoÕCU³Zð','wp-content/plugins/foobox-image-lightbox/freemius/includes/entities/class-fs-scope-entity.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\nÍ}£ï“ºªô:Ke˜ÃØ','©ÌÌ$ãmÁé×ºK-PÐ|žs\0¡»½X2ßÀº²','',0,'?'),(',«óö&æ¤7æÍ:TZú','wp-content/plugins/foobox-image-lightbox/freemius/includes/entities/class-fs-site.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ßu›Ýx£Ï‡Àn2ÔlÂµ','<ÙÒ<nÛ!Á%\ZTŽv¾Ñ \0ë½d£EEÀ5ÀŽ','',0,'?'),('˜¯rè‘M¤òš/ìkÉ‘²','wp-content/plugins/foobox-image-lightbox/freemius/includes/entities/class-fs-subscription.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','/zŽÿáÐkº¯[pg','Än0Ä>Ûÿh¼J&Æ	3hÓÒŒ×»=¤ö','',0,'?'),('b—„Z‚1) Ëzm2p³','wp-content/plugins/foobox-image-lightbox/freemius/includes/entities/class-fs-user.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ö9JÔÑ¸„ˆÖ…ÉZ¿¶&','øKK8({!ÇaÞ\r„ûéM…í.z:w\"†k^šð','',0,'?'),('Ÿÿ…ÕÔ½ÿ*åø^Îj¦áÇ','wp-content/plugins/foobox-image-lightbox/freemius/includes/entities/index.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','=à¤¸»â“tÚëÙgE7â','€*yÂˆ™v\rJPˆ-:ÈT„@«­¼—\nÑó8Õ$0Â','',0,'?'),('êž¡ÝÆNÙƒ½HdÅ§5','wp-content/plugins/foobox-image-lightbox/freemius/includes/fs-core-functions.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','‚2]VÀO.Z|§…þbî8',',§ˆñR	¹-{­ò[È²ŠzÌÒ9½¾¶¦M³q€','',0,'?'),('õïHgôÀ„âÒáÂVHeÏ','wp-content/plugins/foobox-image-lightbox/freemius/includes/fs-essential-functions.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','wJØØôvåæ‡c)dçøù','Fð¯¬Òç«¬É^öèªÓ«±¶þ/ºŒ642¯›¸Y','',0,'?'),('xm|˜Ï¦ïÅJgÃv‚','wp-content/plugins/foobox-image-lightbox/freemius/includes/fs-plugin-info-dialog.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','FpíW§®#°‚í[0×Ïõ','6…„…ó€â§ïSý§ùv¾¤\r£fI’˜?Ã÷n.','',0,'?'),('oÇ,!3Ú?,nÓÐ£?g','wp-content/plugins/foobox-image-lightbox/freemius/includes/i18n.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ñ–”pßó«:ò&ÈsÐU','¡õZ½xÒË¿›.·YRdj%ð ½­»ÆÍ*ƒ_PW','',0,'?'),('P‹´@euJRÍKêÝ>U®©','wp-content/plugins/foobox-image-lightbox/freemius/includes/index.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','=à¤¸»â“tÚëÙgE7â','€*yÂˆ™v\rJPˆ-:ÈT„@«­¼—\nÑó8Õ$0Â','',0,'?'),('$dÜ[?>·Æp¡!»‚»§','wp-content/plugins/foobox-image-lightbox/freemius/includes/l10n.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÆjÍÝ,øÚý!Àq|Á{u','ý |”LÛJ„V™Š¶°>®#oÕ@Õ’Au5ò','',0,'?'),('‚€¬?ž`¸>¾Ü$YÜëy‘','wp-content/plugins/foobox-image-lightbox/freemius/includes/managers/class-fs-admin-menu-manager.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','M;y·³êF”z?AAŠ€Š','lÞ ƒü­€—9¬ƒLÈò-(Ù¢%d:ƒÊÿiI(Ð','',0,'?'),('7•ŠëšP??÷˜Î!›4ž','wp-content/plugins/foobox-image-lightbox/freemius/includes/managers/class-fs-admin-notice-manager.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','á­pûF’(=F K„Õo','U$¶|J42Y\\ÿW“¸VB§‡Ì-£DdIÂ¾6N','',0,'?'),('_ËŒi4§n· DzäŒ','wp-content/plugins/foobox-image-lightbox/freemius/includes/managers/class-fs-cache-manager.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Óº¢– œ öîÓ-','2ÉŒJ,O*RªÍi*àK¸³ˆÁVN×iÏ…êvI','',0,'?'),('°â,°]Ë>Nç´ÌuK»','wp-content/plugins/foobox-image-lightbox/freemius/includes/managers/class-fs-key-value-storage.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','”ß9er©À\0½ú€äÙÈ','Ð´eÖä[}²ÑÐ‹y—½õzÄÕ‘€49Cç{K¯¬u','',0,'?'),('£Äw\nZ[3×ï š8‡&8','wp-content/plugins/foobox-image-lightbox/freemius/includes/managers/class-fs-license-manager.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¨/<ÊÈ’çnžüx[\nF!8','Ø£\nw<<Ç‹NJ]ßæ\06…às«Òg‡(ëî¦“F¯','',0,'?'),('†sÃ&þ2ÎÂ>yo¯h6','wp-content/plugins/foobox-image-lightbox/freemius/includes/managers/class-fs-option-manager.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¨\n’­w¼~w7…Þ~ÿT°ë','Å—þd®\n<I…ñû·’ˆœ-9ÒœíÙz&ðYæ›','',0,'?'),('î¬Ñ\n¹fUP\\éíÎx7','wp-content/plugins/foobox-image-lightbox/freemius/includes/managers/class-fs-plan-manager.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ž›ÓSÕ;CÿS*ƒø‰','okvYÄq7¶ ¾MýÇ^¸·–âÉ6[P^Êç¥§','',0,'?'),('6i‡´Ûò¯¶©l}W1¯à','wp-content/plugins/foobox-image-lightbox/freemius/includes/managers/class-fs-plugin-manager.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','fÞûwÑîãEÎê\n}\Zs','…pÑx|”\rQ\r;¥2/ãE^Q.€í1­ä÷©H°„É','',0,'?'),('ì*’Í¡âó_û¬5™w/¹','wp-content/plugins/foobox-image-lightbox/freemius/includes/managers/index.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','=à¤¸»â“tÚëÙgE7â','€*yÂˆ™v\rJPˆ-:ÈT„@«­¼—\nÑó8Õ$0Â','',0,'?'),('à¬Ç DÓØ¹ÔK}%@‚Ø','wp-content/plugins/foobox-image-lightbox/freemius/includes/sdk/Exceptions/ArgumentNotExistException.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','&à]Ò±ª\0Æ€%%ö\ZªÃ—','i@­»¢sÀŒî‡šð Ô¥\\¶wÿŒ\nvÁBÄÇŸ','',0,'?'),('‘L.ói«rù;s¨ÇË’','wp-content/plugins/foobox-image-lightbox/freemius/includes/sdk/Exceptions/EmptyArgumentException.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ágÛŠø²Ù{¯]\"·','áJpÁœnÁx¥¥ÌD\\ìP_…ð«~A¬ñ}ÑÆ','',0,'?'),('h„ð&ÃÜ	ÄAþ;]ç','wp-content/plugins/foobox-image-lightbox/freemius/includes/sdk/Exceptions/Exception.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','+y˜þE”ž1(ýEv\03','*¼d¤íL§.dòEìmiËû–\\qnó?)«‚Ú^Ð','',0,'?'),('è ­“Ó˜£å“Ð,ro§÷','wp-content/plugins/foobox-image-lightbox/freemius/includes/sdk/Exceptions/InvalidArgumentException.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','	Ã ¦\r‰{•¬ÄK¬Ë{','g¬††3E.ÂG`dÁüÙ¶\Z	uR£4þ59Ç xÖ','',0,'?'),('‚_Á+¶©äÐâ.ÁÛ','wp-content/plugins/foobox-image-lightbox/freemius/includes/sdk/Exceptions/OAuthException.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','·{=ú]¨+\n›p»x¾®f','cpºýÍþ;,ÛM3¬ü–f©\'¬¤Ät„½öªR','',0,'?'),('Gþîõ¤“óÊRñ','wp-content/plugins/foobox-image-lightbox/freemius/includes/sdk/Exceptions/index.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','=à¤¸»â“tÚëÙgE7â','€*yÂˆ™v\rJPˆ-:ÈT„@«­¼—\nÑó8Õ$0Â','',0,'?'),('%>[‹ü~ÅæÏŒ|’‰','wp-content/plugins/foobox-image-lightbox/freemius/includes/sdk/FreemiusBase.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','pámÔpè\ng\0Òƒ|ùD','Š\'Až¹l™þ)Š•ÿ–Ó™|¬ªì«·³ôï»||P','',0,'?'),('£uÜZ¶øÔ´zò˜VÜF€','wp-content/plugins/foobox-image-lightbox/freemius/includes/sdk/FreemiusWordPress.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','©ÑƒY=·±W€	k~ßN',' žÊ¨Å\r#¨—…åf7¼¥ÐY¨iEë8g´“Onõ','',0,'?'),('‚ÄFƒHóœñ=Ç?5¯€','wp-content/plugins/foobox-image-lightbox/freemius/includes/sdk/LICENSE.txt',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','‚dS\\Nœl3V5Äj€\"','X;Ö1MrìG{– »\\yãÙ%1Î`ÕÔak§˜[‹„','',0,'?'),('<ã>—ED:æ±bÆ¥)0i','wp-content/plugins/foobox-image-lightbox/freemius/includes/sdk/index.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','=à¤¸»â“tÚëÙgE7â','€*yÂˆ™v\rJPˆ-:ÈT„@«­¼—\nÑó8Õ$0Â','',0,'?'),('ë³ø‚NÇ2ÎACã¥Æ','wp-content/plugins/foobox-image-lightbox/freemius/includes/supplements/fs-essential-functions-1.1.7.1.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¡ëôTXò7óÁï/vJ','+RÚ\rýguºãë†šÂ:ØfÚ»kð¶y+x\Z','',0,'?'),('gjÇýë¼J~“Õ£9 çä','wp-content/plugins/foobox-image-lightbox/freemius/includes/supplements/index.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','=à¤¸»â“tÚëÙgE7â','€*yÂˆ™v\rJPˆ-:ÈT„@«­¼—\nÑó8Õ$0Â','',0,'?'),('üœ­’­Ì«r²¶øK55','wp-content/plugins/foobox-image-lightbox/freemius/index.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','=à¤¸»â“tÚëÙgE7â','€*yÂˆ™v\rJPˆ-:ÈT„@«­¼—\nÑó8Õ$0Â','',0,'?'),('®ý¦¹ÿ›o>+ƒw!k ','wp-content/plugins/foobox-image-lightbox/freemius/languages/freemius-da_DK.mo',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','FÖùâ\"^Õ…Ùü!>¥È','ÏÊªô1	v™¶Àÿ%:¥\"9[¼­)5åÍÐT%&î','',0,'?'),('ƒ«Ý)=KèØnC]s','wp-content/plugins/foobox-image-lightbox/freemius/languages/freemius-da_DK.po',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ù\0F\n9(HìÚÖmìXiW','gm3Y»~€!0ö¨ ß·ô‘ôŠáßQÖ™d','',0,'?'),('ðqr¡J5ÎT‘ãÚ','wp-content/plugins/foobox-image-lightbox/freemius/languages/freemius-en.mo',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','…¾ñq–éŽ{w|IÝ,8','Ä®œs’òƒº*ÍøjâX§·P_u¯ÞÏ•YüŠw†','',0,'?'),('ƒÅ1;½`ýz‡õC\'','wp-content/plugins/foobox-image-lightbox/freemius/languages/freemius-en.po',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','A×§!]$©@§¥Œ­.C£',']Þ{êìS[´ßÌy„…9HÈÝ|sùz4ÊÛÍtG','',0,'?'),('÷ÇÔø™² ¼oÏ5eë','wp-content/plugins/foobox-image-lightbox/freemius/languages/freemius-es_ES.mo',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','y™øËbX¨ž&­.ï±','‰–8M˜a=\0âDŒÏÔê­±‚fèbö*Ò{àI','',0,'?'),('É[B8ÿ©×†ÖØ€·‘^º','wp-content/plugins/foobox-image-lightbox/freemius/languages/freemius-es_ES.po',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','WEº~œÜûvj\Zf	¶ŠÌ','âa`L(þÜŒ=)ÛÇÑžB…è4—	ŒÒ]í;X¤Èa','',0,'?'),('Ý2*8¢Gi„¼”Ÿ×†Õ(¦','wp-content/plugins/foobox-image-lightbox/freemius/languages/freemius-he_IL.mo',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','»]ð€WÞï1éIÚ’ôã','«˜$s„9(1\'µb¾íLË’lWRs›ªj‹¦½žUŒ','',0,'?'),('”ÐqÒâ¥R´««8˜ep','wp-content/plugins/foobox-image-lightbox/freemius/languages/freemius-he_IL.po',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','OÑ	6ŠŠ0ŽP²*û Â','j/§0Ò^žßèwbåø½Ö7åïgntA¦•©GÙ3','',0,'?'),(')”b´\rÅfë»*àdNƒ…','wp-content/plugins/foobox-image-lightbox/freemius/languages/freemius-it_IT.mo',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','³Û‰í‰ìÑD&zÙÚG°','·Yñ¶\Z’¼m‚þ‘ºûXÝ«}s—èª!íÔÎà¦È','',0,'?'),('ôál\\h‰R`;ÚÏIMÇÐù','wp-content/plugins/foobox-image-lightbox/freemius/languages/freemius-it_IT.po',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','i¶K`îÄÕµ–÷:å','xÚº™Ï)0w.@ã´š§¤!ãÏˆÛHÜGPªûIÓ4','',0,'?'),('Þ?+„^l[zM\"¼p)‘š','wp-content/plugins/foobox-image-lightbox/freemius/languages/freemius-ja_JP.mo',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','–nEõ‰n…QwÇtSÔÏ','â0U¤X[ï²n¾„Ôñ+géc)¸i.½sÎ‰žq…','',0,'?'),('¸‰ZåŠ„Ö[¿{¯\\ª±','wp-content/plugins/foobox-image-lightbox/freemius/languages/freemius-ja_JP.po',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Vm¿›LÉ`¹ÐrtBØ¾ý','ªtëRDg=³»BûÞ< iÞ´î½V!AËó','',0,'?'),('Fq;‡¦áˆu\'	vè','wp-content/plugins/foobox-image-lightbox/freemius/languages/freemius.pot',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ŸI·!ß–ŸG9ëdvˆ9µÚ',' M·™B¸›G\\z¢~“¿bQò«_u×@QÅÝåR','',0,'?'),('ÖE{dS«‡¤(´ÿeY','wp-content/plugins/foobox-image-lightbox/freemius/languages/index.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','=à¤¸»â“tÚëÙgE7â','€*yÂˆ™v\rJPˆ-:ÈT„@«­¼—\nÑó8Õ$0Â','',0,'?'),('ÌV…ÜÌwË@Ÿ/M1','wp-content/plugins/foobox-image-lightbox/freemius/package.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','q,ûähÁILEó€á\rJ·','Ë¼ÉÜ“¥ÞYùìÈÕMýÐa©BCÞ\"oÓTg7jç,','',0,'?'),('rÊ.ÛºamŠØÜØÅ9œî','wp-content/plugins/foobox-image-lightbox/freemius/require.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ë3¾Üo`l)\"ž‚×zö{˜','ôKž®å€VómBÆA£HÙðOg©ÝæÝûSªŠQÌä','',0,'?'),('Â^£5\"–·M@$å¤º‰»','wp-content/plugins/foobox-image-lightbox/freemius/start.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¢´&j‹Ý#®iP­ùa!i','jsªJP«9&À!|â‰Oº§Ü<Bû¦úÝ]Ì‰','',0,'?'),('èNAœ}Zehµá’˜¬qk','wp-content/plugins/foobox-image-lightbox/freemius/templates/account/billing.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','g!WÝy3:5Ñ1Õ¢','¬ÿe,iƒ»FÊÂìœ¼ûxâ–ôw¥•tS1ÈZ7üôŽ','',0,'?'),('—6Úl1;NB\nù‹HK)','wp-content/plugins/foobox-image-lightbox/freemius/templates/account/index.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','=à¤¸»â“tÚëÙgE7â','€*yÂˆ™v\rJPˆ-:ÈT„@«­¼—\nÑó8Õ$0Â','',0,'?'),('°g‡;O¬)‹ÔË^','wp-content/plugins/foobox-image-lightbox/freemius/templates/account/payments.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Gx©Ûí¢öhöí–7¨','¶¥…‡¨Æelœ~¢2OO÷\"Ìõ¹ë¸ÙRGÒNIKº','',0,'?'),('ÆÚiP}¬r2ÛˆÓÃ)å','wp-content/plugins/foobox-image-lightbox/freemius/templates/account.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','[TLfug¡Ç\'T>l&','3œ(RäéS¤3™i…ˆëP9)1Ù–¥Mß ni’™','',0,'?'),('&kç¼Q=1|jÎ}fˆP','wp-content/plugins/foobox-image-lightbox/freemius/templates/add-ons.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ý‰¸ù·¼ëAPõº¹¨(d','J°iöÝô³¡\ZÁLEQ@½eÍb\'Þl(Í¢Cá','',0,'?'),('<L›–¯ßkÉÄú.ÿNZ$Ñ','wp-content/plugins/foobox-image-lightbox/freemius/templates/add-trial-to-pricing.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','5Ö·×¨G2Œ¼é”Ér\0','\ZÖµÑñs¬®Zî“Ðl@ˆÇ.ÁT€,Ÿô#“YD','',0,'?'),('»€¸{ÉõK°|\nk¯¦E–','wp-content/plugins/foobox-image-lightbox/freemius/templates/admin-notice.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','xLyƒŸAeGoD\"t¾‰','>cÌ²4èÕµŠCDïxWØ©ÝrA|;(\nŽßóÚt2ƒ','',0,'?'),('°b’žgl_4ÆŠºƒ%n','wp-content/plugins/foobox-image-lightbox/freemius/templates/ajax-loader.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','1•¼¼‹…¸ˆ×+oß.','s¸\'wÝzŸâ^©\Z¡½¹´ZÕà°×_çë×Ž®£6ýÁ×','',0,'?'),('¼“š7‹á# RÑÛ~“ÿ','wp-content/plugins/foobox-image-lightbox/freemius/templates/all-admin-notice.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','r\r‹»³±ÃÏŒÛ®^ø¶Ö',']F]}jÐISÖ0poW–!”pv\nhïŸãW‡k','',0,'?'),('P¾7&¬è£Ø±Gjz¡\n','wp-content/plugins/foobox-image-lightbox/freemius/templates/auto-installation.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ýãÍÚ¶•Ul?\0¥+ÄÓ;è','Wµ3¼¿¡q\\ó6Œ¢¸Ó™6K’Ô„ÀúL¿`­Š','',0,'?'),('ÝŽÿ­e¢âf83b¡-4Œ','wp-content/plugins/foobox-image-lightbox/freemius/templates/checkout-legacy.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','o$ÝØxdŒÍ¨˜c4Ò','8>Þ‘àñ«*lÑ@çìÊÄ&Øß˜]jº6™—+Ê','',0,'?'),('ˆ2‘¸hšÝŒÝ/T*»ÒÇ','wp-content/plugins/foobox-image-lightbox/freemius/templates/checkout.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','+Y‹ÔlïÛ}<1GÅÅö','pfâü²Ú,LCˆLs/*h†„¨ðoÂG,ê','',0,'?'),('Š“Ý;²ö¼üJ¤“!ÔÌ','wp-content/plugins/foobox-image-lightbox/freemius/templates/connect.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','|ï~çDÌ/6,Ê}*¦','w,cÅäÉh§djê#‰ÝöŽ›yYM¢qßGKˆE­','',0,'?'),('xõÈ+ª˜Á9b…¢Áè$¹é','wp-content/plugins/foobox-image-lightbox/freemius/templates/contact.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','õôžDüå‚Óh åçùÞ0 ','¦H¢âÔîÊC¹¡r+•:	ãˆFZ±%Ë1ß°°','',0,'?'),('A0yA“Bp\\ûh!þpn˜©','wp-content/plugins/foobox-image-lightbox/freemius/templates/debug/api-calls.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ü$žÿ> QjÞ)Zƒ',':ÝÎý&GVÍùÖïÕüƒ‡#­Ÿ_Á°¼Ê§ni','',0,'?'),('2Í0µÈ|–‡¡˜ó˜','wp-content/plugins/foobox-image-lightbox/freemius/templates/debug/index.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','=à¤¸»â“tÚëÙgE7â','€*yÂˆ™v\rJPˆ-:ÈT„@«­¼—\nÑó8Õ$0Â','',0,'?'),('Êã¶‚£7xÊHçK¹Q5J','wp-content/plugins/foobox-image-lightbox/freemius/templates/debug/logger.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','–|\\É4&É‡8\rWqâ','ÚÝ£ì	]ï/º/›ÎÄ\ZŠ]ô¸6ý; r1¨—ö‘>','',0,'?'),('6¡°‘=H)â)ÝÚƒ:xI','wp-content/plugins/foobox-image-lightbox/freemius/templates/debug/plugins-themes-sync.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¹	3›¸”¨ßé\\È,','êö¶ç¯r(,]ƒ12Ærè ¿Á3`²¹ã‚j›','',0,'?'),('Šèég-œ‘$á^êT†H','wp-content/plugins/foobox-image-lightbox/freemius/templates/debug/scheduled-crons.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','>Ç·³wÏyš´b]T8Ìo','dK÷êöÁA\\á\ZËp;H ÕýüHð	õªH²ƒ Øï™','',0,'?'),('ôÈ‰§…‹ƒÓ‘\'¨™iô\"','wp-content/plugins/foobox-image-lightbox/freemius/templates/debug.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','›þÌíZŽøÏúf·','!\"\"±á‘p3×\nØƒá[+“¨&ÓU@›~“','',0,'?'),('ÒÝS~Xy‚Ök7HI¨»','wp-content/plugins/foobox-image-lightbox/freemius/templates/email.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','îÐ{³7éþq–ðçÝÕB&˜','mJ†ÐfP1(oªîïš„†43‚¼)\n5¼ÌÎ²©ü','',0,'?'),('Õ\'U„&8á”Žå§Þa','wp-content/plugins/foobox-image-lightbox/freemius/templates/firewall-issues-js.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','`µ`ªÃŽŒßºp¼ÊÖ','–tr¡+vZz¥EþižïpÔdàýo¬lz5-û½¥l','',0,'?'),('€^ÉVÚdì»úSê/Càö‘','wp-content/plugins/foobox-image-lightbox/freemius/templates/forms/affiliation.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','=º3|ÛE*’µEè	 c[','á•.¿ÒÏhZ‘$Ö\ZÜÛ+QÈóøÓ\n²‘[gÖQK•Ë','',0,'?'),('‰ÔÂ\\Þ;R1”Äø›3Y#','wp-content/plugins/foobox-image-lightbox/freemius/templates/forms/deactivation/contact.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','$íž[ã™µ×Îƒêa±','—Ë… +¬U†s½¹Šž	ü;=l“sô','',0,'?'),('ƒ3“<ÞuQÜgz<ˆ-S','wp-content/plugins/foobox-image-lightbox/freemius/templates/forms/deactivation/form.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','nçëoS¦²e¶ž´8L','øå\\¡^§òÖzÌ7ðžyÄW‡\ZUC)Ä$”œ6‡P¶','',0,'?'),('øç±p§‡HJ½îøÖ','wp-content/plugins/foobox-image-lightbox/freemius/templates/forms/deactivation/index.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','=à¤¸»â“tÚëÙgE7â','€*yÂˆ™v\rJPˆ-:ÈT„@«­¼—\nÑó8Õ$0Â','',0,'?'),('ðÔiãø`AÏ+p2Ÿ','wp-content/plugins/foobox-image-lightbox/freemius/templates/forms/deactivation/retry-skip.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','{cÐJ5n<ò3nm,Þ1','6Ï›¯Ug oÆæ„bzO*6K³¯QxPœ#¥¼øÎ','',0,'?'),('‚BD›],>ÑÏ{ÁHX','wp-content/plugins/foobox-image-lightbox/freemius/templates/forms/index.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','=à¤¸»â“tÚëÙgE7â','€*yÂˆ™v\rJPˆ-:ÈT„@«­¼—\nÑó8Õ$0Â','',0,'?'),('´ÁËÖÿ ÿ¥¡5ÙT','wp-content/plugins/foobox-image-lightbox/freemius/templates/forms/license-activation.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÏH§FÓY\ZÚ\'»LŽq±T€','^Ð>þÕÝTŸ—êJHH¶Û6¼ŽÇ¶3<Å. ¤%','',0,'?'),('ÒÕ^r&ñl}‘','wp-content/plugins/foobox-image-lightbox/freemius/templates/forms/optout.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Çy×+„FÎ¦ƒçÎ×2¸','J¶Ëåh1;­åFCn$s‡ûúöAæ\\\\\0P¦ü','',0,'?'),('Rí²ÒèÂrVÄ\nCg\r','wp-content/plugins/foobox-image-lightbox/freemius/templates/forms/resend-key.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','.’ÁÝiÙ˜ÞjPÙ¦x','\\)¶$ÿcož_\Z<L	¬Ø”7ã\\nÛN*Š‹Râ','',0,'?'),('¦enL™I[ÖøüûžÝ&','wp-content/plugins/foobox-image-lightbox/freemius/templates/forms/trial-start.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¥0²mY“ºþ:þºÒÖè¡Ð','Ã÷H±s	R#èø\"T³C\nW[Š­ûØ08Ú.†$\'\Z','',0,'?'),('Ñ}ÈWLíóüV/Á“„ì','wp-content/plugins/foobox-image-lightbox/freemius/templates/index.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','=à¤¸»â“tÚëÙgE7â','€*yÂˆ™v\rJPˆ-:ÈT„@«­¼—\nÑó8Õ$0Â','',0,'?'),('b8÷1ð£&²\n‰ƒî','wp-content/plugins/foobox-image-lightbox/freemius/templates/js/index.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','=à¤¸»â“tÚëÙgE7â','€*yÂˆ™v\rJPˆ-:ÈT„@«­¼—\nÑó8Õ$0Â','',0,'?'),('¢÷‘þ€|\" ¹ö¢„','wp-content/plugins/foobox-image-lightbox/freemius/templates/js/jquery.content-change.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Q¿¿„l2q óA¤â','K3—bÕŠèîÝ<yT©”TQ·^ìŒd¼©(¿Ã*Ò\0','',0,'?'),('˜To>x³¡»)\0ˆJœÆ[o','wp-content/plugins/foobox-image-lightbox/freemius/templates/js/style-premium-theme.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Y\"ñ#å¯ñ_É·Ÿ£°¤','gF\nÖà¸âx(2¡ZÍÇdùâ°,RÁ…OT\"˜6€`é','',0,'?'),('Œq£6\rÍÓôn7ùŸÚƒ£','wp-content/plugins/foobox-image-lightbox/freemius/templates/plugin-icon.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','mÃR$£xúOÐ#Këó¦f','äùÔ)ùFòþ›gêTA1æØöèzœ¢®Ídøz|2b…','',0,'?'),('ÆÕÕ$.T&/¡\Z£Þ	!î','wp-content/plugins/foobox-image-lightbox/freemius/templates/plugin-info/description.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','˜æSnŠ3Ço\n2F_ç¥ËÅ','J)³S>Ôüœ	¹8´u#ršA‰‰Ì!Eîðìúô','',0,'?'),('”\"]%°½eyúH(','wp-content/plugins/foobox-image-lightbox/freemius/templates/plugin-info/features.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','LƒÏDFQ»ÐÂ‘Jd‚Â','Só\"†¡\00æÊt`q.*d1Pº¤;ZÙcü€à¿.9','',0,'?'),('‚Ø-ûºÂ…^L¦¡I<`','wp-content/plugins/foobox-image-lightbox/freemius/templates/plugin-info/index.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','=à¤¸»â“tÚëÙgE7â','€*yÂˆ™v\rJPˆ-:ÈT„@«­¼—\nÑó8Õ$0Â','',0,'?'),('„^ýqMñúqüâiÀ','wp-content/plugins/foobox-image-lightbox/freemius/templates/plugin-info/screenshots.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ßŠ¦Y•kr°“rß”Zö','®ñÉ¹SËòù@¿üÝÁ	M†H<*…7–F,\Z','',0,'?'),('Rî‡gÝN¦knQ‚êé','wp-content/plugins/foobox-image-lightbox/freemius/templates/powered-by.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¾ˆ5ýù«ñB§êkß×','‚üd¡µÅ!#ä*\ZÿYL\rkwËjïÃåˆ=Që&ÿ¿','',0,'?'),('˜(,fetãóÆX®','wp-content/plugins/foobox-image-lightbox/freemius/templates/pricing.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','OÐpîs‚äÔŸù’gc','ÙpDÞC_V»U>JHKFåic¦f;©n%WÞÙJ#Òö%î','',0,'?'),('%‹ˆé¤\\äÃøÃìÜ','wp-content/plugins/foobox-image-lightbox/freemius/templates/secure-https-header.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','i×ƒÓ%Rè™‡?N#ýl\r','þEÜr\"¯OÚ¦Ÿ¶f˜ûû¼Îúà}S·{ÉÛçÑÇ','',0,'?'),('GÎh´\0w<…RThÎ3','wp-content/plugins/foobox-image-lightbox/freemius/templates/sticky-admin-notice-js.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','†ZužD.0@¨`‡d0¶ò','äLüwé«?Š½ÐH‘+Àòcæ2nµÂzíÁ8G','',0,'?'),('‡gü5”T\\Òº´¸¸2','wp-content/plugins/foobox-image-lightbox/freemius/templates/tabs-capture-js.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','š	\r”\Z«<\0Œ³€ ','@7ÒÂ1ïÊ¬„Ü§¦A\Z«„{Ü˜yq$¤1s)','',0,'?'),('D7©«O{é$½B­É©','wp-content/plugins/foobox-image-lightbox/freemius/templates/tabs.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','%[\\S¬fxãc-©±5õ4','Š­?:–sB^þ;Ì!ÉGˆ¢g>ÝŽÜà;ÎIÅu','',0,'?'),('cé8€.?Eâ¨1ÃÏÏ','wp-content/plugins/foobox-image-lightbox/includes/actions.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','h5\nI¹Ð’¸Õõu¹M','ie–Yµ…–eÊÑqJ\'K¬ðF—õL$¶VïgV','',0,'?'),('Sc<6ÙK¬qôÇéÆK®M','wp-content/plugins/foobox-image-lightbox/includes/admin/menu.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','_7°£œ?å–©e]Â.ù','’G h¶A‹¤B€DIm›·®>òìÒixˆ+‹','',0,'?'),('ô+³VÅµ˜¬\"~1ŽŸ,','wp-content/plugins/foobox-image-lightbox/includes/admin/view-getting-started.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',']g\ZÓÖ„”Ç	ÃË° ','÷rœïÅ[ÚùonzƒŸ\'†¯ê©vßâ¹Îì9q¢¡hR','',0,'?'),('‘NnÇ5¸N#^tØf`±','wp-content/plugins/foobox-image-lightbox/includes/filters.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¦Û‚%oe30úüÌ','±ÀñâÖ‚Z¤2ó¿}gáû2Ój<«¿kgi(X','',0,'?'),('¤áãûÐR­•ý‰½\\','wp-content/plugins/foobox-image-lightbox/includes/functions.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','KšlÊ…õcMrÒðÈÛ‚','l«è(…}8¶P¤ÇpTñ7ÒHa\Z´xåydâC8Yì„¶˜','',0,'?'),('˜6,Çú3Gô…Ð|…’','wp-content/plugins/foobox-image-lightbox/install.txt',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ïeœ2Ú	ídQˆØè´…ç¬','Nˆ£ABKŒ^¨¥(¡:õ,éÌ)t¿ŒøšÇ5]©iP','',0,'?'),('\n§Éo›#Ðlh4&µ¢JÀ','wp-content/plugins/foobox-image-lightbox/languages/fooboxfree-sr_RS.mo',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','‚ !ÐWQ›Öÿ*´','Þ	èÓŽO\'!½Ìæ¨öB²0aI,Ù={ï>Šˆ<','',0,'?'),('#]Ÿdpg/ýsFîsøÔ','wp-content/plugins/foobox-image-lightbox/languages/fooboxfree-sr_RS.po',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','N‚.\\Ž\rq˜G˜Í¡S9','ê%ÙÃ&Jä^ºÌÏqÓáq	Z$Ø\0pnI¾ê·','',0,'?'),('à6oo.N[Î´«s3nU','wp-content/plugins/foobox-image-lightbox/languages/fooboxfree.mo',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ªýG’¹1\ZÍI°ï†çÝ','ø“2?eD:«Â1aO·(Md•q!YÄC%K¤yÛ','',0,'?'),('<ÝþjÏ#Æ¸(Ý\"ÎwÎ&1','wp-content/plugins/foobox-image-lightbox/languages/fooboxfree.pot',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ƒæûÍ&x7°VkÁ*Š)ºë','Së³˜–ª(“?a‘ëÅ,“>ƒž)”e¡Â§ï—ëýf','',0,'?'),('÷	üÀá=Ï\0ÝsúXüðv','wp-content/plugins/foobox-image-lightbox/license.txt',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','–+H]†:¯½©Zó}z','øÐF}þÕŒø©óO XòõÏíí	#ü«¯#¥','',0,'?'),('Îó0àk¤$íºDg÷‘\'R','wp-content/plugins/foobox-image-lightbox/readme.txt',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','«—é[&ÖtäÆ*B|','æ|Iñü¤²¹\"°)Üz^âå´ 6çœí¨Ç‹dP','',0,'?'),('¬Å=\\æÓ’\'½}¨‡óë ','wp-content/plugins/foogallery/Gruntfile.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ZÀE°â½¼Ú’Ù(Ñº','ê]ÒÚ­?\0w%:]“G`6¯¸\r1ëª:Æ¬PØ\0','',0,'?'),('œò4D%9Ô\'ôow$fñ','wp-content/plugins/foogallery/LICENSE.txt',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',']Íþ%òªT5ê¹Ð%j÷','¼ÿ\0v1£êsÔNí>cIDÙ¦¾Ö„Ié­0ÿ-','',0,'?'),('‚ÅcGf´’®þb|Š‚aÂ','wp-content/plugins/foogallery/README.md',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','lñÄé]Ù?\0ŽB@#Ð','ªc¡ä¹l\ZÜR¡YA=!ŠÑ>òNÒVm¼EÇÎÌ','',0,'?'),('Ô,†”¾:åÂI`98‰ö','wp-content/plugins/foogallery/README.txt',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ìMýôŒ	A#]º½>»£','ZlÃ¤‹“ÖÞAza!6‹¨§/\ZG]U^—ÿÀ','',0,'?'),('’Sü#7×1x0Ž‡1ÜT','wp-content/plugins/foogallery/assets/extension_bg.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','u=›Â\'¤0eV$0ôª¼~','1„\n<u\"¶¸fxÓÓà+â2ÿ}«))û%»£¸R@ã²','',0,'?'),('Û1§÷½íRÇÚ>˜þ¦Îº','wp-content/plugins/foogallery/assets/foobot_small.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÿßÉ1çº“#ÆCí]ÇX','ä2B\"±M ½®äúñÂŽxDêÉ< S\\ŸWö’ël…3ÇK','',0,'?'),('í¿ŠjmW¸3@àÈ°£\\þƒ','wp-content/plugins/foogallery/assets/image-placeholder.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','fõ‚º7¸ðêqÑï™Ö','ž»pP g­«ñom¦?8Ù-”z.æÖIƒ#º\"l¼','',0,'?'),('ðQ!o mWê±”áå','wp-content/plugins/foogallery/assets/logo.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ø’\"ú·Ôyp	° AÏJº','¾îßÈ^‡íQ#\\mü!ìU‰åí¡òíÕûÁy7\\å','',0,'?'),('´ZhtèFŸëãé$Æ!«R','wp-content/plugins/foogallery/assets/screenshots/admin-edit-gallery.jpg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',')å$a»öE`û‹8','^‰¹V2w­¡á–ôa—Õ®5Ö>‰hú0\\Ÿ…È“:Õ«','',0,'?'),('	ÄŒ0«h*4+òÀåôN','wp-content/plugins/foogallery/assets/screenshots/admin-insert-shortcode.jpg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','§V›¡]/] kIÈ¶g','>I(´Š–@b¸n÷NæÒ‘Ì\nÒõ+;·ž‘¡TØÊ','',0,'?'),('ïøxpÍïk˜Îø%¾','wp-content/plugins/foogallery/assets/screenshots/admin-nextgen-import.jpg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','òÔNœù¬9½AÈ ›Ú,s','‘›ƒÃS=âBI÷8‹Š{…èHö’œBÓè¯	ô3®','',0,'?'),('vž“áØOºÌÙBPö²¸','wp-content/plugins/foogallery/changelog.txt',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','L<ýQ5~¢!&ôªò@ß','¥fÀ¢L=ÄœWGTc“!glQ²c–ì\n>Áþ1ÂË«¾','',0,'?'),('#röøÃñ¸Ë>SÍ…îù','wp-content/plugins/foogallery/css/admin-foogallery.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','NäD£…J{ÿ*Ó3®ÆÞß','“8FÂX1êuÑøFUj1–¼¨Àƒ]‚Ï‰:-›”™Xn','',0,'?'),('ëpo¨OãïÝòPûÈÓ','wp-content/plugins/foogallery/css/admin-page-foogallery-extensions.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','0š§‚Ò°—bÀÀÅ¬ôv','8\Z:ŸcQ¢³GÂk¡…Õ;=aJœšÄß6I4ÃÒð','',0,'?'),('oWÃúz\"â MP°~ÑÝ','wp-content/plugins/foogallery/css/admin-page-foogallery-help.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ú¡ºzâªCcÂê“ÒTÈ¼','\\Æ -€½™¡¾8ë©ŒýÈ›|^•«ná¢ã2QÀ','',0,'?'),('QéBò_Ÿ±«Áùðˆ','wp-content/plugins/foogallery/css/admin-page-foogallery-settings.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','1{l {!\\Ö¶Ô-{ ','’SNÒsÉË©küÕô/¼š7VŸé<úî§Ñê>¨','',0,'?'),('xŸ‡6x«Ø’Lž`Ë¼K@','wp-content/plugins/foogallery/css/admin-tinymce.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','~”i¤¿ô;}ÕàL<Ê','P¾\nÝÈGÒ/ºbbÎ3ˆ–Whúq%ªv9–àåSÕLÆ','',0,'?'),('ã<°P™œ¬õ{úXñ é','wp-content/plugins/foogallery/css/foogallery-foovideo-overrides.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¦\0Ñ>·×71Î@à©¡	','5§\'‚+þ1ó«•Ü8h¼Q×œB\ZlÔb©I_n','',0,'?'),('ùŠC‹ä.C:þ‰Ì4‰','wp-content/plugins/foogallery/css/foogallery.admin.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ùm@öt—rß˜|·1!c\r','ðÉ\"‚ëk\Z¬ûÃ€‹g\n½ÞÐvŽö¯»xc9ào(','',0,'?'),('~´ÞÂë^L)\ZØjæŽâ','wp-content/plugins/foogallery/extensions/albums/admin/class-columns.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','d”L?÷x²¥7ä—0Ê','–%Ð-Á¶‚Êcúâ­t–¹	ÔÏ¡m?ã©k‘Œù','',0,'?'),('f`³W|ZGâ2+x£ƒ','wp-content/plugins/foogallery/extensions/albums/admin/class-metaboxes.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','‰ªÈwÙ\'2ã:#ƒOS±à','âû)Õ¿6€¸êV4NWÙJnÇaááž<®êÂ-Ñú…S','',0,'?'),('íŒÆœ›m°‹e¾ù¸!ý','wp-content/plugins/foogallery/extensions/albums/admin/index.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ïá{J!u?}îçs•','AuÌƒµœÄ`ü9‰7}bŽ>MHêÃíJHhåûÎ|Fj','',0,'?'),('þ¦8)^û¹CÎÃn','wp-content/plugins/foogallery/extensions/albums/album-default.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ßmHü\n9‘ôÍ@&ßú#','2ñ~«,ý;p(¡pÃñ(ÿÉq[n¹•Ö˜V§TŽÝ','',0,'?'),('KAOwe~™ù9¸BœMÍ','wp-content/plugins/foogallery/extensions/albums/album-stack.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','fkÕ–Sä.æÏ–˜>Øyæª','s&¥T0½ëdçI0°Å2Ð¡K³¤6mi£1RY','',0,'?'),(' 	~ñÈÞå`\'¼ZÁ³','wp-content/plugins/foogallery/extensions/albums/class-albums-extension.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ià(=²mÑ‚i÷œeï','¾œi½1¡p¼ç—§’£ó^¨ï>«¬a¿§ôÏñU','',0,'?'),('îI[’q|QUl0Ò\\Æ','wp-content/plugins/foogallery/extensions/albums/class-foogallery-album.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Äºõõwï HcF“è’F;','TöT\n-Ž}”1ð}Ü1KÒK>ÐRüEùåv«º»','',0,'?'),('CÁÜ(64¶Œ(íx1¶ª–','wp-content/plugins/foogallery/extensions/albums/class-posttypes.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',' Eûb¥tƒoRA!','÷äÿ—ÞãˆEÑÏ±[ÝW>þñÉWØDòYËxŒþ…£v','',0,'?'),('bòz¼\"—A¿û(Å˜ZJç','wp-content/plugins/foogallery/extensions/albums/css/admin-foogallery-album.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ìiúð’`ä?¢ÏÄBg','‡øî˜X>K)¦K¦òªµÃÓ3Š—˜Ÿ6©Žq®¥Õ','',0,'?'),('³uoœ’Ìh9<¥ÕF‹8','wp-content/plugins/foogallery/extensions/albums/css/album-default.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ž]i#ÃL]”ÊÄ¹ð œ_','r¶éÐc6ØÊ…/è®%×fk¬BçM>éeoEæ€','',0,'?'),('‰»ÿ…l,±Òj„c\0Þ@','wp-content/plugins/foogallery/extensions/albums/css/album-stack.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','i²»DO®Æñ­qÌrPôb','e°ò`n´ÑT;¹ë¨pgÑ%üË¢™O÷€8q&#€a¼','',0,'?'),(' 3P$˜ãY÷jž—­ÛÊu','wp-content/plugins/foogallery/extensions/albums/foogallery-albums.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ì&®½¸gÓªÎþãmg¸','Öån¬m•Û¤cµÕHWµ¨DœCÛIœ\ZÄ¶Y','',0,'?'),('â–€WË?Ú6\\§ºZ','wp-content/plugins/foogallery/extensions/albums/functions.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','å««ò	!ÌÕJÖ‡\r9','¾¢f ÷¼\nZ¤A	@²?ši2/’ò\'SàH','',0,'?'),('\'z)æ4N!BçtÇžØT','wp-content/plugins/foogallery/extensions/albums/js/admin-foogallery-album.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','þ“†ìÈ‘,Éêzž\0','ØöÓŸ¿Z‡úXnjÌ¢uiàåSN‰1c‰9“½Øç«','',0,'?'),(':ö´lžQí+.w”Ò9\nwu','wp-content/plugins/foogallery/extensions/albums/js/album-stack.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','~¯üj*\ZYô…ëÔÔ­','a^\\¦UŸŒVeˆìýmo¯6¡vi@`En²éÓ','',0,'?'),('tº‰Ò\"£Ÿ‡ÅS\"ñþnï ','wp-content/plugins/foogallery/extensions/albums/public/class-foogallery-album-template-loader.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ì¨ëÒf2áGú½’ßþüP','¤>Ãb0†œ€^pB€SÃÂ©cõÈ‡àŠtùMg¾˜','',0,'?'),('Ë‘/,Wó?öù¾Ýj™š','wp-content/plugins/foogallery/extensions/albums/public/class-rewrite-rules.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','çbònÿø®‘9$’M ','XIÿšIUB0Ê-WÕ<X·ÛrõwA\"~K;o“6	','',0,'?'),('eX#[/ToÃçç\"ãÈîNî','wp-content/plugins/foogallery/extensions/albums/public/class-shortcodes.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','”7^uVªìYNÂ­û<z®','c[&½ZEçùß´.cÛ}ßÃ V+ZÖ·^¤ÕvsŠ }','',0,'?'),('ã=ê™Mû[Þèš	üå0¾','wp-content/plugins/foogallery/extensions/default-templates/class-default-templates-extension.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ä\n\0B­l2ÞÎÞ»	','RAI<¡n¼ƒ!²ñ×êäun.élš]mµš','',0,'?'),('Ëÿå§l©tai÷','wp-content/plugins/foogallery/extensions/default-templates/class-default-templates.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','puØN9[\08§ÌJíyZ','Oo~¼¸rÁ‰ì¡øÜÀ¼°‹½ˆ+´ìØ¢îÕ’','',0,'?'),('ª˜i5õÉqâp÷ú“m\rM','wp-content/plugins/foogallery/extensions/default-templates/default/class-default-gallery-template.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Êw=SúÊVA»OR’ß(`[','N„©ÕÂß±„dÁ1aGôÐ€ðÝÏÁ® áÊJö•íq','',0,'?'),('Ý\'\'ÕU¨õIô/bÒØ','wp-content/plugins/foogallery/extensions/default-templates/default/gallery-default.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','³¥cÙ)°|u’íªXåú','G¤‹ÐtÖAlß…ìtLK=U~I.h(=†ŸJ`Åf®','',0,'?'),('¶Sæ(¹çTíKÐcB5C÷','wp-content/plugins/foogallery/extensions/default-templates/default/js/admin-gallery-default.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','†»®dÖÓ E^¦bâB','£Ò½\rZýrKð@jžì»ñHëª^oÏGTVÂ›Ó-\r^','',0,'?'),('*KH!ë\nm7ó¯bÂÑ','wp-content/plugins/foogallery/extensions/default-templates/functions.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Z?®3£PØ€Â[\Z˜íìÝ','ì†^¨‘ôYûV«k[Ä¤¡ªk6i±. ]3+Ã','',0,'?'),('ñ×QIÝ”ù·.{Ö”‡`','wp-content/plugins/foogallery/extensions/default-templates/image-viewer/class-image-viewer-gallery-template.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','™&»ë›I-—ç»]\0\Zÿ1','~”zG Ó;ãõ¢ãbóÂ¦ñö—ìWzJ¡¶SªW9','',0,'?'),('_¤x±£\'4²ª»\0Žz','wp-content/plugins/foogallery/extensions/default-templates/image-viewer/gallery-image-viewer.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','XËLêù¿õ˜;ÚË†p','ô»Ø\\^bø‹9*zË-âÞJÝFqäš»Ùî¸>2c','',0,'?'),('OqNøÐìG\'Ž÷ƒùã–…','wp-content/plugins/foogallery/extensions/default-templates/image-viewer/js/admin-gallery-image-viewer.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','êù~U)rT&BjªK—Ñ','Ê«ß[š#ÐûËÅïG³Ók‘E{Nów›&A©Õ','',0,'?'),('·§äZdÑ6¯lwq7KR¡´','wp-content/plugins/foogallery/extensions/default-templates/justified/class-justified-gallery-template.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','o¢W¢­Ï»°Å¢…7Ù','>\'/µojhHÕ¸³m®è/‹ÈA8Xý»ëÂÈp\"[','',0,'?'),('4 &a0·\'¯¤0¼”×†à','wp-content/plugins/foogallery/extensions/default-templates/justified/gallery-justified.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ê\072Õ”}aÈ	KðÇ‹','ïÁ²39ða±øvY,¡X]ØjÿèfIU\ZÏÜS/D@§ç\'','',0,'?'),('ž5) ä«Bg®I˜¦0Ÿ','wp-content/plugins/foogallery/extensions/default-templates/masonry/class-masonry-gallery-template.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','9ÏçávHÂÝ‰~K yÂ','”¦ÅP\Z÷B?”±´èÕp Å¬å/±Àø›l','',0,'?'),('ÏÌæb5³dÅÞþf’','wp-content/plugins/foogallery/extensions/default-templates/masonry/gallery-masonry.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','MyY<Òrà8òþVPõ—w','0xÌ:>{}+2/5ÜÇ1Š’ný«#A$\"ÝŒxì±åÙR','',0,'?'),('M¯ÏŸ/msí$Ž?/‡mÿ','wp-content/plugins/foogallery/extensions/default-templates/masonry/js/admin-gallery-masonry.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','þ9vQxˆø’‚ È¢±¹·','ª÷‰e\"hÈ½Äˆ2·Ui;„—S	ƒ«…¦/*ó‡â]«','',0,'?'),('­–Õ™ölŒu$£ÈHþze—','wp-content/plugins/foogallery/extensions/default-templates/shared/css/admin-foogallery.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÐÔ¢oHqh.ÅÎKÅ~øþ:','¿%\"B#AqáÊ<NÖë(Ë!-/w\"ZÏ$´–¾¾€','',0,'?'),('‘Á¹¢<PHc®Šb#Ì¡ÑÒ','wp-content/plugins/foogallery/extensions/default-templates/shared/css/foogallery.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','AmfÃñ™H\Zž À­V',' x5ÝËÿóÄá][[Ë?ôP=t½ýK$±ÿ)Ú[A','',0,'?'),('\nAlb\0©Tô†ì9J°1Ï','wp-content/plugins/foogallery/extensions/default-templates/shared/css/foogallery.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','“k\'˜v:0þ^êœC','YÃ.’òŠûÿË+\"÷«»sÅ!}íÆø~¶^=ê3','',0,'?'),('Ó<ìº4š÷ÈZûý¹ö¡','wp-content/plugins/foogallery/extensions/default-templates/shared/img/circle-plus.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ö~	Wù¸ì8ˆ–†Ç','>Ñ|£/O?¼ƒ+ØS’âh?½J„ó|{Ýzlãd\n<','',0,'?'),('ÆcËK…]ûÈ^Ì¡á','wp-content/plugins/foogallery/extensions/default-templates/shared/img/circle-plus@2x.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','DÿoØŠ1BõcŒ˜ª°±','¹åÝfÞ¬3:V.jX>ýèjúÃw$Ïà}X.œZmGÚ','',0,'?'),('pÂ³6j+±ì©€¬+G.â','wp-content/plugins/foogallery/extensions/default-templates/shared/img/circle-plus@3x.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','‚ ÓYF’mö_mÑ—²ú<','Ým0WŒS ¯Í×œgøçÈa«©´ãDöú‚ØäV+Ü','',0,'?'),('È¢Ãi_\rñnœå’·Œïa','wp-content/plugins/foogallery/extensions/default-templates/shared/img/external.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','&ÉÅT¼ì*…WCØ+qT','v´´ý˜2¤´Aä¯o–êâ«Ò*5HG„¤OŒïàµÌf','',0,'?'),('ÞàœÏ!¼G ÷åÜg\\Ð«','wp-content/plugins/foogallery/extensions/default-templates/shared/img/external@2x.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','9~ˆ‡U˜‚…òïéB\'¥3S','˜TÒ”èmöz­ÌÂÓW8ÅsÙEùåT¬¸„evfY','',0,'?'),('n¿^ÔTejÇLþÔb†œ.','wp-content/plugins/foogallery/extensions/default-templates/shared/img/external@3x.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¶’0ç—2¡uKp}\Zå','Äd´ªÙ½iz$Hs\0Õ\n¶½\\QWšzmU«­¬','',0,'?'),('2¾ÁÐ>Ã>HW¬9¼ã³','wp-content/plugins/foogallery/extensions/default-templates/shared/img/eye.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','–ÂæÇ]/OÏ9göé½','ÌÍpòõàe|{â>Ä“\"]36]×d\0öOç\Zº¿','',0,'?'),('Ìl†f±õ/1~èž ','wp-content/plugins/foogallery/extensions/default-templates/shared/img/eye@2x.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ré×,8ZÃ×]Pïéð\0','Î›IñujLÂöú\'ig\r3	/Þ¨S„ŠÈ_Í7\r2ê2Š','',0,'?'),('Jr~˜YÝp„ÅWÄLz:C','wp-content/plugins/foogallery/extensions/default-templates/shared/img/eye@3x.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Á²U¤[}Äi \ZX','«V¾•¹UÙ¤‡ûL5ioo@bç;|…©','',0,'?'),('â4Ïß\0l’},ù)s©Í','wp-content/plugins/foogallery/extensions/default-templates/shared/img/image.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','‚Ð}Æ!W…¯à\r`æyè','?»éhï>j¿dü„Ñ„);dpÛ› ¥OÖæpø_{I','',0,'?'),('ù¹²@d‰\\8MÀS`›','wp-content/plugins/foogallery/extensions/default-templates/shared/img/image@2x.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','‡UŠ\rµ¾uú2%	hY“±b','Óuc¥¦TE~œÚ•[JŸÂ»Ÿp{”\rÑOZnô -¯','',0,'?'),('©‚˜ÖQÁÀàFJ=r†','wp-content/plugins/foogallery/extensions/default-templates/shared/img/image@3x.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','MÊsâÕ 2¸êE‘É­','ï¹n(¦£y¡ ñ;ÑCÙáç¨üMU½Ð–d:Ž—×','',0,'?'),('®™#Ð…uèÝŸ*ºžÕ¬ÇK','wp-content/plugins/foogallery/extensions/default-templates/shared/img/plus.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Î^%œdè÷jY‹7gÖ®ç',' â„u„·Ø^Á²Êº ]¿lBM¹±£mŽ`Ã>ÓÛØ6','',0,'?'),('ŸˆÓbê4ÌÌBùuÕ1ñ„y','wp-content/plugins/foogallery/extensions/default-templates/shared/img/plus@2x.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ôæˆPcÍ5=­ô))ÿ×&','¢ß@WxD€zÓöF3¡E„˜Jÿ7ä…JY™.nu','',0,'?'),('=Ëî7Þîä;;˜zàYÙþ','wp-content/plugins/foogallery/extensions/default-templates/shared/img/plus@3x.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','‚}d\'!.ó¬²úßo	','S2}Nœ\\ª/ˆÜe“Dd.{×k>XH=µ—A@H','',0,'?'),('P	ås£pSh;mgo','wp-content/plugins/foogallery/extensions/default-templates/shared/img/zoom.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','=Ém¤C>ö¾¾?\\1½\'w','3ño&ÙÞ†Í¬$g¸üè–“/W~kÃPÞ¡—‰Íi5','',0,'?'),('Ûæüñ%‹³ý7m}ÂÓ','wp-content/plugins/foogallery/extensions/default-templates/shared/img/zoom2.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','SŒƒðy¼i	ˆšŠ\"o','ïëÀíÆ‘sá·WÂsj÷Q\0ëÅJG4/Æµ','',0,'?'),('l<©aòEÎ¡]7}ñµžç<','wp-content/plugins/foogallery/extensions/default-templates/shared/img/zoom2@2x.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','”¾­ÝoþQ!§·=³4JÛ','¼oXógÚS6ò\ncYòy¼š‚Ë¸*?·Tvñë3÷','',0,'?'),('J‚Â`2›/œÛÔøÂO¹','wp-content/plugins/foogallery/extensions/default-templates/shared/img/zoom2@3x.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Õhä žNû÷Žˆ—é£ß','ÒÂ>lWÑ\Z´\n—2Ëqßº§ññçæelMþG¸','',0,'?'),('÷ÛÁ)f,—¼n×Õéû/','wp-content/plugins/foogallery/extensions/default-templates/shared/img/zoom3.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','SŠäð ³âFÏØÆã‹n','­HˆÜ†º¥Ÿƒu÷ÜŠS¿bî¦\\±(îr²p¶—¸A','',0,'?'),('½4©‹VèàkÌå/Æ!p','wp-content/plugins/foogallery/extensions/default-templates/shared/img/zoom3@2x.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','æâ^œf¼©ŸPIwÒ','u“°£]©}Œ]žáj zÊÎ>Ð‰Üø®àäm¡7Ïj','',0,'?'),('nÉ»‘×A×Œ4~ÉÄ¨¨','wp-content/plugins/foogallery/extensions/default-templates/shared/img/zoom3@3x.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ja–Â;\ZÎF\0ö·¥™µ','æsò\rÌÛOBïúµ*Ë_~ÅàXï›h…´ËøŸ','',0,'?'),(')hœÆM?me&áÖ„[','wp-content/plugins/foogallery/extensions/default-templates/shared/img/zoom@2x.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','f¸ÂÕ³TOîÁš²Õ“','`9ª>e”Ç˜Ë¶¨¦K†Wýa­kz¦Þca j¸','',0,'?'),('£šYQ]ìÃa¿\nDa¼Ðò','wp-content/plugins/foogallery/extensions/default-templates/shared/img/zoom@3x.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÚR§âÌ&ŽºòÛãSb\r','Ê†{çiÄ§ôÑÌ9·ÌL‹ªxhRvú’›2•i','',0,'?'),('ù>SB¼D•`—JË»ý@','wp-content/plugins/foogallery/extensions/default-templates/shared/js/foogallery.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','’ÕI\'¨Ô¬ ÿ ûbYûÇ','ßQ’É‡„¨ @³n•ýmÐª8EÌõä³ÙZµÑöué\"','',0,'?'),('B×ÁEXsï¥kK\'× ö','wp-content/plugins/foogallery/extensions/default-templates/shared/js/foogallery.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','J<P3Áƒú6«žèˆõNŽÍ','†=÷‘Q5=EÙ²¬hü:§¶Þ¦å¶IFg{QnVê,(','',0,'?'),('ˆ¯ã|qlŸ=\",égË]=Ú','wp-content/plugins/foogallery/extensions/default-templates/simple-portfolio/class-simple-portfolio-gallery-template.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¶sWs‹µ›+\ro}%,','\ZN<è”¿Í¡‘w\ZâOã}šÄ)Z›w¥/ŸÑ\'','',0,'?'),('Fâÿ®Û\0²©´º¥Èÿì','wp-content/plugins/foogallery/extensions/default-templates/simple-portfolio/gallery-simple_portfolio.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ðØ	ádÎ´øµ;á‹Yjf','Öä&öƒžAd‘ö‰E¨Ü=¥\\/rüø5þÕ™S\'&b','',0,'?'),('(÷j\0ïËÁ`mÎáá','wp-content/plugins/foogallery/extensions/default-templates/thumbnail/class-thumbnail-gallery-template.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ë…‡ê£L’}Ü)Óïç\\\rÄ','%¿áfwà²*¯b›ù^Ð]Gyµû ÏˆÓBc”','',0,'?'),('Ú‹phÑ\\>È£Ñ2¡grwg','wp-content/plugins/foogallery/extensions/default-templates/thumbnail/gallery-thumbnail.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¡/)±¶Ì#ü»èŸB/ÜN','N€wY-óÐ\r—ƒwÙ„BÑý\\Ê^·.äs]åÄ[Ï','',0,'?'),('£ÏSÕã¡áé›:‚S','wp-content/plugins/foogallery/extensions/default-templates/thumbnail/js/admin-gallery-thumbnail.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ë¿×Þè?I«?‰0‚2m]','¨ýÀB”þŠÄá‹®-?ï²ÛÇúlˆœSJa%àÇ','',0,'?'),('ÒOÏ ‰ùßRÐ¹ðqhc','wp-content/plugins/foogallery/extensions/extensions.json.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¾&<ÜôØ5\0xX ùšn„Þ','OÞvtõ·\n;dÌù‡tLÏiÊ’J‹së#Á','',0,'?'),('Ó® 6ý®›ç:€ƒ×aIß','wp-content/plugins/foogallery/extensions/media-categories/class-media-categories-extension.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','A[k¤Ý\'+T†˜CÏ8µ','9]Q/Ü¸3S‰¬D@æ·3I:çøÀøÛßÕMÃt•¼^ž','',0,'?'),('f½ÊÜ»oh¿À§#,þïZ”','wp-content/plugins/foogallery/extensions/nextgen-importer/class-nextgen-gallery-importer-extension.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ž3eObƒumnÀï¥‡¨¾','(\"³%Ñ6¬Ûm1ªr×“5² 4=*HÒôDðÓ³¨÷=UH','',0,'?'),('êjn¢’#…x4\r„ Æ„Š','wp-content/plugins/foogallery/extensions/nextgen-importer/class-nextgen-helper.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\'[ëm‡™Ü™˜ßÊË-\n','\0†pA+ËÆ²± Øa.Øm©(?7lYv{a’²­j','',0,'?'),('Ó•\'ÀYˆ¿4.É³×u­ª#','wp-content/plugins/foogallery/extensions/nextgen-importer/class-nextgen-import-progress-album.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','6¹žÉVöÍÊixTi2a','ÿÀmŒŸ$3“yiÅJsÞ¤çw¶p ±Ì	EÜV¾QW¬“','',0,'?'),('Q¶?7…Rw5zT«¨6e»','wp-content/plugins/foogallery/extensions/nextgen-importer/class-nextgen-import-progress.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','“ŽdíÃ{jsì¯ÛW>ÔÒ','Ê%î´çWhûä“zÂ\Zû_õÙŽÁ5bN<\nÖõÝEÙEö','',0,'?'),('É‡1ÙýÀ%^¾uÀ?¾’','wp-content/plugins/foogallery/extensions/nextgen-importer/class-nextgen-pagination.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','÷œ88ä1£¼Å\0\Zòµ','d¦¼&—˜‹04xlÐX2¸’W*ƒ<óÏNXkF[˜Ðtz','',0,'?'),('+ƒN³,€m*biÍI','wp-content/plugins/foogallery/extensions/nextgen-importer/view-importer.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','l:2­..>a–I·','ÏÎÂtñ›0NØN.Üh”1¡8\\H­‰èÝ@ÅÑi','',0,'?'),('Oôf¹³m=ÆÚŸ)[g','wp-content/plugins/foogallery/foogallery.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÝwUFÆš4—fÍ2ÓÏÈÕ','§jp#ìÚ\0ëçØd‡½ìulv×ÃV¤½G%éÉH','',0,'?'),('yåû4Bêõ“V\\ÑÊ','wp-content/plugins/foogallery/freemius/LICENSE.txt',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¯¨Ê@GÑ‡í^Ô–®ã.ov','x6Ê@à©\nÛqvÇdR>àã²{‘8^¸_æà¸pQ','',0,'?'),('Ë²mS®y>R­\'ÎÁB•J','wp-content/plugins/foogallery/freemius/README.md',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¾ÿ\\_Ü{Äš/V_ª/',')Bß[÷êº)ÅáÏW´ \nÈñ8O±V¦CìÞ¿†×','',0,'?'),('sË*Ï“ìÇÆªC*œ','wp-content/plugins/foogallery/freemius/assets/css/admin/account.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','D‡RÖhêÞá~T}','Ò†ïî¤Àøj`óDµÝvŠküØTJöÙ}ì ±\'©8âz','',0,'?'),('ï×$¬Pç…6äÓúK','wp-content/plugins/foogallery/freemius/assets/css/admin/add-ons.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','c¾_î3Ðw$·ˆôœ–ú','×ýðdÈíÁ‹ú¼)ÿæEQ`4¿Já_¯=éî`D	','',0,'?'),('K z×oj}kÊok=P','wp-content/plugins/foogallery/freemius/assets/css/admin/affiliation.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','jþÀCÃ%ºÅ¡›g¼RÑŠ','b´Ø×¬hk$ð‚BeÀ!r¥ÿ+&{–]eXW-l!\\\Z','',0,'?'),('·Âä55N‘\"pq','wp-content/plugins/foogallery/freemius/assets/css/admin/checkout.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\Z¢T®†`ÃŒãi','N5œ‡¡¿\ríÀÞ3u¬ñ[ó×í&À``ÿ‰±b*úí','',0,'?'),('ºap…Nn·_÷×A-÷','wp-content/plugins/foogallery/freemius/assets/css/admin/common.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','|	ûÑ—Ì1ó´¹ý85øf','™èz/<hôWÄ9¤ã¢„À°\nX˜Ê£	ÚBOEî_','',0,'?'),('ÎC6‹{ÒAbÉ.é=Íù=','wp-content/plugins/foogallery/freemius/assets/css/admin/connect.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','åY\'©§ŒM{º¿G˜|ÆL','ðÞaéñ—Ã°ƒT.Ñ%e’ß§Tá	ïëÙº–I!y','',0,'?'),('QÜ^yªÈÖ*rìúJ@üa','wp-content/plugins/foogallery/freemius/assets/css/admin/deactivation-feedback.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','´³”ºµ^¦å*\ržif3','£Bs=½chÓ·.\Z®I(îF˜*Á}W³ÿ6F!¸Rn','',0,'?'),('î<7¬09>-žž/œ™\"','wp-content/plugins/foogallery/freemius/assets/css/admin/debug.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ä\'ã ü4ä”Ð²Y£Éˆn',' u&ëê±d´Loåç‡×Jog¼=!î¦\\ó,(ß¸¥','',0,'?'),('QÏ\ZÚË^Ûÿ6P_kwÑ','wp-content/plugins/foogallery/freemius/assets/css/admin/dialog-boxes.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','$_Hõû6ë{è±3ß	­','Óœ´ýÈÙ}ìÆ‰\0ƒ\ZŠ¡žÒÒ¹:ïFKCÛ§ÖÎ7','',0,'?'),('±rG÷WAž«’þü¹áÇ','wp-content/plugins/foogallery/freemius/assets/css/admin/license-activation.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','xÆÿÕ)ù¬\ZzlÚ¾Ò','NÄ6AõêÿP˜vÓCp0“R¹ölb›#Êi¤ &¦','',0,'?'),('úYŠôó8q¥Ç+\Zž','wp-content/plugins/foogallery/freemius/assets/css/customizer.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','½ÞÜ€„å™ûf”ŒD','R#³Ñ\0kAÃöuëÈó[ò·Ì¾ÿœOôï©’xâJ}}','',0,'?'),('B§J*í#=Ãeî`jŽ®µ','wp-content/plugins/foogallery/freemius/assets/img/plugin-icon.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ã/à²ß\nkÃé\n8¾','ÏšN’Ršæ&}óí17ùÚ}(ÌŒ`I\'¯Vñ}¢ØÄL)','',0,'?'),('JW§ŸfÅEKñhÉS§','wp-content/plugins/foogallery/freemius/assets/img/theme-icon.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Œ³ôþñÕ3ì¡¢Žo•!','‹á(Ó_{ÌØøQPÜÂÐyVãlŽÙjyÊB•ÖÍ~ý','',0,'?'),('¹ j½mŸÏùÆh ú¿¬È','wp-content/plugins/foogallery/freemius/assets/index.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','=à¤¸»â“tÚëÙgE7â','€*yÂˆ™v\rJPˆ-:ÈT„@«­¼—\nÑó8Õ$0Â','',0,'?'),('Ï¿¥ˆ÷0y—&zOý','wp-content/plugins/foogallery/freemius/assets/js/nojquery.ba-postmessage.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','~5qN›Pþ=.õèÑXÈa','àD·\\\Z¸ÀIžÓ¡[Ûª›ö¨×í¯jcˆPZgsªW','',0,'?'),('(e9+Ú«nÿ\rèñ2Ãù\Z','wp-content/plugins/foogallery/freemius/assets/js/nojquery.ba-postmessage.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','–A¬i)—ú×¥øözš\'',']åÞ€¡¤¬\\ÁÊ+fùø³R\nQ¿»%á× J‡‹’•µ>','',0,'?'),('È:Â\"Ë(Y)oW·ü˜Ÿj','wp-content/plugins/foogallery/freemius/assets/js/postmessage.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','‚·lTBóv=qxûQR','bM\r	º{ëTTït«×°\\øt•¨=þ{ÅÈaÏ½#œÍq9','',0,'?'),('OñÎ­Öñk¸æ,$ÑLZ','wp-content/plugins/foogallery/freemius/assets/scss/_colors.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','•®ç¼e/ïß¢¯ÿ¸ž','ý|¿	Yëñ…ëFJš† 7Zs8k1j¬lqŸ;£}','',0,'?'),('^e—Í$tƒ<ëÙˆ ›J','wp-content/plugins/foogallery/freemius/assets/scss/_functions.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÔŒÙ\0²é€	˜ìøB~','ã°ÄB˜üšûôÈ™o¹$\'®Aäd›“L¤•™xR¸U','',0,'?'),(';Ü	Í“~|dÅ¼4','wp-content/plugins/foogallery/freemius/assets/scss/_load.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¿¥SY¦3á£~\ZÝ¡·‡','FÒÌ€x2VZ@gŽ;·*8C·…Ý2—çÉbs2ºV','',0,'?'),('ØŽ\0sbBbxOÅÆ&*ñ','wp-content/plugins/foogallery/freemius/assets/scss/_mixins.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','f\0`‹¬XAãa‰:üGßÐ','o^³7Ø(Ñ­Þy†c\rlÀ\"4!’›ú(Ýë','',0,'?'),('¶*v6pþƒ…-L²û‰=','wp-content/plugins/foogallery/freemius/assets/scss/_start.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','PõÇ\\+æaùòJ&L¹ÉTÖ','6†1CîŸaŸCU‘\nßÈfª äy¦Í\n400žxC·Q','',0,'?'),('ÑÝŒ3+ÍFöva„ˆ]ˆ','wp-content/plugins/foogallery/freemius/assets/scss/_vars.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ì\Z²ZdbÀ8ó™Â`Bñ«','9îÁ†|$ï€Ôÿà kö—Èá-ýìÝw1¬Üº','',0,'?'),('ýå|W!h\"Rs\0ªé±','wp-content/plugins/foogallery/freemius/assets/scss/admin/_ajax-loader.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ˆY/¥í…©Î¥;eÂˆø@','œLùV!Ô1X=LY.œ«D	þo!éš÷×oø»Ö•','',0,'?'),('/v—ÜA¯³£ýVùµ\".¡$','wp-content/plugins/foogallery/freemius/assets/scss/admin/_auto-install.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ÿá{ìL¢ÔàýX{TYM','j/Á%$UŸ;½;uKÕBÚí¾²d-vNR¶¡ˆGØ[','',0,'?'),('5Ûâì$Lv?¨‰šúåL','wp-content/plugins/foogallery/freemius/assets/scss/admin/_deactivation-feedback.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¶+±#?´—×MÅã7','ˆx0\0e¹Í}`eßr–Ëmyiö\r6®Ç¸rªOV5','',0,'?'),(':á¾HZb®9têÛF¡£Ã','wp-content/plugins/foogallery/freemius/assets/scss/admin/_license-activation.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','æ«þŸÊXè/Aç‡\'3','V”%íþëq÷¸ö\n†\0N´ßs¦&Z·1ì“ZŸ','',0,'?'),('‹•îÛò\n®:‹:\"î‡.A ','wp-content/plugins/foogallery/freemius/assets/scss/admin/_license-key-resend.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\0t)»(b?ì–!«º›×(','jã¼‰þ¥F¨YCyfŽÙª^úq£Ð›>ê˜›ÁçÁ—TG','',0,'?'),('Z#U‚B©{Ÿ¢aÑl52','wp-content/plugins/foogallery/freemius/assets/scss/admin/_modal-common.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','øv‹sõöw÷¸]íÐÜ¾','mÉÔ›*ì$‰…\Z\r•ön•\\1NGcoâI™Í	g','',0,'?'),('Hö—S„g–*=¹…0','wp-content/plugins/foogallery/freemius/assets/scss/admin/_themes.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ê±ÓÕˆ¦q.¸£¿m','‰×æºº@;Kk\\ÔÌíú\Z_wêœµýåàqá¸¦Ùv¯','',0,'?'),('d›ªm~ê$§äÈ´ª§Ñv','wp-content/plugins/foogallery/freemius/assets/scss/admin/account.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','æ=ésÁG„Xcí¹Cá©˜¹','Õì¡~3$Á8dJ%8ùJ*5XoÆŒï‹4O‹ï2x','',0,'?'),('³Ð(ŸaÿrˆñhY\0ÿO','wp-content/plugins/foogallery/freemius/assets/scss/admin/add-ons.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ïBÉ>ð¦ÊSs\\E¶„g','êAlí•_ÒÊÃüÚ-ˆ Ð\"óƒÐ|Íà[5¹ö0k<D','',0,'?'),('Zp\"(üÈ“¸¥ês) ÔI','wp-content/plugins/foogallery/freemius/assets/scss/admin/affiliation.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Òfÿ•*ÂâúuÙ£ltz%','V%—êPÀÍ§°ñb‹Â„Âh-W˜<ú0Çb7j','',0,'?'),('‚ææ	ÏM1ðWŸ€¬ý','wp-content/plugins/foogallery/freemius/assets/scss/admin/checkout.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','xB©ð—;….k¬=¾Ð','¿é\0(†$õù©TrÅºû¦|EP¥Öƒ9©ÛÃ)>J7ò','',0,'?'),('ÐÑxS¥\0¬úº„ÑãÓ','wp-content/plugins/foogallery/freemius/assets/scss/admin/common.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ø6?8§ÃdÒ\n„«Ó½ò_ê','=…ŽÉ Á˜hmã[]L,rR|S\ZÅ˜¦³+~£»´','',0,'?'),('›Û…àüôÑï¸\'wI6Ö‚','wp-content/plugins/foogallery/freemius/assets/scss/admin/connect.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ß$}bÏ¬²×VWMÓßå\0','»Þ[~q?ŒAøN,\'ë“nDc4í3ØRm\"‚Ýæ','',0,'?'),('ìnH3ÜÏvÒÃß÷Õ…Ì›','wp-content/plugins/foogallery/freemius/assets/scss/admin/debug.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ø&Rb·¦Z“\'ÔËñ?ë9g','¼Žt UÜ«ÍÕÈ²Äêkðþæ2\Zí#›¼ètÙ¥ÎQó','',0,'?'),('aÉ$Û(`ýñ\Z	?™ÒØÜ','wp-content/plugins/foogallery/freemius/assets/scss/admin/dialog-boxes.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','|„/z³ž…\r->­£','þ©9D×¦OÔE¨ìŒ£èM³9 á(Ã07ÕÔ~Ž\r[ƒC5','',0,'?'),(';¢I%S\ZHÓ¹gz\\-–|C','wp-content/plugins/foogallery/freemius/assets/scss/customizer.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','7ŒÝà“N K7»','çÏcÓáWäþ§]¥;ÐÐ_gÂE;=·úxTßöÁj8','',0,'?'),('+uLÓÕÐ³Bi{e¹ˆ]','wp-content/plugins/foogallery/freemius/composer.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','1ÒýM=¯õƒõ‚Àíúùq','S5\'Ê,­m<\0˜ (+–ª¤!W±q5Úg£—,QÛ','',0,'?'),('iŠrm­-Çh˜º#\01','wp-content/plugins/foogallery/freemius/config.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','·õej_y%7÷\nòôÃ¥','¦¥2!ÑÉ8Z\\ŠÀñíüU_®\0‚@5 ¡!—0Q]','',0,'?'),('@†š…fò,³r	s8«yg','wp-content/plugins/foogallery/freemius/gulpfile.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','1•XWä\\F{*“d/v(ü','@™ÕÆ¢–ë¹Ig ÉBàå)æ«Ü¯‘án&R','',0,'?'),('ƒ=_R8¢w:ÏÔ6','wp-content/plugins/foogallery/freemius/includes/class-freemius-abstract.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ðEØ±2‹ñ¾uD¸ÐØ','v]HIËäœmï“Ü ´ˆ¯Ï@þòÓ0dŽKªQ7','',0,'?'),('j\n$X~ï™VPËbMæ“','wp-content/plugins/foogallery/freemius/includes/class-freemius.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Å\näpO×¦²é{GíØ','âœÿáêÓú`žic³@ê`°£\'÷HM	HaB¾4','',0,'?'),('îílR£ÇW¬ào]æ%N','wp-content/plugins/foogallery/freemius/includes/class-fs-api.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','yè·£Â2¼Zçád”ív¿','£^äç¼Yó~R!1#È‘É_Õ˜úü3×’êTØ–','',0,'?'),('N¢ÐXFêÔŽ	¤»oÜŽÿ','wp-content/plugins/foogallery/freemius/includes/class-fs-logger.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','–ºL·ùtXÉ?gœ *„^','Fƒd×ÆføúdÉå0Jq~Ó—Ù,ëhª‹L]Y','',0,'?'),('?´‚}­°]`jQï³cÞ','wp-content/plugins/foogallery/freemius/includes/class-fs-plugin-updater.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','OA\'¾Æ\\6úoós\r}','HDÖ\0Ùk®†¥#ÆÁå³6Á´§¬9á†ÆaíßÂkô','',0,'?'),('Øî0e…ÚáÊ š5‚É‹˜','wp-content/plugins/foogallery/freemius/includes/class-fs-security.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','A}&”U	Ò‚²¥Ðð”','õß‘mDn[+AÒ 4Â,®×”ÖË²‡P¡¾©Á','',0,'?'),('’+\rŽD°ƒNÚ­–Ñ6','wp-content/plugins/foogallery/freemius/includes/customizer/class-fs-customizer-support-section.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¨Â³Ä½Ð¤Z­’¸œœP~','¿Æ··\"ýŠT\0²¥ZáÛA£2Ž}+ö§k• âDL','',0,'?'),('h°É¨ÈºbM_bôÇp¿(','wp-content/plugins/foogallery/freemius/includes/customizer/class-fs-customizer-upsell-control.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','…)ð@1Þ~Û…¹¤”pO','™Ñ{Œ&GåoÜ¥iC‹€3\Zï•Û´å@>»ÀÝñ×','',0,'?'),('ÓÉÜ<^ˆWàÊöã ,','wp-content/plugins/foogallery/freemius/includes/debug/class-fs-debug-bar-panel.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','×™J0…X‚¸à:ÊÁ*éì','%Ä821¢·kßŒtzXØ¸”•Aµ¬)$a€0WsÆk','',0,'?'),('h`„úúàš(3¨í™×¸[','wp-content/plugins/foogallery/freemius/includes/debug/debug-bar-start.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Œ(`ßi:áçïëh\"´','ÍŒ¿X´T[%\0õ8=<Á‘Q¡÷‘6¦ª¸@òyÁ`Q','',0,'?'),('´4X@ªÃåCÞ¡žè™ú!','wp-content/plugins/foogallery/freemius/includes/debug/index.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','=à¤¸»â“tÚëÙgE7â','€*yÂˆ™v\rJPˆ-:ÈT„@«­¼—\nÑó8Õ$0Â','',0,'?'),(')ˆñ–xáfYÒýJ‘’Tý¤','wp-content/plugins/foogallery/freemius/includes/entities/class-fs-affiliate-terms.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÃùÍ%v,—ð%\nÎ','[ißXÖQ,™naæÂ*×néöf Â¢n\0Ê6ê|','',0,'?'),('V\ZÎš +•ª¦ìõ','wp-content/plugins/foogallery/freemius/includes/entities/class-fs-affiliate.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÄŽ:-MËž?–º{whóO','´|¯e7NÊ•ùQ;w¾w™ ©%öíš•ï','',0,'?'),('1–ðùöKY &Ú¨$žW','wp-content/plugins/foogallery/freemius/includes/entities/class-fs-billing.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','h7ùé‰`œ7Á%x‚~Ü>y','XÃ{Öì5ì>ÆTˆ*áy/*ôqÅªðØb_­njZ','',0,'?'),('„ºKG !Ï(6ïïôŸ¦ã','wp-content/plugins/foogallery/freemius/includes/entities/class-fs-entity.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','…\"Äk\'$ÎÇ-ë‚á-_U','›-Û?fÁ“RÿµÂ`\rs÷B‡ó­hsõÍ‘ß¸5','',0,'?'),('ÊìîXÎ\ncCãm¼åGI','wp-content/plugins/foogallery/freemius/includes/entities/class-fs-payment.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ñs”G˜É(6“¸ôŠ	','ÑD,+‰jª®ŽMð2KZ@\n›[¹mM«x˜Þ¢¿','',0,'?'),('R0ª\":dõÇ€Ù< ','wp-content/plugins/foogallery/freemius/includes/entities/class-fs-plugin-info.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','=FªÖãZ\ráŸ:’_Ïu','PCü*ZL@ñD!}»Úþ¹&ñ{¹8D§wcH·:Ò','',0,'?'),('_¬&c|­DfpoCaVcL','wp-content/plugins/foogallery/freemius/includes/entities/class-fs-plugin-license.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','KŽËT´‡\r:ó?íË¸ù','„wW6âäƒZ\"#IÿòÄ–\'Ä‘À7·0”@×%','',0,'?'),('µ9[ÃöËw\r¸\\­Q\'5ë','wp-content/plugins/foogallery/freemius/includes/entities/class-fs-plugin-plan.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','€9µ»üŠøÒY©¡$?ùø','¯\\ÁjÏÂâåW{ð®×5âd”ËWJy¬[‰%z\rç›','',0,'?'),('¥§:ãdæééþ#¢šËCaÆ','wp-content/plugins/foogallery/freemius/includes/entities/class-fs-plugin-tag.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','E¢01QwÅÝ{Ší·S~','úÈù\0‚hÌÝÍféùO½‘zC\'Þ\"\nf8^\0ÿ4#ÝìJP','',0,'?'),('W¾§x+¥lÔà@ß˜õ','wp-content/plugins/foogallery/freemius/includes/entities/class-fs-plugin.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','8¨\\ðõþ~êŽ¡â›R¿E','@CkÃNé€cçØ‰/@´ln¢ƒ9’Š³Cí¹ÛÌrÐæ','',0,'?'),('z\"“å‰ 3ªAÙõöÄµ‚','wp-content/plugins/foogallery/freemius/includes/entities/class-fs-pricing.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','H; 	½†´©aU­¦Pãn0','‹ófÙÃ]Üü#‰µ Íµ¤%ûèˆêÛê¹¬=ÆØ>”','',0,'?'),('ÒX\r½Ÿyívc<Ä R8È','wp-content/plugins/foogallery/freemius/includes/entities/class-fs-scope-entity.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','íâñõ˜œ°ñ\"ÂT†M°qÏ','©ÌÌ$ãmÁé×ºK-PÐ|žs\0¡»½X2ßÀº²','',0,'?'),('çª·Íæ{;SW¿H\ZBÝ¬ø','wp-content/plugins/foogallery/freemius/includes/entities/class-fs-site.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\ZK••š\\ÍWôG:%','<ÙÒ<nÛ!Á%\ZTŽv¾Ñ \0ë½d£EEÀ5ÀŽ','',0,'?'),('m­7°šJsktI\ZGB','wp-content/plugins/foogallery/freemius/includes/entities/class-fs-subscription.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','u¤r%6Œ¤¢Øíåª‰','Än0Ä>Ûÿh¼J&Æ	3hÓÒŒ×»=¤ö','',0,'?'),('¨Ô\\õ@#¿mJNLJ¬ë','wp-content/plugins/foogallery/freemius/includes/entities/class-fs-user.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',',„þ©fHïëc¬À*=O&','øKK8({!ÇaÞ\r„ûéM…í.z:w\"†k^šð','',0,'?'),('J@¯Øi¾%‹_Á…-{»_Q','wp-content/plugins/foogallery/freemius/includes/entities/index.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','=à¤¸»â“tÚëÙgE7â','€*yÂˆ™v\rJPˆ-:ÈT„@«­¼—\nÑó8Õ$0Â','',0,'?'),('ª#Ö2Ž©*;êÈFó*','wp-content/plugins/foogallery/freemius/includes/fs-core-functions.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¨Df¹ï)¹í¤Õ\0ÆR‹û','–³MU„Òþ?Ãh°%dôòô7DUfô˜CõÁ†îK*','',0,'?'),('8MÌÙrÃ*\0©9Vó»‚','wp-content/plugins/foogallery/freemius/includes/fs-essential-functions.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','qÇû…’jîe*\'…ªÁ€','j°Z¶¶\\áûQš6\ZÄ³¥£²p\0\\·aÉj—ÕW#€˜','',0,'?'),('–…—™l) 93¬pÑ…’Ž','wp-content/plugins/foogallery/freemius/includes/fs-plugin-info-dialog.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','>æà êg#­/ÛË‹\"','ÜÎô§Å´öí8»ä¼ôü	\r~µáÐ\0n=Ezâ7]˜','',0,'?'),('u”}¦€8m	n˜X]Ï','wp-content/plugins/foogallery/freemius/includes/i18n.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\Z¥œûªO7Ð››Lèò','%|Ô»!3¯œyÏ‰/OÆ‘øÔwß!Ò è71Œ','',0,'?'),('Z+×þ2Ç®wáÔÓ°ÏÃ','wp-content/plugins/foogallery/freemius/includes/index.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','=à¤¸»â“tÚëÙgE7â','€*yÂˆ™v\rJPˆ-:ÈT„@«­¼—\nÑó8Õ$0Â','',0,'?'),('Ã)Ì|Úñ?[Ò»†t¸=','wp-content/plugins/foogallery/freemius/includes/l10n.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\'ÀetpSýfvêâ%­æô','à‡Ûˆ—øèl´úê•D\n¥z`wî—<txö­ÊKø','',0,'?'),('•ë÷ea,¯½5a2ú±K÷','wp-content/plugins/foogallery/freemius/includes/managers/class-fs-admin-menu-manager.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','õõ¤íŒ³ø‡Âõ\0˜uæY','lÞ ƒü­€—9¬ƒLÈò-(Ù¢%d:ƒÊÿiI(Ð','',0,'?'),('ƒ¡iÃæšÿ;¦kPÓQ','wp-content/plugins/foogallery/freemius/includes/managers/class-fs-admin-notice-manager.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','á­pûF’(=F K„Õo','U$¶|J42Y\\ÿW“¸VB§‡Ì-£DdIÂ¾6N','',0,'?'),('ºUsÇR¿t·ÎnÕ^','wp-content/plugins/foogallery/freemius/includes/managers/class-fs-cache-manager.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','»0Þ§¦î>Ñþx×Îí/','2ÉŒJ,O*RªÍi*àK¸³ˆÁVN×iÏ…êvI','',0,'?'),('ìË<ÿjA\rër„','wp-content/plugins/foogallery/freemius/includes/managers/class-fs-key-value-storage.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','(c\n|ä:©úr­Ú˜M™','Ð´eÖä[}²ÑÐ‹y—½õzÄÕ‘€49Cç{K¯¬u','',0,'?'),('\\Jy\Z#StVdj²kNÔ','wp-content/plugins/foogallery/freemius/includes/managers/class-fs-license-manager.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','E´<£9LåxÇ%ðLJF4','Ø£\nw<<Ç‹NJ]ßæ\06…às«Òg‡(ëî¦“F¯','',0,'?'),('ƒ¸-MÕ_} $æ…@hé','wp-content/plugins/foogallery/freemius/includes/managers/class-fs-option-manager.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','V‘ÿ\"¹Í(T×¤²‡°\0Â','Å—þd®\n<I…ñû·’ˆœ-9ÒœíÙz&ðYæ›','',0,'?'),('È<®}eá»UÃ³^¨‚Dì','wp-content/plugins/foogallery/freemius/includes/managers/class-fs-plan-manager.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ì·\"ç$ë„\0çQÝ§§Èá','okvYÄq7¶ ¾MýÇ^¸·–âÉ6[P^Êç¥§','',0,'?'),('\Z7¬\\f¹û‡eµqžü `','wp-content/plugins/foogallery/freemius/includes/managers/class-fs-plugin-manager.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',' Á_W\rkû›Bâ³ad´-','…pÑx|”\rQ\r;¥2/ãE^Q.€í1­ä÷©H°„É','',0,'?'),('Wž„ r(sbTŒ‘gü','wp-content/plugins/foogallery/freemius/includes/managers/index.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','=à¤¸»â“tÚëÙgE7â','€*yÂˆ™v\rJPˆ-:ÈT„@«­¼—\nÑó8Õ$0Â','',0,'?'),('»–õã›€dÝ‡6c)','wp-content/plugins/foogallery/freemius/includes/sdk/Exceptions/ArgumentNotExistException.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','&à]Ò±ª\0Æ€%%ö\ZªÃ—','i@­»¢sÀŒî‡šð Ô¥\\¶wÿŒ\nvÁBÄÇŸ','',0,'?'),('zÇsL—¥Ø.lÝK›Íþ,','wp-content/plugins/foogallery/freemius/includes/sdk/Exceptions/EmptyArgumentException.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ágÛŠø²Ù{¯]\"·','áJpÁœnÁx¥¥ÌD\\ìP_…ð«~A¬ñ}ÑÆ','',0,'?'),('Š—Ì7¦¹\\æeêžà3/½¼','wp-content/plugins/foogallery/freemius/includes/sdk/Exceptions/Exception.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','+y˜þE”ž1(ýEv\03','*¼d¤íL§.dòEìmiËû–\\qnó?)«‚Ú^Ð','',0,'?'),('U,æSDžª\'\Z	ïÑ˜¢;','wp-content/plugins/foogallery/freemius/includes/sdk/Exceptions/InvalidArgumentException.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','	Ã ¦\r‰{•¬ÄK¬Ë{','g¬††3E.ÂG`dÁüÙ¶\Z	uR£4þ59Ç xÖ','',0,'?'),('ta±¶P†ÃšÙ,¤~Ëj','wp-content/plugins/foogallery/freemius/includes/sdk/Exceptions/OAuthException.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','·{=ú]¨+\n›p»x¾®f','cpºýÍþ;,ÛM3¬ü–f©\'¬¤Ät„½öªR','',0,'?'),('úvö+†cìðŸ—“èüX','wp-content/plugins/foogallery/freemius/includes/sdk/Exceptions/index.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','=à¤¸»â“tÚëÙgE7â','€*yÂˆ™v\rJPˆ-:ÈT„@«­¼—\nÑó8Õ$0Â','',0,'?'),('ÅÑW¢ÎÇT^Ðç¾MÕÌD','wp-content/plugins/foogallery/freemius/includes/sdk/FreemiusBase.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','pámÔpè\ng\0Òƒ|ùD','Š\'Až¹l™þ)Š•ÿ–Ó™|¬ªì«·³ôï»||P','',0,'?'),('™°.&ü\n–Ùrt$v1g','wp-content/plugins/foogallery/freemius/includes/sdk/FreemiusWordPress.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','{\\F\"ØÂÃD½Á‹z7','M_WÊIùtƒÁ²ûÈÙ«™xDÓ>iÚÜÂ¾œ¸ÀÙ','',0,'?'),('4–fâ!)S!å\n(ñ','wp-content/plugins/foogallery/freemius/includes/sdk/LICENSE.txt',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','IÏðR§›Áqx8OÍŠô','X;Ö1MrìG{– »\\yãÙ%1Î`ÕÔak§˜[‹„','',0,'?'),('Ýbm“âŽ`Y>•§‹ƒC','wp-content/plugins/foogallery/freemius/includes/sdk/index.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','=à¤¸»â“tÚëÙgE7â','€*yÂˆ™v\rJPˆ-:ÈT„@«­¼—\nÑó8Õ$0Â','',0,'?'),('_&á(ËŽ¤–ñhãp˜2n','wp-content/plugins/foogallery/freemius/includes/supplements/fs-essential-functions-1.1.7.1.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Û§E0çêwå™q·û','+RÚ\rýguºãë†šÂ:ØfÚ»kð¶y+x\Z','',0,'?'),(' ôÙÁuÖEÂÚJ^ø.£P','wp-content/plugins/foogallery/freemius/includes/supplements/index.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','=à¤¸»â“tÚëÙgE7â','€*yÂˆ™v\rJPˆ-:ÈT„@«­¼—\nÑó8Õ$0Â','',0,'?'),('N”àz©Ý:iàè‹å‡','wp-content/plugins/foogallery/freemius/index.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','=à¤¸»â“tÚëÙgE7â','€*yÂˆ™v\rJPˆ-:ÈT„@«­¼—\nÑó8Õ$0Â','',0,'?'),('\0Ú5¬è§IÞ{í]m¶û˜','wp-content/plugins/foogallery/freemius/languages/freemius-da_DK.mo',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','FÖùâ\"^Õ…Ùü!>¥È','ÏÊªô1	v™¶Àÿ%:¥\"9[¼­)5åÍÐT%&î','',0,'?'),('ýŽ§œš&1[K/nœ©	','wp-content/plugins/foogallery/freemius/languages/freemius-da_DK.po',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','»r^;ÞÙ¼£ŒØÿäy€ä','gm3Y»~€!0ö¨ ß·ô‘ôŠáßQÖ™d','',0,'?'),('_{cõc…íyœˆ½9>’','wp-content/plugins/foogallery/freemius/languages/freemius-en.mo',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','•:MÔ4[Â‘³€O','KÌé3@b‘tež£Œ2¡¥}Î”7ˆÉÜc}ÇJîd','',0,'?'),('»ß».JÛU3ƒEYíí\r','wp-content/plugins/foogallery/freemius/languages/freemius-en.po',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','FüûÐïGJí./\\µý','/me½}Ëaýè¡Ó	¯ÆÓ™°Yóî³¬\nÓŽ\Z•I´Ó','',0,'?'),('³Ûß5TÖK·öÅ‰ƒ¨%','wp-content/plugins/foogallery/freemius/languages/freemius-he.mo',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','³\0¤N¬9k0¯ÂpY‘','–ŽÖVðWæÕX:QìpµHWÜÂm0ç‘fThY\\;åº','',0,'?'),('´#©£Ùõ	/\0ÔÖ¸u\"Ê','wp-content/plugins/foogallery/freemius/languages/freemius-he.po',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Žæç=,|±nŠ‡2+b‡','L3é$MF3# ñ·dDïiJAàè«¾žm','',0,'?'),('‹¼“âå©výÞûÔ}ö¼‡','wp-content/plugins/foogallery/freemius/languages/freemius-it_IT.mo',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÉcªERH_—}Éß‰l','ÔßëÈ:MÓÒ³G’äíŽŽXµ¹Ók#ô‰cèÀ©Î','',0,'?'),('ÌVmêÐÄÌ\noñL`5','wp-content/plugins/foogallery/freemius/languages/freemius-it_IT.po',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','B‘²©é÷»£ždR‡¦g	','Q]ÆÖU&úŒÌtX?dün?¤Ù¿(7f×ÒÏl§)ð','',0,'?'),('ïvâý»–îòLmÊíÂz','wp-content/plugins/foogallery/freemius/languages/freemius-ja_JP.mo',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','&³M–…¶‡\nÁ‚=ÞôFs6','×V·}\"^ ‘UIäùô­l®©Šó}jõmBÏ','',0,'?'),('â‰ü¬·%1°!§ïÞÖjZ','wp-content/plugins/foogallery/freemius/languages/freemius-ja_JP.po',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','o_Œõ>i0Nþý9Ð¬','m£Álö%±¡Q\\ŽÕàé7_ÙÞsd‘æÎAP¦','',0,'?'),('#s\"k·/{˜iâCší','wp-content/plugins/foogallery/freemius/languages/freemius.pot',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','…2\Zæ•&q@	»‚á\\|','*éj ³ÐÈ€-•ìq–2‘!©§b)g«à_ê‹ä¨¯þ','',0,'?'),('þ5sR•6z\'Ç&†Å“','wp-content/plugins/foogallery/freemius/languages/index.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','=à¤¸»â“tÚëÙgE7â','€*yÂˆ™v\rJPˆ-:ÈT„@«­¼—\nÑó8Õ$0Â','',0,'?'),('’%X­À´µê³ÝÁìeÖo','wp-content/plugins/foogallery/freemius/package.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Y»D`Ì(¦\"pH6þ³Þä','²B€8bÌcOGÜK•7âWe›\"çDtà]o³°’Eý\\¨','',0,'?'),(' ¾éHÛ\na9iÂ\\dn»×Æ','wp-content/plugins/foogallery/freemius/require.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','…ñýÛÚâíBâ|«Âð–9','ôKž®å€VómBÆA£HÙðOg©ÝæÝûSªŠQÌä','',0,'?'),('å·PpJ³Îë´ëBtW','wp-content/plugins/foogallery/freemius/start.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',' Îè¸“h¬ácŸâ~V','hL\0w¸dWÜ½Jü®;‚¬9X²“Uïñ90¶ä#Ÿ','',0,'?'),('ðþ¥f&ÞÂŠ¯¤Ú©0','wp-content/plugins/foogallery/freemius/templates/account/billing.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','EÄ#´¶¢÷“Ù¯Äg','\0ñZXéM%ôãhó!vo¯„1Ê®fHØÁ«¾ ÓÃ','',0,'?'),('vumbK§S€á¨qšuÔ','wp-content/plugins/foogallery/freemius/templates/account/index.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','wt–ÏT£[£gÓî…¹&','€*yÂˆ™v\rJPˆ-:ÈT„@«­¼—\nÑó8Õ$0Â','',0,'?'),('í~	Ð†W”þDí¯ç?W','wp-content/plugins/foogallery/freemius/templates/account/payments.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','B{~b.?Ò–r]¥x±]\0•','Áš-ŠÂêXš³û!î±ã“:âá‹™Â6ƒD\ZàÚ','',0,'?'),('”tÙêàÄùƒúè÷10¤&','wp-content/plugins/foogallery/freemius/templates/account.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','PŠ²Uà?RãQªšÇ#ª','iŒ=hq4ŠRSúmìIÎ%xÅ%B u\'µSR¼þ','',0,'?'),('ËFœâ\n&‡	KLFWÎÖþ','wp-content/plugins/foogallery/freemius/templates/add-ons.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','§Â”o0ƒ™\rà\nAõÉ…','X#²ë†Ñx³ó?ÿëˆS“‰-²*…¾dÏ!ysfhœ','',0,'?'),('øúCöÂK¬§F†Û	9\nô','wp-content/plugins/foogallery/freemius/templates/add-trial-to-pricing.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¾tÊ‹×-Ùö—:ÛNV~–','\ZÖµÑñs¬®Zî“Ðl@ˆÇ.ÁT€,Ÿô#“YD','',0,'?'),(',î±wgšP›Ø[á¾„Ú—','wp-content/plugins/foogallery/freemius/templates/admin-notice.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','LÆS”B¿Vƒ Ûw€','Hls`p5áÕøÓ>\rÁwwm1Îí¶Vy—ªªªƒLPb','',0,'?'),('•s-?RµFw!sM•˜s:','wp-content/plugins/foogallery/freemius/templates/ajax-loader.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','1•¼¼‹…¸ˆ×+oß.','s¸\'wÝzŸâ^©\Z¡½¹´ZÕà°×_çë×Ž®£6ýÁ×','',0,'?'),('£¤ºT¸\\\\\\*¥Ê—ŸÆ','wp-content/plugins/foogallery/freemius/templates/all-admin-notice.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Zã¹Ÿü9/Ã&?·kLŠ3',']F]}jÐISÖ0poW–!”pv\nhïŸãW‡k','',0,'?'),('Âæ§™Y:Lõ\\ÞE€÷','wp-content/plugins/foogallery/freemius/templates/auto-installation.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ŠØ¸éc°%[ÇÏš¾L­I','*„1ÍÈ.Öþny_µ­!6bÐpÚŽ*O›,øŸvE','',0,'?'),('âêŒ¦y×Óêë+dz','wp-content/plugins/foogallery/freemius/templates/checkout-legacy.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ìÎöµÊÅWºË•ÏÑçÐx','8>Þ‘àñ«*lÑ@çìÊÄ&Øß˜]jº6™—+Ê','',0,'?'),('ÙÍ\rL˜èNRË—í-›(','wp-content/plugins/foogallery/freemius/templates/checkout.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','‡ÎÓ$;6ÊˆWºagÚÒ','3ÄšnVnÏ2ÅEæ>ÓÇ\niF	]$=†\r7¹Ô9²','',0,'?'),('¦(ŸNÊ½UQ5—I','wp-content/plugins/foogallery/freemius/templates/connect.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÞÚX+ÇR¾ƒñæŠ˜g','Š\\ÎÕ›ÞU3óz´g—®ú6v¼ÝrÇÐƒvHò','',0,'?'),('71–I2šûúNáþsc','wp-content/plugins/foogallery/freemius/templates/contact.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ðÖ=—5ÍêyÝ„ßQ','ˆºÚRgËìÌª˜PÖÎ˜\r¯cËÿÊÊ>W£g	V','',0,'?'),(';SÚ\0§« c¤üc>º','wp-content/plugins/foogallery/freemius/templates/debug/api-calls.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÌeZƒ¶·èJMzïfO“bO','Lë3bô]ªv+Jïo¬Æ|.àägíÒŒ‘#Õì€NA','',0,'?'),('¬UiÃp§Èñ•£5ä\"û³Ï','wp-content/plugins/foogallery/freemius/templates/debug/index.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','=à¤¸»â“tÚëÙgE7â','€*yÂˆ™v\rJPˆ-:ÈT„@«­¼—\nÑó8Õ$0Â','',0,'?'),('Ú—$HSÿß˜	JJ;–','wp-content/plugins/foogallery/freemius/templates/debug/logger.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','h]©k5>?˜tÉ}€','O] -—UËOÐ¤9¾GØ±à<‹šÙìå¹•¶JÕéb','',0,'?'),('-“sä3nd‡iCìs»','wp-content/plugins/foogallery/freemius/templates/debug/plugins-themes-sync.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','½Péÿò¥šI\'ß˜qC|',',<_X¸zé~±7Z˜\nYBÁY(6ß.{fŠàýÀAEœÊ','',0,'?'),(';å– ;Ž—\0åw[ ò','wp-content/plugins/foogallery/freemius/templates/debug/scheduled-crons.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','âD•¾#_ji®µbGñ$','Ñ_‡7ƒŸ^C¥¶ž¦n\'qù ‰ù\rzbÊŽ-&>á6','',0,'?'),('áQ‡îï]V®ÌÃ½¯è','wp-content/plugins/foogallery/freemius/templates/debug.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','žÜýiYœŠÇštL‘‡&','HI’rbMõ¯—FtmÁ#êäUÎT]½Ç¼Kkti5„','',0,'?'),('*ðY)·>¾f	«TH\Zê','wp-content/plugins/foogallery/freemius/templates/email.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','H\'¥qgÖ2e”çÈtV¯,','mJ†ÐfP1(oªîïš„†43‚¼)\n5¼ÌÎ²©ü','',0,'?'),('‚ô\\süìø4¥5Á','wp-content/plugins/foogallery/freemius/templates/firewall-issues-js.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','EÉI5\0°\nCŒ¼”Ix','–tr¡+vZz¥EþižïpÔdàýo¬lz5-û½¥l','',0,'?'),('ÂáIQÈüd7h%››š','wp-content/plugins/foogallery/freemius/templates/forms/affiliation.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','k¶àºSwï¤R>c!3','I,¸‚Yñ[NÞáFž{UÈ¨¾?ÖÀ­“U |NpÛŽ','',0,'?'),('ÊätèúÌÛî<È¼‹	Õ','wp-content/plugins/foogallery/freemius/templates/forms/deactivation/contact.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','#”5n\"rûwJ‘<Áµ\rG','RÞÍ2žß€Ë¼?€Ñr­!“Ñ?àñŒê‘¬^œlå','',0,'?'),('¿¿Û<›ù›yäàe','wp-content/plugins/foogallery/freemius/templates/forms/deactivation/form.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','6Â(ú¥Çº65\03á)ð=','¯ÍÀ8Í:\'²œ§¬i„—¥GkŠ:‡\'ëB‚ÃVÄÙ','',0,'?'),('ùE™/xÚÌ5	¦D>U,','wp-content/plugins/foogallery/freemius/templates/forms/deactivation/index.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','=à¤¸»â“tÚëÙgE7â','€*yÂˆ™v\rJPˆ-:ÈT„@«­¼—\nÑó8Õ$0Â','',0,'?'),('_ËWÙø-:Ö¶‡Âf=‘÷','wp-content/plugins/foogallery/freemius/templates/forms/deactivation/retry-skip.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','XBH>sÄâ[ÝÐ_\0BX','›fØPH7ÎX©ãNŒÐ8oõòé;\\Œ–<¿Ç+‘Íüý','',0,'?'),('ìüuYù*!ÐóŠÞ¡bÛj','wp-content/plugins/foogallery/freemius/templates/forms/index.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','=à¤¸»â“tÚëÙgE7â','€*yÂˆ™v\rJPˆ-:ÈT„@«­¼—\nÑó8Õ$0Â','',0,'?'),('˜ÑgÀÄžžÑ“\Z2Gé','wp-content/plugins/foogallery/freemius/templates/forms/license-activation.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÈZÄºXl•WÜlh[•¯‹','Á )ô6Ç­f‚©LZž´\ZMW âBÒqÝU-[œ(¬Ý','',0,'?'),('¾ó;%±üœ\n©ÌÅ–(','wp-content/plugins/foogallery/freemius/templates/forms/optout.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ˆã­ò0¡\0™ “ó­†!†¥','·ÿ}Â=÷OC@÷fýînèÞ¢¨ræ3Ûn¸!','',0,'?'),('ª5¦†p[yIÉH!Ø¹W‚','wp-content/plugins/foogallery/freemius/templates/forms/resend-key.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','é´üÆŠ †®”†žœrs™Á','YÛ÷1ñ|Âw³Aé\nû4»ICøÌ\nð_«Ý\Zx','',0,'?'),('C#9¥ZäÁåèßX&®Œ','wp-content/plugins/foogallery/freemius/templates/forms/trial-start.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','§ýÿÜ(¡’øOD6¤p·','¨¤ƒkŸqKiEÐ¢>Öú<—Ù‹ÉÛ¹½’Â†\0Q¹','',0,'?'),('L{ý5d‡Ñ>æ','wp-content/plugins/foogallery/freemius/templates/index.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','=à¤¸»â“tÚëÙgE7â','€*yÂˆ™v\rJPˆ-:ÈT„@«­¼—\nÑó8Õ$0Â','',0,'?'),('â„ä™Ww¥dÔ\'‚q\Zœi','wp-content/plugins/foogallery/freemius/templates/js/index.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','wt–ÏT£[£gÓî…¹&','€*yÂˆ™v\rJPˆ-:ÈT„@«­¼—\nÑó8Õ$0Â','',0,'?'),('ƒØiÀX›\\,*èl‚(ôš/','wp-content/plugins/foogallery/freemius/templates/js/jquery.content-change.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','zÆhÿíÜ?ˆû#°ßŠ','K3—bÕŠèîÝ<yT©”TQ·^ìŒd¼©(¿Ã*Ò\0','',0,'?'),('éž?¸¬ÆþçeÐÉ½æ','wp-content/plugins/foogallery/freemius/templates/js/style-premium-theme.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Š\rOí¡VEVàÄ:aj','õ½<‹Z!/|î¥-ÝÄaÍ´’ùp/bUÂçeU›2','',0,'?'),(' ÷£ýü¥Òò5äµU¢ü=','wp-content/plugins/foogallery/freemius/templates/plugin-icon.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','m(û£t¤F¤Í*Þ¦ÎŸ-¤','äùÔ)ùFòþ›gêTA1æØöèzœ¢®Ídøz|2b…','',0,'?'),('9Þ÷+ñ´3MBT@	\"÷}','wp-content/plugins/foogallery/freemius/templates/plugin-info/description.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÝæiÐ¿Ë@FŠØožã¬Ï','ýLÝ¡ü@²H%Rî0Û²7_J¯ó£·y]X›Ù®²e','',0,'?'),('#»ašŽ¹G¸¢D<ç','wp-content/plugins/foogallery/freemius/templates/plugin-info/features.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','«cÊÅ·&Oe¡PxË°','MBõNÎMŒˆŽ01›ù¦ù(³¥ÅK(z{cÅYAö','',0,'?'),('07×ËÜz§Æf1ÍXÎl','wp-content/plugins/foogallery/freemius/templates/plugin-info/index.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','=à¤¸»â“tÚëÙgE7â','€*yÂˆ™v\rJPˆ-:ÈT„@«­¼—\nÑó8Õ$0Â','',0,'?'),('8ZÈÆ_õ¯.Hp	`“\0Å™','wp-content/plugins/foogallery/freemius/templates/plugin-info/screenshots.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','M¢·Ë=»+j FïX','À)lÚê|T²Í´h:vþ6eäY¥q¬Ôø÷÷oHJ','',0,'?'),('kãÿ§C´¸·Š´¯k','wp-content/plugins/foogallery/freemius/templates/powered-by.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','×‚¥U¥òo¾¶{tHn+>','‚üd¡µÅ!#ä*\ZÿYL\rkwËjïÃåˆ=Që&ÿ¿','',0,'?'),('n=s¿OõˆÝ	','wp-content/plugins/foogallery/freemius/templates/pricing.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','§Å³åFS«­ˆ9Ð¾8-îd','§áw4{Î€%N‡œÍˆ…°Ã¿þéû¢Ê?øyQC','',0,'?'),('…<u³œÓõ.¤3$á\\ß‰','wp-content/plugins/foogallery/freemius/templates/secure-https-header.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÛËdÙw9\nüJ:èúç¯','(KU\0ô_B®iÅ\\¥Q©ÔáæÀY1úª“ÚaÏ/iñ','',0,'?'),('øúwö-WñyHß‡y¨`','wp-content/plugins/foogallery/freemius/templates/sticky-admin-notice-js.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ãC:§M°sÅçñÌ”','äLüwé«?Š½ÐH‘+Àòcæ2nµÂzíÁ8G','',0,'?'),('ÕSJTŽ\'2WçÇc©9Å','wp-content/plugins/foogallery/freemius/templates/tabs-capture-js.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','”S8Ï¦§Øï¸.(XŒåº','@7ÒÂ1ïÊ¬„Ü§¦A\Z«„{Ü˜yq$¤1s)','',0,'?'),('•vÚ~®¶øNýr¼Æ®Ü','wp-content/plugins/foogallery/freemius/templates/tabs.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','€p3§p½70\Z„÷/À0¤Z','T|BßÐ47æü«Ež£ôt§êðhîQF­»Ã0Ho4N','',0,'?'),('‡\r¼f‹¦Öu^©´Ê}Cì','wp-content/plugins/foogallery/includes/WPThumb/wpthumb.background-fill.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÂÙ[¥N÷,˜zÚ«)ÓÉWm','÷Ò?n×?H¡‹>á‰Á1&ÕÆµeA©)þóV¹—ÿ','',0,'?'),('þ{…ê€ï§äè¯Z\'û”','wp-content/plugins/foogallery/includes/WPThumb/wpthumb.crop-from-position.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','½bLë]Eîz:·XÓREæÓ',' bC\rti?WŒó3ÌÓ×Öþt3æõ7H|y±','',0,'?'),('2{H×]ÄÅö¾M\n\"* ','wp-content/plugins/foogallery/includes/WPThumb/wpthumb.image-editor.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÖÛiR;å¯8<šnÈñî›','Uå1±ŒGkÖ»A4^fŠ‹\ré¸=šªšõŸuöû','',0,'?'),('\r	pp\"Ÿ&°zÆk<î','wp-content/plugins/foogallery/includes/WPThumb/wpthumb.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','[‰‚ž0{Âíoxø¿¡å','õLétÖ±j5ÁèµMB¨w›ÌŽÁ±×(/ã…áLž','',0,'?'),('5œ†µÆ—žˆÔ‡YœßEà','wp-content/plugins/foogallery/includes/WPThumb/wpthumb.shortcodes.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ãYïÒn	8cÝÉn–î¦ñ³','_w£Æp\n3ÙZmKMƒ²ðÖD‘pú0lõ~ýx\r','',0,'?'),('Ô,õ‚!>h\\‘û6Ìä`\"','wp-content/plugins/foogallery/includes/WPThumb/wpthumb.watermark.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','½°ë,‹3&0Ñ»¥•BØeª','Ùs/aN„3xÓ]3\'ÝB„ŠÜñ	¹c¦TEÆg','',0,'?'),('ðùmM£[Í)¶S×Øü\\','wp-content/plugins/foogallery/includes/admin/boilerplates/lightbox/assets/extension_bg.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','œðn2SïHDu7÷ÁZy','¶X,ð½¹†•ÊÀ~=„.N”ôJÊbæ²Ûh','',0,'?'),('2sž)]ãçú‚ l5\Z”','wp-content/plugins/foogallery/includes/admin/boilerplates/lightbox/css/lightbox-EXTSLUG.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','FÍ]z¶è=»ŒŒï$yn','ÀñLœša»¨²£\\ˆ\ZÖoŠ(E§0âÕÁÁíÁ+Ë{ ','',0,'?'),('5yc§ÉÚ)sÁtï†È-“','wp-content/plugins/foogallery/includes/admin/boilerplates/lightbox/foogallery-EXTSLUG-extension.txt',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ë÷3þh|	á34¯„','ÅÌ7z/~dkq)‚é‘8>èš]U\rJ.Åv1x·<‚','',0,'?'),('ö*€‡‡O*BÚZ×','wp-content/plugins/foogallery/includes/admin/boilerplates/lightbox/foogallery-EXTSLUG-init.txt',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¬u[dâ» ‡','èW^Ö}HI™rIN€O‰ÒN¤³ðžì`{\"ÉØ:]1¼','',0,'?'),('´`4i2¨Åèì]¯J','wp-content/plugins/foogallery/includes/admin/boilerplates/lightbox/js/lightbox-EXTSLUG.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','²‘[ÚÏcœ6AX\\·ð','ÄÖuÔjÉ”\n5$Ó¤`ò›F‰0£\'å2enš‹ÿ‚b','',0,'?'),('Zwœž?øÇ}âñt_ù\Z','wp-content/plugins/foogallery/includes/admin/boilerplates/template/assets/extension_bg.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','œðn2SïHDu7÷ÁZy','¶X,ð½¹†•ÊÀ~=„.N”ôJÊbæ²Ûh','',0,'?'),('^¢ÏP®U•ÕWß6…\r˜a','wp-content/plugins/foogallery/includes/admin/boilerplates/template/css/gallery-EXTSLUG.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','–¬ú²í\Z.4\0è;€','$“i˜ïì¨Ó`&¢\r8z£o±Ðê®¡À{Ù¬Oc','',0,'?'),('„âd+ñôÛj4aÓü’}W','wp-content/plugins/foogallery/includes/admin/boilerplates/template/foogallery-EXTSLUG-extension.txt',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','‚ÊÊ÷èEOØ»;*§ÍÃÜ','º?·cÃ´Ô@9»âØÙ£7ÆvUÀs˜	ÇÈzÐh\'˜3æ','',0,'?'),('T¨¨\0ÉMrFTÉBu;H	','wp-content/plugins/foogallery/includes/admin/boilerplates/template/foogallery-EXTSLUG-init.txt',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¬u[dâ» ‡','èW^Ö}HI™rIN€O‰ÒN¤³ðžì`{\"ÉØ:]1¼','',0,'?'),('Ýá05séò›/®‚Ã¬q','wp-content/plugins/foogallery/includes/admin/boilerplates/template/gallery-EXTSLUG.txt',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ìÚ¤½ÁTûhÂSQPN','ø:¸¬ÖB\ZÆêé®‰ÃŒ÷SÇI4²F§¨=¾^*Ì4','',0,'?'),('Îi^&žÿúmªóhú¢âú','wp-content/plugins/foogallery/includes/admin/boilerplates/template/js/admin-gallery-EXTSLUG.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','—æÉîúÔfé>òýEJÄf','·Çß¦Hb\"=.!<ô¢¨pç{.c`$ôø}¼]_@…','',0,'?'),('\Zä‡+tvŠn5C8þ††','wp-content/plugins/foogallery/includes/admin/boilerplates/template/js/gallery-EXTSLUG.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ú+Z-øL Ò\'Û™5>ï„','dòIØn\0½§óÉ@¿ÀøÊEíuúnÁfGÕõÞ','',0,'?'),('|þ”Ð>¯›\'‚Hdeoé¦','wp-content/plugins/foogallery/includes/admin/class-admin-css-load-optimizer.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Õˆµ-0ˆü>_M³‹çˆ','›é¡  ó4‚»\0êQý„FµNÈ–p1ÓV','',0,'?'),('1Á‹`â³ºUù\"DÇ=Lc','wp-content/plugins/foogallery/includes/admin/class-admin-notices.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','OŽð93øÊÍ@V¥„Õ','))ÛùÈtã5ÔÂ×Çn×©2òèî!REZK|C','',0,'?'),('ÀGUšP§Ì\"ÛJdNê0V','wp-content/plugins/foogallery/includes/admin/class-admin.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','±¸¾q(ÅÚ?GžŠë\"¢Ã','’0’:©y Y Âií x‹‚ÞÍ¸!ô·é{mà','',0,'?'),('õ„l¦O™YÃ‘†÷ÁX','wp-content/plugins/foogallery/includes/admin/class-attachment-fields.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','j‡.æVû¿õPW\"&B','ÞÆ]0›c@lÊj¾î†­^Ëº	ÖŽ¡¤Ü¸È5ÊÂ\"','',0,'?'),('(/ÀölCˆ}b¢¨½‹[T','wp-content/plugins/foogallery/includes/admin/class-autoptimize-support.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ø˜×úìD7D† ç|B','û`Ü	í«a9¬øtÔaì5ËVüV¬?L‘ò–Ša','',0,'?'),('…ýVï/Ï¨_ÔçGážï','wp-content/plugins/foogallery/includes/admin/class-boilerplate-download-handler.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÂÜœ¾j@f%Lìqg','­ãC^‰1~—ŒþÜPbX‹Ãƒ„Xõ i¶xº','',0,'?'),('ƒë­8V#žîÿ‘¨n','wp-content/plugins/foogallery/includes/admin/class-boilerplate-zip-generator.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','		5¸„¦6Ó°’l›´','HOÑoˆ†pÑ·ú|3Î×ñ.&R‚?€»g~Fs·ý','',0,'?'),('Ø±ñ‡Ó\rÐ@ûëÖ«JW¡¬','wp-content/plugins/foogallery/includes/admin/class-columns.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','4\ZÒ‡)ÄÀ˜ÇC±!{_','¾÷`½Ö/ØjH—´¿—n–÷½`½¼˜Vƒ¦ul@¸Ñ','',0,'?'),('[Ñ\"5 Á¬Áx\0]Oò9','wp-content/plugins/foogallery/includes/admin/class-extensions.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','æ¡ÁÄÒ_œ£Ÿ#ò','ñöig‰i7[Uu{¾t±£Ìø^Ü®ßïyÏK”R…Ó','',0,'?'),('oÒZ½×¨$INÀt²J\n','wp-content/plugins/foogallery/includes/admin/class-gallery-editor.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Î%üÎj]\"¢± 8³¢«','b±ªA]é¡ {FCÄQÖ§×€î-…‚—Ì®Û0iëF','',0,'?'),('³>î•ì–1‚ƒþ$¥ƒ:','wp-content/plugins/foogallery/includes/admin/class-gallery-metabox-fields.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÐªLý`’·L¬Z(\\_\\•z','ÝÔ+ea[6ÈÕ%ëZupW‚Û£3‡Ò•;EÈ›','',0,'?'),('ð¸)â¹M–vnVëoð)\\','wp-content/plugins/foogallery/includes/admin/class-gallery-metabox-settings-helper.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Çät§UÕ³7Èi4xavñ','„§DæÙ#ËàÍ·¼½@\"[ý´”´?“YKžÝôNR\\€','',0,'?'),('(Qþ\Zi©¹ã—1[zŒ‡','wp-content/plugins/foogallery/includes/admin/class-gallery-metabox-settings.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ü¤¹ü@uÉ]A ¾-Œ7','>Üìß¼Óù—Ô9Ò\ná‰Y9âI!mqÕšVüç„‡Tž','',0,'?'),('k1”]O‚ý+)ÿ<ž¨','wp-content/plugins/foogallery/includes/admin/class-gallery-metaboxes.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','«ÀTF¬‰ë·C´·2äY','{KN^hØuR(ozÇ»\r¾—ý‹á”¶‘V¥F·y','',0,'?'),('Z§p ÂJ6ë5ôEpkË¡','wp-content/plugins/foogallery/includes/admin/class-menu.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','†%GKŸÄÝD­~^Æw','ä³E¥|«ŠRÃ\"k%=¡ns€¸ÁQŒåÝVìÍH@?d#','',0,'?'),('¤z×£ñCË3ÿU:ù','wp-content/plugins/foogallery/includes/admin/class-settings-image-optimization.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','”)C\'Ä¢Å¼¼DOb‚¢›','HÆbÌ£aÑ\0¦o%Ð™éôÛºm‚“÷WMÊž1Ì ]','',0,'?'),('Õ\r¤ý²@31Œ‹p\'35','wp-content/plugins/foogallery/includes/admin/class-settings.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','³4Ž¯`\rESÓì…mÝC.6','Hî`_õ/þuõÁ*«+&»6CxÁÒ¾;…rL;@','',0,'?'),('çºL2”;4ÍgåÈ‡Nd','wp-content/plugins/foogallery/includes/admin/class-silent-installer-skin.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','v¯ÞCE‚ÉÈ‰Xà>Å\"ëY','¸®¾.bÑ„Óc®¡\\{íÆq¹‚\ZôÀ|¥Þ','',0,'?'),('”ÃÔJ#`ú3ä”ÌÞø','wp-content/plugins/foogallery/includes/admin/index.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ïá{J!u?}îçs•','AuÌƒµœÄ`ü9‰7}bŽ>MHêÃíJHhåûÎ|Fj','',0,'?'),('üü\'9¨}5\0\r\'µ~','wp-content/plugins/foogallery/includes/admin/view-extensions-build-your-own.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','&ÎµÓó\nü2fð€Pk–','4\'ƒ†=w7YJä:Œu‹@Î¤£íUý–AV¾û§iÑ','',0,'?'),('ùåé0âvÇ\r»l[ý','wp-content/plugins/foogallery/includes/admin/view-extensions-popup.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','úxˆÔnÕVªx>‘Ë˜ð\\','/ýUÆßúŸJ\Z¿-ãæÇPÇ¸µ!©\n[ö–3üL{','',0,'?'),('liµù_jÀU/_-¯º¹','wp-content/plugins/foogallery/includes/admin/view-extensions.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Æï“Ž`s½+I*J¬€d','GM.ç¯°ÒÞLÿn øq7xÆF{ýkßœö.çƒ­','',0,'?'),('Gr!Dç†¸MQÇ™<†Àì','wp-content/plugins/foogallery/includes/admin/view-help.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','üø¯$NÙ)$›gÉhUî','<ˆúŸN(Ôëeˆ]Ý²Ï§ÔKýo‹Ë•	[:ó­Ÿ','',0,'?'),('”¦—àv6I7J¹=º´U','wp-content/plugins/foogallery/includes/admin/view-system-info.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¸£Ñ	x´\nÌ¿%~wRJI','Â«ÿ$¡„_´ðêKÚ~†ÁXº ë»s)óœj','',0,'?'),('°Qâ<6ÒâfUPãICK/','wp-content/plugins/foogallery/includes/class-attachment-filters.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','évês~vuœÔ~\'ìüi','S«Í€HÀ[\n‡O™Òùß¦náA´œÃR†‰¥Ÿ8','',0,'?'),('t(™´‰TSŽïcË /','wp-content/plugins/foogallery/includes/class-foobox-support.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','«ìr¯Êg- \0Ø+ÿÍî','Év\râµA¢cc\\¼hv8Í¸tïAË’skñs¿F¼ë','',0,'?'),('ðhx*lrÝSXf8å:]Æ','wp-content/plugins/foogallery/includes/class-foogallery-animated-gif-support.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ø”•%ÅÛ	±F…“ýtÍ\'','fQQ¼­uzPtýºH°•ÝÃ¾üE‰ºÏoyä“	','',0,'?'),('³ÏÃ¢K¼^¡ì.¡eö¿','wp-content/plugins/foogallery/includes/class-foogallery-attachment-custom-class.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','elœ¶Þ».Äè<V\nsîA','Å½ÔáßO¬§­(%fg½®Á%?r¤R+bÍ½ïÀ','',0,'?'),('}_(t§›£Z²ˆ‚LlËÙ€','wp-content/plugins/foogallery/includes/class-foogallery-attachment.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','I€eÊ¹…z¼ã\naÍ«dÉ','ã˜\"5^±NÈ#ð»ÞÀ/;î«×<·sî¤òë›Ú\0ïƒœ','',0,'?'),('®Fˆé4%˜DåžÓ¹¯','wp-content/plugins/foogallery/includes/class-foogallery-cache.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',')5)£w?çe½Q1e0½','‘î›.žF$Ñ3³­æ³;H‚w„.9^ò¾>]“èâðáÖ','',0,'?'),('™`OÿÕYø{žaã[','wp-content/plugins/foogallery/includes/class-foogallery-common-fields.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','W$F\'¥Ú\'e7à.õºÒ','eaì@\n\'ðØ¨\\Mò>Çpf›åUø±Ü]Ì!®','',0,'?'),('º£^m*YÅ²|Š¥|ê­<','wp-content/plugins/foogallery/includes/class-foogallery-datasource-media_library.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','k> ²LOq(Dœº§Û}{','[¥xA=¡©à·zÝë¢S‹ž\'†e¾xiF“Á‡','',0,'?'),('°5.hÃÎ³,ÆÄ-É$','wp-content/plugins/foogallery/includes/class-foogallery-extensions-compatibility.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ë¬1	ïóÈš–§=·[Þ™','hëNd&1\'Ïúõ(!Jòîs:ß<Ç“Ö½ÛXj÷ìÈÞ','',0,'?'),('îí>JÀD³|š(Ë®å`	','wp-content/plugins/foogallery/includes/class-foogallery-lazyload.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',')t0Š´\0Æ€úß6h<','í­¥ §ªx“Ý¿g)+¬U9¶h)(OËèì','',0,'?'),('L¡[^þîŸ(SO4|y­Y','wp-content/plugins/foogallery/includes/class-foogallery-paging.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','KìC´»1yÈÀ…œ\'oB»','>RÜÞ€7j6\\\"~Yµ.Â—!è•%Kâ~Òíë™','',0,'?'),('pNbÎfB¸e‘U«§š','wp-content/plugins/foogallery/includes/class-foogallery-upgrade.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','BI	E0b\0^-|sGÀ°','Km$ÑŒf|˜{i²Ê´ÇH×W@‡<ß5‹ò‹\'Jy','',0,'?'),('–JZªdkßGÉÌ&lWo-S','wp-content/plugins/foogallery/includes/class-foogallery-widget.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',']9Æ‘eß-‡¡_C„ß','á>¯¨õK“ŽÝ… ÇUïÙžÒ²wd˜Jor ¼Þ”fa','',0,'?'),('LÙ×éúô`ºÌiTˆ9ìz','wp-content/plugins/foogallery/includes/class-foogallery.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','È‡vH–²ƒKAw†fþsˆÞ','¦ g°Á	Ðº/‚SÉåb0Â…«ÛËj³tæÅeà5˜$»','',0,'?'),('iH…‰fè±õ±ó/sÁV','wp-content/plugins/foogallery/includes/class-polylang-compatibility.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','rÕ‡?•JU}[åt=l¸¦','³Hz¾Ÿˆ…9Å¢v\nŒƒîQk¥oÍÐ@þ—¸?]\\&è','',0,'?'),('PŸ~m1Þš€5+âB›h9','wp-content/plugins/foogallery/includes/class-posttypes.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','³ªWa¡‘|ú‹FñµÞ','è™cK¨@Ck6Q¾ŠG¾P}#\0®Ål¶èþ;EÍÜ','',0,'?'),('Ym+™oÔÄìnW…£ï´áp','wp-content/plugins/foogallery/includes/class-responsive-lightbox-dfactory-support.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','.fOÁÇÓ#\rªI¨2',']´œþ{Ýy\0uô…eÿy_ Ùü~WÖ•-ÏEÇ´hjÓ','',0,'?'),('AàÒžÒQ·ƒá2Ð6','wp-content/plugins/foogallery/includes/class-retina.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','§Jw\'ÿ¿/:ÎNy5OV±í','Dµ9RX{Ÿ|¢²ÆðõnôŽ¦]Üý˜tæ-7','',0,'?'),('@—»¢ë²	K\'†uåó‚.','wp-content/plugins/foogallery/includes/class-thumbnail-dimensions.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ç/¹ðýÙ¾YÖ™“oP','«Ç}#¸ëb7ÞÔcT0(Ë¤,‚ä÷÷jWŸP…\\K\"','',0,'?'),('“ìn‰°ŒAêÉ\nHÀ3','wp-content/plugins/foogallery/includes/class-thumbnails.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ñã9§íö‰ÅùZ5½œ/8','–*¼æFùçXgáÈ%§æ!ï…uì%j´Ùf½þ`.*ÙÜ','',0,'?'),('œmêÐ>ÈŸ‚Ê»tÑÏ±î','wp-content/plugins/foogallery/includes/class-version-check.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\n6C˜€-ú8«u-¤vÔte','Zl)Z­oû½AˆkZÊvPEgNÛ[õØŒ²	Êrˆ','',0,'?'),('\"–Ð|éCªšü~ËbÛ','wp-content/plugins/foogallery/includes/class-wp-rocket-support.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ì,QHø‹8iaJžÞW','rj‚h°-kS“fó·ÝpŽ@aw¿Ö©š`)mû aÕ','',0,'?'),('ù7TøT`«æ§¼9Øá¾¨','wp-content/plugins/foogallery/includes/class-wpthumb-enhancements.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','^ö>u2Pô§­‹öÀíð','Ø/‡©ÖUj¨åØÅ2T¿Ïè¨×$Jbn9c°õh?','',0,'?'),('gPÒ¡‘ð*ž9²·á1Û','wp-content/plugins/foogallery/includes/constants.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÇˆÐIçùÀ€ë2ÔsÅ9','±†þÂßÔ·çËÐÿüîJdÑ)`íè0\nÍÄâ¢É','',0,'?'),('tŒ`¸þ”j¹ó?\0ËÓ','wp-content/plugins/foogallery/includes/extensions/class-extension.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','•<%É–îuÜ\'ÂÀøwg1˜','gï°.º°”}ö­-Ín[$[Ñy|²¤E°ñìWû…Fò%','',0,'?'),('Ž×àh^æÃ±è\'æåßŠ','wp-content/plugins/foogallery/includes/extensions/class-extensions-api.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','K¡“ú³>ãRybW}','È®äuÚè!ñÝ\"ª1L®?f¯¼ZA·ù4c•IpÝ','',0,'?'),('Ç€AÂ}§†À¼‚Hk¬Ô','wp-content/plugins/foogallery/includes/extensions/class-extensions-loader.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','õ–œo77ñœüUE•£¢U','™s §CtÁºÛbm0„Ï]º-GŒ87D°¬SP×k','',0,'?'),('e§®jc I´Ðk³UÖ','wp-content/plugins/foogallery/includes/foopluginbase/README.md',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','iþÛGé£»«¨x©û}','ï\' 0iï\"Ö•wP¤vÛ™ÅU\rS8ì%W\r‰W','',0,'?'),('¨°TV‡…{óì /üˆg','wp-content/plugins/foogallery/includes/foopluginbase/bootstrapper.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','êá×ZëY{ÁWsB§a\"­','|·àWoèvÃÃBž©„£•¯FS0wÔ“·H˜Ï;ÒõG','',0,'?'),('4\r?÷mò‰ÃØ\"\n\ní','wp-content/plugins/foogallery/includes/foopluginbase/changelog.txt',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ïx½Úêã,x%€x¾Ë|a','hØß°¸½D¯Þü£­Õe‡ˆ*‘ã¼<“±ä¬ÿj—=','',0,'?'),('üy¾1ð¹|Ü5¡x¬SJø','wp-content/plugins/foogallery/includes/foopluginbase/classes/class-foo-friendly-dates.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Y§\"†Œ™Ä†æ!*¸vGþ÷','c(„sÎ:`$u-»Cj6.Ê‚5XÉÇ:Ì/Já@','',0,'?'),('ðÏ¦\0±ôüÐ=SPŸ2','wp-content/plugins/foogallery/includes/foopluginbase/classes/class-foo-plugin-base.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','RZæ¢¨Áî…Ê!n)ÍÅ','!jG=ßB@ò¡‹\Z´Å~­‡_@É‰þÚC@Fž^¸','',0,'?'),('¡B±iúCËÿý6èŠY','wp-content/plugins/foogallery/includes/foopluginbase/classes/class-foo-plugin-file-locator.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','#8+2ïñ%PW%° \'w','ÌÖ6Ü¾‚‘\nE\0õ.Ý5î,^¿ëOnK«—Sz','',0,'?'),('\'Ü\'¡ˆæÈ‡Abc¢I½×','wp-content/plugins/foogallery/includes/foopluginbase/classes/class-foo-plugin-metabox-sanity.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¿ey1Ë84{U}ý\\Âµ','&Ûûy+!õ\Zê¯cGKÁ Vêå	;…ÿ2j','',0,'?'),('½\rã’œB”Õ Z£¦F','wp-content/plugins/foogallery/includes/foopluginbase/classes/class-foo-plugin-options.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','c=wùa‹æô%~Ÿ\'~r¸','?äžnÙœæåÒ q!Uù£°2~1jcçÎ¼R\\_ŽU','',0,'?'),('¢üÈE&ð¿,Ë$|è','wp-content/plugins/foogallery/includes/foopluginbase/classes/class-foo-plugin-settings.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','3‘ø@ì¤(îåQf·rþ','L}C´DºÈèŽWÎ6žÃx\'\0fY÷™}ÒÉ\0ŒTÈ3','',0,'?'),('\\¬E!Nß\'k:%aI·¬','wp-content/plugins/foogallery/includes/foopluginbase/classes/class-foo-plugin-textdomain.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','’›8%žë§ÌãÙcã¶ƒ','Ö¤@r«›ë9=»ý?åŒÊ)>ºb›$²,2—¢','',0,'?'),(',ÙÅXIº—ZÇé8yÃjâ','wp-content/plugins/foogallery/includes/foopluginbase/classes/index.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ïá{J!u?}îçs•','AuÌƒµœÄ`ü9‰7}bŽ>MHêÃíJHhåûÎ|Fj','',0,'?'),('’/Y›Ùh2ó@d¦¦º','wp-content/plugins/foogallery/includes/foopluginbase/css/admin-settings.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÔŒÙ\0²é€	˜ìøB~','ã°ÄB˜üšûôÈ™o¹$\'®Aäd›“L¤•™xR¸U','',0,'?'),('¢Êhx´2ÿâ^J>àæxˆ','wp-content/plugins/foogallery/includes/foopluginbase/css/index.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ïá{J!u?}îçs•','AuÌƒµœÄ`ü9‰7}bŽ>MHêÃíJHhåûÎ|Fj','',0,'?'),('§5€¹Ä ÞqäœW›­;<','wp-content/plugins/foogallery/includes/foopluginbase/functions/arrays.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ó¨N¦a$]Ga6\0*²±','§0³×ƒ˜Ÿ¤_§\ZŸ?¥‡x•](J]/\rk88R]P-›','',0,'?'),('!n{ÑÕ)]¨‹éU£Q','wp-content/plugins/foogallery/includes/foopluginbase/functions/dates.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','’‡W×\Z ìS³w%2JsÞ','sÎt’tYµÏ¤\0&¾ë¼áÿ…!TÎ\"õSÞöû1','',0,'?'),('À\n–Êl«²Ÿ^?4è\\³8\\','wp-content/plugins/foogallery/includes/foopluginbase/functions/general.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Šñó¨ˆÇÎtQBÆ¿»','ÿÃ¿7\0Õë|#¢¶Jøô@–>BïþU+\"ØP˜ô±_‘','',0,'?'),('•0¨8•GIÃ½Wä@¨k','wp-content/plugins/foogallery/includes/foopluginbase/functions/index.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ïá{J!u?}îçs•','AuÌƒµœÄ`ü9‰7}bŽ>MHêÃíJHhåûÎ|Fj','',0,'?'),('‡{Cseàç=B{búå','wp-content/plugins/foogallery/includes/foopluginbase/functions/screen.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Æ\rNë¬ÑÚoWò^ÅtÚ£','ˆv™fâÑ¬³·²…ôiÆÑšSoH5>È¹BÉD¦G','',0,'?'),('c†”–£Ò±·\'Ãëè\n0)÷','wp-content/plugins/foogallery/includes/foopluginbase/functions/strings.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ö%r±‘\'*v‹T×P&½','n6\Z-GX|å(<\r¡+Á5œgÙ¦’çh¼Tñ','',0,'?'),('›? ‰+‹Œî7þ2hØ…Gˆ','wp-content/plugins/foogallery/includes/foopluginbase/index.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ïá{J!u?}îçs•','AuÌƒµœÄ`ü9‰7}bŽ>MHêÃíJHhåûÎ|Fj','',0,'?'),('+Š­¨%×D³«ùÑÒ6)»','wp-content/plugins/foogallery/includes/foopluginbase/js/admin-settings.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','„ØNÊeIj¦\r4ŠQPÓ','¼­ï	“:8/î¶·µ*ÿÉÒ%<êëÊqmçn©1Xjw','',0,'?'),('½aÊïÏéÓ±{Ý<Xï¬','wp-content/plugins/foogallery/includes/foopluginbase/js/index.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ïá{J!u?}îçs•','AuÌƒµœÄ`ü9‰7}bŽ>MHêÃíJHhåûÎ|Fj','',0,'?'),('\nïúmÆ.?ÂC5Ècs','wp-content/plugins/foogallery/includes/foopluginbase/tests/class-foo-friendly-dates-tests.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ð(ö°o‰¹V>â÷ìt†','§Ëëvñ±?YìÎI?éªþÅ*ê¥hŠ`nì¿î÷¤r','',0,'?'),('UÂ¼+)|f€Çz‹§·','wp-content/plugins/foogallery/includes/foopluginbase/views/index.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ïá{J!u?}îçs•','AuÌƒµœÄ`ü9‰7}bŽ>MHêÃíJHhåûÎ|Fj','',0,'?'),('€¸ù©³­Ñ§^oq¹+³','wp-content/plugins/foogallery/includes/foopluginbase/views/settings.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Dy™‹½¾Bàó34í¢¤4','b|;Îù-æ›lÉ¯iÇ`bHµk(¸Ì¸~2Î¯rÜš=','',0,'?'),('}ö7tŒä)\\›@t¼&Ië','wp-content/plugins/foogallery/includes/functions.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','îýà12‘É#¼V ','ÊîOdD<““»ZZL\0O2CÚšï|\nˆ¸E0|†¾Â1è','',0,'?'),('÷Cï\r–cVhI\rºÔw','wp-content/plugins/foogallery/includes/includes.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','^áS“‡žœ©Í7ü!‹%A-','åëy¸ñ¥qÅSÃ¹xD¹\'ÛÎmÎ²ÑT@¸,','',0,'?'),('iKgÏµAxw6IµÌ×o¼','wp-content/plugins/foogallery/includes/index.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ïá{J!u?}îçs•','AuÌƒµœÄ`ü9‰7}bŽ>MHêÃíJHhåûÎ|Fj','',0,'?'),('ÈOÑ¤ãÍóÝ-„ÍÁlðV','wp-content/plugins/foogallery/includes/interface-foogallery-datasource.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','|ÙdC:ÞD¦òƒ³3',' ªæ6_K*V­Ùx¢p3Bþ®‚o9šr©á1.','',0,'?'),('Ÿ¦[9›¶¿úD•êæî','wp-content/plugins/foogallery/includes/public/class-admin-bar.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\0ÿYÅüY8à²1-V^','Rúía©´\'×<J‹:²äÈøj‚\nýý2öÁéa','',0,'?'),('õ~¨€p\'µ÷ttÍõ','wp-content/plugins/foogallery/includes/public/class-css-load-optimizer.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','µ¬µ=ƒ1Ûi+£´Ð¸·=Ë','=1+÷{±#Íz.öØû´(ÝŽUˆýµMÐ¬iÍq¤~µ','',0,'?'),('ËVHQ:Þ­/´ÎeR5¾Þ','wp-content/plugins/foogallery/includes/public/class-foogallery-template-loader.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','V32û²b·#Â‘\ZA','áµ\0R‰žíÔu÷ßµ	e˜ëŠÑ9_—ÕnÙèâ¶¦','',0,'?'),('£cºÙßÅ‘Ø•É`”','wp-content/plugins/foogallery/includes/public/class-public.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','N¼¥„ÅºmW¥ÖÌ','ù\02Pq)}œÔ¼Œâ–rõÞ~uVË.ûpœ4%ùª','',0,'?'),('²óVrHš˜tv”v?z','wp-content/plugins/foogallery/includes/public/class-shortcodes.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','êŸ¢ý°†3Á£F“‘J','ÏðôÖ”`V˜¶“~#FÊê ½à¢BÄY<ë..§','',0,'?'),('.#n³OTRÞzÐY¬_¬','wp-content/plugins/foogallery/includes/public/class-yoast-seo-sitemaps.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\rj+À1~\rÉ5-Ê}†©O','ã«zôÝéÄ*Øl¦e­².6ü´ÉtäÔƒ¹K°','',0,'?'),('µ¥GÓ˜BŠñ²j>.Öc','wp-content/plugins/foogallery/includes/public/index.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ïá{J!u?}îçs•','AuÌƒµœÄ`ü9‰7}bŽ>MHêÃíJHhåûÎ|Fj','',0,'?'),('­>a*­Ž\Z]ü˜ –	','wp-content/plugins/foogallery/includes/render-functions.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÎT…‰,B\"Ä˜±énày','@×·¿ßG•÷Oõä0Íùy~l*Z’!saJ|Þ©ôŠ','',0,'?'),('êKÁè?¡˜à>½á–ý ','wp-content/plugins/foogallery/index.html',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÔŒÙ\0²é€	˜ìøB~','ã°ÄB˜üšûôÈ™o¹$\'®Aäd›“L¤•™xR¸U','',0,'?'),('ß‚øtäpÃúÅÃv±yÀ§€','wp-content/plugins/foogallery/js/admin-foogallery-editor.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','…0õ’SjBŽ6BÂŽd½','žšÑ¢- èEöü\"¦ñ50¤CB{ÛÄ\0jYõácJ’','',0,'?'),('d±¸áŸ`gãâöl%Ch','wp-content/plugins/foogallery/js/admin-foogallery.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','gDU˜‘~\'@x\rç,V¥Á','fÞâîg<ÃÝ	ÆU9Œ±ßS_X€Ô”ÚÕ—m»','',0,'?'),('Óë´ÍÒÁtoß^¢Ó÷æ¹','wp-content/plugins/foogallery/js/admin-page-foogallery-extensions-modal.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','<…oÃ€íß:Bþ!uù','ÁGN“oþCÎtª[ŽMú’…¨2Ôö ©ùÞ¿w•„','',0,'?'),('afM`ùÄ¢»ÐàÅôs‡)Œ','wp-content/plugins/foogallery/js/admin-page-foogallery-extensions.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','CäkËÉË·\\’¸\'','S*¡¸ôÞnîE©”kü„\ZTÐ¼¤µÂÊ”½æÝ','',0,'?'),('sØs4üËŸlæûñ¡\0^¡','wp-content/plugins/foogallery/js/admin-page-foogallery-settings.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ýœ#Yßÿ´ÀÄÌõMç(','!EClU_ÛlHßÛ+; aèÄì=Ùq6)ª\náÍÓ','',0,'?'),('3üþžSœ`—Q±\ZÕ?W_e','wp-content/plugins/foogallery/js/admin-tinymce.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','“³,^eO±þëÊ€Íå','œÌ±só§¾¼Ö…P°u˜]Òp5¢ß¿î+ð-&','',0,'?'),('NŒ\\0/|K|²}¤ØÜ','wp-content/plugins/foogallery/js/admin-uploader.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','»¦¾Y©¿ÞoŽƒ¶c','i}¨×àÜV”÷¥Ÿ?ñC@U@f#ùPÐ¯²á&Kªè','',0,'?'),('ç‹›úØpÑ±¿Ÿ£\\h§â','wp-content/plugins/foogallery/js/foogallery.admin.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','w•›KòV¨2ž6ÄVñçä','¸špÝÎPˆòå!€¦¦øµ‘4Ÿ5-‰¬µ','',0,'?'),('ì„–më!Å‚Þ\\½3òå','wp-content/plugins/foogallery/languages/foogallery-fa_IR.mo',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Š°µõü‚äNœãŒW„','öŸ˜CA%K¿BQQ@õë \0†¹>añc’J–35x','',0,'?'),('Ÿ|\Z\"ÄÙ#l!ºéââÉ','wp-content/plugins/foogallery/languages/foogallery-fa_IR.po',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','’™6ÑV0QŠ\'³Š5™ª',',gV¬ù¾A¬m\0‰âR*ÏõcÚY¿ñ–€EÊY›','',0,'?'),('\ZáäE§eN\\Æ½xp¤v@','wp-content/plugins/foogallery/languages/foogallery-fr_FR.mo',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','oâNÈ`C<ÛÊúTâM','ÉBD„·ÒèàUQ§Ó)tM½)&PÌÚyt},Þv2ÊèÀ','',0,'?'),('’ì§˜x»ö²Uz\Z_Á8','wp-content/plugins/foogallery/languages/foogallery-fr_FR.po',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','%²Ï%„ Mj²`Tg','¿XJ2û¿÷	Š\ZÐ\"ß­-@R¯+dO<?¹!iùgö','',0,'?'),('É£.žg;ÊHd•Eq±£ì','wp-content/plugins/foogallery/languages/foogallery.mo',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ˆ“GñUmF]kÚµoaêy','äöKééTr®^D¹dgÄ¬ãé„Ç ¿Š?fì','',0,'?'),('»¹¥žÜyhTéFé`vHˆ','wp-content/plugins/foogallery/languages/foogallery.pot',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','fwìÖ=ëYü‡Ê','%,0å@¾\"üÇÖèàOÁ\Z™¶o™¡>¨çúÓNÞÔC!','',0,'?'),('‹„þcòÎÓ\no‚Â?×z¬','wp-content/plugins/foogallery/languages/index.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ïá{J!u?}îçs•','AuÌƒµœÄ`ü9‰7}bŽ>MHêÃíJHhåûÎ|Fj','',0,'?'),('ìÆUÝÐ`ZíEäŠ™çU:ð','wp-content/plugins/foogallery/lib/spectrum/spectrum.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¢ŒœpzÎí~«ì2\\ágLN','ÒƒúyUçz|ÙÞH‚>yÍõiï¿ÃxäSz¸<#©','',0,'?'),('_ƒã5UL]´£Ø§','wp-content/plugins/foogallery/lib/spectrum/spectrum.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','!®,™ý†ZïŠËm~T','Ž£ö$H“.Xún}Îr¬›Q!bÝ|~{#’þ¤·','',0,'?'),('\0øÓƒØ\n¥“FÈ»oŠÊV','wp-content/plugins/foogallery/package.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','é^þ³+\nžËR¸¸Ì?‹','Wž•òþY½\'Í¿õR’ŽáLj¶›“V\'†{œk>','',0,'?'),('mâZon„(C\0¿fOùrƒN','wp-content/plugins/foogallery/templates/index.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ïá{J!u?}îçs•','AuÌƒµœÄ`ü9‰7}bŽ>MHêÃíJHhåûÎ|Fj','',0,'?'),('òHÂŠWÅÅØhÌ#k“','wp-content/plugins/foogallery/templates/where-are-the-templates.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','î¢ß–‡~C–H¥Ú$¬','EäûÂóvgtŸ°dŸ³HS±«%æŽŠ}r¶¡Í‘','',0,'?'),('÷z£Nr³øè‘!\Z3j','wp-content/plugins/foogallery/views/index.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ïá{J!u?}îçs•','AuÌƒµœÄ`ü9‰7}bŽ>MHêÃíJHhåûÎ|Fj','',0,'?'),('_¶Üƒ•ž’€vàÁkG¢’Å','wp-content/plugins/genesis-simple-hooks/Gruntfile.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','EØJmšW-jÌ·šï;','&ð–&ñÎ„ÄšçCÂâJÂËŠLÆö³}úZìrR','',0,'?'),('Ü*ºäÁj?/,\n·‰g.g','wp-content/plugins/genesis-simple-hooks/genesis-simple-hooks.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¡÷ö´ÿèðˆùqÌÿ0@Ô','ž7”´P¡ì <!\\	?þT`¹¼Ÿc]2ˆ\\µ;','',0,'?'),('^ÝðFfÞÞf½{æñ_W','wp-content/plugins/genesis-simple-hooks/includes/class-genesis-simple-hooks-admin.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¢9\'MÒ1¬I6õ eà','I°å9ËeV’ß¾b´N#î¬iaØ§€È!\Z-x‰<','',0,'?'),('=QÈTEÜüöüJ]:^','wp-content/plugins/genesis-simple-hooks/includes/deprecated.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','N\Z\\1§PžÚÓ`‡Qñ×','ÿ;,<§Ü´G=¾ª—µzÔ,Òµ%w\Z‰\\Ši‰À¤„`Y','',0,'?'),('ânù‰:+ìn¨Ûš\"]w','wp-content/plugins/genesis-simple-hooks/includes/functions.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¬W°~«Œè:d.#,¾','ôTwfü]ê÷åg¨¨EÏÞHÑb^ÖíØ_B¡','',0,'?'),('ï>ŸrR¡ Q!ö','wp-content/plugins/genesis-simple-hooks/languages/genesis-simple-hooks.pot',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','g‰3rÂªnáÉy•Œ·¸1','2ãêÜR.I+ \rk®iÔ«î\nhl”Ü<Z&Zœ±T?','',0,'?'),('_É7ãeÏ,ÏmÏ‚C%˜³º','wp-content/plugins/genesis-simple-hooks/package.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','•‚ƒZûÞ5êV5~RIÏ','…Kÿ™˜›å¤ŸÙ	¹ø/Q´ûs|Àw¢C\nWS','',0,'?'),(' PÍ‹}£)£Ïp2½','wp-content/plugins/genesis-simple-hooks/plugin.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','GzFiKÎ5Ÿâ¡Ö»N‹½','0ÈÈË(×Êü>U¯ObÔæç¢÷À%í ÉŒ_E]','',0,'?'),('®¾(·5z§7O¤Y•S©`','wp-content/plugins/genesis-simple-hooks/readme.txt',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ó_ü0\ZÁ*ŒÄXjô2Kþ','øv\"Ö À{š˜ÅHZÉAty5ÿ\0ÀëÍRøþÆs','',0,'?'),('pú¢uüw¨œS‰É´0¿','wp-content/plugins/hello.php',0,'R§ðóbAo“št!_~½','R§ðóbAo“št!_~½','&í.Ý°MZ3yqN¶ZßìÓžê-\\Â”T\0U@e','',0,'1'),('ÔèòÿåÍ0*îWÇÔ','wp-content/plugins/index.php',0,'gD,Vë§=\\ÆbP','gD,Vë§=\\ÆbP','k‰À—~	¶½UH\Z¥ÖxƒPêÛAÌ„¢ú<¡ž;X¨','',0,'?'),('iYhBPIQÀªMÆî¬s…','wp-content/plugins/jetpack/.svnignore',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','!5»ûz\"o)qï­·B\Zå','_Í™äg’ðš…+ŒíñB0€¿Yû9ç¿Îž÷%','',0,'?'),('¬:÷èzŒ4”:k]ÝGëZ','wp-content/plugins/jetpack/3rd-party/3rd-party.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','@=Sb„Xó´ÆüZ+¹','tYŒ?\"6â/:ñò«<>»™%¾øXW·{_\\˜â\n','',0,'?'),('>b§üùb\ríÆ!ú—\Z','wp-content/plugins/jetpack/3rd-party/bbpress.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\'lšþr7Ÿeî–”A‹','f³BïÓ{{‡}1ÚÛ]Ì;É(p î¥RûÊè,®','',0,'?'),('Aš`¯‘=Ž‹Ìò§ ç','wp-content/plugins/jetpack/3rd-party/beaverbuilder.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','È¶àt©y*“ÉDäREûtÒ','¾ÐÿÁ®¹Ü$t§\nðmÑAd­!«|˜V,jÎ®“','',0,'?'),('¶­ÃL¼¡,ò,þ33°ÌÀ?','wp-content/plugins/jetpack/3rd-party/bitly.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','/+@ÿ\róþnA×°O{Ò@','	ôs-ãyü ÏÕf¾V×¼¢¦*áADÜÔFÕ]V£Ÿ','',0,'?'),('‹ýx~ðv£,yGR%h`','wp-content/plugins/jetpack/3rd-party/buddypress.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','B$‚îõP,e/6å|3M^',' .y8OqÓ¢)çÝ—Žù\'ÃFKàm›ŸÄ2¯ö:j5t','',0,'?'),('âÝ	1‘Þ:Š­Q×¹{¥','wp-content/plugins/jetpack/3rd-party/class.jetpack-modules-overrides.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ø2æ“r˜êxUÍõ£y¥','TÎ” ™nz@a™ÂÀf”¢’¬DY½\n>ªÂ³ôwp¿ô','',0,'?'),('B´â¢ÌP°€í=‹¨','wp-content/plugins/jetpack/3rd-party/debug-bar/class.jetpack-search-debug-bar.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','p…1G¬XZLkèÍ=ú','7‰ï1Ê¤ ¹øþƒ”,îÈíÖÓ?ÿÌ\0àçÂ>Ì2J¢','',0,'?'),('à°á›Ghçu¾þÆÈhAÆ\"','wp-content/plugins/jetpack/3rd-party/debug-bar/debug-bar.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','‹Ññ`?@[êÞ8´÷ûè','ßYJ‚ÕSpU|>ßÍ+ÿqn“‘:îšªüÆ','',0,'?'),('ô¦ ,®S¶¼Ã»\0-Bü%','wp-content/plugins/jetpack/3rd-party/debug-bar/debug-bar.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\"+¶ß¬o^kI4jµÃ,*ñ',')±´áÔÂMž£¨ü?Yc†´ör|¾3ÝSênjÜ¥Ù','',0,'?'),('ýD÷¾ˆ\0©åhf¾™Z¾]','wp-content/plugins/jetpack/3rd-party/debug-bar.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','±A&`U£¬«_õäØgž','¡Û/«=SæÍxŸç%õÀ\\ìCÉÖÖ—bÿQÞ','',0,'?'),('T\'`ƒ£-ÛƒOÇV4','wp-content/plugins/jetpack/3rd-party/domain-mapping.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','vèCŽÛÛ5»;]F¤6','@xëa„U.€Þ†¸ÔM(É	´@ù$BÇ’|ðz›ù','',0,'?'),('›þÝÜÝ£ÏÙ	½ÆdvŒ\'','wp-content/plugins/jetpack/3rd-party/polldaddy.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','§,yg µÓÃœœìÃ~','Zvü“˜ª®ÚÞ\0‰ŠóÞWµŸT‘ügCÔoò|×\rn','',0,'?'),(' B:È< )\0öìGh','wp-content/plugins/jetpack/3rd-party/qtranslate-x.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ÿ0Á©TG6³Ætªâ$¼',')ƒžíßˆù†r!ïAEÓ‚Òühœûd—ÒÚLÌ&,7Æ','',0,'?'),('5Í_Ìí¡¸è~ˆˆÀ,€-','wp-content/plugins/jetpack/3rd-party/vaultpress.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','øÖy×NCÅ·	Ò¥Z','¼lJkÞ†Š/ŒÚùS±¶>‚¤5Ç ¨&äýE9r*éÅ]','',0,'?'),('yóüzâûY2Ò‹‡)¦Q','wp-content/plugins/jetpack/3rd-party/woocommerce-services.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ðè¹¤öU‰g¾š“€€5','+¦‹>l¦ÿ8baÿÅ+9 ‡ÎAÎ³=vGE. ²â‚i*','',0,'?'),('»WiTN‡Ž—Þ#Áãë=','wp-content/plugins/jetpack/3rd-party/woocommerce.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ºåbI_‰[‡Þ‹ô_‚ÐÃ','z9==Ñ¶»˜#£—x D&ú58w	»QP¦`ö¦yÒS','',0,'?'),('=cz x©ŠôÊ(ðø¸œ','wp-content/plugins/jetpack/3rd-party/wpml.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','†_çP³Î†ä	¬H','Rð”d^k^ª·“ýý\Z\\Lžu‘c?­(ûïýí','',0,'?'),('õËÙÚþÙ\Zïƒ$&œšS','wp-content/plugins/jetpack/CODE-OF-CONDUCT.md',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ûk ¯Ã7f?‹6ÊD­(ùÂ','yÈIðæ¡ß¾°‹Ñ¯hi„n™ô~`JÓ8{jUø`Í','',0,'?'),('Ä£§\nšñÙ2®vœÆýH','wp-content/plugins/jetpack/_inc/accessible-focus.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','·¬ë#œ&ÇwÃè-h^Õ‰','Ûçf\0tþÁ_t„íváp¶Ôh9<‹¦ï³©h#^','',0,'?'),('6Ò½w¡Þ¢{˜\Z/ÌîÀJ','wp-content/plugins/jetpack/_inc/build/accessible-focus.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Þ9y”QßÂôaéŒšüh','h/¢õÍ¥hŸŸ÷ÉÎð÷¹º_\nÃ‚¥®5ÀË','',0,'?'),('7bˆ‘!ÏQŸ1)©','wp-content/plugins/jetpack/_inc/build/admin.dops-style.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','5#šoêÝûµòÊˆ\\','ô3ÄÑô\ZU€ÁcÐ“6òlíñeÄðúBpà2‹Iº}','',0,'?'),('ŠçkÆÍê; ypô§i!9','wp-content/plugins/jetpack/_inc/build/admin.dops-style.rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\nv?Yï(*úú$¶tË7:A','RµËjF¶Ý>åfý\\t‡“g?¿ì’¢gç©m·;ÉWì','',0,'?'),('­$ºé]oþI`ÒÓ*Š','wp-content/plugins/jetpack/_inc/build/admin.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','=“ªAOB[ðV3Ó²ÖR','´¹>¡¸\\TÙˆþú\rž=[3(-sýÜœ¬y mï3s3','',0,'?'),('4Öéþ §Mf4„úÑíb^','wp-content/plugins/jetpack/_inc/build/after-the-deadline/atd-autoproofread.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','!ßù–¨/âB4ËsÊí','­ÒïŸüSWŠ£Ma9°#¨MZO)3Uƒ1Øî®TÂ','',0,'?'),('¢úŸø¼ùctãïÖQE','wp-content/plugins/jetpack/_inc/build/after-the-deadline/atd-nonvis-editor-plugin.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','0žËòí¿þÐgøÕºO','‹’24–3üZ3Aà¬DÈö²\rsU×Ü†Qà·›à','',0,'?'),('´u¦¥<»ä,_ü=¿Ó‰','wp-content/plugins/jetpack/_inc/build/after-the-deadline/atd.core.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','´qÄ·iuÎá”îç‚OY','Ö‹¢4‘rNŒÕ2S©÷Œ½ï‰ŒÀ™ðïh¾‹¥µ–','',0,'?'),('zÝàA>ÃÿÎ‡=©÷P—','wp-content/plugins/jetpack/_inc/build/after-the-deadline/jquery.atd.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','%IL—­uXc©5Å3×Ó','À·\Z’á.æ\ZgzHà»5™FžDxjÞ4ˆ)ôvlò','',0,'?'),('pERºv8)ì±}','wp-content/plugins/jetpack/_inc/build/after-the-deadline/tinymce/editor_plugin.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','œå8¢¡eeÿvU”¦ðù','BŠ*d¾-‘&±zäÒk	‚p \0¸OäïZ6œÇ\'','',0,'?'),('1Ÿþ½‘¾	nV¿\n!§d','wp-content/plugins/jetpack/_inc/build/after-the-deadline/tinymce/plugin.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¬_g›2Ž®1L¶Ì¨L','fo4”ÿ*hÅ\0I{\0VKr ÖßQ©ËN,TaI','',0,'?'),('lí]Â’™¿Qûí¯º\nš','wp-content/plugins/jetpack/_inc/build/carousel/jetpack-carousel.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','K½\\Ò\\‡TØÑô§íÁ','ùòðY«î™gÙ\"ûk	+ìî‰Ýô¼ æ	Û,ˆö/w¯_','',0,'?'),('v&õÛvCêœÕ-\Z>&Š','wp-content/plugins/jetpack/_inc/build/comment-likes/comment-like-count.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Âì\Zz‰$¬”.çÚ.Ñ¥@Û','ê@«jŒêËsª3(î|ÏaÝô)mTùçc-—‹~xƒ\0','',0,'?'),('l vÏn™OZÕgÁ;SÚ','wp-content/plugins/jetpack/_inc/build/contact-form/js/editor-view.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','o©ou÷ZajGä~¬c','¼V%éŸOi“²1qÊuN|Ë+æF³ôS;:Öt¡¥PÝn','',0,'?'),('\râ!‹ø\"»’Jwr˜d;','wp-content/plugins/jetpack/_inc/build/contact-form/js/grunion-admin.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','È.ä\"ó•b¼’4S6','Ü\\Ù}ÇÃüA1ëÂý¾VÊÄ—“}µÄ6ÊàF°óÜš','',0,'?'),('È´í¯œ{i	Ç£¥Ì¨','wp-content/plugins/jetpack/_inc/build/contact-form/js/grunion-frontend.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÁfB—YÂ&ÐÔâç,Lƒ¥','÷ãaí¯‘–>‚2U3n\nÚß™î×‘¹~¸w€ã‚çW','',0,'?'),('å\"¥K@º‚qýÁ<œÃêJ','wp-content/plugins/jetpack/_inc/build/contact-form/js/grunion.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','em|(åVj\nvÞQ3©É','àëÅÒ3 Tž6ŽŠ@®!çñÿsÒ³éÇqv','',0,'?'),('¬jâì£]ƒØ?©štº','wp-content/plugins/jetpack/_inc/build/contact-form/js/tinymce-plugin-form-button.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','MY*\rYoäÎ§Ey>',':y»‹©\Z§Z¼£ŒÅ{³Ôt#ë|Ð?<6','',0,'?'),('ƒ©–,WvVEò·“2º:Z','wp-content/plugins/jetpack/_inc/build/custom-css/custom-css/js/core-customizer-css-preview.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','×o‰@S93[‘Îk˜pÌ','zþga‰%Y|\"f‹ä#Á­D_7|÷ïµs\ZÍWÕaÓ','',0,'?'),('±Á?Ï7[;[åøK²ˆ¾;','wp-content/plugins/jetpack/_inc/build/custom-css/custom-css/js/core-customizer-css.core-4.9.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ª…7)§÷r·=\"ÀIX2','„¡càK@J(Èq×¥û9®LaýœLR”*v¸ú!ß','',0,'?'),('v¬û¸NA¹k5ôÉ\0','wp-content/plugins/jetpack/_inc/build/custom-css/custom-css/js/core-customizer-css.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','©a1=¦tUcw-B¢c2Ñ','kb@œˆÚ×\'e†•\'_#„m÷²¸¥ÕsbEb“\\Ö‘‰','',0,'?'),('Á\";W4¶MšW(3','wp-content/plugins/jetpack/_inc/build/custom-css/custom-css/js/css-editor.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','×g²¥.ó™æ›O²BÀ','*Å8­Ç¸\'7€qÏàÅšDt«²ÄJT¸UO9†','',0,'?'),('¬ðÝJo[}{Öƒ\nU','wp-content/plugins/jetpack/_inc/build/custom-css/custom-css/js/use-codemirror.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','0ðF8\'Å<öd f','[h83bÞR²A@©¹‚r¶|ñ\\$«XE­üF¨]y','',0,'?'),('Å~í8Vé—%ÝI¼î­eš','wp-content/plugins/jetpack/_inc/build/custom-post-types/comics/comics.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ž¼\ZŒùkÐ™”´Ý','Ël4®‹ƒ†D³¿Û÷½dóüqÃÛþ!ð\nOÎ','',0,'?'),('Ò[‘ì0d’µö7þð¯”½','wp-content/plugins/jetpack/_inc/build/custom-post-types/js/many-items.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ƒW¾g*¼²£ðòm#8©','µõÆùð™ÞôNƒÆt˜!epýk2{y÷+ÝùÎZ','',0,'?'),('Š}U/%=‹kiãm ÒÞ','wp-content/plugins/jetpack/_inc/build/custom-post-types/js/menu-checkboxes.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','JÖF­·×I	Ö1nÚ','SÝJCÊ#[„c*<.8¨_RÔ¾A/¡\ZM0‰§¼»','',0,'?'),('k7@½dh\nY7«*Êƒó~','wp-content/plugins/jetpack/_inc/build/custom-post-types/js/nova-drag-drop.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Šxb¼Fß÷ˆà=FÖÜ\ZX','^â¢úkp¢wûP<YÌ\"$™ŠÖå½;ÜlŸ[Å','',0,'?'),('–E×³«!šnfáÿ­','wp-content/plugins/jetpack/_inc/build/facebook-embed.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ì#•«\0´/?Â•þ[©','º{‡p÷÷{vHéöþ‘´Çz’È46QCY9õ¾ád€í','',0,'?'),('³°k5jþ;ÂÌ+ÃÛÒü','wp-content/plugins/jetpack/_inc/build/gallery-settings.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Lˆq\\(`;\rpct>Ä ','ÈU½è–Œ¤í+ý‘ÚÇ²O@˜º°\rò#8D\'B6‹L','',0,'?'),('žÂJòX#c!»žÍ£','wp-content/plugins/jetpack/_inc/build/idc-notice.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','º¸È,:æ{ê;õƒ‹P½','Èœ¦sißOëvT“P {à(E²)+iæ0%[ùÃHÚ','',0,'?'),('fK;Ck~4¸!Ð—‰Éˆ','wp-content/plugins/jetpack/_inc/build/infinite-scroll/infinity.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','«]·gµ†ç‰Ôûn‚OÛ\r','èÌœ-*üTé0MH™2}òûÀ>3È€2%!.˜*-Ró¯„','',0,'?'),('çÛeC¤pØÔÁŸdDéº','wp-content/plugins/jetpack/_inc/build/jetpack-admin.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Û»\Z£\rÙn¡ò†ÅÐ=Ä%','Óµ¡’éƒÅR›Á­á$€u>wRÐ‹…—\nòfÅ(ðå@','',0,'?'),('Šñctàˆé–à¦}»ø','wp-content/plugins/jetpack/_inc/build/jetpack-connection-banner.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','§šÍO#fŒ!À¿ýÝ~™','ú7ÚWÙ6zy…‘•Çæ2âèsŸ\"„±sÄòjH~ÎS','',0,'?'),('!M¨\n-Vv‹ç]\0@«','wp-content/plugins/jetpack/_inc/build/jetpack-jitm.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ù­Ä·“7Ûó¿k§m C','(ïÏ¿3.“^“\0šëíæGÄaLó5VŸI¢Bç\"A','',0,'?'),('èŒäNÍc§&··…:ÖÎ','wp-content/plugins/jetpack/_inc/build/jetpack-modules.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','rñ\0Q„CSqßÖlpØ¯—','SI_ˆÂ 5ºP‰×ñÉÄë¥hÈC4§â‘\"F[º','',0,'?'),('ål*øÕÆ.öM×Çhƒ½C','wp-content/plugins/jetpack/_inc/build/jetpack-modules.models.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¼6»«ØþÑàœ?ƒ;k+','5eù)µ!®dhUküZyëâýã©²µA2Å$Ê27á…©','',0,'?'),('¯!d·sê”ì\rZçÅc“-Î','wp-content/plugins/jetpack/_inc/build/jetpack-modules.views.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Qlpÿ0.”ÈÉ]J:Ò~','ý7Û¶ÔyäwÔîÇ@°ôæGžÊ¾™\0Žª=bŒ','',0,'?'),('aÊt€Ù‰p!Á¡BrAÚ','wp-content/plugins/jetpack/_inc/build/jquery.jetpack-resize.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Sw#l*ç ³‰»ki\'à','.Ç¡b‚Ü£9ŽCñ˜“^Û€ÖÑÒ’ç}ÊF‡µ¨E','',0,'?'),('Ì„ªT/5þûÆ~YDzÍ','wp-content/plugins/jetpack/_inc/build/jquery.spin.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','EzÉ˜ÿd<%®Ö‚²QC¬','ÌI	rÿ{fšÀÙ+3Úï4ªŒ1õ6óÒÎ°D×','',0,'?'),('z†€@ÇNS¤PÃ5Y¿È','wp-content/plugins/jetpack/_inc/build/lazy-images/js/lazy-images.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¡u¾LÏ#„8Ôº','ŸÒe=BQ÷@—âî6§|‘ÛðÉ^¬!‰­ÓT8Û','',0,'?'),('Rzçâ^ošHømJü“T{¹','wp-content/plugins/jetpack/_inc/build/likes/post-count-jetpack.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','!=›¿Ÿ=ÎÒ‡ÍKi©EN1','B‚ÅIú\n$6løÈ&ÂGKGòÂ^²¾¢Ì@E¹¥','',0,'?'),('›µßõÊ5gðÔv±¬¿þþ','wp-content/plugins/jetpack/_inc/build/likes/post-count.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','u(Xv¸ïIÁO\ZODó+¡','M	¸±˜‘LwwšÌâ75‰§ŒŒtgÜ)‰ÀŒr#ˆ','',0,'?'),('\n‰<%èPK ‹[o”Ð­','wp-content/plugins/jetpack/_inc/build/likes/queuehandler.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¡À¼rQL=‰Wop` ','ëG›f€Ow9å[f»LñHëÌ¥aÒäe³f\nQÄbÑ','',0,'?'),('ð\0.¬0»}}áø±·™TË','wp-content/plugins/jetpack/_inc/build/masterbar/tracks-events.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','pœ}éÎ]nÚf‰Â?Á…','‘Ô¡¯©9zPÕë©\rP(³ý,z™\Z»^r¦ñf÷','',0,'?'),('N:âEk×&j`y–öìÑ','wp-content/plugins/jetpack/_inc/build/minileven/theme/pub/minileven/js/small-menu.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',')B\r¾ßßþÁÝ.WE[Í','ÕZ&cù\rÎ´a4\0 ¦` kæ+\'2Â-yÂ×@‚','',0,'?'),('Rî%q9 }‡~ØìFˆ\">','wp-content/plugins/jetpack/_inc/build/photon/photon.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¾ì\ZQ;ÕK‡“I›ÈrÓºÅ','a„Ð„p0US\rÅ<Õm¡q#çÿqj\"Ê9yyo+','',0,'?'),('@%9ú…\"\Z£«#&R0„$','wp-content/plugins/jetpack/_inc/build/postmessage.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','õÅ9¢¿=Z6ALÕ=põ°','\"µQÄ0zfµõ™FÁ‹¤bÏ´ñm\rlvÇ¹ðÆ','',0,'?'),('‚Kq1ìT<ŠïÐ›îÁ','wp-content/plugins/jetpack/_inc/build/publicize/assets/publicize.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','`–Ý?³@›ÒX­<ë7ä.','ã´`‹Þï<žÃªþ#-üføö¡Û7¬T‡ õVÎ¸','',0,'?'),('P]ÿ½±B­f„tÍ','wp-content/plugins/jetpack/_inc/build/related-posts/related-posts-customizer.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','×7°¸>lþ‰Õ‡','¡óWöRºÏ(£ÛÑÄQ,¦O   4åþ¦V:‘','',0,'?'),('í5eÅ˜[wI€<‘±.O','wp-content/plugins/jetpack/_inc/build/related-posts/related-posts.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ƒ¸˜/öõ^eéóQì','˜4é¥Õ7#[Ÿ¡ n?õN«¥ìNì3X°Z³aQ¬™','',0,'?'),('iëw8Ê_	î¿m-‘@eò‰','wp-content/plugins/jetpack/_inc/build/sharedaddy/admin-sharing.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','(¯¨Úæô?#Œ®¨uuÐº','´†²½Y±÷Ÿ\\ßA\0§l©(xÙƒ”Ó×ß<¡è\nJÜZ','',0,'?'),('úZVK@hùñ‘,Õ„ø','wp-content/plugins/jetpack/_inc/build/sharedaddy/sharing.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','­>ÈlúÀa¤«Î¦2p„7=','²(÷†ÇZ|\0Ã.ö9©_2Â$¦o ºgßß-Z•:ÐA','',0,'?'),('Ç\n·[ÿÝE„$„Þ~','wp-content/plugins/jetpack/_inc/build/shortcodes/js/brightcove.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ØBùž,sn¥„°¯Ç°uý','sS ­ÛI˜ð‚Ç\nE¯ÅE@”S@¼˜á™3ŠUDŽ','',0,'?'),('Ú_n®ª™±DÇ\nðX¢','wp-content/plugins/jetpack/_inc/build/shortcodes/js/gist.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ŽV$·(—†2ß#@Ñþj	õ','DÆ­T6=”úóH¦úÕ¨ÆÉ¢~Ìc£f©ÊJ(°‹Xé','',0,'?'),('¿™¢Ý†R-qOM™•','wp-content/plugins/jetpack/_inc/build/shortcodes/js/instagram.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ZaôµÊ7fC‚wHÁýùÄ','Æoµ\nOSOÀåÒSª¢ñÒ\"»‚wI‹ò`Ú[¬þ2oì','',0,'?'),('Ôs4\r¼2ËEo I7l—¯','wp-content/plugins/jetpack/_inc/build/shortcodes/js/jmpress.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','»_ÑŒ²H£Aû}öÐîž','ÖáÜë‚\\T]\Zš0ä{’O]7f`lh0ü(Ž!,ª<FY','',0,'?'),('Ü‚—¬!›NâÁNc;hòø¸','wp-content/plugins/jetpack/_inc/build/shortcodes/js/main.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Q·§)ï·|§œ\"ZƒK}@','ÅynJ]¦¦¢¦á:7ÀŸ½Þ1•\rÆT5þoÿm','',0,'?'),(',G!\'¶wž&\":Å|éQ	|','wp-content/plugins/jetpack/_inc/build/shortcodes/js/quiz.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','„éøø­©JkW¿Ÿ™´¥×','ŸùN4+É¬«ÁZP]Xâ&zj¯¹óó}Ïó3ÁLz¬','',0,'?'),('Ž¿–­dáõ±Ð0ÃúÎ','wp-content/plugins/jetpack/_inc/build/shortcodes/js/recipes-printthis.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','vˆ<Î÷‘Qh‹!ê;','}#“ô~<Å³Ñq)ÌÇ›sýmçÃ!Pí$Ÿ','',0,'?'),('XäKÃOXÓ“\rD ­Äúü','wp-content/plugins/jetpack/_inc/build/shortcodes/js/recipes.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÀUdùK\\­Þ4t»‹\"','lqÑB“ˆœŽø–Àå£÷yÀû+?ÉÜörã÷®[','',0,'?'),('Ú“ Â3€íóÙ§†ÝF','wp-content/plugins/jetpack/_inc/build/shortcodes/js/slideshow-shortcode.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ë1êB«wŠ\'íQ6xùRªæ','Aií!„ÎÂ-Yöê¤Ç=ùr)X¥oao³`*W*édn','',0,'?'),('3\0ÅüêiC7°–E\n4+','wp-content/plugins/jetpack/_inc/build/spin.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','|ñ×Ç³!6ŠñjxýF','ªÕÎpÒ¾‚Ùèà¾ƒéÖˆrP’nv“2xãf:#f','',0,'?'),('‘Wl¨SFYU/Âvò”ÞÜÎ','wp-content/plugins/jetpack/_inc/build/static-ie-notice.html',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ôÉ9AšëCÙ«ÚýÕ\n$','Õ÷ÂÉ¡s‰—â`Åâ~Ó^`\0·Jqì˜Eë\0®','',0,'?'),('K3š\'»áXäé÷;`Ûp\n','wp-content/plugins/jetpack/_inc/build/static-noscript-notice.html',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',' Ž•›\"Öô!rÊ‘_',';o\n«–ûÈ¨\r÷6Ð³_Ázg’eÑW\rÄ6°}æ¶Û…>','',0,'?'),('YéŠøØƒ‹à*‘©p±ñ','wp-content/plugins/jetpack/_inc/build/static-version-notice.html',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','T>v0½•Þ6˜xt‚B','½í«Ç~„œÜ‡ÈT­Ð#±X—Ä3’ö-c12ÙÍ5ê£~','',0,'?'),('äçWb.d3\ZÍVðD§Û','wp-content/plugins/jetpack/_inc/build/static.html',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','úú}\"j=çúE0’³©','X×B¡®\nÚüµÑyÍHwLŠ?¸P”á0LŸõVôvP','',0,'?'),('[h3X;¦•|Åt·7…VV','wp-content/plugins/jetpack/_inc/build/style.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','b­—:4VOcëZò¯ieÕ','Žã—44•íƒ6’ÅJ¼W.™’²-bL¯—&CÊ','',0,'?'),('ìÓlZ/ÿ-`7šŠ`','wp-content/plugins/jetpack/_inc/build/style.min.rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÿ¼…*!¿9Ü—×ð1+­','kB­TÉãøfÐÐ/Èò4:M§ÏáÝ“£»rh£Â','',0,'?'),('¿Gý±tôž8xÁ³…ÿÆ','wp-content/plugins/jetpack/_inc/build/tiled-gallery/tiled-gallery/tiled-gallery.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','É]1æïAhd‹pïW? ','ç²üå\"çÔW‹(ÔÇ¶ó+wEÇf?Ÿ@ªš>','',0,'?'),('L1xÈ–B‘àªÉ7¦‹šª','wp-content/plugins/jetpack/_inc/build/twitter-timeline.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','IÎ°Ø[ŠïMÄü”Éu','g#Œçï(_Û×f6QTÈŠOKÒ10ÇÌã6)ØÙñ','',0,'?'),('¹l›â¨.>Ô,ÀÁµDëç','wp-content/plugins/jetpack/_inc/build/videopress/js/editor-view.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','N‚\Z´îGðŸR( b}We','Œ¾ôà$™\Z]—>¬	X”UªGEÏEÑ\"pÅÝÖ¯Km','',0,'?'),('`UL*RA Lfá®wlÕm','wp-content/plugins/jetpack/_inc/build/videopress/js/media-video-widget-extensions.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ýéVœÎ^}º€´þÚ','øŠ\r³S_ËÕ¼øÍ8QÂ®VÎ2MA,¨ô¶/æ\rÇ','',0,'?'),('n-(ÒûÛn~Ü—©1é','wp-content/plugins/jetpack/_inc/build/videopress/js/videopress-plupload.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¹CúžõSÚÐ[Í@Ë¼Ý','EL¸¦`«Œ|÷â)fuÇBX÷úcÛ`˜õ¿ô³úºŒ†','',0,'?'),('îS*6ÄA’ãÐíé6ùvÈ','wp-content/plugins/jetpack/_inc/build/videopress/js/videopress-uploader.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','uHç}9´[š}','z¨cú‘8]YËm\Z¦šf-Üs+á5ºBl«pjZÙ¶›\r','',0,'?'),('ƒ”jSl\0@¹-Ø@úµ','wp-content/plugins/jetpack/_inc/build/widget-visibility/widget-conditions/widget-conditions.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','þã¼m%ê=¶´Ä‡°Þ®k.','ŸØLm\'þ$Ï:\\	iPDúå@»?üìÂçß2¨0Î','',0,'?'),('”>t\0í¶vø_6’{¹êZ','wp-content/plugins/jetpack/_inc/build/widgets/contact-info/contact-info-admin.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','‡L\"]üˆä‚isÊlÂ','‚îKhý¥þÖeÝŸ”ÖMþE­b¯Fë“ª\n<œÜ·Ñ','',0,'?'),('ó\'Ð°jìðS§ô$%¼+½','wp-content/plugins/jetpack/_inc/build/widgets/customizer-utils.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','òh®Ê•R=ÕŸ-H','²Äš0bròçÉŒ² ]·o6Ê?¯´^ÓÇ¶›Û´·','',0,'?'),('Ü™þƒ¢ÉzØî»à%e‚','wp-content/plugins/jetpack/_inc/build/widgets/eu-cookie-law/eu-cookie-law.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\\­Õ­–É†š£î§ÞÈ\"','‚õÿl#ANüéŸ‘·¥Ë^{ë±Ä¨ºä‰š?ÈZS','',0,'?'),('Ë\r.©øøcD’²Rzö','wp-content/plugins/jetpack/_inc/build/widgets/gallery/js/admin.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ã€ÖV8Ç-EK%püAì','¨ÖÞo”‚ÜÚi_rÎ{¹-´ªêý(ËC”x‚m·5ú','',0,'?'),('þ¹…°2ÌÒYuL‚oÝ\0\Z','wp-content/plugins/jetpack/_inc/build/widgets/gallery/js/gallery.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','.÷AãZ€ÚÆ\Z>Û~\0…','hø%(/nô?¾²ï¼íKf5XúwŠýÑ5t*¾X\r','',0,'?'),('&d:È^¾*ûÊ3ÖåV¾v','wp-content/plugins/jetpack/_inc/build/widgets/google-plus/js/admin.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¬ºv©ÒéÖ’\"Wh¯±\n','8iÈ½Èî†l°Ì°\rà5ÞÑC¿9ÞCß%Í6*','',0,'?'),('²ÀžED¼ô¾W\\èr	¨B','wp-content/plugins/jetpack/_inc/build/widgets/google-translate/google-translate.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','1¥Wj\\øþÊ*æL(¼¢','Eäy÷ÌáéRõ´RZµžò‘{ à‚ùô²K%ÕŸ°','',0,'?'),('Y\rPh2\néTŽ®á7[¥','wp-content/plugins/jetpack/_inc/build/widgets/milestone/admin.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','^@SÓ\Z‹[Lßé–šôŽl','1=æ5u·\\å\Z.u´ XÌ\"Eñ?C4ŠÅyãò','',0,'?'),('ž‡§	ÑÕiðöQµžœ²}','wp-content/plugins/jetpack/_inc/build/widgets/milestone/milestone.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Òô&ƒÀABºìzzJ\'&','N<léèˆ¡‰¶È¤]‰BjFƒ©©Õß@Q\\ÀßHzŽÉ','',0,'?'),('4K÷wnïÒŸÌ»!òÇ‘QŒ','wp-content/plugins/jetpack/_inc/build/widgets/search/js/search-widget-admin.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\nIcw\\nÿø¿°À€#','Ö¬bìÒZ3úŽ„Œ)‹íU$tû+{ƒ™Þg½þTP','',0,'?'),('#²SßßõÐ¬‹ÞË\\[Äß','wp-content/plugins/jetpack/_inc/build/widgets/search/js/search-widget.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','&ÓOÃçE†@û·Îm¼{æ','Xsh}Ž@´÷@¦ëI‰‰¡ÎRX\nVÀm‘D}:','',0,'?'),('.ô$3~¥zvýJÎ-€ €','wp-content/plugins/jetpack/_inc/build/widgets/twitter-timeline-admin.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','âËüÀtüºmU<','Œ…¾$\\$¯6!èAj¶ˆbÅ›6 ì÷ë<Øý1J4','',0,'?'),('\\è\\]‡	¦®¨*\ZÓþ ','wp-content/plugins/jetpack/_inc/class.jetpack-provision.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÖÀ_wÌ“3rýib^Û','%åûŸ±>«E#Zôø\\nûáÌ;8î BÔ”˜“E¼ŒHh-','',0,'?'),('Ó©	NÜ8Åe“qóç›ú/','wp-content/plugins/jetpack/_inc/facebook-embed.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','oÒ!¹›—Ñ¸ÖÐÁµ{âd','Šj^hZIV}K<×“î$²”íßBk _T×Ä8öç©','',0,'?'),('^æ©CcÖô-¹¥7$MŒ†ÿ','wp-content/plugins/jetpack/_inc/fonts/automatticons/automatticons.eot',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','&fÔ*tŸ>àûFKïîž','—nF¦ì²µ¸dýDÖê8YöÈ61\"‰Ë¾©‹Ú>GÁ','',0,'?'),('œU©¬¼ôJ','wp-content/plugins/jetpack/_inc/fonts/automatticons/automatticons.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ä5€š<‘Èœe–^ËÅ³','‚Í@ 3D\r²R	d¦|ˆñ½gŒ\'ïŠt·Ë¡_Z','',0,'?'),(';¢‘!“¡žá{§,ÿ','wp-content/plugins/jetpack/_inc/fonts/automatticons/automatticons.ttf',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÊåÛ¢8\nçq‡í­','ºdZŸ•/»a>‚±_DÿÐ*\'x#òæ*ÎÔ>ü','',0,'?'),('ü³®E7½“©ðëÐyÅB','wp-content/plugins/jetpack/_inc/fonts/automatticons/automatticons.woff',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','{cçÏž …œ†Ó9wm¨','’iUiLÓ*3»¸ßî©½ä8xR‚™ÊR’´½yRE¼','',0,'?'),('‹€;k”\0 Á’Ê\r”•','wp-content/plugins/jetpack/_inc/fonts/jetpack/jetpack.eot',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','t‹­sÃq†óŒ‘ã¿/¼','=¨pä\Z¸ùXfm?k×	=·õÍ½½Ù\'á¢Á','',0,'?'),('å½;y¦2eš£òÿÆ€','wp-content/plugins/jetpack/_inc/fonts/jetpack/jetpack.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Å69—â\'òŠÝšü;×ú‘','ÛÒºþ—«Cª	-Pcëû•ü)¾Dñ×R|¥+áPxÒ+','',0,'?'),('Íø}%c1§IdDÿaBc','wp-content/plugins/jetpack/_inc/fonts/jetpack/jetpack.ttf',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','0ßÞ6ûùX›ÑþŒ}¼\n',' *[„\0t†fZ¶ÓžNs“;ÅH/$•ƒ¯HŒI¼Y','',0,'?'),('#Ø^‡ç;SžËTNÎ…öÀ','wp-content/plugins/jetpack/_inc/fonts/jetpack/jetpack.woff',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','á+x®2õb­¸¯–hI‡','0µtf”Žc$x\\ÃõCòubBfÈˆ\ZÞW…Mº¾Ù','',0,'?'),('þÁªØ®Fâh‘·ÿ®','wp-content/plugins/jetpack/_inc/footer.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','83\0„=_íÃÃœ|','ÌB†dª=Í[»<{Œ’YF®b1gâ‰¦_÷ÌÇóÞ;','',0,'?'),('û˜[:¤8ç<ÄÌ1bØ0Ì,','wp-content/plugins/jetpack/_inc/gallery-settings.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','B¿×ó¤÷oQÉ)ËÐè\Záò','u›“\'¥€}œ\'Üe­& §OÎú­Ü¸uð=PÙ0Å^','',0,'?'),(',jÎ†È[ÿ],)sçv','wp-content/plugins/jetpack/_inc/genericons/COPYING.txt',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¹B;–ëa`GÔ¢·Þ‰','öƒ+¯P4Õg.½àžÄ{ÎáÊþ^WœÄ/![qu','',0,'?'),('è4Å«&\n4â¥v¡','wp-content/plugins/jetpack/_inc/genericons/LICENSE.txt',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','²4îMiõüäHj€ý¯JBc','¼ÿ\0v1£êsÔNí>cIDÙ¦¾Ö„Ié­0ÿ-','',0,'?'),('Mçl‡³ì|ú£¢åO²¬','wp-content/plugins/jetpack/_inc/genericons/README.md',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Äí6 ×ÙñV\0×ëÕè','Ò•RwÙ&8J’ñŒie@¤í‹î<Må}¾<,\"/d','',0,'?'),('á%ÏW;¡êŠ	pÁX¬ha','wp-content/plugins/jetpack/_inc/genericons/genericons/Genericons.eot',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¾»S¥Ó©\n¹/;]s>','4À+_É[ž¦õ¼ÂÚÌqpv,Ç´{öl¾¤’œÄÒ','',0,'?'),('^“9o¤=>hÌPðaW','wp-content/plugins/jetpack/_inc/genericons/genericons/Genericons.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',')ld*ªZŒ”ôÒÚbÏ','(Ó5Ä\\&HFI7l24=}`›jÕVÇÒôùBj4)å','',0,'?'),('Ñ­¿+¥P}iwÛ','wp-content/plugins/jetpack/_inc/genericons/genericons/Genericons.ttf',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\0ˆ\' üNê¹›óÌþV','‹?‰þšÇµ·_-ÏŸÅòµb7b¤\ZÀ	«\'øfp>UG\0','',0,'?'),('ûÿ9SñÞa†‡ï’ËdÄ','wp-content/plugins/jetpack/_inc/genericons/genericons/Genericons.woff',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ó÷;(Hîí-Jht¬x†','„¶;Òm†Ú}ÛâÅîÊÌe(~‘y0m¾= },','',0,'?'),('ì†ßBeÚ~íSî4ÎkeË','wp-content/plugins/jetpack/_inc/genericons/genericons/genericons.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¦P\rß6ÆÝXw®üxÓM',')å×À@ ÖÑµv©P½4\\W*Yôž\'à-cÍ|ŽŠúû','',0,'?'),('t†dMñ£JQn¿™÷','wp-content/plugins/jetpack/_inc/genericons/genericons/rtl/genericons-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Y+`–‹ºÉ#YgIKà','¿å¸ÁþJ¼Ì4xÞƒóMAò‰¯Åý•®Ñ\"+³','',0,'?'),('dÛý|1[ò¡]tFU¶','wp-content/plugins/jetpack/_inc/genericons/genericons.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÁMÖèNiJfÇâ\"Ôš',':Óµ’¥Lˆ0VHÊ5î¸\'~\0ŽÚ5	GOÊÖÓèèõ','',0,'?'),('ÿ‡Äå&ÄY“\Z»?€úÎÀ','wp-content/plugins/jetpack/_inc/genericons.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ûd*©~Ã-Û1¼ãÓ#','¤XkI}ú´^éXª	nóÄ\'ý€qº;y¿ü€kgY','',0,'?'),('2·8 óp7f‚u©‘õ½','wp-content/plugins/jetpack/_inc/header.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','~:ðÞQaF`W¨ó^¶ÔG','÷~\0~*xê›ç»Ó(ŠÔÐ0Âš\\3\nÂön¥ÃÕZƒ','',0,'?'),(':‹×AWÛzêl£Ÿ.£ÝÚ¯','wp-content/plugins/jetpack/_inc/idc-notice.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','‰-(rAR?VŠhtß','*É:×àì?²Nh\Z‹Ç %ºï2Ê–\nžâ%ÝÄ4','',0,'?'),('Ñxñ8=‡µôIV§ûyf','wp-content/plugins/jetpack/_inc/jetpack-admin.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','û8sŠž1sÐ(/èï½Îd','¶|~:XAùðí]KAª1†BÚÑèÉh	¯-\0Ug…','',0,'?'),('ÛH\'»¶~]«¨„Ú½5 Œ','wp-content/plugins/jetpack/_inc/jetpack-connection-banner.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','‰ÊE,g˜Oƒ“)éœC†','ò}þ§œ€¼âÒòYr¸vE‡ÉÔ—’í^?s‚ÙBö','',0,'?'),('Î^ž$4@g¾¸K”—1f','wp-content/plugins/jetpack/_inc/jetpack-jitm.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','|ëkÕ_{‰pØiÁÃÕ[','H¼1ª;IåÁÞkf”€±µB\r´¤*zá×ñô1','',0,'?'),('üÏJ#©Ï\n\Zû\"ÜÇÀíX','wp-content/plugins/jetpack/_inc/jetpack-modules.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','›Óó%õðÑ½î£³J8#Œ','cß`ƒÖ¨bt;áz>‚üõ«¬£™†ÝW¸G6àbW ,','',0,'?'),('xx€\\‘,\\ØØ2&Wnt‘','wp-content/plugins/jetpack/_inc/jetpack-modules.models.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ýE%wtBl=F”OÍ¾ùá','KQ/(šc=½¢ØÍ‡Ô#À½5%á0¾ØâŒÏ','',0,'?'),('ws\\ V¹j+ø/Ÿ cœ','wp-content/plugins/jetpack/_inc/jetpack-modules.views.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','‹ùÙèk\n$ˆ£ô£ö','6Ó ê”QÜiåMéWœÞFY4´É@ó³ŽùKžéLe','',0,'?'),('JÕ‚7KÂó>k\rQ«','wp-content/plugins/jetpack/_inc/jetpack-strings.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',';&.âL{j\rhîAÑ¤òj','ŽŸxW©G–úz{Þ¯’”­\"Ñ”ß®âv\\ÕìÕ`–oQ','',0,'?'),('pÃ°ùÎrzjDšcHl','wp-content/plugins/jetpack/_inc/jquery.jetpack-resize.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','H4ÔÈÐZáG½bY\Z<','A;–èëÓÉ»«%DVõ§ÜF…š\\Ú bípIÚl²]','',0,'?'),('gD,²Æg³g›ß¿E“Wá','wp-content/plugins/jetpack/_inc/jquery.spin.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','rwü É¡þöåü#A³','3X2;:qßßgƒýØ—Þÿ%šáRGCë¶š§J³ëv','',0,'?'),('sxr¢‘ó~¿ÁÀ rÛ','wp-content/plugins/jetpack/_inc/lib/admin-pages/class.jetpack-admin-page.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',';\"‡¼½‘ò–Ý60tßh\n','úÃ‘ÔÑ÷24P(Ãªîa\r? Ã0úÉÒ;dÔÏ¸Kr¼','',0,'?'),('ßGí^§³ Ü†óÆõ\Z','wp-content/plugins/jetpack/_inc/lib/admin-pages/class.jetpack-landing-page.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','£I#•½×î·¥Û÷\"ˆ*úÕ','±^râfPêå˜G`íêz:rÍM‹Ñº¬Ògÿ•2çä','',0,'?'),('·¼¯ÇV;.ž\n6É©™ª','wp-content/plugins/jetpack/_inc/lib/admin-pages/class.jetpack-react-page.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','+<3ŽzZvp}ÊYF[@Þ','÷~5ý{à«+þM[A1™¸q¢b ØcEyeÞ','',0,'?'),('ý¶òÅÒ:cªOÖ«Ožï','wp-content/plugins/jetpack/_inc/lib/admin-pages/class.jetpack-settings-page.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','xVJ}/?e¤oÎ;¹b+6','d\\S\rã.ÀröU\ná…ZvÚ¥!ì`¡=Œ¶','',0,'?'),('ªÂ7Ò\n²n­u:Kã®','wp-content/plugins/jetpack/_inc/lib/class.color.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','˜…/›ÅÎàÈYãýÏ','T¡mîŽKNp˜fD¡÷è»—áè£ÃÈ¬OÛñï3µ²Âì','',0,'?'),('hÏ©ØNÁéðDÊVˆ+	','wp-content/plugins/jetpack/_inc/lib/class.core-rest-api-endpoints.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','(ÅX¶çÚ’kÝÎ£²£v','“&ªucÊÃ¶²+|Ó³pèƒŽJ)eQ/¾×èÌ','',0,'?'),('¶“ðR:±ÆJü°ï½‘®{å','wp-content/plugins/jetpack/_inc/lib/class.jetpack-automatic-install-skin.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','öÕ áS›‘·9÷æ>9ŒX³','ðµ3Í1ý=šÄ^Ü\Z!bPBA	è±Ò·³Ôdb*<™','',0,'?'),(' Z„Ë*,ºgTñ|T EN','wp-content/plugins/jetpack/_inc/lib/class.jetpack-iframe-embed.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','4]ižM¯»³aöe¡9','¿PúVŽQÏ¯Ì[»Sè¹ÏBB‹¨]ƒnÔ±äî¿ÁŽ','',0,'?'),('÷Ö(þ™öë}v­ë\'ÁÎ99','wp-content/plugins/jetpack/_inc/lib/class.jetpack-search-performance-logger.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','~Ö±ØÚ\0¢dS®.~4','6Jž>67ÊÖù*lŒÛÅpy÷nã&\\>/¬¦úþ­C','',0,'?'),('«²:–[’þ¼¿Ìypé8','wp-content/plugins/jetpack/_inc/lib/class.media-extractor.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','‰G£î¡ß4ÿþÅºt.d¹','\r±$,|#…‘–Vë!åÊˆû$È‘Xë2œËÐHDNƒ','',0,'?'),('rªY=•akÕnZWSr','wp-content/plugins/jetpack/_inc/lib/class.media-summary.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','É¯Ó_èÁ‹ôôER¬œ','}­¹Ç¨ÝÓï|WÓsG£ˆ®ƒ€weC5‰L¹\"ß','',0,'?'),('9ngv´©¼öô0Ø*ErX','wp-content/plugins/jetpack/_inc/lib/class.media.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ˆJ»U¥žNð)ž=µÈø',' àfq›3èôx×@“OTI``|lcË¤Ü_ß\r7„\r','',0,'?'),('[¸\rSø®t\r!ù¦N9','wp-content/plugins/jetpack/_inc/lib/core-api/class.jetpack-core-api-module-endpoints.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','›• Ó½££`‡×‚•.C','ÉÍéý-å=¡Ð‘,b› CíLî0º>Aß*¯ ','',0,'?'),('e9ìµUf\ZÿÄãV¢tØ','wp-content/plugins/jetpack/_inc/lib/core-api/class.jetpack-core-api-site-endpoints.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',';wAg ŠfTv€¯=Ù','WëÍó’m6ütqJ7iK¹¿~¶H7ÇáÖ·ôøÓ\0”','',0,'?'),('\rÄ,`j`7I	n\"Y','wp-content/plugins/jetpack/_inc/lib/core-api/class.jetpack-core-api-widgets-endpoints.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','c¨\0¸•ý6tŠ<X*UŸ','­k0ÝŠ:æŒÉmÃ‹6Îý¸ü¸P…/és','',0,'?'),('QÚn-×dõÜaòé[','wp-content/plugins/jetpack/_inc/lib/core-api/class.jetpack-core-api-xmlrpc-consumer-endpoint.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Š>ÊxWBõËk¸µF\Z›','è«®˜®ÁC½r[ÓïÐƒ@B‘ÖôMÿßã—­9¤ž','',0,'?'),('#á6;	üNf—Ûç—','wp-content/plugins/jetpack/_inc/lib/functions.wp-notify.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',';ú¢€Rm³6#jØ`f','DÔCª\".â›¡£sŠÉAfàŠé[ÀyÑ÷L«ã‡','',0,'?'),('æU+\0e-Û:4yKöl|Ç','wp-content/plugins/jetpack/_inc/lib/icalendar-reader.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','×r„w¨1cN$Éðd´','îºW¥+ûðïí#7‚¢þŒ+“ê=þs]†{.m`å‚t','',0,'?'),('?¢jVì-{éÄç¹Øæ','wp-content/plugins/jetpack/_inc/lib/jetpack-wpes-query-builder/jetpack-wpes-query-builder.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','~¼Ü[‘\r5õL ét','#¥IÓZ”;†zw™ÈaÁávóh‚\0•„®Fýê«Ll','',0,'?'),('’.y;Ô^soŒŽrLawb','wp-content/plugins/jetpack/_inc/lib/jetpack-wpes-query-builder/jetpack-wpes-query-parser.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','0;/ˆsj”¬Å&`P&|>','zA«\"óÒÎM¸×l¦§o>UOµ˜Î·‘ÅfÀC‚‘ü','',0,'?'),(']¿‘nå´\"C=©ßµêv','wp-content/plugins/jetpack/_inc/lib/markdown/0-load.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ã(ZžKÃ \\¡ˆdf«š','\r{ÈÿŠÇšÆ¬MÔ†#n^UË8ybÕ¦¦D\n/	©','',0,'?'),('àœ6°(²¸T˜@Vˆ3','wp-content/plugins/jetpack/_inc/lib/markdown/README.md',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','5¨d‰`wàÚU\\Çÿôè','&¾ï³À°ÙíY›Þh½è¨u™¾¬óüAËnØv','',0,'?'),('`¬ÒK×‹Z—†ùÚ…T','wp-content/plugins/jetpack/_inc/lib/markdown/extra.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',':,ƒ˜ÂrÆâÄ€','eJ²¯êÂæïÜ¤Ûà:@``¹2ÔJõ‡8$²û)m','',0,'?'),('ÖB%ñ¾A0†\n³îÏeÍ','wp-content/plugins/jetpack/_inc/lib/markdown/gfm.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','õHQ‡”-‚–ßSOxg','§Ÿ^6o%ž3¨†aSÎ«5]ån~1É¯ç±¥,ÞÐ','',0,'?'),('¼L´ÓG3	ˆÿåíý¥ë¼','wp-content/plugins/jetpack/_inc/lib/plugins.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','“¦ÀÝëß½æÑ°ü^M(ª','Âù¾Þ>#\n”Œ’\rVpˆø‰=€ÚQ(l~;E>¾','',0,'?'),('¹ ³°QõÝ…Ì\'–!U','wp-content/plugins/jetpack/_inc/lib/tonesque.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¦–?e4ìºâpÆgzÈÉ',',)#û?¢]íÑìZ%@FÏû ?ÂHÈƒU=àÈ','',0,'?'),('`Ç?·ÎQ¦÷a]hýç:','wp-content/plugins/jetpack/_inc/lib/tracks/class.tracks-client.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','jŒŽö¨†cåÄB®','ú•*>Mk´c‹®ÜmZ&‡b 7,WRäÀW+!ß¤×','',0,'?'),('öÛ‚fJýë†Y9]š','wp-content/plugins/jetpack/_inc/lib/tracks/class.tracks-event.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','j	5”å”Ù—\\kÝK~','ÉÄúÙ…Ö\'s°RªHix!y;Jè›¢œµž\"Ø','',0,'?'),('6Ê´B5$«´ŽóÕxRÙÀÂ','wp-content/plugins/jetpack/_inc/lib/tracks/client.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','™É\rUkYÈp•Ò*L','£R!tyXæÈ£ø0°ÏÍ¹„h[»S›`h81úe~,','',0,'?'),(':YX­‘2[¼é¹;öó','wp-content/plugins/jetpack/_inc/lib/tracks/tracks-ajax.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÏÓƒ=‰0ô×ïýú5¦ö±','ï\0÷±¿7\\óIß»´ PzØnB\Z½°ÿ=ÁÜkveõ','',0,'?'),('CVé‡A´Qp–^M;éb\r—','wp-content/plugins/jetpack/_inc/lib/tracks/tracks-callables.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','bU¼a‘»M\rÑv%^','®€¦õýéªÎéþíÏ‘f³Äpt‰hñt?;s²]&#','',0,'?'),('Vˆ^Aþjæ€¬ê6`\0Æ','wp-content/plugins/jetpack/_inc/lib/widgets.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','u!4@1·c¨©ì[hn','ªbKM*\0ºÛ“—›£%æ\\éu=êv”–šâZ=£r£ëë','',0,'?'),('‡ˆÂZ=Gøë$U´Àç«','wp-content/plugins/jetpack/_inc/postmessage.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','êÜX2Q=VpˆJ—\\má','²±uW(TÅ™xVãg.aUþÑäýÁmÔ·ãFx„','',0,'?'),('‘€…¡q5H­$ƒO','wp-content/plugins/jetpack/_inc/social-logos/social-logos.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','±1÷ø¥µÓcð—ÎX†\0','U¯iŒû4åLša¯º\n6f[…)£3dŠ5H‹#AF²','',0,'?'),('¤M©J+û1®*u*Îñ','wp-content/plugins/jetpack/_inc/social-logos/social-logos.eot',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','×}M°1°à/ä`ÿNú_–Ä','®+l™	sfºbÇ5“ö`ÿR)f6Ëþ†\0ÿ‡ ëÊÄšš','',0,'?'),('`µ\0úE2z¢5]–m?¨','wp-content/plugins/jetpack/_inc/social-logos/social-logos.html',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ä]Â}Ï˜ÂÀ‰.ú^M›p','æáš0õK´OHCA›J‡Þùh‰Î¨v/Ê;','',0,'?'),('‡íÕ=\0–¾±â@;’	ök','wp-content/plugins/jetpack/_inc/social-logos/social-logos.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','P\'¾ªšêZ-Ã<¬ª','QK’9l.á\\ˆÓ.¢‹²‘»wýj…·˜?ÚÅÓ','',0,'?'),('»¹áŒ\0í-ØGæû)õf','wp-content/plugins/jetpack/_inc/social-logos/social-logos.ttf',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','h\'l¡¦OñFZ_Áb!»7\Z','%öüjuØõ|\Z—Pªˆ¨Y†áu•L‡szµBÛZ','',0,'?'),('\\çoI;¾U0E¤þQg?g','wp-content/plugins/jetpack/_inc/social-logos/social-logos.woff2',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','>gõœ+ð‡˜4éAÇÒ','#9…¾§Ý%Fé´må2š•D¹f…ÖX4q|É]±â','',0,'?'),('N|Š<.üPå¹a-Ó`¾ùÙ','wp-content/plugins/jetpack/_inc/social-logos.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','2ºaøWcúk+OêÛ&è','¸¤Q»O@­@[1_¶%ÜØ£êC¬½rÓO“q§^Ö','',0,'?'),('ŸèL¶gü‚bìZô¼”·ý','wp-content/plugins/jetpack/_inc/spin.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Î$·”&áº5þ,Ä«½;ÏK','ÑŠàvSÀSŸ*Àþ *<Ýáa•á¾fF÷dU†i¸ýj','',0,'?'),('Š_¯J«lzLtB‘	','wp-content/plugins/jetpack/_inc/twitter-timeline.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','º‘Û¨ž†æ×Wg°ºË','kUÝW!læ™ŠiÞôT¨â¤Øt\nhuJhó)Yìæ ','',0,'?'),('Ó*K1w\'FðŒf ^','wp-content/plugins/jetpack/bin/partner-cancel.sh',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','©‚¿ï_ê%ÙYNRº2','ÁDpŸÅÓðM‹O*Åò?ã¦$¶	±Â^Ñ0ZÈz~s','',0,'?'),('\\ÎdÀ\nå·Â²c|c\" ','wp-content/plugins/jetpack/bin/partner-provision.sh',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÍÆî»ÌÍ»\nLwdÍ†','å°ßûâÉÇXøÚÊ#àª¡°Ù¥Û¦äwì…vœ§ã','',0,'?'),('€x	2W?¢¢½¨ŒðJ%m„','wp-content/plugins/jetpack/bin/travis_install.sh',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ß]]Ëè¿yÙS“¿÷[¹','¶¶õÅøù¶×ªeñüÞœWæ¿¬:Xÿÿæá:Ü 9o£','',0,'?'),('Šp-x\\ý\r¦œ\Z’FFÍ','wp-content/plugins/jetpack/changelog.txt',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','³{©h¹A$9a°þÄ•\n','•ª\0È`³å×ºˆAQz‚­3Î.÷£\rŠZ(ß†äJ','',0,'?'),('µ‰I ná¥\r;]Ð_n9','wp-content/plugins/jetpack/class.frame-nonce-preview.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ï‰&Mé’@„^»~ËóÂÿ','´ÁŸ¿L·Ö5q1NƒÑ™@ÅÜò-Ô/½ëÃ7Ê','',0,'?'),('ËpÈ©ÒHð&cwX•Ÿ ','wp-content/plugins/jetpack/class.jetpack-admin.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¯%ª\r»ŠrX÷aËÇ}','²r!¡é±û…›vÇõ[ÿvÕÖRy§žHV“¿_','',0,'?'),('ú›ÊÊµì‡qw>•£ÎÆ','wp-content/plugins/jetpack/class.jetpack-autoupdate.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','©ÏÄ²¸%t–ÆW†îž','djD@‹¾/`ldEÝ\"\'üPa±‹Î¢:f§/5g[2','',0,'?'),('m[¬>¤žL:Tiî0\0½','wp-content/plugins/jetpack/class.jetpack-bbpress-json-api-compat.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','{FKÁZlZâ][ºè','”‚üiÙÈV±ãUµ@ê¦2†ÖÙS–rä&5\rîz/DŒ4','',0,'?'),('ÏíMaëD^Ö#ÜÑ&§<','wp-content/plugins/jetpack/class.jetpack-cli.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','–ùm\nk”9»vAUóÕÅ¯','¨àb³ú8!‚{›¥„cJêÛ\0¹Ä¤´&\")êÛò','',0,'?'),('l)ŒÚ\\\\y ¸‰1T‚Ÿ]','wp-content/plugins/jetpack/class.jetpack-client-server.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ëj{GòµA¿8½XÆ','S¸û­£\r)áà{0”*ˆÈM­O=yÖu’\ZÛ£Ú','',0,'?'),('?l·=‘®¹­ùÂQLy£s','wp-content/plugins/jetpack/class.jetpack-client.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÛxaSDø/}Ë>êÇŽ­yT','Ùe¾ øU|Ílýâ\r’Æ—é¸òcžÖ4ßL…TJà}','',0,'?'),('´`§?·9àZÉGÌV','wp-content/plugins/jetpack/class.jetpack-connection-banner.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','7êÞ5‹åÿâoˆvÌ#ú{z','!tGw\\:1Ïö÷W\"Ã:]H®ÈÇæ!k(´r÷Î@ËLÆ','',0,'?'),('«øùiî¤ap’Ò÷o','wp-content/plugins/jetpack/class.jetpack-constants.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','â-8€fÇ\r˜?»õ¹ÃÑ','E\Z\n¤¦õ#®¯Ñ†¡MÎïã\r0žÛWƒ‰Öð°q','',0,'?'),('xÊˆ›\Z@)´Ñ«öwb2\n','wp-content/plugins/jetpack/class.jetpack-data.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','»Ð…95OKÞûîjÆÐ.å','W›þ²(å`pÃ¯WÁ8é«QÓ{ýu%N®ë‹3 UÏS','',0,'?'),('ä/¢ÏÏûö-„W—@ §','wp-content/plugins/jetpack/class.jetpack-debugger.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ä%¿gì“ÙÔ‰|zlŸ)ù','ÒÚ/â`–û$‚Cö.ÉF8Båà[Ñ¦ÐâqšûñI','',0,'?'),('ê8u`öŠz©P½´}‚*î','wp-content/plugins/jetpack/class.jetpack-error.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¯½KÙø>NM=u2ÚCŽ','XïFÍ±;Õæ4\'× +‡Àº³Ñ»ËðPæ¾·ÔÔô','',0,'?'),('÷Àx{ˆ¢Ì®ÈøÌo','wp-content/plugins/jetpack/class.jetpack-heartbeat.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','þÅö8¹\r§Z85í(±®','ŒÁ!æŽo?•2ÍÌÅª?õ‹©³´ÿYâ¾àÇíµ‰','',0,'?'),('ßÚBGÛVFLìûÅ[†','wp-content/plugins/jetpack/class.jetpack-idc.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','>„x¤›ZDMãKŠòØ','Y‰¼}uRŸ°…íRè®-\n-õ”¾[@Î:å[Hæ','',0,'?'),('sÚzg{[=änZ÷ ¼','wp-content/plugins/jetpack/class.jetpack-ixr-client.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Í–jlÙ£EYÈ#Rœ','=&5ÖÛ/–&•óÔRzcÏvÙ‡—5SÝ\Z‹I®sK^','',0,'?'),('¼÷.(l\r¿Ç¢u	;9','wp-content/plugins/jetpack/class.jetpack-jitm.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','»â®{×¨Ö½<¦öM ','ˆ–±vª¦µ8²’%&”B`Ù¼fw!Ìåó:EäòD>','',0,'?'),('\'octh9àN à™ä?C','wp-content/plugins/jetpack/class.jetpack-modules-list-table.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Èxu<V·#s¡)Š',';\\#Ø)|JVRò@\'Í¸’j«_¦QT3w*SëÛ','',0,'?'),('R€„\"9ŸÍÏýœ/ûô\Z3','wp-content/plugins/jetpack/class.jetpack-network-sites-list-table.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ÿëei9—ÒUí\\ð]$','Mú4Ké÷øÿDÆÈ_síÞ}ˆ¥¶KFÚ2	?äÚ†','',0,'?'),('Î,j’*€èMMâP´p','wp-content/plugins/jetpack/class.jetpack-network.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¼B¤ºÔ›íáæ¿þU','Ä®^£^ÅÝ…Â„y8Dr´ÔD6‰âªÓ¿ýŠó\"£¹','',0,'?'),('²Ý­–Êt:Û¨h™4˜»ˆ','wp-content/plugins/jetpack/class.jetpack-options.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ýÄh²\rßQ.æk·cNÚ:','#™òœÊÝO^!É³B+`¿€mÈ)	‰AGÓià','',0,'?'),('ÖÓ8±7”(-Ã¤z«RÈ','wp-content/plugins/jetpack/class.jetpack-post-images.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','_%¨»¨JuÔ‰P’Æ3¼','¥¦‡pì€uÇî˜¶ƒa.ñgj¶íšq	YFEÉ`Ù','',0,'?'),('ãÕŸ¾±·½~.ª\0ð;¢Î','wp-content/plugins/jetpack/class.jetpack-signature.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','‘1~Ý·),ÔÂ6`j','—+êöÈ¥¶Û—{*â•€WÊEs³_„.³èÝ÷ŒÄª*§','',0,'?'),('u\ZeÛ¢Œj9d:b+º5','wp-content/plugins/jetpack/class.jetpack-tracks.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÀçÜgmÔ»yá[«Í','Œúf™´óPž‡òù ,q5zuô…’õ¾|ß!Éª','',0,'?'),('¹@dêµx|‚àÜp$íÊŽ','wp-content/plugins/jetpack/class.jetpack-twitter-cards.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','{ÅòñM÷Û­ÆÑ\0ÛW™œ','‹=Ó\\A\'‚.HcÌvïÛÔÉÜÖª¶—¦³ˆáôhå','',0,'?'),('=-!-Óª.•ôDÖ«„ñú','wp-content/plugins/jetpack/class.jetpack-user-agent.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ìÌ6<Þµq¿Ž£O','@\0µ!&ne´ègZUô†ÇÅ{} [6±³3¸î\Zž','',0,'?'),('•ÆVûx%FX\r®Êè—','wp-content/plugins/jetpack/class.jetpack-xmlrpc-server.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','êËCÑ5Io/t<ÉÑØÕ','ÿ]›×qÉò*tpæwƒbzr87ÖöƒJ6ûÖD‡ØÄ¸Ø','',0,'?'),('àŸ•onýŽSkM}Á\\','wp-content/plugins/jetpack/class.jetpack.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','<µë\Z›â$nee','B¾Ö‡ãaeôî,á8¶V¤{D“y2:$ÍIÀ(­Bòô','',0,'?'),('ÚÇÁTf!êŽ‡Ÿ¯$','wp-content/plugins/jetpack/class.json-api-endpoints.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¸’™:“\"Y;ùê)#ÏAÌ','Í0Õ¤ô&Faá?\0»•kd›©[=uÑvK‡\0ú å••','',0,'?'),('ËÛó$¹@Â…–;Ñ ','wp-content/plugins/jetpack/class.json-api.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','áéËO²„%»¡98…ÇÓº»','÷jêð^nÄcÓ¬N‹8ë¨KßuGÍ,Ð•˜~/\'Î‡','',0,'?'),('V²DgiÇ²AÌ›g','wp-content/plugins/jetpack/class.photon.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','5ùôç—g¾i¦SíT³¶{','†‹ñ9pÏa”RtÎ‘í¥Üv¢ƒ«_åŠ‹ÿVïùk','',0,'?'),('¢kfŠ+c‘40|\\äàö\Z','wp-content/plugins/jetpack/composer.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','RúPgüº}ò:‡ \rž—ÌY',']«´ÈÂ™“ùÌ%%ý<•5ƒ1\"‰U&F)âò[','',0,'?'),('$Z–äE‰7ÈÙëi¨¬*±','wp-content/plugins/jetpack/css/dashboard-widget-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','_w¬(œP=æ¯6Ëãqln','ƒžÅªŽJèKÔaùälô‰èò/=‰ê™^Oƒeç','',0,'?'),('èF„öo ‘6X&¶Ê\ršÃÔ','wp-content/plugins/jetpack/css/dashboard-widget-rtl.css.map',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','B²\n•0Uv0‘±” ¯¿','zxš?ñÙè×’GZœ\0Ë®®žœ³\n±sFaª)î¤','',0,'?'),('®”‡/05ó@žÍÒ°&.','wp-content/plugins/jetpack/css/dashboard-widget-rtl.css.min.map',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÔŒÙ\0²é€	˜ìøB~','ã°ÄB˜üšûôÈ™o¹$\'®Aäd›“L¤•™xR¸U','',0,'?'),(' Åê!VÁÐŠ9·Á7ÈYv','wp-content/plugins/jetpack/css/dashboard-widget-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','z¯µ=daSn#å‚:¤±cÄ','D\Z{m¾ÒÍÔÁ¸\Zelmâ®{e¹Ht!¹IÎv‰K','',0,'?'),('#4r0ÈÜ¹í»A“3','wp-content/plugins/jetpack/css/dashboard-widget.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','”þi$ÖÏ@‘u²ÔêT','^È9°Ø´É!žN°?Šï\ZÌíË«¥L$-x`¿…øt','',0,'?'),('Òó3Ïx\06ÆÙ5²öX®','wp-content/plugins/jetpack/css/dashboard-widget.css.map',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','’f¿ŠÜ–on“Ô…î·™¤','êaÃuîRô``I’nW`ç6lQünð$œHÞ*ÏÏö¾','',0,'?'),('øNû·4]äúÿ½ßcËGo','wp-content/plugins/jetpack/css/dashboard-widget.css.min.map',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÔŒÙ\0²é€	˜ìøB~','ã°ÄB˜üšûôÈ™o¹$\'®Aäd›“L¤•™xR¸U','',0,'?'),('¤ôbÚþŽ×Uë+ld.','wp-content/plugins/jetpack/css/dashboard-widget.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','°WÞMXÉcBLZ\Z¯î1t','-â>ØcAé ×ô{Õû×kGB*¤ÁôÁ·¤ÙÇZ÷','',0,'?'),('Ÿ>ÑŒ„ý¡¾j´÷yßD','wp-content/plugins/jetpack/css/jetpack-admin-jitm-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','-íTé\"‘dÕ2D9X’…í','‹§XOÒ¾dU8IY+\\üˆõfÎTÏì#=@ˆ<x:Ü¼','',0,'?'),('x·L¼T|Â(Ù¬Òn–\nXˆ','wp-content/plugins/jetpack/css/jetpack-admin-jitm-rtl.css.map',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','zìF@	ëÆ®«mõµîçù','ïK!¹Ã8‚hþ/„Tª’H,<ª)õš£A|Ñ\n½e—','',0,'?'),('é /\"é3zI%5\']»VOÇ','wp-content/plugins/jetpack/css/jetpack-admin-jitm-rtl.css.min.map',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÔŒÙ\0²é€	˜ìøB~','ã°ÄB˜üšûôÈ™o¹$\'®Aäd›“L¤•™xR¸U','',0,'?'),('‡¼K¼^2ãO7jxy¾³Vž','wp-content/plugins/jetpack/css/jetpack-admin-jitm-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','*íðÂkÉëÓ(d[°R²','ehLY*g¸B€sáuãÐ†èWŠÛcÓÉº!¬Êì>ê?^','',0,'?'),('k_aáŠ„êã&A…ÎËr','wp-content/plugins/jetpack/css/jetpack-admin-jitm.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\'øî²lÎÜˆ7|ä§6','—Â’pã/û•S³„*ºÎ\ZH÷jX¸ð(}Û\'Ôè','',0,'?'),('¦®˜tIrQI¢€Ge','wp-content/plugins/jetpack/css/jetpack-admin-jitm.css.map',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','J³aJzÚ§ˆ®eãŒëýY','v²ŒÆúýÁ‹\r\r°€¶w!´\']w«´Î<fNu6´O','',0,'?'),('lÆ¤œiBS	&P¸Ió^÷','wp-content/plugins/jetpack/css/jetpack-admin-jitm.css.min.map',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÔŒÙ\0²é€	˜ìøB~','ã°ÄB˜üšûôÈ™o¹$\'®Aäd›“L¤•™xR¸U','',0,'?'),('CÈ[þ%a\0„8R¤FË£W£','wp-content/plugins/jetpack/css/jetpack-admin-jitm.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\n+e.Øúÿ‹É¶._,|.\"','û	xˆ\Z{ê/Ôïð§u=^\\\nT*œH:ê_>YÞ;œ$','',0,'?'),('ÙÂñ\'\0;¥0$Œp½ÉÝ¨¬','wp-content/plugins/jetpack/css/jetpack-admin-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÑîÏ¨SHöÑñ‘·‡ Jkè','ßZ\0ÓãØ…Õ£‰s:šàÕíyŒ$ºÕ®v\"\\\n\0•','',0,'?'),('à+‘=SñÅñ‚@ÍZ`','wp-content/plugins/jetpack/css/jetpack-admin-rtl.css.map',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ö²§(ÖUfSaá—rK|','ªò·Yx{=FŠóGdn·ÔÞHH\0KxÇ	ã÷}gÅÂÁB','',0,'?'),('êÒ¸p¾GBÝ=o\\“¸´¼','wp-content/plugins/jetpack/css/jetpack-admin-rtl.css.min.map',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÔŒÙ\0²é€	˜ìøB~','ã°ÄB˜üšûôÈ™o¹$\'®Aäd›“L¤•™xR¸U','',0,'?'),('ç|X¢‚”K‚ÿ«zn>S','wp-content/plugins/jetpack/css/jetpack-admin-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¿nÝ°FåÈVlG›•ä','erµY8`;Ç½ÄÿA^~ªú0˜ü2@¡\0åã¾ˆÙXø','',0,'?'),('¤TNÚ…c\0ü=‘Ÿ¦šn','wp-content/plugins/jetpack/css/jetpack-admin.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','šßð¾ìó;°V./ÒS','oß¥teÄ—;Ýì‰§ºú¾ÑDÄ\Zß5\\k5,§²EI','',0,'?'),('åÄw™&ÿÚÍyÑê™\ZR','wp-content/plugins/jetpack/css/jetpack-admin.css.map',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ôýé(ÔÃÐT”\rvß','\"Æõë_ŠÍ±×=òšðâ—eJs…(ºÎµÔ,','',0,'?'),('âxš«c‚!¦mCŒq','wp-content/plugins/jetpack/css/jetpack-admin.css.min.map',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÔŒÙ\0²é€	˜ìøB~','ã°ÄB˜üšûôÈ™o¹$\'®Aäd›“L¤•™xR¸U','',0,'?'),('H5ç”Ù^/àQeèà‰K','wp-content/plugins/jetpack/css/jetpack-admin.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',';„êGV3Y»WÉÖ[','gâ­¥B)Ðï¤C¯·ð­r¼¤gcrE¿®š-Ü ˆ','',0,'?'),('ˆúüM$Ñrä»22xÿå8','wp-content/plugins/jetpack/css/jetpack-banners-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ü€/V¯Öö	ôÁ2^Á¥#','SmSHGc^%£\nO«/æßæê41ëgXÄÄš±Q—QŒ','',0,'?'),('§bCáb@Î\n%6ì','wp-content/plugins/jetpack/css/jetpack-banners-rtl.css.map',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','b;k¿üáÛ¾\0~#^Ø','Ã}aê$T¦h]ØÍY5™ôýªO‚B+Fü¼“~‰Ç³q','',0,'?'),('ü3œp	”ë‡>“è7]V','wp-content/plugins/jetpack/css/jetpack-banners-rtl.css.min.map',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÔŒÙ\0²é€	˜ìøB~','ã°ÄB˜üšûôÈ™o¹$\'®Aäd›“L¤•™xR¸U','',0,'?'),('Mà	@Û/•”¡ç-_}¢','wp-content/plugins/jetpack/css/jetpack-banners-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ë¢7„câ‹ u«Ÿßª:','dC+x\0ƒñHskƒæÎ˜ÙnB~v/\nvDhu³´-ŒzZ‚','',0,'?'),('¤\n€*	Ñ¹V!y7ÖYxhé','wp-content/plugins/jetpack/css/jetpack-banners.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ËUÒ©@LjÜ·þÀ’TÝF','x¾Mï¥iþe&âó¹ÿ~ž€>«¤\Z‰m-þ‚\"×ù','',0,'?'),('œü¿7O[Ó¸¥ƒÔG©\rgÖ','wp-content/plugins/jetpack/css/jetpack-banners.css.map',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',';¤l!”¹\rUœ²Àh§©Z','_ñ\r°¨Xñ]»²–÷J7(L*ãŽ#½]`‚ã','',0,'?'),('i‹±qk”ê	øãAÑ','wp-content/plugins/jetpack/css/jetpack-banners.css.min.map',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÔŒÙ\0²é€	˜ìøB~','ã°ÄB˜üšûôÈ™o¹$\'®Aäd›“L¤•™xR¸U','',0,'?'),('’í3jk‰ÇâHÍöHBƒþ','wp-content/plugins/jetpack/css/jetpack-banners.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Sýþ“üb*ÌtZóTZ','‰Ú#´³ß\\öÃ27gÁ>kü{~°™=ç¢¤:ýÄ','',0,'?'),('ªÔ\n½=*=®#\rBL¦','wp-content/plugins/jetpack/css/jetpack-icons-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','às[öh“ƒâgÏ-gÂyN','jÕK,|Ùmm†&.Ô—DÛÿ9v¸™oY9é[\\AÒi','',0,'?'),('d¨tö3Å›fy`×>½	','wp-content/plugins/jetpack/css/jetpack-icons-rtl.css.map',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',']Ø­;›ÂÞÇYÍÿ#{ºg','}Òß_…w-	Fµ7_ŸiØõ¾¼Ä–š;ÈLç¿Ñ','',0,'?'),('ªo¼H3ï\nêï€7ìz','wp-content/plugins/jetpack/css/jetpack-icons-rtl.css.min.map',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÔŒÙ\0²é€	˜ìøB~','ã°ÄB˜üšûôÈ™o¹$\'®Aäd›“L¤•™xR¸U','',0,'?'),('UvBPBºé£á¼Â‹¿2Ü','wp-content/plugins/jetpack/css/jetpack-icons-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','´1bO–Í¨&À^Mú}ç','`çÍ,ñi\Z?œ´‡ˆºŠêë`=ý“â¸D°žõÌ…','',0,'?'),('~£YzB9ìà²UâÉœ3','wp-content/plugins/jetpack/css/jetpack-icons.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','uxV^Æ&\r…Í¶/ÓŽ',']6ŠœúæøÚ’šÓóŠhœ5^6`j´´÷wÉç¬','',0,'?'),('í2%Ú¹ê…Ø>–J9‹','wp-content/plugins/jetpack/css/jetpack-icons.css.map',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','LMÙùA”®rÌÃ±®¯ÚÞø','y×˜tÅÿ‚%ˆ\'åî¥·/K!4 Î¿âvÈÆ','',0,'?'),('Ó„îN§®4ÑŠ´–Ç’Àü','wp-content/plugins/jetpack/css/jetpack-icons.css.min.map',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÔŒÙ\0²é€	˜ìøB~','ã°ÄB˜üšûôÈ™o¹$\'®Aäd›“L¤•™xR¸U','',0,'?'),('·WábÊ±s\'òfäÊ','wp-content/plugins/jetpack/css/jetpack-icons.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','´1bO–Í¨&À^Mú}ç','`çÍ,ñi\Z?œ´‡ˆºŠêë`=ý“â¸D°žõÌ…','',0,'?'),('Ï–¹`¶kxDæ/£„\'Ó?ç','wp-content/plugins/jetpack/css/jetpack-idc-admin-bar-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Í†:ú$v‚±Á-Ÿ¡Ûíx','Ýj?Û.Ñ‡;{ÿ•ÕÕ$Æ\n¶ŸòÏÁõÁî','',0,'?'),('Àq¾ŸŽF|ÎØ,Ú©èÏ°','wp-content/plugins/jetpack/css/jetpack-idc-admin-bar-rtl.css.map',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÑÞª¦=†úÌŽ«H¯¡','•‘ÄH¡Ì•åEl<úÆ”«rö MÒ]ä1ò','',0,'?'),('$‹dÅHòP›‹\0ëÿ~§p','wp-content/plugins/jetpack/css/jetpack-idc-admin-bar-rtl.css.min.map',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÔŒÙ\0²é€	˜ìøB~','ã°ÄB˜üšûôÈ™o¹$\'®Aäd›“L¤•™xR¸U','',0,'?'),('‰ÃWïýW×±àƒÍÆ>“','wp-content/plugins/jetpack/css/jetpack-idc-admin-bar-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','§FÞ2¼ C2…V›¬À{Ì',',<S=d…h—JÈ«ˆ£,–	Õ°:h\"¬¶Xz7','',0,'?'),('µDÿ²=Šë#$ÇÏÓ‹','wp-content/plugins/jetpack/css/jetpack-idc-admin-bar.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\"okXÑËôÙ&@ÀrH3í§','ÍÜlIöLþ”»Õ¨7¸¿^ú¬ÀóAH› NÅ£','',0,'?'),('ÕºƒÔÔ-æú1¹wóò<c','wp-content/plugins/jetpack/css/jetpack-idc-admin-bar.css.map',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ôÿê]ÚÔ0û÷ítÖ5è)','S.ýØìlÆN_¿†¹]:œ2ÂèwÏÎ`cÔ’\0','',0,'?'),('_×¹ÖhvFÂ*«$®Î¨Î','wp-content/plugins/jetpack/css/jetpack-idc-admin-bar.css.min.map',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÔŒÙ\0²é€	˜ìøB~','ã°ÄB˜üšûôÈ™o¹$\'®Aäd›“L¤•™xR¸U','',0,'?'),('ÛÚ´=Åä¦q`µû›Ö','wp-content/plugins/jetpack/css/jetpack-idc-admin-bar.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','§FÞ2¼ C2…V›¬À{Ì',',<S=d…h—JÈ«ˆ£,–	Õ°:h\"¬¶Xz7','',0,'?'),('âÈüêŽ<Ðâ$=ù%éYW~','wp-content/plugins/jetpack/css/jetpack-idc-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ðˆ`ˆØ¸†‡GêÕšd','š\0Úš¢…Ý6Œ	4gy¾‘(íDUtž{Fó;—§¹ô','',0,'?'),('Hcó\0KJ2vGŒ°·0','wp-content/plugins/jetpack/css/jetpack-idc-rtl.css.map',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','etÍÇþhŒbùÆSh†W\\¾','&»o`ðËí°\ZYiÍj&	Àåíe9|Ì}¯’zXMj','',0,'?'),('›¨¹î3Ð¥XK«ÁÃc','wp-content/plugins/jetpack/css/jetpack-idc-rtl.css.min.map',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÔŒÙ\0²é€	˜ìøB~','ã°ÄB˜üšûôÈ™o¹$\'®Aäd›“L¤•™xR¸U','',0,'?'),('Z­Ï¹£Ê8†…©Õ|\0','wp-content/plugins/jetpack/css/jetpack-idc-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ß2”Ï©ñ^¦PLÌ…Y','ç-\07þøÑDšãê0F5,„v)¨Etl*´õûôÄT†','',0,'?'),('^70»þR¤âe=š+','wp-content/plugins/jetpack/css/jetpack-idc.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¹ÄÍ.ý©{´¿©K5%»S','£¶Í¦÷ m&ìö,wåmÞ™%mÎâ7À•Á×6y','',0,'?'),('\ZÁuoÆNá%óf%ñ¹}','wp-content/plugins/jetpack/css/jetpack-idc.css.map',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','@5bîP<àöŠLjša`Ó','Ë&N\\[‰ŸO‹+qÚµŠIây(o:½ùïI,õƒç','',0,'?'),('íØÜ\'…*Pá›','wp-content/plugins/jetpack/css/jetpack-idc.css.min.map',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÔŒÙ\0²é€	˜ìøB~','ã°ÄB˜üšûôÈ™o¹$\'®Aäd›“L¤•™xR¸U','',0,'?'),('÷8T„—^÷[­¦÷JÉ$','wp-content/plugins/jetpack/css/jetpack-idc.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','&°¿Èg?Ì§¾Ä~ó','i|j\"±ûkÜŸWç‹±àv7´­œâø)+öbJ¦£¨Íõ','',0,'?'),('Ä3~\nÐn²ÜfF¢§€ÓÀì','wp-content/plugins/jetpack/css/jetpack-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','õŠ†Î³Þ9·äÈ¬­„ß','wÝÉÇRÆó÷	>EÞBïOÙ÷¥–òQÑ¶Ä3O”ôq%†','',0,'?'),('	¿/-±O‡ôc— tÌ','wp-content/plugins/jetpack/css/jetpack.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¹Gžé¢÷5NÁþCm .Œâ','”ÓZ6šñB\0†^½‘Ç\0î?¤,F“¤l\0u','',0,'?'),('ÌD?žßºŽÆWCó¨‘¦','wp-content/plugins/jetpack/functions.compat.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','yV°\nœÌ#=‡7ò','@÷Ô{‰0Ï=²g–™HïWßË/QXÇ zïðL','',0,'?'),('Xîòh!±³§üÃb„1œ_','wp-content/plugins/jetpack/functions.gallery.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÜŒ[vuï£öÎààx','®’}¦‹º,bb\\³XEþÁhþtéG•^²{‘O','',0,'?'),('IBh¢Óüiê\'U¨R£','wp-content/plugins/jetpack/functions.global.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','|ö€ÄÁåàt\"g=#¹õ','±ZzÀô®h:0hÿÃ;Ú	ýL.~ñï´8Ÿ„à	Tå~','',0,'?'),('\rÊ9H„‡ðšnmsÈä','wp-content/plugins/jetpack/functions.opengraph.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ìcë¯÷qÍ¹µ{+Ð@h•','ÒÈ½L\"ú!ÃåòÀ9|>Ž1àhzQÅmÍé\Z\0»í\0','',0,'?'),('ò„\r¬P‡fä¯NÇ”œùo^','wp-content/plugins/jetpack/functions.photon.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¸iƒhJ}©ê7ž)sz','Ÿåb­>ö3I]ÐâÂoØ^¹ì=K£þ%(žN{ßººÐ','',0,'?'),('žÞ\"ª;NòUŠvˆ=;ÀW¼','wp-content/plugins/jetpack/images/apps/triple-devices.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ä0õüéâÆÎq\"©\"ìPâ','ê®²Ó2Ë1DéC:2>&jF3\neKíÝãÎ«Ý','',0,'?'),('ÍyÓ×’Ö·h—\nð?R3','wp-content/plugins/jetpack/images/apps.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','.OÓ»—lJ£Wì\r>Þ¹','É¦a‡Â8¨\'È%Tigì5QëHS\0	É¹˜86þ:&S','',0,'?'),('ëªå4&hZ!:Uj1ÐÅ','wp-content/plugins/jetpack/images/cf-ss.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ßþ0ƒOð(5r%Óõ(Œ','iîžÚ}ÍÚQ<öëŸ÷ ¡°—S84Q«’¾;óõ4µË‡','',0,'?'),('Ê±ÍÑ²í7ütu0Ú\'yþ','wp-content/plugins/jetpack/images/cloud-based.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','k¾ûq»)Ò!à®àb‰Ù','ÄâÒ]Å¦rDË_¦{Èx@«nß«PBL;=ÿÓçuá','',0,'?'),('ú.Ñ¬`rîæ\ZÕþït','wp-content/plugins/jetpack/images/connect-jetpack.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','úcÇ,:`¥óõ€„=~W6Þ','—uÍnŒ©­–Túƒ´m¦ZndmG¿Ó°Ð\rkN·v6._','',0,'?'),('öOnY¨MÄ5k œ4Î{Õ','wp-content/plugins/jetpack/images/connect-plug.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','´£]úšÏwVØÐ×ä0°','sÛõ°-ìƒc[þîˆ>Îµ`äâñ‰>Æ1slÇ$±½.O','',0,'?'),('Uî·£U…{á‰.ƒ¦»d²¾','wp-content/plugins/jetpack/images/customize-theme-2.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Y´`ÃT{o…óûP¨|À)Â','ÿ×\nÉGÄÝY:­²x”ba Òköì¢ÑK®ÈßVOÂ©','',0,'?'),('U=8ägËV¾Y›ÏtZ”','wp-content/plugins/jetpack/images/customize-theme.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','SÚe¸z µk=P–ƒËž','ÆˆguŸè‘¶45Lß„r«ÔÁå>%¢¬ {I(l','',0,'?'),('ßb˜ÐÛðŽÌæÞ qúqµ×','wp-content/plugins/jetpack/images/feature-photon-lrg.jpg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\nµÁ¢ ì–Öt„î½[i:d','»¼’^tj»7’U¦H8àÛëê÷tó%ËH¤/4R¼´','',0,'?'),('.J~ä¨<N³ÑÉ2ëR2q','wp-content/plugins/jetpack/images/feature-photon-med.jpg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','RO–taRÀ\rºvršÉŠ–','±) DÈ:$^9fÐjfmÆÀp%øm‚dÆq@','',0,'?'),('†¢r€ì¹å8+;ø	†kÿ','wp-content/plugins/jetpack/images/feature-photon-sm.jpg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\'º\'Ÿ¢Ûð0ßGêP‚N\"é','\'€ˆEC1\r…7çìêÒ×‰ÈÝ(#Åîô€a_=','',0,'?'),('f—÷@èÍ{¼;\0¢Í,Òk','wp-content/plugins/jetpack/images/generating-cash-2.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¤’ŸXƒÅí>Küô;éÀ','=m\rP$‚»÷¤)¿cáoí\n6P½ãÐHŒg7â”','',0,'?'),('Ó`¤)üm[…F\ZL	Œ','wp-content/plugins/jetpack/images/jetpack-icon.jpg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ºä_a>^Œ&#¯ø2‘î','²QÂïç¨f•6SN*ßÒ…#þ,…èýÀ3É_jð','',0,'?'),('£A\'üg™4Ig‡\00Õ£«','wp-content/plugins/jetpack/images/jetpack-logo.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¿%\n‹˜87Vö¬èêÇ™A©','\00¦h\\T»ƒ®»ˆu‘ìr&!¶â\n«aho„Æ‹','',0,'?'),('Zbì^RÒÁà>E€žje','wp-content/plugins/jetpack/images/jetpack-logo.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÜL}ù3¸¨n UÜIþ€ƒá','Š#‡ÍqÃø\rÅ&ÆFs  $Qqö3{¦','',0,'?'),('Ûbœx8D·}¯ËŠ4o©b','wp-content/plugins/jetpack/images/jetpack-search.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Æïe‰W¤¤‹£A¯€','\"¯žªó\\i8¹ÃÆIU\rÊã!¦Aõi¾(ËÍ4Jœ÷','',0,'?'),('e?¼“H‹(€ Ý[6yo','wp-content/plugins/jetpack/images/jetpack-welcome.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÿÄÂ|ñådEžgÆ‹Î‰2','MJ5ïìbžÿ7§{!Ðá#ºM«Ë³C\rklÀ>','',0,'?'),('K:ƒ1’Õ©\'l:ì’ó','wp-content/plugins/jetpack/images/jupiter.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ªÝó\'údÃ–U^ÇÏÕ','^–Éz3Sû¶vØ½§EfÊåg.;h‘]ù•JÜc©*ã²','',0,'?'),('ÃIM)!a}Æ³S1','wp-content/plugins/jetpack/images/long-clouds.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¹JýPñ$<¥„Öï€+¹','uÂâx{b—ŒLøW4¥^ÄÚ6Jj˜R‹sm?Ž‹@','',0,'?'),('Ã¬¹	sKé(~XJ§odr','wp-content/plugins/jetpack/images/man-and-laptop.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ž!ÝÎ¤“‡Djò}s','ÄSÂ1qÇ_¦µÖ”Å“tù-tÏqKºïvîÆæ“\\Én','',0,'?'),('j6N‡uâË{»¬\"ï¤ž','wp-content/plugins/jetpack/images/people-around-page.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','.íVl»ÓH’¤aâ ¾4á','{\nˆ(ôO·åÄ0GuëÖZL·±RA9wÎ·­7§%','',0,'?'),('õx|SÊ¹áKü4x~E¨š','wp-content/plugins/jetpack/images/plans/plan-business.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','mž\"UégçÞåzuFE','\"eÈO7Á¾ºäåh·ðÛn!æe G%eÝöƒŽk','',0,'?'),('‚Q91Z›ŽS¹\Zì\'','wp-content/plugins/jetpack/images/plans/plan-free.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¥P—\Z	èø^¯þ/ž¤','ûAb½¾ÅŽæÜ\Z=E~œZâÓ×št†Å?³°+n©','',0,'?'),('°möûRÕ¤Zù-“5‰œ','wp-content/plugins/jetpack/images/plans/plan-personal.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','€çÅ\n“-TÇý-u{á·','¬z×8È°•qí)¢EÂCŽEªªh¨2½ôs','',0,'?'),('œÜb–iÀ\'\\/ ,¡','wp-content/plugins/jetpack/images/plans/plan-premium.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','-+ª4¦3#qÿ—%5B\0Ë','æß‰€L&äfë†Ý`Ç>ÚeÚ×\0#Mu	 |;Ôñ','',0,'?'),('9Ðw–­54äÕç”^»h','wp-content/plugins/jetpack/images/rss/blue-large.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÛAô`Ú;io|µ•×u^e|',':~4i‚?jßÙðþ|J6Žh¬Ë¹‹åãCGþ','',0,'?'),('ýwÄ¢+}Àduñß³°W3-','wp-content/plugins/jetpack/images/rss/blue-medium.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¢áRTâÂÒ$:áÄË—','ÎŸûq£`†$\Z«Ák™{º–Ð}©›ÐÁ?‚Ì™™','',0,'?'),('¦\0­mQHßRýÁ\"\0ô','wp-content/plugins/jetpack/images/rss/blue-small.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','•Š®Ð1\\ŽÆ:+u”éÕç','p®;ÛJàó(ë&Lªš©fÊ·}qA0¿ÃŽØ¥>¹','',0,'?'),('§>vpÑu9iµ\0W*V9','wp-content/plugins/jetpack/images/rss/green-large.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','®Î‚0à`è‡!Å6º+ØLd','AÌ!“˜ÁÒ×Óÿ„kÆbï¶üe…¥sÇM^Ç»ñ','',0,'?'),('ÞÝŒ¯»@ó·ùL0®','wp-content/plugins/jetpack/images/rss/green-medium.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','øe™a¨/Ï\"fnt„èÒ','ñ-\Z?*Õ¤ñ\\!\r–Ž¶•ùVÙÐX¿€°ôî“ì','',0,'?'),('–›p¡·ÿDŽ|½;ÌP','wp-content/plugins/jetpack/images/rss/green-small.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','!ÓoQ]wn¢\"³”;¼Î',':˜ðEºëi“âäöV˜[%Z:”;ˆä»hÁ™','',0,'?'),('ë„™ÅGKFa}«#ª¹8P','wp-content/plugins/jetpack/images/rss/orange-large.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','»œ!þÐ\'´udŠLt{b','¾?mr\'XÜ.ÆiåË\n,˜ê\'=C„ì¿©Ö…hEŽa','',0,'?'),('Ï5«½GÌ;.°¸\Z@ÁC…','wp-content/plugins/jetpack/images/rss/orange-medium.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\\ˆÉÓÅÞ‰…Hù-™?ì','íJ½å¯µ”@™à ›ý=ò¡$	Ð|\\€ÚŒ’®Ü','',0,'?'),('¬äQËPj„j¿¾Ý¿˜—\"','wp-content/plugins/jetpack/images/rss/orange-small.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',' ¢¶gÎe”¯†ÑløÊ­','r`b¤7í¹jbŸìËVfÆd¹\'éºêr¶Š…Ø','',0,'?'),('\0‹À*á@fùÙºd¬ku','wp-content/plugins/jetpack/images/rss/pink-large.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ú9¢Ýj¢ïÖÖ”c\Z)ë','y…„$xVû±–e˜5ýøt—–~Lk?)$i¸4.`','',0,'?'),('Ugä¿*09Úp†ðCEíf','wp-content/plugins/jetpack/images/rss/pink-medium.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Tký\n¾ÂÔqýA!=Eo','zÈx=èö¡ÇÞà@ò¡j^¸¡ÅGsT¤Øþ¶','',0,'?'),('jUöÛ†ƒÉ†–8ÿµ|£','wp-content/plugins/jetpack/images/rss/pink-small.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ñÖ÷bÐ¼š3¢OŒ#Ù','^…ÆfÇ;Ç•¹?õ‹š9¿’³£/‹1þ†K³Xâýç','',0,'?'),('1›‹Aà}ÿ$—G}z','wp-content/plugins/jetpack/images/rss/purple-large.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','s<OVæxÀèÎ%p@)GY','SpIŠ”Oü$†sGœZš¿áÔLoëÄF\'\ZŠ°°©','',0,'?'),('5Ë¯ÂŸYÛk\rò´©°î','wp-content/plugins/jetpack/images/rss/purple-medium.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','T­ŒÑwuc5r4ð%','¥—ø®hZ¾\"³›‘Onùòf4·P%æÆˆø×»3Þ$','',0,'?'),('Ê\ZÙ†lg-l›Æ«ü¢êø','wp-content/plugins/jetpack/images/rss/purple-small.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Wrˆõ©‹¶U³¾‚t	','à«ÕÒ±ù&ÑM“ÉKfÌ˜žì•<Ø– Ô`ÔÎþ}»','',0,'?'),('z6H‰î>ÏÛ~šÒZž^','wp-content/plugins/jetpack/images/rss/red-large.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ËPü5ª^PÖäÅ†qZ’Ö','Ã“¨	*o.1<_ÍxÖ¯ hÏð|®!*Ä7eqâü','',0,'?'),('œZØùë1*•\"rØØæÜ','wp-content/plugins/jetpack/images/rss/red-medium.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Êƒr8ªŸE¡çB£','Ñ‰îÔ-d§I”€8¤R9Œe°Ø»²ú5@îdé}Œ8Û¯','',0,'?'),('’„ÇûïY7Båm¥&lÉ','wp-content/plugins/jetpack/images/rss/red-small.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¥G\'©ð+V/a=±%šˆ','hZiæ‘œáÔ5©n%1ËþSwËµ/YO6®ã','',0,'?'),('¸bªU&/YNäÏ™bßú','wp-content/plugins/jetpack/images/rss/silver-large.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',';…D	éTp#Ûñ¹ hÎ','QE_D4ØªÃkH›¿â›‰é*\r‰¶ÄXÄÄ.-è','',0,'?'),('ŠÆ¬£˜ÔÁpF	sÍ°Þ','wp-content/plugins/jetpack/images/rss/silver-medium.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ó%ƒ¦©ÿÈT	îv\\E€','Ã^—Ñš‘Œ7ÖÇâ3\'ýFÁá\"÷åFÕL1Ý','',0,'?'),('»½5_å«˜˜Ç²˜“P†','wp-content/plugins/jetpack/images/rss/silver-small.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','0#{jEšw‚ºŽ²]6b¯','\nuµDV$ãž\"p«¨¬ÆÎjÐŠš\\®C™[àa´(ƒ','',0,'?'),('€^k4\Z¨gG/\0üŽêCÈ','wp-content/plugins/jetpack/images/security.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Äÿ”^²Tž›hžðo','A‹STê	-ÁªÂÞÏãˆ&n›¤æ‹…ïäØGGmìÍ','',0,'?'),('i¿¸sÉoÔJò®U)pûR/','wp-content/plugins/jetpack/images/stars-full.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','f¯¶zT±N@¡Â[Ž{Bô','l¨Á;½¡‚‹©ü¼ð³ÖF•ûÑÔt*KÄ5³–TÔx-','',0,'?'),('îKñ¢ çLÉT3&zð_','wp-content/plugins/jetpack/images/stars-left.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','.æhy.K2ÐiÉvžŠ','d©*šÀ\'>k÷(÷ÑgC§þ¿\'è~ìZ`2‹Ü˜íÑ','',0,'?'),('¬å¸>(’’QZp“c@Ð4ñ','wp-content/plugins/jetpack/images/stars-right.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','àc#ÂX\\;+§Qd³å','ê¨ÑL\rvØ&\0tÒ~äŠ[ü„æýÙ:ºBxW±Ñ','',0,'?'),('uFd¤mbÌYqýè›Ž.','wp-content/plugins/jetpack/images/stat-bars.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','$Ïb«}ÿž…aa{*w','jÙú6öd:Öûtj\"Që{‘O¤(ÐÎzÊ£îWn÷Ø','',0,'?'),('½þ…F|ð¸_k2e„Ú!','wp-content/plugins/jetpack/images/stats-example-lrg.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','®\Z²t®©#“Ù†1ò','ÀxbÁ&Õ=±Œí3Ï\n>žVòz\Z	ê2s¾–ŽZmç','',0,'?'),('_lÖÍE - «`æ‘.™','wp-content/plugins/jetpack/images/stats-example-med.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ð(Ð³EÆµ`ìIó]','(nÝ¿XZ™¡¸PÝùxÓ”ø&Fï…×fmVq÷áN','',0,'?'),('7øF>Šb*’„GÒö\rÈfÇ','wp-content/plugins/jetpack/images/stats-example-sm.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','3Ý®µZPd¹D\n\rõYç~X','0”îûå(Ù	ÕuìÕºößxU÷_õ°À–	²','',0,'?'),('ˆ64Ö%SÀ”ëæz¨%-','wp-content/plugins/jetpack/images/stats-people.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','–¸Å‰ä%²X„tdOŒò','¶·×rþ%j—yöä™Ôæ:“IÅÅ¦[;ð”µ­','',0,'?'),('MUPøI®+º}µ²ŠŒ','wp-content/plugins/jetpack/images/stats-smiley.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','äÖs¥\\VVñžøcûˆL','\n#á¢˜ÖcnsÄÿ‚Ãy‰‚îèÛè,Kô™||mÉö','',0,'?'),('NCÞ!tƒFŽN·Ì','wp-content/plugins/jetpack/images/stats.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ð/îïJp‰Þ×µ·ÌÛmEÌ','Pçü¤ãÄs:…Z¡Û4vBŠä™j@·¹ˆq','',0,'?'),('Á2\rö›1Ÿ–÷—î˜¬\n','wp-content/plugins/jetpack/images/white-clouds-reverse.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','B6Ÿ:”P®ªÞ\n2Œ‚','®\'Úu¸!Æè†f¶É[¼åtò“x¶ØN®r^¾ø¾{','',0,'?'),('E§Ny\rRžv¼™áØ¿(','wp-content/plugins/jetpack/images/white-clouds.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','}M$\'Éá£ê>,dC¡','ìÒ€+Á®CûüÍ,…¿âŠU#hˆ àÅ€ÂJ','',0,'?'),('šk# í[¼ywð™ã‘h','wp-content/plugins/jetpack/images/wordads.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ƒ‡9Áÿ½hd!–Mˆ«\"T','ío~ìåô5À\n¿•çqÖM\0¦\nÌ~™„.bCšî¡','',0,'?'),('J²¤	zA3ÜÊ¾)Áœ¼Y','wp-content/plugins/jetpack/jetpack.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','z‰q)bWŠâ=Œìçqý­','ÒqcÀ­†\Z«˜\'¢C×¡|jXûÿëÚr{Ùá‹ ™','',0,'?'),('¬w I=Ž\'\0;-8iË\'','wp-content/plugins/jetpack/json-api-config.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','þªeäJ‘é9~ÂÊñc!\Z','¬ùú-ö)LÈÐr,O– ·¡x{ \nÖòÞ@&<Ê†(Wq…','',0,'?'),('tæ¯DÑÄ8$<›k:æ','wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-add-widget-endpoint.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¦ðÓþ%ß–®àM×Š','ÿªÊÊ\rWè>µ§œ/»a¹\n½š‹´Ç¸I¤}X¼Ø!','',0,'?'),('™£¿ñêÜ9¯½]®i6FÅ','wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-autosave-post-v1-1-endpoint.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','g¯z€KEUQ©žø²ðÊ','mÍQåì”Ï\rjøÂdËV)6åÞ¤^)4f¢\\øVð','',0,'?'),('w¥ ¯>ë?é˜~^ÑÕ','wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-bulk-delete-post-endpoint.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','®ÔE™n“äC†gw²4sö','Ó¾È—Û	%ÑÇ*È†)PG7S‡ÆhíNå‘qX‘›;','',0,'?'),('<OQ¦ÛëÉŽšaá¿R¥¹£','wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-bulk-restore-post-endpoint.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','êaùâOÇ8<‹±uXÅ†','yÊ(Àö™˜†(_uuéˆÇk©Ã»šü½d†‚™iûc','',0,'?'),('†e@€»Þ;?ƒh;)|','wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-comment-endpoint.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¯Zï¢Vg}f²Abrê”¿q','æ×WÒ5V$L9²Ç¬352í%¹-òÅ,€Êñ¸·õõ','',0,'?'),('ÑÝ­1xNepf]¨Eã','wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-delete-media-endpoint.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ãß¸=¬¨Nì‹rìø(¸','£<u‚	ËzOY8ìñCéÅÍõ01Zæþêô˜Q`VP%','',0,'?'),('æTz¹\"Óut&ç\\Ñ™Ì„','wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-delete-media-v1-1-endpoint.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','·ÙÐ2pë–dVè|‡Ñ”','	GÈçC+`°&WIÂœ·ÍnŒ‰9:Bï±ÒðÆ(Á','',0,'?'),('æ8ÂÊ¡¿Ù†µ?¸rq½','wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-edit-media-v1-2-endpoint.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','“Aâï¤>Éž×\nÞ£•a','qŸÜËç×É3gÆpÖ#z/J›3¡ð¹z³Ûu:¶\n','',0,'?'),('Ür•>>’›/Âg´P×','wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-get-autosave-v1-1-endpoint.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','à$#\\Õ•-<sçŠ','5ˆ¿?Í‰ÀÖãñé¡o¶Ò‘TÂ3A=°<Î)U*(','',0,'?'),('º\\:œ<è=öÌ%‹bµ','wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-get-comment-counts-endpoint.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','îM‰aƒ#Á¡9N','@Ýy²;5«Ó•ŠøÎîE–ßá{.Fyy(¸d1yö','',0,'?'),('¯\0¤ÓhRíí»Ö\n	ÎÆ','wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-get-comment-endpoint.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','çŸ?v¤$›B¶õ4M»5m˜','-c¾lQœÞCEóRùÓ¾·mlËÎDÉQT/Iª@×','',0,'?'),('UØš¼¬À¢éM·æçYq','wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-get-comment-history-endpoint.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¤ê+ÁÇú°šýO]`6óà','ï™>\0m¿BòŸ	‚zûoÿ™ÙBõK‰+J\Zu3ª[‚','',0,'?'),('ª2·’zøÂÔKQ,•4','wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-get-comments-tree-endpoint.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',',x1ýÂË<÷„¶¶)Sƒˆ','î[¾ÌéM’ßAo>Fžxöv‚AmtÑâ•¸üÆØ','',0,'?'),('Ía±\\&Ê#¸øº`þLÒ','wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-get-comments-tree-v1-1-endpoint.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','gÀ)â¾yèÍýª¯wQ','ÿÞ^EDñÉ¬³ír¼TÏ•³øšhXø\r¿IÜ','',0,'?'),('‹HÊ\0j1ÿï›­ßL™ž´','wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-get-comments-tree-v1-2-endpoint.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','²©DÚ}¦lYö_$^yjþ}','xgùöîIƒy/³¤dL|ÃæÔÇ±ˆ&Š\\Ì™\0…ô','',0,'?'),('(\"»öÜnŸüÈHEç¼Ú','wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-get-customcss.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ú³¦¤=)\'¾\'þóVª‘','üMcúñcPI÷j[uKNàˆî1ÿHëí©¯ÕäÅ¦ê','',0,'?'),('FGnÛÿ$ «-öG4³s','wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-get-media-endpoint.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','×UýÀUÆð÷ØÓö%?Ñ','vËNˆ`úßÇpê×)Ê]H¨´ºÜ.MuµÅê‚','',0,'?'),('áLGÙµN?d]`PÌ\Z','wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-get-media-v1-1-endpoint.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÇU/~LŸ†…F1H$ñýc','£Ýƒœ1[°ˆõsVÝ“’œ1¸šWÊ/•‚$¤1','',0,'?'),('üWÏ2Ø\'kNHÈÆ\Z±þ','wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-get-media-v1-2-endpoint.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¨¶Ê@Çt_¹ãžãöÂµ','F”]ô­#2ºbFÉÆ‚{P5§[/Ë8½{­úÐ•Ä','',0,'?'),('1\0f„ä¥Ò 0÷VCØ','wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-get-post-counts-v1-1-endpoint.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','æ¡žQô÷ØÒ\0Htã×üB','m…‰b¼íÓ×cŽñí1´ËBÙ‘~­\nâÄr|^™c±U','',0,'?'),('	ó´¯Nd`­îù.9Sö','wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-get-post-endpoint.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','d‹´pŽ]ðã1UkY6Ö	6','VIõ3#¥­!æ^¼2\"(S¨W8ƒGŸ³JŒ4b¾','',0,'?'),('ŸIb%¤‚^‚}Çœ´œ','wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-get-post-v1-1-endpoint.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¶C$Eq¢zqí—Ù©·¦8d','Ám |h\nÿH•—’ú‡^ý†Æ¤Âê<»Ñ‚â#xó\"[a','',0,'?'),('µ¢„§Re­0\0æ÷ nÏ','wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-get-site-endpoint.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','!×		¿rß?gœaØ€±þR','¢ÓY×•Ã%dMB¦YÆ Y5ë}}UO.j¸7Û‚','',0,'?'),('µGqÙ&†9$}‰™9º','wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-get-site-v1-2-endpoint.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ˆÕ3J·ÁÓ•K­\rŸÞ','KÔé§$õiŽµÍNJBúMÖ7 »	”w\0N@Û','',0,'?'),('ôEÇµ¤u€ØÆC','wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-get-taxonomies-endpoint.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','!,¹—â›ƒ÷+ùß\rå™','n‰ÐÇ?%¢y•×“à´É‘%ýÊ×æ0©[¬œ!>¿','',0,'?'),('v‡ˆÀŽ:Ã»pBhøÇ2','wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-get-taxonomy-endpoint.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¬­AEsç>Ýï·šIÝZ','[a›µa«Â Éåu!ó!·=ëi–Çd·<@69˜Í1û','',0,'?'),('³T­Ôþ|4h“\0Ó(àhÏ','wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-get-term-endpoint.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','™k¿8Bº£N8Ó›','Êk q×;ùØ¶q@«”oð”\'$Øì>\0øAÌÒïAT6','',0,'?'),('Ÿ÷žbqšÓ“(Ð=çÆ','wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-list-comments-endpoint.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','aW.½*pzPÎ½k(','vÆáY|aKEý3—y~•\0\'ßT`Ö(-ÔÂúB¤.–','',0,'?'),('t©ítâ½låUM?&“Ë','wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-list-embeds-endpoint.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','’å†8\rÕ¤£Ö9˜tiÎ','ÎuG\"È\r@àãÛ Z.4÷)Y\n²vÈ©^Cê€','',0,'?'),('³|…ëV·ƒä®7Gó¨','wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-list-media-endpoint.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','©›DÌ*gÁwËÞk÷‡}ÄÉ','Éøßöm…!Ê}• 6ðýöž¸”@õ:½þôë=}h','',0,'?'),('Jæ‘œB‡\ZÎÕ‡ùÙå¼·b','wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-list-media-v1-1-endpoint.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','[EÇ*\0ìåM”Ï,tð','½Äwu§¼…óË»²®|a_9XLÓ„š¥FcÓ ','',0,'?'),('7y×`Ps_õAsç¿ìõ','wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-list-media-v1-2-endpoint.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ìõ¨Öi’Ï¿¢ØK¼´}','ìé U¦ÏH%Óètö{ô0R+U$˜\rræŽý†n•','',0,'?'),('59œè¢N›µŸÞ¤ÝZã`Î','wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-list-post-type-taxonomies-endpoint.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','4\'x$éímútP“PL¹','VŒ‰V§X9/\Z3>þ•ó/ñ\r«ìk¹ülË’dOÕ³d','',0,'?'),('­-»¿™È°aŽC€ëê','wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-list-post-types-endpoint.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ï¢Ê?\"Êkæé±H™Q','d\\üÏí1ý¶ù™öæíñá]ôÐA³øKó‚îlÿ(','',0,'?'),('»\"z<\"H\'–ÙqR8E‹<','wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-list-posts-endpoint.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','aLFIî7!íßI½xmÀA','—˜v%>†d	±l¦4_Èç4ò‡uêÝ{E·Ñj›E‰¦','',0,'?'),('ëzáîìà¹à…]öÝ','wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-list-posts-v1-1-endpoint.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','½$é–Í,¯#x¯p}‡ô','‚¾U`èvïR\Z—¼–@/“ÇLI¥	%Pvµ›«¼','',0,'?'),('š(DþÈÍ)÷Óé›','wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-list-posts-v1-2-endpoint.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','í«/Ar8çiÈ© Ó\r’','oÁ¡“Qî\0RÜ4dÏÐèì*FÄ0>?«Ú‚ŸA','',0,'?'),('ËQ©¶ý›u­Ñ žIdïõ','wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-list-roles-endpoint.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\\¿RämÕŠ®ÚAõÐXœ',']ŽCú¦2sÊ–ÏúzvæŠßw›88øa’','',0,'?'),('A\\ã[Å¡™^j©êzŠ´','wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-list-shortcodes-endpoint.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ónâèÈLÇñ^qÞ®ÿ','‰ö¥•Wí7Ù¹;4Ï¦Á¾2áèÒ?°ü%êš¾Ù$z','',0,'?'),('Â_Ïyð²)À$ŠJ¦@','wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-list-terms-endpoint.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¥Ç-kevßâ‚.A|˜îo','V×>EŠWáÕæ|ÙØ»¶6Ñ¯x\"»}‘Xæ„Ãt','',0,'?'),(')n*¿RfG°#2¶è<•','wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-list-users-endpoint.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','øI%fs§ÐíBm-Û^<','0»æ}E2W†æõÏŽ÷G(#8²Òd,å1\rðÂ','',0,'?'),('x¦ãœ-ªâÐf†´×ûV°','wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-menus-v1-1-endpoint.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','í®\Zoy¨–Ù%Ç{þjr','M“Çò¸â-ë¸UB\0>Žm¯óv=FiýlœK‰ÏÎv','',0,'?'),('ôrÎ•øqçïU°¢ps','wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-post-endpoint.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Èè_IUMQ¹qZµøÕ)p','ím9&ÓÔ»0í•ó}wZmkë$ËËŽeÔC„ïË›Å¡','',0,'?'),(';ØOç°u è®ÐœGÎè','wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-post-v1-1-endpoint.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','­6ÅtYÐƒPx¤âgi','øHŠKyë(ÍíÖ°ì‘j²pDAWáÉÂìF ½	 ','',0,'?'),('L5P¤r¯@Òi;³¡†‡','wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-render-embed-endpoint.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','(Â\0––¥C¿»O;8Í¸RÕ','sæ Ju‹Û§$FdEsÊš£ö3(ÎáIÙdÞnë','',0,'?'),('ØžJ!ÃŸ8µ@æFn´ÜY‹','wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-render-embed-reversal-endpoint.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','~bª4EvÄO‡FW\0€g','ÿ#ìM,uW†êõè1»´xµÄï¨ƒÆ>%9DÄì“¨“','',0,'?'),('€dKÖ±w8VÑFêÒX','wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-render-endpoint.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','KE	Ÿ}6†¤NÔÓ&á=','ƒ\0¯Î~7çœ=£œì2á„[i˜±XzÃºðV.21','',0,'?'),('ñ˜þÙV3Ñå*E‹gW+','wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-render-shortcode-endpoint.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','“xù¹“…¾ÝAâ ÝHà–°','©\"a¤½Õ\\ò“Ë°.^~^¶Ž‡0ƒ-éù?\\K‰²´Ø','',0,'?'),('¸»µ>yƒ`)Ps™î;ý','wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-sharing-buttons-endpoint.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','³0(_å8åžD”Z`œ8','ö‰P9ÄÎ“Où«hM£ŽÞ¡(^øAóýÆ*Ñà‚—¯','',0,'?'),('Øýo.‰Páôó~X}','wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-site-settings-endpoint.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','µ}xü\noï•öASîí','¸kBŽ¢±µËo¿‰b:m‚™f˜Á:»NëÅ±>ñT','',0,'?'),('TÓfë.ý¾o÷ûÊw½’','wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-site-settings-v1-2-endpoint.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¬sHõ,Yuè”cñÿ','õª†\'JÄ§^zUšÒEû@‹ˆœU{ÉÔÏYŽ†õÛn','',0,'?'),('ü<qì”À¼x‚«ý §','wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-site-settings-v1-3-endpoint.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','˜\01KÙž¯D1G!bm','ð’åäÇÒ2¯:ñ\0Çù6>þì.>¦rïé®îŸD­›5_','',0,'?'),('í¶²Š,ÎÈ…Löí`¡cá','wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-site-settings-v1-4-endpoint.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Œ‹´kðç«iÙƒ£p!¼','•Í(Õ-[ËëLy}§~@±ÏÌ›*yãsÃ8Q\\¥>¸ñ\n','',0,'?'),('H%ÃÄÒ¹Lç e¹Â’r7','wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-site-user-endpoint.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\'íÎ¨ë!áÅÆ1Ö<’PÙ','âòÊ=B¢z/|%¡&;Â¼¥4uƒ¤ãæoGÇô','',0,'?'),('_Å#›#ª8àóe$«&Bç¼','wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-taxonomy-endpoint.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ê£ü)ì4Àc1¤ÕåÅy','©#u~G(F7 ×,KÓ•½…ñpÊ€¾8˜7„ýJ','',0,'?'),('\0¼ÂGm€Mè¬Ü§y`','wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-update-comment-endpoint.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','°º>Úgæª7Ãü/i7qšã','Ðï¹|7^,óöÓÏû„aÀúcÜô­2õ;{sÙiGX','',0,'?'),('çÉ\rÞÓž¦9Ûð1\ZµU','wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-update-customcss.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','áUÚŠA\0ó¸ 8°`l','âMøæLÔg9,W}Mu¿jÊg¨ÇsÚ¶ŽÇ\Z+ëdÖ','',0,'?'),('Z2HÔ>—qi‘Ä6%ÿO','wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-update-media-endpoint.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','`ziÃ¸ñJà7?Âc','¥³ãå\ZõØªÅë|\\PqšÊ™Çî7z˜µáöï»ïÝ','',0,'?'),('¥vëyYÍ$m ôö5','wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-update-media-v1-1-endpoint.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ö:–/\Z‘‡Û9²¡ýâh~','†ŒÛ–Ä\ZxS,«³n…]ßÏ)s‚Fóªµ(L-t¯š','',0,'?'),('Ä›ý»¨¯ÎífqÒ›:×','wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-update-post-endpoint.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','HšgVà0¸´} =Š9þ','í0WttêâõM_Æ#ºìl%»Õ†&LR·‹¶J1x','',0,'?'),('-f¦è#žíLìÕw','wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-update-post-v1-1-endpoint.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ê¹Ø\"ägþr—TãØ/Kd','È‹(8r·;E˜€Å\Z	¥&dØ¦q*’¹´æ›«1Æûj','',0,'?'),('þü>	g„!´©ÜÙ--ç','wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-update-post-v1-2-endpoint.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','uHy3¾‡,6Hrý†R','jQœ’ª0z¬~ïâ]ö<0dk“0Ö¢ÄQ)öW{','',0,'?'),('íÚK9i¡‡sÙ7T \"©Þ','wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-update-site-homepage-endpoint.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ËóÚ=nü[(f­Ä¢qV}O','g™zY8\rAXQJxÈÔ	-Ë’G41Õ„Bm5q','',0,'?'),('`ps²22ìœ|0²à…','wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-update-site-logo-endpoint.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',',*V9òGDÇ†?\'n•Ï','V4l‡‰²Â[*Ú—ŽJQ0:\'4¤Ó4†NjøvÅý','',0,'?'),('éÒq.);š_S ]“6X±','wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-update-taxonomy-endpoint.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ïj-@õ5£îq×7','÷Æ.wÔýTúiÀº‹\r´:m\0[™·ÒsÉR´ÎÿB','',0,'?'),('àé÷åY¬î˜a\nµ‘l','wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-update-term-endpoint.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ŸÚ<wZãUY’Pk5\rC','Å á Ø~B-‡à}C•‡ª¥F8¼zãâNd^Áî5³','',0,'?'),('ß&13Už€”GC•³˜ý','wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-update-user-endpoint.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','O¬ò¶ô#\\ˆ‘\'“ÀÏ','yè[©Öt	`–	Áöu›f§ú&«fÞÍK¡K7±›w','',0,'?'),('Ÿ[F¶ËÆP!ŽE›ei','wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-upload-media-endpoint.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','òãgÇ¾Zæö!¨‰R×²','‚4}¨$Žñ”ÉN@Ÿ¬ÒLû½×\\gc?e¬)x¥g„ã','',0,'?'),('ÐÊ:’v_ÃÍ˜–˜²‚ÇOo','wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-upload-media-v1-1-endpoint.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','$a({ýtÔç=ñ¶!Kï','- 8eU”cÛk&lïÊF:\0”KlA¯F#5ìg','',0,'?'),('\"q9±	ë¾=\'™æ‘','wp-content/plugins/jetpack/json-endpoints/jetpack/class.jetpack-json-api-check-capabilities-endpoint.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','—Žƒ)ˆ|W+z½¬Á4„?Ã','½~ žoïTö{Ï>“K\"(é§ÚŽhún°*6–í$','',0,'?'),('hh!>LC\"ïnÑƒœÎ','wp-content/plugins/jetpack/json-endpoints/jetpack/class.jetpack-json-api-core-endpoint.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','†ý{IÓUû\'H’ÛÒ¦Sj','úcu’ÀsRc2¼{R`Ñˆ–…¦¥>(hkyd','',0,'?'),('M®MÊnÆßŽËCQ¦)ù','wp-content/plugins/jetpack/json-endpoints/jetpack/class.jetpack-json-api-core-modify-endpoint.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Å«ÎU\'yŠ÷îl­ôŽß','»®³Ä\r¶¥y‡U£_ÊsšJBÍÍ‡áR7\ZQÔþÑ','',0,'?'),('pSÕ ì’Æ«ß¾ð×˜R','wp-content/plugins/jetpack/json-endpoints/jetpack/class.jetpack-json-api-cron-endpoint.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ˆt›ÑÙû×•­','’”[ÈXøÏ«íë‡¦#]ìÀ—mÈñ\Z„/:×­6Ü','',0,'?'),('3ïh6rø¯š(\0ÀšnÒ','wp-content/plugins/jetpack/json-endpoints/jetpack/class.jetpack-json-api-endpoint.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','8á¶@÷c,g&ªiÞH','äg[eá!+*„q½b¼A¾çh¡Ž\0¿˜£','',0,'?'),('RƒF¸åzº×ý­mÈ6','wp-content/plugins/jetpack/json-endpoints/jetpack/class.jetpack-json-api-get-comment-backup-endpoint.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Å„Š‘htI\n8è`Æž•','ucýØ3t§xCJ	í7ÓO–ØÅÎXJg¦wïâC','',0,'?'),('1ÿHø÷ëq]m¯ºº','wp-content/plugins/jetpack/json-endpoints/jetpack/class.jetpack-json-api-get-option-backup-endpoint.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','úû-¶ŽˆÝ\ná{“Ó*»',':(©‹#áK…^l¿He×AÞ\n¿Ì2S×¢+ôbù£','',0,'?'),('pÃXØ\\t¥¿¼êE[ºU','wp-content/plugins/jetpack/json-endpoints/jetpack/class.jetpack-json-api-get-post-backup-endpoint.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¥Ìß/$ÀžW·Dè­',')bDÄ†c	Æéˆ=‰\'.)jN?¾…ä5`Ý©È’~@','',0,'?'),('àùˆ8H‹ðÝ­fæ¥S™Ë','wp-content/plugins/jetpack/json-endpoints/jetpack/class.jetpack-json-api-get-term-backup-endpoint.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','æ©Ú¼Bøˆœ.(t¬ì¨','í<$;ÅmRøHÒÓ/µ3ÊÝJ ÑÉG\0\"™ñ$£«','',0,'?'),('„E\"ÃÛR’¶µž.','wp-content/plugins/jetpack/json-endpoints/jetpack/class.jetpack-json-api-get-user-backup-endpoint.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','AlÂÁ…ÛzÛÅóB','dA‹ké–Å•­J×½ƒy?Ò›²X=8HT&å•Ù0…','',0,'?'),('xpõ¡ Ÿ\\DîÎe¥\"\\37','wp-content/plugins/jetpack/json-endpoints/jetpack/class.jetpack-json-api-log-endpoint.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','jÒJ¸âY\"ÝÕäàÏà§M','}°\',÷^*„àñNÞ§aþ1ž$ë‰ŠM½¹¬]','',0,'?'),('²í¦þ]vn•ŒC¹a; ','wp-content/plugins/jetpack/json-endpoints/jetpack/class.jetpack-json-api-maybe-auto-update-endpoint.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ùRì%PxÁÂR>³O.0ü','ÌÒ{^øbcug€ð—7Z·Ú×^)º-ÑJ7GÏóÇ\'','',0,'?'),('rÒœ²íU<L2V*NÒ‚	','wp-content/plugins/jetpack/json-endpoints/jetpack/class.jetpack-json-api-modules-endpoint.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','t9	T5^›\rPÈÁÄRG','\0„ÚÐbw¹šcžZ\nlZªCÚ›äTàûq ','',0,'?'),('·sn&ìû;bÓ¹þ!°pž','wp-content/plugins/jetpack/json-endpoints/jetpack/class.jetpack-json-api-modules-get-endpoint.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','áÇ‹WÖeÎ|~Hö*IÊ','tÀ¼•1$KRF§–ÈÑsl©¦VnPÜ•ÿ\Zy|Gc','',0,'?'),('bø¸F¶ƒf]ŽWèG5´','wp-content/plugins/jetpack/json-endpoints/jetpack/class.jetpack-json-api-modules-list-endpoint.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','?´¼pÏã0ç±¶ äz','ßvâ, æß]**+ØËF[½i\Z=£-òº\0È\n°Ž´Ð','',0,'?'),('ÙJ÷áÉö+Þój«Z1$','wp-content/plugins/jetpack/json-endpoints/jetpack/class.jetpack-json-api-modules-modify-endpoint.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','õ~Rº¼\næÍìÉ–§)]','„B\n¨Ç\"¶6’ZU.Q,OúÃdüþ÷u^','',0,'?'),(':•_ž•í¦›þà0zØÎ^','wp-content/plugins/jetpack/json-endpoints/jetpack/class.jetpack-json-api-plugins-delete-endpoint.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ê>Žª¯€‡—¥É#Šm',']uµÁeRÚð¾›ÙH 9âûñ›áðzâ1LÉ5','',0,'?'),('»)FðNÌ†!3‹ ¨HÇ','wp-content/plugins/jetpack/json-endpoints/jetpack/class.jetpack-json-api-plugins-endpoint.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¹ÌóÞZÈ;\\7{Z-“)','1Fpi„ËwAždké5`úÜÄÉþº¾%µ*`U[','',0,'?'),('=‹û^8| M¨|²““€À','wp-content/plugins/jetpack/json-endpoints/jetpack/class.jetpack-json-api-plugins-get-endpoint.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','äqà_z8,øw€,sýš','\0{°ªåö;oq¡EÿŸí[_Nh¢*™@®ÍÚ','',0,'?'),('Á\Z—ãÝ\0[,+L¶)%n','wp-content/plugins/jetpack/json-endpoints/jetpack/class.jetpack-json-api-plugins-install-endpoint.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','«YÁc‘šyÆÁ\Z­ÿJT›','9ø!«ÏhÛ€Y±HÌÄcò÷©Î¹êõ‰¸­.råò›','',0,'?'),('¤._Š*øwÛaÈÙ·‰Ø','wp-content/plugins/jetpack/json-endpoints/jetpack/class.jetpack-json-api-plugins-list-endpoint.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','6/‘Z–¦Ô,ù\\µ”','­óÌò|X×íFÙ\Zo\"ï°²‰hBCJ,@å','',0,'?'),('û±çÇÄ6zç>žÿTp\"þ','wp-content/plugins/jetpack/json-endpoints/jetpack/class.jetpack-json-api-plugins-modify-endpoint.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','2Ó°ú9p¦:ÊŒ^~&','‹,ÈµXì‚gÛ3¯,}Ê§†ãÏý$Tò¹ˆÑ','',0,'?'),('G–çÎLæÞä£;Š€«>','wp-content/plugins/jetpack/json-endpoints/jetpack/class.jetpack-json-api-plugins-modify-v1-2-endpoint.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¸\"%	YaØf¿múÃ‰¢F','Atöbõ‹#åÌ<	#7¯rýqèñÂÔù,MëBõB\rz','',0,'?'),('&IÈ\\èÿ½gøñŠiì)','wp-content/plugins/jetpack/json-endpoints/jetpack/class.jetpack-json-api-plugins-new-endpoint.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','K¨žé¡/´G˜a>á6l¯','æEÆá&}h–Ái|Å^¶JÆ\rä×’²Ê¦¦÷`<','',0,'?'),('¨zì*]8›M@2ùÜe“','wp-content/plugins/jetpack/json-endpoints/jetpack/class.jetpack-json-api-sync-endpoint.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¤Ök_ÌjñECòêš,÷ù','^ûñ €²NpC5ÈO°eÎð\rGM|²ÌÄ÷_Ž\Z.$å« ','',0,'?'),('MÝwxÝæ)¡ô`¯©¸ó','wp-content/plugins/jetpack/json-endpoints/jetpack/class.jetpack-json-api-themes-active-endpoint.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','€¨$ÐJÅøsÕ-t[Ö','v)@.%7­ëÞv®Å¼ ï_ž¸+ÇÙ´Ö','',0,'?'),('RJ´i-éOŽJò‚ ½Ì','wp-content/plugins/jetpack/json-endpoints/jetpack/class.jetpack-json-api-themes-delete-endpoint.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','CU™íq+¹†Sí»\0§Z*','>­ùžbœIá9O½ÿŸ­ä(@!žÉù³È)=£í','',0,'?'),('žB_:dp?ŒÕ+ÍT','wp-content/plugins/jetpack/json-endpoints/jetpack/class.jetpack-json-api-themes-endpoint.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','^EÚä·M ýv5¨± ´','¦Õ6§^d\r.\n8û=Ì‰	ÿ¸TúÕÇ°I‡á¸JIB¦ü','',0,'?'),('ÓÝ*Õ[Pæl|å6[OA™','wp-content/plugins/jetpack/json-endpoints/jetpack/class.jetpack-json-api-themes-get-endpoint.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÉkÃ²–¢1\r6^%Ù³Å','ç¢ë˜\rqìÂ5;PûÄQEí&ÉÖ¡÷Ô÷•dn‘v‹)6','',0,'?'),('	y¨üiS»dÐk”ù(4','wp-content/plugins/jetpack/json-endpoints/jetpack/class.jetpack-json-api-themes-install-endpoint.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Íg%ÃÄížß0¡(0„îi·','ðA¼r@ÉP#ÝN>ÜÄJ<ö\"‹k¿D‘','',0,'?'),('ð¥ÝüÉÉeÂÛ®n¹>','wp-content/plugins/jetpack/json-endpoints/jetpack/class.jetpack-json-api-themes-list-endpoint.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','%Ð¿UÛsx¢oÐaÛá¨E','\r!ÚpMÜÛRŠg\nðô°êS1i†¦=€§è³ t(','',0,'?'),('85’O	çÕ¡\'À3ZÒ','wp-content/plugins/jetpack/json-endpoints/jetpack/class.jetpack-json-api-themes-modify-endpoint.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','M¤cé4.Àœ&âº¸âÍÜà','ŠïTÛb¿¨]ÿ>Æ‹ÎB°²Ý[nñÙÞl½	ßÜ¾’','',0,'?'),('ÃÇŸQe>‡ùÇ8’‡ó’','wp-content/plugins/jetpack/json-endpoints/jetpack/class.jetpack-json-api-themes-new-endpoint.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','^°ÈôÞ¥Ónœ×Cä','ðì!¯z>Ÿu? ðà•.û‚©-üsYKG)”Ôó´ã','',0,'?'),('rñ¦‚6²Ï’¼/“þhá','wp-content/plugins/jetpack/json-endpoints/jetpack/class.jetpack-json-api-translations-endpoint.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','‡êwW5 u¼ºtÌ§“<','âNf_ùÑ]D¾…qpøÑl¸¨£]ƒ>çÍí¿U;nØ','',0,'?'),('9Š\r ls«E}Ù”V','wp-content/plugins/jetpack/json-endpoints/jetpack/class.jetpack-json-api-translations-modify-endpoint.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\Z»sˆòâc”×ò+]/','Y¯{€ÉÔà}ßüÓõF\ZÆV…¼8Êç¶”Øl\0ë','',0,'?'),(',uèAkçæ7o8ßõ','wp-content/plugins/jetpack/json-endpoints/jetpack/class.jetpack-json-api-updates-status-endpoint.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','j02•tùTþ1qùžÎK','…|pDžs :ô|_þÑ\Zç4^ }¶\rÂØ>1Öc','',0,'?'),('RÃõoÊÎÏ1:Àæ{1','wp-content/plugins/jetpack/json-endpoints/jetpack/class.jetpack-json-api-user-connect-endpoint.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ò [SRL×%Y›€','Làµó|“\0?ŸöÍà82øq u{¨\"£;Â» GÀôF','',0,'?'),('¦sìNÁ6TQâ”Ët','wp-content/plugins/jetpack/json-endpoints/jetpack/class.jetpack-json-api-user-create-endpoint.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','yþ¥èhTö…§¾_.\nÂ™','wi£OÇuÌøW|ü$2p×’{±h¡1«öó‰é2äùÊ','',0,'?'),('¢#þ\ZI7	-X”â','wp-content/plugins/jetpack/json-endpoints/jetpack/class.wpcom-json-api-get-option-endpoint.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ïà\r	WFöÁ¯A8u','{ñl%JðÂ·úLXàòHíˆ ëƒ3½f,‘F0¯”¬?','',0,'?'),('‹ôõ\"¶]»¢UWü\\î','wp-content/plugins/jetpack/json-endpoints/jetpack/class.wpcom-json-api-update-option-endpoint.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','å+x&Œ—eŸwÌq','6éþ<‰I—ÏÉ9Xv‡DÓ£ne¬ü†\\§–ìæ‰‡','',0,'?'),('‹:ÆÑ6–]”G¸ÕÔŠ','wp-content/plugins/jetpack/json-endpoints/jetpack/json-api-jetpack-endpoints.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','<¡ñf‰ñ~V(÷…ßèßrÇ','Ô!’¼/È;(\'Ž¿áJ³n:ýŽ÷=ÿöç–Á]˜','',0,'?'),('\0XyyÄªÑÞÉ­éÃ!','wp-content/plugins/jetpack/json-endpoints.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','iÈª79Ê¨¤½Í1èß<–','{%hJz	†ÊŸwê–>æók¯Ñ¼zõ*FfyÕ%„I5','',0,'?'),('³÷nÙeR\'ÇDžLùˆÛX','wp-content/plugins/jetpack/languages/jetpack-af.mo',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ãçŠlöV“ØÃ;}7','§Nm(G‘‘3xÍVN\rï©â€É&~Ó”~+û?ä\0;à','',0,'?'),('eûSh²#Åló™','wp-content/plugins/jetpack/languages/jetpack-ary.mo',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','V\\ÃV„@áfñ}ÊtâN','ÃA²ÆhPîøàÂôwj	Ï˜ë¬UiÒÑ²«€=‚','',0,'?'),('8ø<i¤ÀÛ¿³rÞ·Ê','wp-content/plugins/jetpack/languages/jetpack-az.mo',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',']yyí\'…a}š*w=ÄqŽ','æ9déÃfŸý]0‰Ñ”7j.¡ô#V¿wäv×','',0,'?'),('ŒäQ\\ØëKl´Á¾/Ë¬qp','wp-content/plugins/jetpack/languages/jetpack-bg_BG.mo',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','j‹¦ÊGÛ7¶#V;=€]6','ÂqmU™GŽ\rHs˜XCÝ€(½Ü8ÛÇö(ùIÝ','',0,'?'),('ª\0C<âþ>5FŠrÉ','wp-content/plugins/jetpack/languages/jetpack-bs_BA.mo',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','‘<\'Vç\0uÎøf$ò','–.ÿôV\' r†\"O”„³$åo4Êq¼Mà@íÜf$','',0,'?'),('ú©¨s} ÎoÒ!,Yï(	','wp-content/plugins/jetpack/languages/jetpack-ca.mo',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','’œ4ýŠbÚv@ÓnX¬&','%ª\'yÝ[\\‹©*ÒM*úG39WmÉª/=¬´€','',0,'?'),('9\Zx­ë`Ñ×›¦™tW','wp-content/plugins/jetpack/languages/jetpack-ckb.mo',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','g™~0•î}£é%QgqSÄ','síT¾K_= ]Ò@2©PV8AÀÎÐQñãëÄIˆH','',0,'?'),('åZ>§\ZÎmqçÛVr','wp-content/plugins/jetpack/languages/jetpack-cs_CZ.mo',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','U‘”5¶…’r˜Ïn','äíý2Âú\0“G›WzÜùðškÃ-þÃÞØwB\'KŸþ','',0,'?'),('jãÙD<ÔJê¤E”Œ¬÷','wp-content/plugins/jetpack/languages/jetpack-cy.mo',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','.V˜úôb™ª‡S^*ð\né','üÃUÙ8Ä÷%W~óÖDe™\Zrÿ˜8¡š4#/Í','',0,'?'),('‘L—5+[ÍãžÀ*‡,û','wp-content/plugins/jetpack/languages/jetpack-da_DK.mo',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ïÇd2îjå¦-…fJ–^jÑ',']Ð:‡>jT‡WioŠmÌª¹Š@-³£þ¤GÔùèØ°\"Ø','',0,'?'),('z—3aâŽµ©¹ù–g‚]Á','wp-content/plugins/jetpack/languages/jetpack-gd.mo',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','KÃE(¿6iTw‘Uuã›B','Ð§‹ÔÉ½Â ¸âÅFI‡*{\r“RÁO}JsC\\Ø¡H','',0,'?'),('ŒÄö>WåÇ?¡Ô±»*fxj','wp-content/plugins/jetpack/languages/jetpack-gl_ES.mo',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','>â%íõ^Î÷ëÞFÊ)','´ìÚ“|º$n¼m´QT]¶zrE5¢ºŸ±lÃ$F€','',0,'?'),('4jÐ8°*O$x-Mk)[','wp-content/plugins/jetpack/languages/jetpack-hu_HU.mo',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ö\\þ‚d‡‚3üÔ[‚^È›','«tÂ¬XÏ¼¦[\'Wd)L²XéVMÀh‹s¢lWã','',0,'?'),('Nxˆ”š&Ç¹÷öý\\	','wp-content/plugins/jetpack/languages/jetpack-is_IS.mo',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','º=ãz•Æ+Ý/ÕaZü','òšŽD`²\\{‡Šã¨µÄUòÎ#ýÝÃz\n\r™ô¸Ceú','',0,'?'),('®?kÀßPJª]Q£Ž·|{','wp-content/plugins/jetpack/languages/jetpack-ka_GE.mo',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ƒÁ{ZýÅd6Ý>Z\rÕr','–¡·÷í—ÃwÉÔë•|Ì\'±†ëöÌôvKäéé€M','',0,'?'),('&•q’…¸«“¾š†\"°Â','wp-content/plugins/jetpack/languages/jetpack-lt_LT.mo',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Vžas¥-ŠÚ÷l,\nø','W€U%!\\-3‚UÄ!ÀOßƒgï¢Rç²”z„‰þµ','',0,'?'),('žãÍh#Ïã­µŸét÷ Š\Z','wp-content/plugins/jetpack/languages/jetpack-lv.mo',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','£NÓÞ\Z¸{¿éf}ÞL®&','÷E€ðºÎòÐ7Ùè	¥×‡_’ïÒâ[n¸È²·\'','',0,'?'),('`‡ÁR•‹WK¸ßÁùõÙ¼@','wp-content/plugins/jetpack/languages/jetpack-mk_MK.mo',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','[™\nY¨rø;¨}µÜX','ì[6_\"pØjÇ‹éº\r¥Ôè\r,ÄÛ†mÕyô','',0,'?'),('µI3·½’žb@–Aõ ','wp-content/plugins/jetpack/languages/jetpack-ms_MY.mo',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ëxpSƒ¹/äâ¨_¹ÝÜ','‚Hýiž+:â™u/Â¨<Í±J‘ñ©‹µÓ°c$','',0,'?'),('4k½ÉIc@a~}jñçw\"×','wp-content/plugins/jetpack/languages/jetpack-my_MM.mo',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','‚û]ãoÃ Ac ×ëé·','-F+\nO‰P³µ$(Ï¥™é8hA\"\0\ró‚ÌMóØ','',0,'?'),('fW°AëQú¤f³PÑ¡™Ó','wp-content/plugins/jetpack/languages/jetpack-nb_NO.mo',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','KYZáú]°!>lU¯	','¢ì-Â ´A`‚šø¢žÙ~‘R[ÜqiÕõ9È^ˆJ','',0,'?'),('sð³´xNðÏ³U€\0','wp-content/plugins/jetpack/languages/jetpack-nn_NO.mo',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','îdû\Z“õÑÓQ~{ƒƒãøs','L2èŽ C$Áã>ë[P±¶F¿ôøLc ÎŸa°-¼SQ','',0,'?'),('\nž­“+ýr{Ã…ðw¹ö','wp-content/plugins/jetpack/languages/jetpack-pl_PL.mo',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','°MÚø˜ŸigMCeÈ!~x','¬†š\'P6=íVå>îìaÂ½&Iˆd~Äš´‚Î\n','',0,'?'),('˜L]‚€7×>–ÜôÛ9æDë','wp-content/plugins/jetpack/languages/jetpack-pt_PT.mo',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','®êì«ú|×È•Õ\"û™Û','è\02Ž\"™äÆpà–-ÝTV¶ÇkUƒO)-¹âò{XU','',0,'?'),('e Ã^^Sü­Ð %jž6','wp-content/plugins/jetpack/languages/jetpack-sa_IN.mo',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','pµBÇÞYÑrÜÝVÉ','–Éûòi¹õ;òï1Ìð;0†îÈ’NÞ„ã(¤si','',0,'?'),('Mã,%QlÇ2qÃ:]','wp-content/plugins/jetpack/languages/jetpack-si_LK.mo',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\r¼UžÏÛÈèXÃ’¸É`','Ë\\bÖô\nq\Z¼é×`Û¼Wo½`l1Åÿ`;|','',0,'?'),('üÃ«¾¯w\n†Ü4ð-a1Ó','wp-content/plugins/jetpack/languages/jetpack-sl_SI.mo',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','i”W…ïR¸‹…xs§|X\\','OËæÛ‹\\\"96«ööæ(_;eÕ|BµÉ âÎT³Êîû¡','',0,'?'),('Ÿrh›åŒÙdŸÙ®ï[','wp-content/plugins/jetpack/languages/jetpack-sr_RS.mo',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','–Ã‘ÎG>8úe]Ó–ðØÑ','Á¢’Y¾€N9EÃ;ôsô}:4Þ\' qC»WÐe­«k','',0,'?'),('ÆðT§·é¾.%õ\\÷','wp-content/plugins/jetpack/languages/jetpack-te.mo',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ƒ©dÆ¸1qäLü–¼\r','áœ[ºB0Û#F3Õ},îi‡ª =\Z±Êœîz»î\"','',0,'?'),('Ú^ì[t¾¸\'òó£','wp-content/plugins/jetpack/languages/jetpack-th.mo',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','K}ÆM?<¢äíÛUW™‚\\<','‚f	Ò“‡+Ç›\rB³¨e¡Mî\0&µìáê¹Îã¸@†š','',0,'?'),('Þ_AÅJë&¦[˜8ÿÈ*Ê','wp-content/plugins/jetpack/languages/jetpack-uk.mo',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','	 Ê…âŒ¹\0¿ç¯³ÚPø\0','…¤Ð‚`È×àmödlQY1Ù4I˜¦åô„ìÌ¬','',0,'?'),('?ŒK+b—f*ÜŸ+\n','wp-content/plugins/jetpack/languages/jetpack-ur.mo',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ð³™‡.,Û ÈÀ¡œÇ§Í\'','Sˆú.úßÀ	¥\ZjM!0HoÏdiãúíøP¢˜ÓŸr','',0,'?'),('Ñú\"¨©ž•\"ÇXåšÂ‚Ç','wp-content/plugins/jetpack/languages/jetpack-vi.mo',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','-Ú¶fúyy¸­áIvA','™üØf¡†‡ˆ>ÖûÝÕß’ŒˆkIfj=Ø_,4/ä','',0,'?'),('.é$ÕzÝãUÏSö\"Üî','wp-content/plugins/jetpack/languages/json/jetpack-af.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¡öm6n%™ÉÈòQ Cÿ','£¼º\Z— Uåf¯ôº=¢,Zœì‚Gn¶U™¸','',0,'?'),('ÔöXT*[0q¹VSÙÆ','wp-content/plugins/jetpack/languages/json/jetpack-ar.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','EzˆÙC#åß¦æ$CmFñ','B‚l«ØÉœ»{,=¢rÿ:R2ŠŽâ‘Ñm','',0,'?'),('·fXµ¸D„—Ô¾`5ar	É','wp-content/plugins/jetpack/languages/json/jetpack-ary.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ìw–,]¹’ðø2p,D·ÔÎ','Z«—ñh!9I½—~Þ/{v„Õ¹_Æ\Z\n%LgÍÉ¼','',0,'?'),('çªJÇQŸ†4û¥b²ÿ','wp-content/plugins/jetpack/languages/json/jetpack-az.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','§é62]ÿ\n=Fh8†','½ry	*{aHV$Þ1Ãf_œ#-*i9QlXt)•©™ç“','',0,'?'),('Lµª\"slØnW·!RS÷±','wp-content/plugins/jetpack/languages/json/jetpack-bg_BG.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','²øsÛƒeÜÌÁ÷	%å(ù',']kãÃ˜Hhiß«®«‹êÚx¶çþ©ŠÊÊ€','',0,'?'),('Ä¥×\0²ÂÎçåÐŸÖg','wp-content/plugins/jetpack/languages/json/jetpack-bs_BA.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','®áä5®ÿ9›é»¾4\Z\r','iái†ë‚Á-û}q¬U¤k¦Ïßƒ½E:ÐÒfŒqî','',0,'?'),('	“À| „p¨ÜC\rK!FlW','wp-content/plugins/jetpack/languages/json/jetpack-ca.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','º=°Çæ6\\;×¥­â–Ë','T|-¶º¢ètÓD²:ë„¸!bÄàØ–¸bœ5žø','',0,'?'),('µMÞ·Ô¿å¢í¦Ðàs','wp-content/plugins/jetpack/languages/json/jetpack-ckb.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','>ƒÀ·!ez&)=úŸ¬¥','ö¨á2©½ÔR:‰é¥,“IÊrÙø|%\r¼ÇbŸIC','',0,'?'),('ª™8\r(“´9&’&\0	G¥','wp-content/plugins/jetpack/languages/json/jetpack-cs_CZ.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','÷g5@ø(7\n½\"[Iäâ','³5!Î‰·NpÉ¾3-¥,’q‰@0­A™-”^<Õì','',0,'?'),('h	üu+‚ÏjšÖ!3Æ=\"','wp-content/plugins/jetpack/languages/json/jetpack-cy.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','šè£~ë›¼º”lS`','¹—c†±×j¯!÷ ù¾²Ú²0Sú™\n)Íõ\nëÞ¬','',0,'?'),('+Ûf)íÊjCpñD6z*','wp-content/plugins/jetpack/languages/json/jetpack-da_DK.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','›r#ôÈ‰Ò9Ã?t÷t45@','Ãã]XÆ†”;7ÍdÓÚhHyæ„äÜÅŠ±\\Ì','',0,'?'),('5œ+ö:¯ù¤LÕŠâ~~“','wp-content/plugins/jetpack/languages/json/jetpack-de_DE.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','L“ Wš£Æív7\râò','Óx”º³xzf³)ëŸÕÍ¶>fI\Z-œ¥³Õ­œÚƒa','',0,'?'),('Àút‹ÿQCƒ8æ$’¸ÎH','wp-content/plugins/jetpack/languages/json/jetpack-de_DE_formal.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ê%™ÿ±›†êÚ¢z¥B+ç','õëê!±ÕÚ†RD5x\nR0.\\¾ %•Åâ˜‹ï“±€','',0,'?'),('µÃXD.]xz×\\$€ë','wp-content/plugins/jetpack/languages/json/jetpack-el.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ñâr&S‹d‘†â˜1Þ£ÁK','fÔõ”>¼£Àçøºa{Ô»Ë;½Ò©„uª\"Ëh','',0,'?'),('Ú°Õ°÷\\}v|£Æ±º','wp-content/plugins/jetpack/languages/json/jetpack-en_AU.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','|¶Dá†ºqâ|¯ºˆGávÞ','èâÙÂöWIºk›IÂÝiª·´nçT©Å´ö+Ú','',0,'?'),('KCÌ^æ>FžüÓ9Y','wp-content/plugins/jetpack/languages/json/jetpack-en_CA.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','sÃÅôWÕ‡›†ŸÇ[L~ü','‚õø|Ýk´;íZ‘Ù9§êñÃFPà-]È=èæÒ','',0,'?'),('O-PxÙŒÏ^\nô˜<','wp-content/plugins/jetpack/languages/json/jetpack-en_GB.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ßq\\æªå\0S»T¨;Ìƒ','…%²¶\0=wþsÓã^ÃdE}¶õ]¶úÇöbƒ','',0,'?'),('S+âl©ŠÌpŸNhÓYjê','wp-content/plugins/jetpack/languages/json/jetpack-en_NZ.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',')pä%VÑz>SC™kæþ','—ieJó»Ší1¥S?,Z›p‹±w]vç¬S','',0,'?'),('*Ì¥ÈFÌj:\"åy…nN','wp-content/plugins/jetpack/languages/json/jetpack-eo.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','lxÙQ°Nx²êËùÌÍ','¸¤0bô¸bìÿç¨‹R¾²¿MÑýÜÝ!’¡Óå','',0,'?'),('ÈÎÇeÖ3!­ô\n^@Ey','wp-content/plugins/jetpack/languages/json/jetpack-es_AR.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','i×¾Ö\Zô—Æù}$~þ¨ÙM','øP{Wxé‚ÃoW=Ð{¥Û?Üû¢D„é6ó¦˜²','',0,'?'),('F­ÉÃªž4ñíi¼*\rö','wp-content/plugins/jetpack/languages/json/jetpack-es_CL.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','éø–«ôÔtÓÔT·Gòe','…0>ÉU ORÇØÄº®´&>çÉßdþ¢S\"øµ¢ã_','',0,'?'),('Ê¢ŸLáµÆ‘jc4\Z¬°l','wp-content/plugins/jetpack/languages/json/jetpack-es_CR.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ôhû>?w}arIíes7Ú','Œ¦á†\'@a¢5œî3Ä`ba\r²E;ëJa§®ìˆ','',0,'?'),('ÖÛŒ‡ÃïNåD6#Þ©','wp-content/plugins/jetpack/languages/json/jetpack-es_ES.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','@cNbˆGJkê¾Àÿ à',',’†u™ý%ÐU0Hô¥þ,óªSÕI«;úBU','',0,'?'),('žd(9©Œá¤\\©ìuþ¯','wp-content/plugins/jetpack/languages/json/jetpack-es_VE.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','·ÊT`Û3âï’:èÆ~°','–Ñ¢ý{>ªdíbd¨0Š28w•½)J>ã“$ng','',0,'?'),('h³&u¥ ïéˆGÛ%Yh','wp-content/plugins/jetpack/languages/json/jetpack-fa_IR.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\\×óXt©Q¥\rà{´¯<Ã','ìÈƒÐ­°à8[fx‹‹=L{¶¸FÁ­:ýš†ò„µ','',0,'?'),('ëk	d{™ÙŽùHŽGkÒ','wp-content/plugins/jetpack/languages/json/jetpack-fi.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÍçÑÁÇ¹ë´çjÄ²âd','©l%Q\0wÕ=Ÿc«eó]n ¥¢°ãàÙæ„™Ñy\0','',0,'?'),('Q­>!Þ®iš=¼íç\r4','wp-content/plugins/jetpack/languages/json/jetpack-fr_BE.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','OÕ·\\¾»l¨Ÿjãw«','øûrxÂXÒ «p:HC@äß<	ÔíÖYÞ{¿Ð','',0,'?'),(')õóºàPÀâñ2øÝ','wp-content/plugins/jetpack/languages/json/jetpack-fr_FR.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','otÜlÎÒN~‘„((','Ü?m˜×½-ß}!ª¯\'Qž^¹€oW÷\ZTéqœœ','',0,'?'),('²K¾îd¿Åƒ¢ªÀ\\¥À5Ï','wp-content/plugins/jetpack/languages/json/jetpack-gd.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','x>ƒÖ;Øä’<\'¢ILÏ','\'ÜRË5\"1>¸H-—]S2g0®­ü°¥åÍ¥àÁ>Y','',0,'?'),('Ù¨û5_²Ý‹†Ä$–Wú','wp-content/plugins/jetpack/languages/json/jetpack-gl_ES.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','C\"Ú8šÍÔ’ü ^mg’','Å>—ñÑlÙ+z\\nš˜38?à³Ï¾k‚Ú5\n¹á','',0,'?'),(':Å¼\0¡)Š´ÇâmU2<d','wp-content/plugins/jetpack/languages/json/jetpack-he_IL.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÞïþxÔñ\reØæMY»‰','Di¯Íy®ê÷º¦h¶ƒ3.//Q—LG½Ýµ','',0,'?'),('>…âÉ\'£Í¶Ÿ!‚.8¯','wp-content/plugins/jetpack/languages/json/jetpack-hr.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','{âÙ_¼4”¢ý_$¶vÁ','˜ì(¡+iÂÖM®‘¶~.£®‚!)éLÿ	Æ¦ù ²D','',0,'?'),('Ý­•¨Œš””åëû˜,','wp-content/plugins/jetpack/languages/json/jetpack-hu_HU.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',' €~ÅÄHÞéºëx\'Ê´+','°îŒó”cN?òÓAžÈnFcp=Ê [\'9','',0,'?'),('Á×1\"G¶vŒ¨!0J[ª°]','wp-content/plugins/jetpack/languages/json/jetpack-id_ID.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÒåËŽ1šÞG=ëš&íê','ÂÈ/3ÀÙx|‰–_ÈÚT¹-\0èÍÄ­L4’BŽÕu','',0,'?'),('©“<Úóû[òå )‘_—','wp-content/plugins/jetpack/languages/json/jetpack-is_IS.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\0nË=×\"ÇÝ¥N¨@-',')ÓÑ©þ+\Z„ƒþíwçM¬¥ËùËøåÌ@ïã\"É.','',0,'?'),('ñOIX˜»‰C½_Å','wp-content/plugins/jetpack/languages/json/jetpack-it_IT.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\r-›ˆÉïœR\'Ú*}G\n7y','p4E6÷ñ\\g`§â<•y¾A“UoÜóyý›','',0,'?'),('•äÑ¸¡òå‰0qéÿÙ','wp-content/plugins/jetpack/languages/json/jetpack-ja.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ï_þ+U¯ð€q÷E¥iåú','ï(4j-Ñ)µ×%“Ð)æ&hÚW%F«[17k§\06','',0,'?'),('ßŠFé\nÆäKtøGIìÅ4','wp-content/plugins/jetpack/languages/json/jetpack-ka_GE.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','œŒe}Ð2viY’Ó\ZN$','vÀ* íEJþËz‹)$šÊJ5äâ•KEžp„’N{8','',0,'?'),('Ö+/Pž¹º¼ã³•pÛƒY','wp-content/plugins/jetpack/languages/json/jetpack-ko_KR.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Šó!ü†µ\n\"I$±«—GU','-ò;\n”ˆ‹Ž7èÝ`à™äB*JXËB2ëåm\'kÄ','',0,'?'),('ñ®µ1Ê±yÕ“ÿìpuò›ö','wp-content/plugins/jetpack/languages/json/jetpack-lt_LT.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','6>3˜ß¿Çm‘w?©PjÝ×','O»í<yˆV€ñlÆ¼e_+p¡Ø¢§®\\­`#t~','',0,'?'),('ÇñfÖ\\G¯¥è¾›+¢ä¬','wp-content/plugins/jetpack/languages/json/jetpack-lv.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','#zA„U›}mµwýM6Q¹','\0r•îæ–eüŒ»ïŒqã×ñÉRäZ¬¶J/¿\"òQ','',0,'?'),('ÏÞÅ;\'•æéÔ','wp-content/plugins/jetpack/languages/json/jetpack-mk_MK.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','`ôàÁÌ­q³6 ³ÛWi','\0µ\'ôßËÍ]s”¿fÈ“€ÛËVrk¸£µ‚D','',0,'?'),('7¤Š+Ü½T½¶ûS©¼','wp-content/plugins/jetpack/languages/json/jetpack-ms_MY.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ë‚ð£ÇœõØm¶{k«döë','ÒÆ%‰r‹ÈU—¼ÛVÓˆ—oÔF˜zt‘Cý\\¢','',0,'?'),('õ– nù)9Šàþƒs®','wp-content/plugins/jetpack/languages/json/jetpack-my_MM.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ð©ÆòÁ=È¡ÙÅƒõPRmÛ','\0=G§‰ù_$j®Î€ÿ¼› Öã×t/×V\ZÑ','',0,'?'),('#aŠØ/mðsûx3PrH','wp-content/plugins/jetpack/languages/json/jetpack-nb_NO.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¢ÿªss¾ñXŒ3ÏðÝ‘','¬Ã[é{–«Q)K¨mƒ«­qÆ“Yê\"¢Â„','',0,'?'),('çd³°³áÈ{Â™¯;G','wp-content/plugins/jetpack/languages/json/jetpack-nl_NL.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','„ùÑDÐU\0ï°ó¥\'ö','Åéf0J!pYïÓ n5‹cg1Ì´°b«õï~Áßð','',0,'?'),('¦`/O1ÝŸ£´Œ:\'4','wp-content/plugins/jetpack/languages/json/jetpack-nl_NL_formal.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Nyadg‘ÂV6â‡9','ƒ £Nã2ÌF˜85ÄÎ°GôÙ¹`â‘­DOÄ|×¼]','',0,'?'),('yxáW˜÷˜þÅPõ­í¼','wp-content/plugins/jetpack/languages/json/jetpack-nn_NO.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','$pl¹‘ÕZY<9[´z','±lóÞmÊoÑ6]QàèŽ{–F‡ÎÉÙIáÝÎ#ß1','',0,'?'),('»YµùBð®ÖXËà³•lfq','wp-content/plugins/jetpack/languages/json/jetpack-pl_PL.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ëR1ÇnŠùÞídnÍX','A.†„ö˜½¿=Œe&\"Šê<xWn8#É\ZëoÔN','',0,'?'),('ASy¯¥	%N.×ïEà','wp-content/plugins/jetpack/languages/json/jetpack-pt_BR.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÒØË¾Ç5\ZÚ-É\"ò»Ô','™_Åggýø\"!º\r}^añIÁ×tvº8ï<q`','',0,'?'),('½ÖÇ½Qœ%ÕhTý7µ','wp-content/plugins/jetpack/languages/json/jetpack-pt_PT.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','‚­g›ÿ¾8_ïäÐã¸|	','ØªÑíÑ%’ˆôËz¶ÆZE¿öÚÂ®>^~UàWMn¥^','',0,'?'),('\Z{ü0\'’8yXqã)5','wp-content/plugins/jetpack/languages/json/jetpack-ro_RO.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ïþ)°ñ—‘5ê4[­Wc','La2E\0@ÿ+†r´•ËR„z:Üf]«œs»Fcá','',0,'?'),('Òq¹o†õ×“Š‰ë8õ','wp-content/plugins/jetpack/languages/json/jetpack-ru_RU.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÛÎpT¬ü&ˆ§X³Js°','%D‹ÜøÌ¨,¿\n:fuÎ£œé\n†Ê¶!Ôßàõáðõ','',0,'?'),('¡àÔ½œ\'õ9¬ûþâÅ','wp-content/plugins/jetpack/languages/json/jetpack-sa_IN.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','²^—Œw’wä%fº0','«˜ˆÓñLdIÉ—¼‡/ääÊDômºm¤0ÞEC.–','',0,'?'),('È¿AMàfRÔ_êµi†¶','wp-content/plugins/jetpack/languages/json/jetpack-si_LK.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Z~Äÿ÷çnÏ¥ Þ','ÉÄß54o¦„[söó\\®ùgn(ð±.©õ©ÊS—F','',0,'?'),('fãþIGí†I5¥ ”','wp-content/plugins/jetpack/languages/json/jetpack-sk_SK.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ámXÍ£êfïLðè†¢y`','-°£IQ¯\nÏµEvó˜F]^ÿñNÆSæ]w2Ö','',0,'?'),(']Åßrk>y„Ø-æ~0¯','wp-content/plugins/jetpack/languages/json/jetpack-sl_SI.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','dÿÜ¨‹ø>@oF€','¥J¸’ä™Q\0j£®¯÷Í±IÊ5ÛÉ¸[jQôaÉN','',0,'?'),('d¡Þ?àbÈ9’ÉpzÎ¼Ô','wp-content/plugins/jetpack/languages/json/jetpack-sq.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','bA_”ú®MŒÕÚ/š7','[j:\0ÿ,¬²¿ˆ—ÈôvNã*áIßL“ýüaÒR]_œ','',0,'?'),('ûaL&\0í³³zÑ”T£','wp-content/plugins/jetpack/languages/json/jetpack-sr_RS.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','†ÁtB§i`¥¾ÔÂÀY','\0yÆ/cXÔ…†7FØ\"‰P~X&;Ç‡È¨n¦»ùÁÚ','',0,'?'),('Ä÷ÏÏßŠºRµÄ;wx´BÏ','wp-content/plugins/jetpack/languages/json/jetpack-sv_SE.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ä†o=¾†Ì¿Ï¨höá','ÏÒäøC”&ûÅ—R>ÓW2s-«.Noa„¾¡ÎÄP£¡t','',0,'?'),('•ÚréÅ¾˜‡}‚…ÆãZ','wp-content/plugins/jetpack/languages/json/jetpack-te.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','AÁòp7Å?ÓaE=üSŠ','cÑñêþgÝäÎû…9µDIT¿o’l>¨ÒÒ½','',0,'?'),('Oã(\\P±ËÙ90¿N','wp-content/plugins/jetpack/languages/json/jetpack-th.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\rê}‚›¸×ÊDcc3&–W','¯l\\ž¥®|ÃgÍwÁ…Í™G;/ýä4?q9†>AÛ','',0,'?'),('´N(”X!Žù\\À,È','wp-content/plugins/jetpack/languages/json/jetpack-tr_TR.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','SA/ÚOäâNk\'d—ÝÇ\\','ï+€D·ë÷…i!3ˆ|åzl%R-ÅBæ–êÆ@×ÜpÏÃ','',0,'?'),('†vòøÙ3éçÖ*ƒ’ÿ{ø','wp-content/plugins/jetpack/languages/json/jetpack-uk.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','[DC|5\'ïúëCË~´)d','\"áyê~,¡TÑIº´oÌ^ºÕ•q×ˆÆ%k','',0,'?'),('°²F}Ì*(üœ_sÜÛã+*','wp-content/plugins/jetpack/languages/json/jetpack-ur.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','^\\ì—ûhê\nÅAÒ¯›>','¯_<MëDŸe˜öXß€¨˜YPžztâ4R5š-ÅÂXË','',0,'?'),('~€&‘=ºsR.«','wp-content/plugins/jetpack/languages/json/jetpack-vi.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ºÏØ,ËZ“G0žÌI«²','¸EA,Ñ©«“é–²®Ûýi=¦ãPÝ,g™ÎÔö½','',0,'?'),('§£ÑêÃìk*C-bïXzo','wp-content/plugins/jetpack/languages/json/jetpack-zh_CN.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\"í×t\0I‹µ;ä³7[\"}´','¼\\9kèyô qBÙ—KE—n§\\zèòì$ErŠt¢J¬','',0,'?'),('6µ±ÓQA:ñS„ypá','wp-content/plugins/jetpack/languages/json/jetpack-zh_HK.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','øýlüÞÇ¦—ŠgfAŸö','¿´Âô{ì™ö½Üà|=zmf^íQ ­Š×Ù^È','',0,'?'),('‚3ª³·©^Ì/ÿeFh$e','wp-content/plugins/jetpack/languages/json/jetpack-zh_TW.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','7&uÞºòu°ìš%','›,\nD“Xâ>o0A7‚,D0kÿKæ7ŒÆŒ&aì±','',0,'?'),('£ak&Å*í€¿¹x)','wp-content/plugins/jetpack/languages/readme.txt',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','P-_Ìí,fÜam\"T','[h‡ÌtBL°€&¡ñ|æ¹Ú±.Ž©òjo@Ž-ˆ;','',0,'?'),('ÕÍ8È$AžG~*äÆošš','wp-content/plugins/jetpack/locales.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ò„Ñáf‚•tÈ	qNTò','Óö¿íeKu;ü2GÌùaññ`¬9\nH§Œ›ZD‘tVØ','',0,'?'),('•*-ò¼¡ùVx‘øÛ§¶æá','wp-content/plugins/jetpack/modules/after-the-deadline/atd-autoproofread.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','‰¶jØ\ZÑ\'÷Ä±=zK^','¨çÝcgæTâ ²î’ÑKS#á¥gÏ·cq;K','',0,'?'),('Ù˜¦ê”«ì½ªl>Æã','wp-content/plugins/jetpack/modules/after-the-deadline/atd-nonvis-editor-plugin.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','·X¬,=ÍAE\'<îæ\\ÕŒ','|×_­–lºú=“ÈPQ¯dÏÍŽac—ZmøØ1ž/','',0,'?'),('L¦íÆ.ö8ºG æî4','wp-content/plugins/jetpack/modules/after-the-deadline/atd-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','CT¸\"è3Ä\nÖK','X/Ü§áùXè©ƒÈïœlgŸ¥äÄJEÝÈÎ‘Ö=\nÇ','',0,'?'),('b\0x(h»ãÖ*©6¾','wp-content/plugins/jetpack/modules/after-the-deadline/atd-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','`	FcÊp\"2‰êô¾~8®','ÝTˆáŒ¾th…¢ˆâï[€QÌ¶ÍâmYÃnãÕP','',0,'?'),('†’n\0…Ç½õÀê”ÃfH;d','wp-content/plugins/jetpack/modules/after-the-deadline/atd.core.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','XÒÇþ¢{ÝÇICëö€GA&','F…Bój\\Éìo|¢\0NVÜ¨)ŒÖQøÌ1T:¶Zr','',0,'?'),('Q¸à&\Z(y%8|dø]_¸‡','wp-content/plugins/jetpack/modules/after-the-deadline/atd.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','s“ÿ»³hpöÀ,>ÔËý~','M–½F`ÆÓèL\n¾åk&€¢%¥ú¤ƒ‰9Ê†ä','',0,'?'),('©¬V>lµ¶Hl0•“I','wp-content/plugins/jetpack/modules/after-the-deadline/atd.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','°¾­.kïÌÎäÀmC¦\0a','\"älÐÄ×Ìás™²X6LDWJù.š—‹­Åöß','',0,'?'),('Žï‘“3ïÜÖÙ`°Óc]Ó','wp-content/plugins/jetpack/modules/after-the-deadline/button.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Æ#\Z\r•¡ä…1âÿp÷','*dŽ\r’üáù¶2`3^è6ªw©#wô¢©ÔMÎ','',0,'?'),('y¿ä…=c&—Òœ›7eär\Z','wp-content/plugins/jetpack/modules/after-the-deadline/config-options.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','£òC½^§Ù1ÅËêX','µ—ÂÈ„„>}P³/\">Q9Ãâh²1­áºð','',0,'?'),('Ón-’´­cÙo¶z%Ö¿','wp-content/plugins/jetpack/modules/after-the-deadline/config-unignore.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','†è\n‹öxéM×ê~nÑ›P','œÜí“ÌÊ¿P¼=¨[HïÍÏã4u³:¨Dn¤Ít™','',0,'?'),('ù·»ÕÁQ/¾àÖz‚z€ß<','wp-content/plugins/jetpack/modules/after-the-deadline/jquery.atd.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ùôiÈâíâ+”Zs9Tî=','ÌÓ\r_©‘yðºFPZ\r„4å÷±#K©~m|Äh.çª€','',0,'?'),('„Hèœ´¾º–ÙÓSõ­Ûö','wp-content/plugins/jetpack/modules/after-the-deadline/proxy.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','dÑÃÀòõç$HQ}žÃD','nÐn,½ï±÷3‡TŠ6UŒZ}jw–¼ž‘š?}','',0,'?'),('äÝOêÂsd@hÜV\\s†','wp-content/plugins/jetpack/modules/after-the-deadline/rtl/atd-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','%k]CØ‘å&*õH¯','¥hñÓGìû(Â¾T-v_P%C4r³ÜÈ«-<Ò','',0,'?'),('æVVViêˆâQüvC“','wp-content/plugins/jetpack/modules/after-the-deadline/tinymce/atdbuttontr.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ä«(Ü÷ãÞ°˜.’È','ú ã)ÖuÕæg½Wjü‚2¢i˜¯öd!­Ös½‚â6z','',0,'?'),('^˜4¢œj#gr{H[§Ï','wp-content/plugins/jetpack/modules/after-the-deadline/tinymce/css/content-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','-Ï¤—–J«‘¡~ƒ	&Ä¶','dDŽzçù>ÌõþoœQÿ|j›Ÿ“º¼§CqÚÈ¬.à','',0,'?'),('*öfÛ6ÕÈVw’\Z\'N.†','wp-content/plugins/jetpack/modules/after-the-deadline/tinymce/css/content-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÍSò!l/ÜP#\"26*¿','¥·‡VÜ²·o’=Ê¨ í\'#³¢{´ :ðä7yeoLš','',0,'?'),('éûKÃºÕŠTÇÅy8Cìä','wp-content/plugins/jetpack/modules/after-the-deadline/tinymce/css/content.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¯ãü£ÈA÷m¸òsÝß','ÔŽC-ƒŒ\nŽ¢Ê¤÷_øÍ&r!ÆÝô7ðq:V1ß`','',0,'?'),('/@+¯ªH]0˜d)¢¸¥º','wp-content/plugins/jetpack/modules/after-the-deadline/tinymce/css/content.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','©Ó¬78=c¨óÑ,…vå','P†§Ž¾yí\nr¶e]bjRÌ]¬˜ÖKT\0£r-','',0,'?'),('M9\0Ö\'ÿ\'Ü“ÆÎ¸Tè8R','wp-content/plugins/jetpack/modules/after-the-deadline/tinymce/editor_plugin.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','	ñ@_‰&™	§à\\ø‘{\Z','¿#Éê ·Sµ˜b™VÚ½ÒÁBÑ?NÏl\Z©×äVlN','',0,'?'),('­öù­zŸ…•à¶=Ü','wp-content/plugins/jetpack/modules/after-the-deadline/tinymce/plugin.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','‹ÔùÈvñÜØÞtæNú','(dþ\0;1 éìË©€üßÜËœ(‰*-\nn§õ','',0,'?'),('¡Aw™3ë×ÒåoË!Õ','wp-content/plugins/jetpack/modules/after-the-deadline.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','AøŠÂÄeCî»?b4¼','çw¾Cä÷	O·[\rgÙž:;àY«‘Ç\0t|\\_b.<','',0,'?'),('Ü^ÅÖµ3²Ô@ë\0áéÚ','wp-content/plugins/jetpack/modules/carousel/images/arrows-2x.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ðÛ¸À4	·Èßâ’œ(]Ã+','´š0¦|2Ÿ)5®×ÿEþùŠü~Õ¢,¬Ó}9\'(È°N','',0,'?'),('UË‘\"‘ñ)Á4Ûq£¯ög','wp-content/plugins/jetpack/modules/carousel/images/arrows.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','vg?5D•¯i	—í™','µ¸[843†\rQÔ=Ž\'Œóâ}+8dBÝ8OIu®','',0,'?'),('œéôŸ,>úƒAè?cÞ…','wp-content/plugins/jetpack/modules/carousel/images/carousel-likereblog-2x.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','~S¯æ#+1ãCqÝ§btË','©oÿ›ÛÎ?cS £¹(’õ)Š\'j¨JHJ\"N¹òÈ','',0,'?'),('mÑ‘¦æ—÷:¨Lÿ‹=','wp-content/plugins/jetpack/modules/carousel/images/carousel-likereblog.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÆfÝ„WOD–¯è7UÒˆ×','Ð¹cS+Ú”÷’‹=¿ÍAà:Á‘[‚u¹€±\0ªí','',0,'?'),(' Õ‚ ÞqºI÷±','wp-content/plugins/jetpack/modules/carousel/images/carousel-link-2x.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','‚AÅ2#†ûÑÅB?\"ÎÌIH','ÎtÓR/+‘ƒ³Ÿ€¡ý¶úü¹­²®ÅvqQÇE¥t','',0,'?'),('¯hñù‹÷l\'X5Ú¾àû','wp-content/plugins/jetpack/modules/carousel/images/carousel-link.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','&h‚/DPÌ.´¤È¢-','ê¥±³	)\"Ô=dÄkë³êm«(-6ªŸÚ$B.|m','',0,'?'),('|\rOH¯óŠåö¨¾)­8B5','wp-content/plugins/jetpack/modules/carousel/images/carousel-sprite-2x.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¯uR´¾÷åÏîÞÂ	„','°“Íƒ¢é7]\0j¤+¯Åa¯%4sð{f2?”œ,','',0,'?'),('ˆ<“	C¤;·F@Ûßrz','wp-content/plugins/jetpack/modules/carousel/images/carousel-sprite.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','“]³\r>ìîñ/¹¤»†½Ò','M+vÙž¼q•ãŸˆï^ó˜€Dø%n\"-F¥>ëÍ“','',0,'?'),('ÈÜõ¹OíìÈêpâAŽo','wp-content/plugins/jetpack/modules/carousel/jetpack-carousel-ie8fix.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','!€ÝšÞHMrN¨¤9;','¬Ü9šùz¡ëE­5`í·ö;v™o›íZ¬tv','',0,'?'),('J$ÑöçGèAáõ(…á','wp-content/plugins/jetpack/modules/carousel/jetpack-carousel-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ð¬î±zkÛòQµI½þÈ','ê;#Y}R„ø‡C8:¿ý8ÔqW\\~^¾ÓÈßG·‚Ó','',0,'?'),('d¸¬ƒ@šõÔÉñ\\v$','wp-content/plugins/jetpack/modules/carousel/jetpack-carousel.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','/¼)2²¤âÇ•öC','éœ¿g·‘0ãäÒ€ ‰év°açgo¾µšk05','',0,'?'),('{‡§v¼Îrd÷~?‘åW<','wp-content/plugins/jetpack/modules/carousel/jetpack-carousel.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','y|Ï1*t1R;H=³•','ÊG×’¼cº\0éY„Pz!ãýÉ½Î®IO\\c','',0,'?'),('ã¯ë\n™$?9^¸W’Ì½t­','wp-content/plugins/jetpack/modules/carousel/jetpack-carousel.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','I¶á:;nË_6ìÅÌ\'','ãèê»\'Œ¤Ùs0Q4…û¯ÿµ·™*OÙ+¤Wêâ','',0,'?'),('¾oç¹­…+ç©Lùò²–,','wp-content/plugins/jetpack/modules/carousel/rtl/jetpack-carousel-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','†ãkRùÜ0\\œ°¬8ì¤','N Ü;ü•á	èX¤n²é5æ÷Õ‰”£‡Æ\r¿¶¸','',0,'?'),('w’Qð»-tù½?`ÈI›','wp-content/plugins/jetpack/modules/carousel.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','q:Ôëú`õ”Û€ˆSî‚;','D;÷dÿm\0-ÛbS}(›ºê¾¢¥¹ÀB[ÕI€v‚','',0,'?'),('W_Ôõ¾w*ÀÿÚGPƒ‹{\'','wp-content/plugins/jetpack/modules/comment-likes/admin-style.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ê.,å±£Âþ9<‰\\ç','!¼Ö3èY}öûxMÙŽï–}Xß¯°ƒž\"S[ÝñgÑ','',0,'?'),('ÍÁW\nÓéª”¼•\"àþö','wp-content/plugins/jetpack/modules/comment-likes/comment-like-count.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\0<*¹ª³ÆÂ¨QYÊT;Æ','Iëg„ûtOí¾`6SLHÔ/<¯¨ [¶&m‹×Ä»','',0,'?'),('_’MÀÎE+B,]˜¢S­	','wp-content/plugins/jetpack/modules/comment-likes.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¾Ý°ˆ²5c@fÂ9¥Ûd‡','ZŒq\'z˜Ú=øK“Ñ*ÌÏ3Ê}‘`i¬q¢„	6[—','',0,'?'),('¨oˆêÎþ‘yd\r5Èê','wp-content/plugins/jetpack/modules/comments/admin.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','–pÒ6“yDœ…Æ”ç\"','el+6Â]¥¶{€]ÇÈõ[5aæHðÎ8','',0,'?'),('ª¼ô¸Àù%¾uH)d±àu','wp-content/plugins/jetpack/modules/comments/base.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','dpd\n?ì@|ÂQöy’','<deD®C—\0\"@÷öÐâíôAÌ·»CbÓŠ.wì','',0,'?'),('HTèêþÛº¿ˆh.Úšn¸õ','wp-content/plugins/jetpack/modules/comments/comments.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','nJ²ÍÕè}T÷•z‡9','Ñ€ÔW9íÈ_OÑ¬}ãZé:¯î\"eBõ|wlÏ†','',0,'?'),('`›ÇëŠÅÀ ¿Ç6aû«','wp-content/plugins/jetpack/modules/comments.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Å¿l,×ýÏºúˆÚmlã÷','~úáb¹c¼ú,¢®-0s=ViPÆp÷<#åEš~K','',0,'?'),('¥ù=ßÔÌ¤ëQž¹==ó','wp-content/plugins/jetpack/modules/contact-form/admin.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','›®®œî=|°~§ ì=ŸO','Ú¾:-Ù@)©ãoZ¨#ŸÌú‰îäüšføŠP{ü²[ú','',0,'?'),('œÛVIc5V˜9«Z4± ','wp-content/plugins/jetpack/modules/contact-form/class-grunion-contact-form-endpoint.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Š8QŒ‚ßÉ)6ò\\','÷a‘ß”1ª¿c¸óÁÐZvýevž™ÆX·`œøº†p','',0,'?'),('5½Q]cÈ-,é4Üt7ç','wp-content/plugins/jetpack/modules/contact-form/css/editor-inline-editing-style-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','X	Â{•B¶žÉ›\\µgq','XöÀk²Î¿­}.ÒúW2y¨_î/†7âÀg‚…‡,','',0,'?'),('¶1\r63–cÁ¬Ôí^p¿_','wp-content/plugins/jetpack/modules/contact-form/css/editor-inline-editing-style-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','?ÒìgŸÂÑÑ$#?d»','bTsqÑ9ÄŠÐ  n=RùhÒcËOŒ¨Nq‡Ï©e÷','',0,'?'),('ÌÖ‡d?íÖ·ÑºÍcŒ<\Z','wp-content/plugins/jetpack/modules/contact-form/css/editor-inline-editing-style.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ñË¤ÍBÄ©„Èª|ÂÃf','Mk×˜,Æ¦\ZãTú=÷sŠ¬Fh©›c¢F´ù','',0,'?'),('æÅ´J:W<üŠNà','wp-content/plugins/jetpack/modules/contact-form/css/editor-inline-editing-style.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','to|ÆcDíN|J`(¤‹','I\"ï¸—€L?{@’Ùzê/OâÊIœ`Ú»{¥û\r','',0,'?'),('Eû´ù[I¼¥IåûÌYôn','wp-content/plugins/jetpack/modules/contact-form/css/editor-style-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','bÔš•AÆoûÍ‡$¨)‰','š¨jÿ$\nTÈžÃ[¾¼œ~‘èB(Ò»\"‘ÎýuT\'','',0,'?'),('\r&p˜H-Á4ˆ¥ÔÄ','wp-content/plugins/jetpack/modules/contact-form/css/editor-style-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','YÏ£¡öûÙÀ¶ÒÊ','h4\nó—×qÜ	[`Ëý€š¬+Í<†u	=·åÓëV«','',0,'?'),('k\"°/°K&`„¯j„6m—','wp-content/plugins/jetpack/modules/contact-form/css/editor-style.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','º;4Ígƒê$ùM%°Wso','¨‘ha.Ö§Ó—b<¬™³1Ž[*+¨Ë!‰{VäVÖ]#v','',0,'?'),('E¢’§“Ä‚ö?ÓlµÏÆÏÇ','wp-content/plugins/jetpack/modules/contact-form/css/editor-style.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','eÂ TË\\»ÛiçˆÐØ,i','†ù–½(åf¶ªŠ]Î0m:ƒúÃW|cÜMòK¤SnŠß','',0,'?'),('”sÕ\\eUjNºcÙüâ','wp-content/plugins/jetpack/modules/contact-form/css/editor-ui-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','‹¼A)AÚ{î(‘¢ÐU','¥í\'žø·T`Úã„1Qy°¾ÔcOZ¿³åsÚÉÉë','',0,'?'),('¹^t±Þ´ûfL\\\"‹”›','wp-content/plugins/jetpack/modules/contact-form/css/editor-ui-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ù>xÀ,{Û1©,Â÷[Û','ªPu%8áÝ¿ºß”´§¡W³­ªñ|²ˆ´EWïe)þ ','',0,'?'),('îÔª‹È¸ß$Œ]fg‰±Õ','wp-content/plugins/jetpack/modules/contact-form/css/editor-ui.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','c¦”	·‚Å“2è3Sh$\'','ºÒ°¢RlU­M˜±”õ6HEŠ–%YÓTZšS^è¦ðÀ','',0,'?'),('™W-ïAR\0²ñ\Z®¢·n¯X','wp-content/plugins/jetpack/modules/contact-form/css/editor-ui.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','a+|\"j¶˜—?£Nœ7„','­«I†\0+úæ¯%ƒã˜ó&unÔG‘´=ÏïÍ•%<§ÿ','',0,'?'),('Tk_¬}S™fQ=¬ÙÑ|','wp-content/plugins/jetpack/modules/contact-form/css/grunion-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ÿ÷}ü^|ýÜs³C/·!','ÚÔ2þˆÊiÝð»™™åt^5|ú^€„¬§Móñ','',0,'?'),('¾]GGWãï$MQ¡0¹™','wp-content/plugins/jetpack/modules/contact-form/css/grunion.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','èmfÏ±«c²\n­Kf\n+[','a&¢â³£h7TAÍaÂu&œDóýÉÔ/)€xöG','',0,'?'),('€¨Û_ÁÊüÞ±Äh÷/Â','wp-content/plugins/jetpack/modules/contact-form/css/jquery-ui-datepicker.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÒÊUuê3÷æ½œvyûÇ','R€¼ÏVØ9Ëp+áš*3\r0AãßQeÀ±­ECñ','',0,'?'),('¾•ÜNþ£92ú|­Ó´ÇŒ|','wp-content/plugins/jetpack/modules/contact-form/grunion-contact-form.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ñ¾Õ«jq¾†#nÏ¡b^¼','R,3ë‘ÿŠ\Zâñ,ºè#æ¶1¾*Z¸ôëè`ûš’','',0,'?'),('Ýæú©[0@‰MŠxãÑÆ','wp-content/plugins/jetpack/modules/contact-form/grunion-editor-view.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','k³Ñ\nÜiš€>œçÛS','ä§/$à\rÀvõ(=Š\"¿{í³*²‘j¿uQ_&n‡Ôg\'','',0,'?'),('ß	*¯üJÚ.ç­\'í	´v²','wp-content/plugins/jetpack/modules/contact-form/grunion-form-view.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','X2Ä›ƒ æ^;ãü6XT',')²§Šr0Èáø†ò_µû;àlçþI÷ãÒÜAñÆH','',0,'?'),('Ôª>(¥ÎuˆÍ=|§ê','wp-content/plugins/jetpack/modules/contact-form/images/blank-screen-akismet.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','öxWò‘ŠÿRÔ–p\\_','rÅmûæ8yt­ ’Íµ6f>Î¯€‹ª8ø³¥Õ','',0,'?'),('Úëý\rÒÌžÃ„&\0XÔ/','wp-content/plugins/jetpack/modules/contact-form/images/blank-screen-button.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\\R¯‰ýøü¿…ÒÛÚœÞ­','	[qßKJ÷è¯WtGNÞ¼Å¼¥TÔÿñF%Ö\'ÛË','',0,'?'),('c›gòÖàÐ6Û‹iÁ','wp-content/plugins/jetpack/modules/contact-form/images/grunion-form-2x.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','sg…âfßˆ	Áiù	ña','=©l¥£Ô”­)¶†Ã(ûÎ>wh}êÜy˜ÙÌf','',0,'?'),('Wß’ôæî-P54-Õ ù','wp-content/plugins/jetpack/modules/contact-form/images/grunion-form.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\\™aèÕä’—ùe­´(','»(›º°•»¬9Ù±”dõ5;ý	/¾CNÀQ†©/¶M','',0,'?'),('ÑZ%Ž+z=ÿÛÜ¼8ÞB¥','wp-content/plugins/jetpack/modules/contact-form/images/grunion-remove-field-2x.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ä¬áõßí”P®$Ä$','ú—Q6Æ–³¿Îb«<EÛ ƒ©…×$ÔÚ hKCål','',0,'?'),('–Ÿ¹my5\r±ù1<Žû¨\r‹','wp-content/plugins/jetpack/modules/contact-form/images/grunion-remove-field-hover-2x.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Õpv”lò£ïÐ: ®Êó','·íïÁç’Úù!ãBb!¼Šú^½úˆ\'åþMF$–>ˆ¬‡','',0,'?'),('cÎî9%H¶Êr­ÊZ}','wp-content/plugins/jetpack/modules/contact-form/images/grunion-remove-field-hover.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','KÛ0V¤5›Ö,›³šø3B','t©è.K‰\'\n-FÌª²GsÉ‹¹$ßö†yhnhŒ','',0,'?'),('¨²[ºþìÇ%`ð0Cˆîó','wp-content/plugins/jetpack/modules/contact-form/images/grunion-remove-field.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','çT…¯\0aÛ8âpæ¿D%','[Qœ÷¬¦ÍY¼”»àß}— þ\\/í‘t)†rÎDá','',0,'?'),('ò/ÓÅÁë\'µûæ½vlÂ','wp-content/plugins/jetpack/modules/contact-form/images/grunion-remove-option-2x.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','™WU°Ûûí¾æŽ”å@aÄ','NÓ‹<éØÌÀ:ÂzÀãÂÜéù–ówšÎ@‚Õ','',0,'?'),('‚\\Æ~‹VŠ0ÓdúK','wp-content/plugins/jetpack/modules/contact-form/images/grunion-remove-option-hover-2x.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ÿ;ra´ž0þ>¼¡ˆ·Õ\"','GÞ®Ô§®›Ÿ	¯a%ü‚7ÅpDÑüš¢@ØIÃœA','',0,'?'),('7ôÉÜuààVüŠ‹Qx','wp-content/plugins/jetpack/modules/contact-form/images/grunion-remove-option-hover.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ü,ôyx3éqjÅFèš{o',';ÚÊ€JV\0e†+XºÍ@ÎP?§G¡UÙÓ¼$µ¯Á','',0,'?'),('H\'±)±lŽ“Ú¼~¬©Õš','wp-content/plugins/jetpack/modules/contact-form/images/grunion-remove-option.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ý¾•s=þÌÏc½Ø­%Á','Äñ\Z«¢›rpÈ’1ïÌ¦-È@b¯*øY¯¼MÉÍOë­','',0,'?'),('¯Ó”©ªý˜[4€É#ß¢×','wp-content/plugins/jetpack/modules/contact-form/js/editor-view.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','«‚ºL9¨\r·²CëdøE','¨ERX8x!h\'€>„tGWn‹„ÙC«©eUd','',0,'?'),('ò[$î êjÄ!.l‚Î\'º','wp-content/plugins/jetpack/modules/contact-form/js/grunion-admin.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÞˆkÄûG9(ŽÓ·Ó;','˜äýðùª+XƒwR2œ4%_4·ÙÿpaIê4l7','',0,'?'),('P³Ýäú“8Èê	CZ%w','wp-content/plugins/jetpack/modules/contact-form/js/grunion-frontend.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','_+ÿe¾µe,›ŸqÎÇÖù','¥½VJ7.änŠ-ˆ\\³jÛI¾²©ô\\Ÿã+×²JŽŒ(','',0,'?'),('ñê²þÐD‰öÃ€ª¡úR','wp-content/plugins/jetpack/modules/contact-form/js/grunion.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','pa|¯\rÑ˜Ø‘SÈùZ‚«','Ú>ò¢OúÆv¦¼QÊ¦^CÝ­—ll¬ò0°m	má‚','',0,'?'),('¼jºÁ  ¯iðª>Ò','wp-content/plugins/jetpack/modules/contact-form/js/tinymce-plugin-form-button.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','eá¨Ûô†^Žú|Öæ£=','€Q‘rY3wŠ‚…Xrè›Ý·t2¦•Áj$Bÿ6¿','',0,'?'),('A\nxAÌ³f[q?\\ù!å2','wp-content/plugins/jetpack/modules/contact-form.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ñØ\"vT™\"èê+É-±´C','ëä=~¢EŠÇµ+µ±FäŒ59x L–š¶ÊÆ','',0,'?'),('{ss³R¹kl1\r‘Ç&š','wp-content/plugins/jetpack/modules/custom-content-types.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','O`ohu‘Ìßq­\'D%','>•¨ò°S·`Þ0ñínÃs»7nÝkš¿S¾Äç—','',0,'?'),('‚\n3É@Ó¸…ºÐÁç<$','wp-content/plugins/jetpack/modules/custom-css/csstidy/class.csstidy.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','—qÅ|ŒBö‹šgÁöãMo','5Ó¬¼öÐHýéîaW»rò	ú±D½¥æ\0Ì¿ú!¼','',0,'?'),('Ì÷PV}½¡7`„¡›','wp-content/plugins/jetpack/modules/custom-css/csstidy/class.csstidy_ctype.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','÷y{èŽ8Þ­9í¿?+-ž','ß@b¼­Æ³,¶¬‚O,Öæ·¼t6u¶¼x¯JÊzú,çg','',0,'?'),('Úž(Âµ\'XE_\"Ö*(ËÃ','wp-content/plugins/jetpack/modules/custom-css/csstidy/class.csstidy_optimise.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\'Ä+ ºî±HM¤±û','[†QLžª}]­¶Ø{úÐŸâF“Ä¸Æx)ä¤>Š½','',0,'?'),('\\€­”áä›/<³·’=','wp-content/plugins/jetpack/modules/custom-css/csstidy/class.csstidy_print.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','š…±Êƒ…4}bŽÝd','Ç_ÿ´`éa\n†–K¼¦vnø51á”áÊœ¸S¡ú#zª¥','',0,'?'),('à\r¾./6r’	¸©Ÿ÷Te','wp-content/plugins/jetpack/modules/custom-css/csstidy/cssparse-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','5+¦¸¯Hÿ·GÍp5Tú','È^ï	_yµúû‚%EÉÄ.p²ïSÀ/2‹hÙâlå','',0,'?'),('„u»ÒÈž‹®²Å_Y','wp-content/plugins/jetpack/modules/custom-css/csstidy/cssparse-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','°TÏ†1ÛžåVn¡óíUÄ','i08Q8¶6eÞ®+à0«ºÊq¥€¬³²	4³–*øôL','',0,'?'),('ÿ½wÓØ`‚âÚ¶·|','wp-content/plugins/jetpack/modules/custom-css/csstidy/cssparse.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','aÿ+æ¹KH3…S¿ö','^ËW}¯xÐñU•(š’AúÄ	¼ï©ÖSá;Y»Æ¿:S','',0,'?'),('U•ÊüZMXÀ+rÊ§¥','wp-content/plugins/jetpack/modules/custom-css/csstidy/cssparse.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','N!wÉ[*Ùý‘wö°æós','Ü@¡…#À~àÁÒ{×%QÍ›ŽÊË”b¸ `ºD','',0,'?'),('”Âº@^L¢_Å•_+','wp-content/plugins/jetpack/modules/custom-css/csstidy/cssparsed-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','†·04\Zµ%`ï`|€k','E«ÍšÚ¢µÌªGú»ùP2äF0ääDÇCLÊI¿ûtA','',0,'?'),('&ÚÛ q9¿½D\'’(‚1','wp-content/plugins/jetpack/modules/custom-css/csstidy/cssparsed-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÝÍÌ™<†GäÂmóC~','	_5éø Ma³ëó‚Tí\n×d[ÙZ¯‘ñR0kî…','',0,'?'),(',#úq1žÊN–—ÚE¬','wp-content/plugins/jetpack/modules/custom-css/csstidy/cssparsed.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',':$a @Ñ÷¿¤\"=','Gù3‹\\ä¡»ìDy‘A>™6,l¶ÍéÇ¥Ñ¯:ë÷é','',0,'?'),('oCDgÆ*GE³2^’´','wp-content/plugins/jetpack/modules/custom-css/csstidy/cssparsed.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','kÉ…ï¨ÓôP½k!Y¿õ)','Jv‹Õ<òØg\rîˆE‘eaZ%÷BW&ü$­¦ÅgOº','',0,'?'),('{u²HÃv¡q~ÿd¸ö','wp-content/plugins/jetpack/modules/custom-css/csstidy/data-wp.inc.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',' 5Õ=óŒIðj¬Ça+','…¥Býîÿ!ÄàNÅÒ³NYy5Ù“m=Å','',0,'?'),('€ñ4\nb°I¦ûLr‡¸ ºì','wp-content/plugins/jetpack/modules/custom-css/csstidy/data.inc.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','?0vËÃ¦p9º%8±€','¸w¾{Õó¸¡‰àÕ¤[¢’=ZÓT¬Df_^AiPr8{','',0,'?'),('Ê»ý­=¸ÇsNÓÓt3Ì%','wp-content/plugins/jetpack/modules/custom-css/csstidy/lang.inc.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\\ÆÉþšvpÚ:T¶ãÆ','Œ>\rw5®l5=ç¦1\\Ø\\\ZÛïTê+Ž›%†ì+','',0,'?'),('þ@ìÁN8Cä .À:É’','wp-content/plugins/jetpack/modules/custom-css/csstidy/wordpress-standard.tpl',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','	£õe„ÇÖ8üô^uëî','/r}\'Úî\r¢ëÍÊ€õ|„À›þ–`\'-ÜªÆ’˜','',0,'?'),('–¿^xè™O›©î@','wp-content/plugins/jetpack/modules/custom-css/custom-css/css/blank.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','u+Â`ÔP9íÒdf´Ë','Ò!xLÚ1î®\\‚•àG¡KÚnÕ©µ–?Êž|ë9Šœ‘y','',0,'?'),('Ì¨4Îcî®‚ÓfÌð','wp-content/plugins/jetpack/modules/custom-css/custom-css/css/codemirror-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','H}LðÇã]\nêhà!j','Žg;3‚\ZrMØÐPÄ›eó<C¬iyÏ„:äHê_W#î','',0,'?'),('†¨Ré\0ù4`…í\'JQ^','wp-content/plugins/jetpack/modules/custom-css/custom-css/css/codemirror-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','3Ü?Ì†úƒôwdúæ¨°«X','O½Ïç–dí¿]á>ØR§3›l¡uÅ8ûX`yšî3','',0,'?'),('îE-}æJØiáÌŽð','wp-content/plugins/jetpack/modules/custom-css/custom-css/css/codemirror.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','l£‡¯ÖŽCÒXíËsCä×',';Ôêù‚ÝPÃª{~²Íÿš²çv:˜žöŒK&zPÞˆ','',0,'?'),('	\'ïì³!1§œý¥heU','wp-content/plugins/jetpack/modules/custom-css/custom-css/css/codemirror.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','VÀÄ%gªKI|í²S','è0YôÔ·¯Óa¨\næÌ‘Z­çÔ^õb«q˜1xÊ{s','',0,'?'),('0vSò\\¬À•^t|¯‰×µ\0','wp-content/plugins/jetpack/modules/custom-css/custom-css/css/css-editor-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','œ[Û²çzœ´‘=‘¼9Ô','£–,œìNŸ¤ØËïïë\ZˆÞ­3Þýóà´7¨±h:›c','',0,'?'),('Úªôõâ‘ã˜H±{Š˜Ä','wp-content/plugins/jetpack/modules/custom-css/custom-css/css/css-editor-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','‹”Qcü±°0/à¡Øµ','âÒÊ,T³&Í¤G¤;ÚO¸±t£ê¾Jº…‡\\C9 IÜ','',0,'?'),('h}øRUùÚàâ‚WŸ)/0¨','wp-content/plugins/jetpack/modules/custom-css/custom-css/css/css-editor.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','uùg»lÿÙOÎ¤3½1m','k…TS\Zk\rúŸa4›H¥KžËef.¡œX¦’nÜ','',0,'?'),('R}ÁT¥C‚¦¢Vh{îÃ¿>','wp-content/plugins/jetpack/modules/custom-css/custom-css/css/css-editor.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','gu™@ë¦Ë‚[>!Øj','åeDgÈÙÛ’šuªWôÝ³¡lŠ²Ë^Åf€9ãÂ¹	','',0,'?'),('\0|ÍC!‘À\rÞïÓ¤y¶','wp-content/plugins/jetpack/modules/custom-css/custom-css/css/customizer-control.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','-S’™\r 2xÀ¾•9','À[÷Tgãb›À¶¡0˜#EÖÒAÖ,BµÙ!“ìGÀ','',0,'?'),('xNbù}2™5ž0},T','wp-content/plugins/jetpack/modules/custom-css/custom-css/css/rtl/codemirror-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','S_»¨¯\Zè×™œgÂÐ','—+êÏL\r°‡q\Z0ûæøj¼ÒÑàÿeyDGÂ\'`GE','',0,'?'),('¥¤Ð9Ie¯¡¥ÿEFn','wp-content/plugins/jetpack/modules/custom-css/custom-css/css/use-codemirror-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','&wû2ÞKîhòKF6—p','(Êå†Ð¿£,íðÄ¦vdß–`5BoYˆ	èN‘','',0,'?'),('/QƒÕ¬R?”!¿Ñ‰¢Õ%','wp-content/plugins/jetpack/modules/custom-css/custom-css/css/use-codemirror-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ï£e¦04rBáqøt’r\Z','úˆ4–¾û•”…\\ÿf>þºnòR¥þ™‡·™1	7¯','',0,'?'),('ƒÕCçÔÑ¾¢<ÆÅ½´','wp-content/plugins/jetpack/modules/custom-css/custom-css/css/use-codemirror.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','aØ8“W†	j œ@\\«','Â1Ô¥u\Z‚TtäUÆÏ´=(wª24h\0*Öœ_»','',0,'?'),('OþQ+Îñ÷ºœSéEÌ^.','wp-content/plugins/jetpack/modules/custom-css/custom-css/css/use-codemirror.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','-ãw;$²l–hh°m†','vô%3UåãÔä2äkTÄKP&ð-¶dÖýüQ»-Ü','',0,'?'),('âìnÙyïùùô…à¬«õ','wp-content/plugins/jetpack/modules/custom-css/custom-css/js/codemirror.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','•ˆÐ^†îí+Kó Uyf.','Éâ.æ”`öÐ¼:±´¼#YmÕDÆôþ™\ZÛ6Ç','',0,'?'),('â%1y*Ô`t%•$','wp-content/plugins/jetpack/modules/custom-css/custom-css/js/core-customizer-css-preview.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','K\\D½û³uIõ¼}dïAB','…I--@ª7\"š—°ž%J=õ×Ç˜ÐWX³z¥Ø\nþ-','',0,'?'),('­¡ßWX5Â´”©Øë','wp-content/plugins/jetpack/modules/custom-css/custom-css/js/core-customizer-css.core-4.9.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','@ý h[\\ÐÞ,Þó\Z–ÊU','õñ\0zh¨téGËÖ#)Ø…ˆ5ñ–Dïn½o;pQÿ`','',0,'?'),('wfõqô&¼¿?Bö','wp-content/plugins/jetpack/modules/custom-css/custom-css/js/core-customizer-css.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','BŠBG†\'ÆÞ}¡Øº¥É—','—ôµùi	7U5¹m%ï0ðÚªËwÌÍ5Ó@õÊ@','',0,'?'),('mó€NÝ€²$XRñ—=‘È','wp-content/plugins/jetpack/modules/custom-css/custom-css/js/css-editor.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ç/çhçVeùJMÚeéÞ','Yfg®BeH(µ]­3-5¹qòPo|©D¯¶*ªwõ','',0,'?'),('Ê2%½<iŽ·Ûù+<î<','wp-content/plugins/jetpack/modules/custom-css/custom-css/js/use-codemirror.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','«ô­%´;¨_RH¶@²Ñ/','fQ85t0ý	‘	›ê&HeMúŸ£¡Í?','',0,'?'),('p¥#\\/pI¹GÛ2´\nÖŠâ','wp-content/plugins/jetpack/modules/custom-css/custom-css/preprocessors/lessc.inc.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ûâo ,†¤Yrì¡â\0','ƒúÐ`ÛJ3\rƒâZÜ?[©ks7Åw7ƒ2kB{','',0,'?'),('<V\r˜œÿ«Í˜û§Õ','wp-content/plugins/jetpack/modules/custom-css/custom-css/preprocessors/scss.inc.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ç +—ÉõæDÒ‚BchlÅÁ','ÅPW¬ØÓ@ýzê¯\0‡€\0„^Âäûj*7›¾ó\\ÿÂ','',0,'?'),('/+¢¿‹¡é8=³rI\"N','wp-content/plugins/jetpack/modules/custom-css/custom-css/preprocessors.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','[&J‘ÃpâÒUDc0õ`æ','!ff~Í‰ŠÀ\')2­Ðæ^\'}èK¬’b] bµdŽ','',0,'?'),('QDL~Û±Ø]Õ¼ßúm£','wp-content/plugins/jetpack/modules/custom-css/custom-css-4.7.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','_ÊÚ‰Ä\\sS?‡,^î','ÕÁ\0šFJ¼Š—%ä6¾¢[1	{­-\'T¿Šß7','',0,'?'),('Ó}3 Ûÿ|!þi8ïO»','wp-content/plugins/jetpack/modules/custom-css/custom-css.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Œ¿RZìÆüF9E»g','7ÒÅ/s¢* ëóŽ¿daråx?É^-X75ab»ÎË','',0,'?'),('ûHêjêïœ¼Ð™”<Íu','wp-content/plugins/jetpack/modules/custom-css/migrate-to-core.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','j\"³Áƒ‚Ñ\Z¤™3Ð4õ(','³Í~N#Eq^×ÃüÌoóË{HÞj§%‰f¤Ýžé7','',0,'?'),('çÅcÕíÇÀ÷=öÔ–òZ','wp-content/plugins/jetpack/modules/custom-css.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¿g%®\\Izm\ZB³‚ÿ{','dj~q¶s:ø¹:FZé!øA¦NòPÿ.’¿âO~','',0,'?'),('ãlÔ”ê Â=³¯˜1Ë1','wp-content/plugins/jetpack/modules/custom-post-types/comics/admin.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ÿ Ð+é@¢ÓûT\r¢´','ò2µÀx˜Jõ¯²h\rÓÀÏ\Zßçœ§>(ZÃÈŸ','',0,'?'),('ýpÀ—ªö-ÀŸìäpLø','wp-content/plugins/jetpack/modules/custom-post-types/comics/comics-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','L˜Ó°G3Ÿš½bpäª','°6ç2)} ´•¼C¿mÆPé\nj_O» ù‡WÔÕó','',0,'?'),('sâPh\rj±&²óUån®{','wp-content/plugins/jetpack/modules/custom-post-types/comics/comics-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ó2ø‘Ì¾Â€¢_\"43øc','N¼ížüä1W‹âïàe8¥HÞ0ÒºÙ?W¦8½w÷','',0,'?'),('¼¢+ÁB˜éô%êò>Þ','wp-content/plugins/jetpack/modules/custom-post-types/comics/comics.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Áb=„ Cw³»\'ÞgºH°','R{`ßJúUˆ…vé`p`9\\~|o¾¼ºê\nò#ýj','',0,'?'),(')1m¾—À>Y0ïÑúÐÒ¼','wp-content/plugins/jetpack/modules/custom-post-types/comics/comics.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','íx%ˆ‰Æ0²ÓÚÊÀa£','|­*úG#õ-sÛ1uÛ‚Ú)Fì|ÏþyÈ<âZ&','',0,'?'),('9~	ì€çü(@®\'-OX','wp-content/plugins/jetpack/modules/custom-post-types/comics/comics.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','môw#é%n›ýýš\"d','w{æ¥Üœš¼+o¿ÚÙë	}Ä\r•­ª›/{A¬iô','',0,'?'),('®9gÛsñ8eó5l–A','wp-content/plugins/jetpack/modules/custom-post-types/comics/rtl/comics-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ß>aÑ\r[A¼d¦ÞZÙÊ','½²¸ Ç:^qÕw«Z§pU1é#Ôú€…\0˜ÕOµ-¢','',0,'?'),('íitµ3‡öŠ]§|¨e7Ô¥','wp-content/plugins/jetpack/modules/custom-post-types/comics.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','#±ÿ1¢ÄÖm7ºã§-œ','ëÚ=óo—”òHn‚êctpÎ‚\" °|±ö©å3È^ý','',0,'?'),('wëF£sÆ©–¨]#!4¬uë','wp-content/plugins/jetpack/modules/custom-post-types/css/edit-items.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','84ÊÏØÂïÐÐCòM”Ö=\0','‚ÝÂ Ü,Ÿ¯£]À¹ï©¥Ùè¡ãz0nÕëÀ¢¼à','',0,'?'),('†V\rXç59ÉKÝâÂn9…a','wp-content/plugins/jetpack/modules/custom-post-types/css/many-items.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','uÂ·–fêéIŠëÝKôþ','Ãg6-~½‘ãË1g³Ûqo$mò.ÎNï¿’ûò0','',0,'?'),('\'ì#Ü-… M÷¿O¸Wk½','wp-content/plugins/jetpack/modules/custom-post-types/css/nova-font.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÔPêù>?C—\'‰@„hõP3','c‘˜“¾As€‡J´ß¯k™^Þ—”~,\nÃ¸o\0¡Z','',0,'?'),('~Þn/ÿûø§f¾Å’“}','wp-content/plugins/jetpack/modules/custom-post-types/css/nova.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ƒÒ1~Z™×ì¿©','Okªz§rmKãš‘\rQ»Qr\ná/Þa9O»QBÌ?','',0,'?'),('Å˜3*YÞà4‹Ÿ·+ºJ','wp-content/plugins/jetpack/modules/custom-post-types/css/portfolio-shortcode.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','>qU+A÷·OãiE`KN','sÁ­ÏëU×Â[\n´¿cë}Â‚µ’•PÚ­ Vpn\0','',0,'?'),('´4(L3·àŒ,•¹ç','wp-content/plugins/jetpack/modules/custom-post-types/css/testimonial-shortcode.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','œì´áÐLe*‹Ý¡á(é','¸=6ô2t`ðùð%Ù•óú™;IØé?Ò—ûsXÓ,€Ø','',0,'?'),('ò}´èÆM ö¶ãs­','wp-content/plugins/jetpack/modules/custom-post-types/js/many-items.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','…â¯\r^‡éóç‡^‰','5A4ÝóE´r´zróÖ6løI\ZI‹¶ÞËg','',0,'?'),('ÿ©n4Á0ÿ“˜ê)³¦¤','wp-content/plugins/jetpack/modules/custom-post-types/js/menu-checkboxes.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','<(±FÇË¸gÔÃx¯P¢','˜;‹‰ü;½×ü#æ^+ÑÌ½J\0/œóBÿÈíí|½','',0,'?'),('ÇÙf—³]ÝXXºJ','wp-content/plugins/jetpack/modules/custom-post-types/js/nova-drag-drop.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',')£7Í++L¸@9GÉ','Ü&†Q¦KÈ‡Xòýß!W Ä®ð.ðZ¯Äp»è:b•','',0,'?'),('„²ŽôÕ}·Jt«¿XÙ','wp-content/plugins/jetpack/modules/custom-post-types/nova.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','U{ëkƒÑ›j\r­ãÅ','ƒ$ÊX‹±î\rQ)ð÷»ˆ#$–Cü–lóc×eMv','',0,'?'),(']‡EÔ‡Ü0?ü4ŒHæ u','wp-content/plugins/jetpack/modules/custom-post-types/portfolios.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','pxc‘ûèœ¡¥Ã~ ½ ','Ï@0ïÖÁÔÔõº¢µÇÕo~T|=Ÿ[iõ9VÛh§9','',0,'?'),('Í¢žºl¥~â60}Ã','wp-content/plugins/jetpack/modules/custom-post-types/testimonial.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','u\ZQ±¾-Á[m±\\k{O','ÃòUµP›wýZnï,Íz›ZÜ&Bó å1ÖpFÍ5Ä2\"','',0,'?'),('*„Þ :\\²æÙõeññòV','wp-content/plugins/jetpack/modules/debug.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ž@µ¾§ŸÎùµ}‚.óP','‰ÐPØ9ƒSdˆ[Aû%w”²f«=À•¼l•','',0,'?'),('Dwë÷¶\r†ž7xMX˜O±','wp-content/plugins/jetpack/modules/enhanced-distribution.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\0¼&ÄØ<HRIŸw0ß=','Oìp~°õÔ¢?;\\{	<«=¹Â£áÉINá„ÒNG','',0,'?'),('eòEl}D†ÄõZ\"ïX[','wp-content/plugins/jetpack/modules/google-analytics/classes/wp-google-analytics-legacy.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ToA•{bÁZP§ÎÁá…','K³uf[¯—’‡˜˜{ËÄw7x–ÀŒÈR¼cU1pHÎ','',0,'?'),('¡ê@”pm$‘Éøô5D‹','wp-content/plugins/jetpack/modules/google-analytics/classes/wp-google-analytics-options.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','F×T7°\nS–35åÕv€xW','êñy}\Z»Ž˜Ô­®­N¢O Ò;„Üv×#lnà>k','',0,'?'),('¥L	¥Â!Åó\Z-¸Xzó','wp-content/plugins/jetpack/modules/google-analytics/classes/wp-google-analytics-universal.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','!âL¥²ø)îCØÂþƒp','m )J6~¢ã0²JHÓbˆš¦¨Ì}¡{œï?`M6','',0,'?'),('¾ç=\\âÆ\'åÝ¬¡ð­','wp-content/plugins/jetpack/modules/google-analytics/classes/wp-google-analytics-utils.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','f€Àò²×mÖú=”FNT','~XT2*ƒ¹±åh™½ÄV,²ÂhÀ#\0y%`¾\Z¯','',0,'?'),('E(›‘±ÖØ°‹±^0','wp-content/plugins/jetpack/modules/google-analytics/wp-google-analytics.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÏbÉ4üÕë°nŒ›#Å¡µ‚','Ê“J«ØkyvôáÇ²BÎ\"òç7/\\Ñêã’	¨v','',0,'?'),('ª\"²ãùÒÞTÄ(‡ŠÝ€Ò','wp-content/plugins/jetpack/modules/google-analytics.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ló/µ|Pä“5­ÿžŸý','õÚbˆflmìÓ›$ÆBœ”ö”—ª¶,ïzz©³Ÿ|Ÿ','',0,'?'),('ÈÃª“d-Ltã@~û_','wp-content/plugins/jetpack/modules/gplus-authorship.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ž@µ¾§ŸÎùµ}‚.óP','‰ÐPØ9ƒSdˆ[Aû%w”²f«=À•¼l•','',0,'?'),('ï†S–M/‚ ¥kÑ”_¾’´','wp-content/plugins/jetpack/modules/gravatar-hovercards.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','øí¹ì(n\n[è\nTl§´Â','Ø$þ?·Ãž–©5jNš^Ì\ZöÈô„a¢?‘4$Iâº','',0,'?'),('š2X:²¾Q	¿íîô‚ß^','wp-content/plugins/jetpack/modules/holiday-snow/snowstorm.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','€µ}¤I¢e#­o(’¹','ê»?þ£¹u§ûˆ-ÑDÏûàxœ\nbÅÁ¢6Æ','',0,'?'),('âß\0â‹ÎÁ™i‹¥','wp-content/plugins/jetpack/modules/holiday-snow.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','C&aü¾]Y™º£çõû>Ž','î	ÇQ¶	n“Ç(kì¶Ðih*S¬	†ÀÝD','',0,'?'),('-ˆ ²Ôt\nŠšw`\'£~¡','wp-content/plugins/jetpack/modules/infinite-scroll/infinity.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','…‚ýFŒ´_§\'’•+éW_','Ý	Ÿ„K¬:®‡Õ,·¤ÌyÉ¿¼”c<ŸD¶ã','',0,'?'),('xŽf<¨X®äªP;­','wp-content/plugins/jetpack/modules/infinite-scroll/infinity.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','nP°:ã´#´›þÀÌÚµ','CFÈæ™²)åâëO¹±€-®3òX?`3y¸«%;','',0,'?'),('d&;c\'P*Wè´Sú³','wp-content/plugins/jetpack/modules/infinite-scroll/infinity.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','˜?äí4ÚØ’s÷éfÃ',',Žíîúc.?&ve7ÎQçÎ<î´ÙØ_|Ù`YÃsÆ','',0,'?'),('³žoF¨9ºyH‰–ˆá›lö','wp-content/plugins/jetpack/modules/infinite-scroll/themes/twentyeleven.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','½Õ\Z»pÈ_ÂlöCÇ','´O6KæÂJ˜»Žä=¬y¤Œ c•Ðaþ@g­\nrª_','',0,'?'),('ln:ð7Ìz`ˆÐÏa1','wp-content/plugins/jetpack/modules/infinite-scroll/themes/twentyeleven.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','êÚ«Ó|ê¾S 1ßÃx—','›TM„K½fÍq%\rÒ]YNæOi¥Ðñ‹ÑN·,%Ðé','',0,'?'),('›oÊ†¡ùÞ‹·×wR`8À','wp-content/plugins/jetpack/modules/infinite-scroll/themes/twentyfifteen-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Fäg^.´ XTŒx','ê4Œã*|èí£iâ®ˆž]+È;Ê™¿®â–á!','',0,'?'),('Ù»ž5Æµ¶’ÑH~/','wp-content/plugins/jetpack/modules/infinite-scroll/themes/twentyfifteen.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Çñ2Dô€»*-Ãë¾dˆ','$dÂÁ“™›­ÛN0`¨‘åÝè`­3ã—^é‘w','',0,'?'),('¤q]_ËA›ä¬6ŸêŸƒä','wp-content/plugins/jetpack/modules/infinite-scroll/themes/twentyfifteen.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Çô=JÞ[ŽÍÁ¯ãÞ‡k','Þ‹0y¢NÇü0ƒJ¢IôA/ûÕXZOœ™iERûý:','',0,'?'),('D_‚]µ¥h\\ÉÛ˜}*ü','wp-content/plugins/jetpack/modules/infinite-scroll/themes/twentyfourteen.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','— \\ ÷dÉã‹ÓŽ]','`Ó\'²‹¤qI„.ðQÉJRE´k†+Gú†ÁT¶','',0,'?'),('ŠAÏ»75—ß¹·ÁÙ*æ','wp-content/plugins/jetpack/modules/infinite-scroll/themes/twentyfourteen.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','tz{BÕDB©kÀš—','lÇ7;I‡ÆLE±~ãÿ¬ÈB]ã’t­‡µ©³™Çj','',0,'?'),('$¸1“ˆêˆMíG§yPöi','wp-content/plugins/jetpack/modules/infinite-scroll/themes/twentyseventeen-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¢ÛñÐJ›}É«ý	pÊ\0','.&î>òÃ¿ža}ÆHd¨6åÿ”Ô ±½Ä|','',0,'?'),('¬aõÝ2´fj.!…ŒgWÄ','wp-content/plugins/jetpack/modules/infinite-scroll/themes/twentyseventeen.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','€¼ö^j²Ÿx—ïU¾€k!','Ž@qÌ àzvã0‘Iç\"\'û–7\rbëF1îCo','',0,'?'),('Ü$:9UÚ‚µAå¬[µ','wp-content/plugins/jetpack/modules/infinite-scroll/themes/twentyseventeen.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','?ï˜¶°Ó,/òUHÒ','¯öj-¹Ð\'§k7©”±­#\'gãR†Ãm3Ñò‡','',0,'?'),('µE\0DJ…e	GIPKž_õ]','wp-content/plugins/jetpack/modules/infinite-scroll/themes/twentysixteen-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÓÎK-@Ñ¿=óŠj‚Ž','óð¢î8ë+Aƒ&#Î–lcmSÇÀ”îµøö¯0hZ[','',0,'?'),('Ûa]%µY¬ÙÛ\n].#’\n','wp-content/plugins/jetpack/modules/infinite-scroll/themes/twentysixteen.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Kß´öøó“ÐúÇð.A&<','ÍDp6ÔŸD$kŒ~/¯™ËÛ\'vÀÔ¸à”£µt\\âÎp','',0,'?'),(']bò÷ï[>Þ·Í˜×Ô;†','wp-content/plugins/jetpack/modules/infinite-scroll/themes/twentysixteen.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¦˜Áïqqèâ5Ê˜†mÃ','£Û…Áü\'%ÃHÄùµ{š‡û™RQöw\"V×ŽD!Gœ','',0,'?'),('Ø/{®o±‹².‹O¼³+\0','wp-content/plugins/jetpack/modules/infinite-scroll/themes/twentyten.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¹k €kSv÷mÕÜåg`¸Ô','ÞZñ•(HÏÂ¶#d+Ñxúõ¬»fÖÊU\0ŸŸ‡¦','',0,'?'),('óR¡Éý-æ1#Üµ´5i','wp-content/plugins/jetpack/modules/infinite-scroll/themes/twentyten.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ð1ÿ“öÇ24Å´|«c¤H','jÕn£—~ÏL‹dÉ4\\z~<g&òÖŽN\r’;èƒÃ','',0,'?'),('õ(;YX2ÁÙu	R‡z¸','wp-content/plugins/jetpack/modules/infinite-scroll/themes/twentythirteen.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','õ©%AÒE\\»;Ücx¬€~','‘°¨MÈQ!q¿³ÚØˆw€n(ÁMP„ZU¸\'øµ','',0,'?'),('b\n ïT¸aH¯ß8Öúµ','wp-content/plugins/jetpack/modules/infinite-scroll/themes/twentythirteen.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¢UßÞvÆ2z¼+\në[Wí½','¡Ø	‘5ð|ÿS§€5l{$}Žß;4ñv7ÑbÚÕw\\','',0,'?'),('¢¯xŠ{ÚyfÈÁ3­','wp-content/plugins/jetpack/modules/infinite-scroll/themes/twentytwelve.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','_)èáUä)ñ,têkiúè','B‹Á»Ýá—$\\K“´Æ§ù:×ÐTQfŒ®TôÁc\r','',0,'?'),('ˆMŽ…†\rþ¦è™’Éçñ&','wp-content/plugins/jetpack/modules/infinite-scroll/themes/twentytwelve.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','þ³Õç\0í×mƒÇWöqóü@','õ×\Zîæq±ô1xî ^Í”µÈépysQˆ›','',0,'?'),('yr\\áI8÷´‘ÖA\'—w','wp-content/plugins/jetpack/modules/infinite-scroll.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','´(3í»¤r9eTªÃ€','ô;:×Ü2ƒ‡X84´bˆð•Óª±óÊ¢ æœ‘','',0,'?'),('ûþZ\\€3óòáÆ’LŽE','wp-content/plugins/jetpack/modules/json-api.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÀúQ¨þF9\r#H¸-LVÆ','¶f]·ýQï0é™×ýÀòðd5*Î7§ÉÊÊ','',0,'?'),('™â…ò¡Ö$µ¡RsbL­z','wp-content/plugins/jetpack/modules/latex.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','tÂl>-fowï{ÑþÐv','Ôâ©yŸP9ŸÕ›LEŒ[·Ö†tjk‹±‹––×˜Ê\\','',0,'?'),('Þ¬¶ÇNBé<)ƒ Þt%î','wp-content/plugins/jetpack/modules/lazy-images/images/1x1.trans.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ø—Fˆ¢ÙQd©ð1êìÕ','ïU®u|‹–lƒ$ƒP3Ó£eŒíó‡øëðZ³6†)','',0,'?'),('òæø€9ò%[Üðiæ:±£C','wp-content/plugins/jetpack/modules/lazy-images/js/lazy-images.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','?_3ÑêëÛÌáÌéGÀú','i-¹*žþ7C»]í`AOMœ®xRVOSØo¸ô','',0,'?'),('éÄL©ÜØBŸ÷­','wp-content/plugins/jetpack/modules/lazy-images/lazy-images.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','r÷ÀÕ8´KÈ—(ïÈP','äTäíäê‹ª>É·½kç¥®âæ1¦S’\0‚ˆüÆÜ!Ò','',0,'?'),('å†m¸NA8ý¹K}±$ê6','wp-content/plugins/jetpack/modules/lazy-images.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','œ|78Ÿfõg5³RüZic','‹È;_oÕ¡ûaìÄŒ|«¥âê¶–O´…DFòRh','',0,'?'),('õ­fOdg`Ð	\'-ÿœ','wp-content/plugins/jetpack/modules/likes/jetpack-likes-master-iframe.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¥â’&:J5•î`ëaÍå“','x€]£*ƒO»$ª‹;ÍD{Ô“q¶§MKc\Z^‹XÄ','',0,'?'),('ÁÚ4‚g•f·ÈxawÚ','wp-content/plugins/jetpack/modules/likes/jetpack-likes-settings.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','p0Ã3›×d’¼Ê„Œ','\'Çœi.yô@àš.÷“I.~Yã\ZEïîG?EX','',0,'?'),('bV²!EPzë	-#Ÿ£|Ñ','wp-content/plugins/jetpack/modules/likes/post-count-jetpack.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','I?;èYÎ*·Í)RRTYã','fõÈeùó®ö*üf„@ •·­Þ;ó•)´.§:†8®¥J','',0,'?'),('yûƒýÆnRzÈ	/#­H','wp-content/plugins/jetpack/modules/likes/post-count.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','I\ZR1œ’Á³;NÔ¼','ŒH6/\"\n­¾_ÝÆ|K\\^Ÿ1¨Ac2+U—”íÚö}','',0,'?'),('!¤s©Ù<$´\0_MÈqU£','wp-content/plugins/jetpack/modules/likes/queuehandler.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','†‚žÂLöÃDªmì¢•','hÕž<ø˜[‘‚HM\nï¦ý)†jD2At8ÕO','',0,'?'),('ªÿU*Öó·y4ºÉ¨,','wp-content/plugins/jetpack/modules/likes/style.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','F1YâfÈ\r)ŸAÇ\'W','·Ò<“ É®\"ñ%stØØo<”¨œ$‡x©OvLT','',0,'?'),('NQ’Î´(•ÐòR®ó f','wp-content/plugins/jetpack/modules/likes.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','V\n4YÂÌVƒ9zkâ¢Ç','Í5ðñ(BäÒú%šÍbw\"CÂb/üG','',0,'?'),('wÜ$ñ‚*˜—X¯\r@a.•','wp-content/plugins/jetpack/modules/manage/activate-admin.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',',ÍôgàýçrgúÑíáÎ','¾EðëÃÝÃ¸çŠE`ª|ü„6,\'?Løÿ„Ü¿:','',0,'?'),('¹G—ë.¯â-\"ú}\"','wp-content/plugins/jetpack/modules/manage/confirm-admin.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¯8Å§•ì¼tU°¹Óˆº','ð¬xQ:xE\0\Z²ñöœ·îT%c”7êaIt¢ie','',0,'?'),('§qhämv:»}Wøã','wp-content/plugins/jetpack/modules/manage.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ðÌ\ré«šªå¤«r¸','5ºë8­Ô¾Fž>Y<ï{¸ŽYrV¸ÊJDŽ€','',0,'?'),(',Y}äJ¡¢…“Ùó1ƒv','wp-content/plugins/jetpack/modules/markdown/easy-markdown.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','IÊÐZ0mÆ:¶f<%ôí','¬Àˆ-*Å– JB}«vâ; dÀz¾]ñEúsÍˆ','',0,'?'),(',\']z–å­˜ÝçÃˆ‡(Œ','wp-content/plugins/jetpack/modules/markdown.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Bô*‹˜WÙù…ÿM•ˆ Åx','˜í¹6 ¹}CŽßûú^3VÍaŸ¤Œâ¨þè ²åMy\r','',0,'?'),('Pý¯ÂFƒ‚»*7„ö´','wp-content/plugins/jetpack/modules/masterbar/masterbar.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¡é_ÇÍÐWú‹™‚8Ò','U}t¹\"MüáAôÞL{_ê÷”=„$™Ð¹Isí¥üÓ','',0,'?'),('ˆ!hïøy#ËÏì˜yE','wp-content/plugins/jetpack/modules/masterbar/overrides.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','SscP±RR\rÛ-ÃS','ú?‘Q~{^Þp”æGµéRË-Hº1w„TÅ\r/','',0,'?'),('F\"Þ×F\'ôáæ0v¶ƒE—b','wp-content/plugins/jetpack/modules/masterbar/rtl-admin-bar.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','o\\0vF’_Í-áoÕss9Ð','0ÏÁlûZ\r>Ü¥~D¶šæ´#‘ÄÄw)iã;•?/TçK','',0,'?'),('»”ÑwòD”»ÜcRp&C','wp-content/plugins/jetpack/modules/masterbar/tracks-events.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','TtKfP²2[A_ùf','z—Ç®ŽjH®@ÕG™Ÿ=Šœ¡ýK¦ò2‡M!|ÔYŸ','',0,'?'),('LICÞg˜€4²7ÒMÕl”','wp-content/plugins/jetpack/modules/masterbar.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','T?ñÒfk\Z¡¹Ã;)¾ôÏ','’Á\nýÍ‡\rz„–ÑþÈ=&\n`¥ÞÄòþÏáñNÁ7Å','',0,'?'),('4ßÄ­œPûx·ç','wp-content/plugins/jetpack/modules/minileven/images/wp-app-devices.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','$_\rrƒ«­Y {œ)É','ö«Bçð54¡\\a|ösø4Î\r&ºUýBµQå8Bî','',0,'?'),('ÎˆÚi™AçªlÂœn}','wp-content/plugins/jetpack/modules/minileven/minileven.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','§Ä³uWgØX¿oúüª’Pp','$4ýåÙÛ(³\r/‘ÉËŸìÊ%mGb ØåÒx@6ÐHí','',0,'?'),('•KÂ•aÖçù³p;’','wp-content/plugins/jetpack/modules/minileven/theme/pub/minileven/comments.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','7º¶Ä_~L¥ŸÂ` ç#¾','²=ŒöcQàEA7tg‡ä5ãxmÃÃPcú*','',0,'?'),('­\roâ÷?` å¼ËHðÔ','wp-content/plugins/jetpack/modules/minileven/theme/pub/minileven/content-gallery.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ZS‡R‰XzPN0öÏ)','ŒÜ@\Záµª7†ì[Ž<U æ^oT+=Âîüj{Õm','',0,'?'),('} õK„?½v Rrõoí','wp-content/plugins/jetpack/modules/minileven/theme/pub/minileven/content.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','%©ã,âë¡=5B°¹v£','•¢Œ×šMz¿g¿»Žåf/Àeÿ8¾-à3îÌ„î¦Ø','',0,'?'),('p9WØZ7©á“,µÿ\Zœ','wp-content/plugins/jetpack/modules/minileven/theme/pub/minileven/footer.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¯þÉ›NÔñÉï€æ3c','“Öä¤˜·Ÿe¹’fï8Ÿ§ˆc@e)fÔ[¶ 1â³ž','',0,'?'),('vOÝ1w8,Tã’¯¡,ö','wp-content/plugins/jetpack/modules/minileven/theme/pub/minileven/functions.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','®“»a<qÓêÇ¬ãðA','ú¤ÓFãÉ,•÷ÂÒþ\\ôbä…¸¬|\rìÏYsr','',0,'?'),('p\\E²2®ðD\nrÖ™','wp-content/plugins/jetpack/modules/minileven/theme/pub/minileven/header.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÃZJŽÜF‚µ›6_Å…','jzUÀ±=ú&Ø‘fè,hþTÂ]åBœQAÑÕñýúÔ','',0,'?'),('8î{î¨<+™±´5è+ã0Ç','wp-content/plugins/jetpack/modules/minileven/theme/pub/minileven/image.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','(Gö/tÏ^&CÔË–[xë','9:ß{/«„NU Æ#·ÚHqz›®\'Í\0âIm“½','',0,'?'),('CG6\Zc{\'qÉuc™¤™š','wp-content/plugins/jetpack/modules/minileven/theme/pub/minileven/inc/custom-header.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','÷“[kÄyN*núë(Z','ã„:CøFe™<vÚYÅ~Š×¶ËÉŸÎ(ü®ê=ýu—','',0,'?'),('å1p½CçÏ…\0=bý©a','wp-content/plugins/jetpack/modules/minileven/theme/pub/minileven/inc/fonts/genericons-regular-webfont.eot',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','yÙèÄ)(´kàôÅ±ßÖ','i*uð&¿ö¡Ž\"Xò÷¼gw)‡=uIGÀÇ›ºƒ-','',0,'?'),('0*ÎR¤p B%0ˆ\Z×£p','wp-content/plugins/jetpack/modules/minileven/theme/pub/minileven/inc/fonts/genericons-regular-webfont.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','{)2)cª}¶é{Ÿ+Ë‹','àY&?Jk9Á~÷ó ƒ\ZÝ~àÔ¦]«¾®FÇ¬','',0,'?'),('-D÷&YPY9žÂbƒ„ÝŸ','wp-content/plugins/jetpack/modules/minileven/theme/pub/minileven/inc/fonts/genericons-regular-webfont.ttf',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¹Ðk{äpé\r3âó¦áV`','+*Â)²-!29½y§žØ‡gâêºaö¦Ûã¢’˜','',0,'?'),('´™Ö˜æ«üÈÛw/0ªk•Ø','wp-content/plugins/jetpack/modules/minileven/theme/pub/minileven/inc/fonts/genericons-regular-webfont.woff',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','÷¹p9¦2Õ,J˜	XÓ¢,','FzÃV”J©SÔiHdUaÑÕn4#t©9:ÑÖa™	9ê0 ','',0,'?'),('EŽÍÞíl]œ9Ó<z`“,','wp-content/plugins/jetpack/modules/minileven/theme/pub/minileven/inc/template-tags.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¿ôúRo€K,O#?L|','ª°ò¬O	J§—a07›\'\\ebBÓMQ˜Í-ÈY','',0,'?'),('âEYÑ›¯ÊRÈîdQR','wp-content/plugins/jetpack/modules/minileven/theme/pub/minileven/inc/tweaks.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','?{Î1Jpƒ‰Ï=0¶\rv','vu~Âåøê>Nù%™/ë¬`š)–)Âú|äÏ','',0,'?'),('Bäà+íGÙo*ì/óã','wp-content/plugins/jetpack/modules/minileven/theme/pub/minileven/index.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÙuëòX4V\0Sà?€qÌ','‘gÛd\Z„Ø¬öíU¤&<lPHäÍ§ö‹¬ÿê	‡ Q:','',0,'?'),('Ù‰ú&”#¥°› (³V³W','wp-content/plugins/jetpack/modules/minileven/theme/pub/minileven/js/small-menu.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','R6½©O\'Ü°ÙŠ:ÿ,óX','Ád¬ZÄÎÍ.ÌÂWž²ø=1º²k´­ýt=Õ¶','',0,'?'),('Ú?èÆ%ÆºÚþ6~ä1','wp-content/plugins/jetpack/modules/minileven/theme/pub/minileven/page.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','à»®ú|­Y³Å7[a ','ß9Æ/¢EØ0Á\nª©)\r“(²~¼Î‡³„','',0,'?'),('þüªË¤þ·Æ%÷ì¡L','wp-content/plugins/jetpack/modules/minileven/theme/pub/minileven/rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','`û¶èK³£þ/éÒyÚ','ÜŸˆY<GèüBü4\\NçƒÊ<o]>°G·‘»½¦Sæ','',0,'?'),('Èe-žåZP¢á5ÆŠD=','wp-content/plugins/jetpack/modules/minileven/theme/pub/minileven/screenshot.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','^û±&ud4XzÞ#x¼z','l)ñ¢‰f5žKÃ”½j†+å¢à]uõîüV»¯¶ÓÝÈ¤','',0,'?'),('ôã‚Ô‡2VG¥\Z¥','wp-content/plugins/jetpack/modules/minileven/theme/pub/minileven/searchform.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÄgÅù…ëÏ¸Ù2âS;','\'ìŸ¥_¸í:b› \"Ô´(BxºïZ¢(-‡;*2ß','',0,'?'),('+)¹\"¡ŸZ÷¼,)^s«®','wp-content/plugins/jetpack/modules/minileven/theme/pub/minileven/sidebar.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','/§CÐ;…Ë-v¹<ä','ü–$º2q¿ôaåâf; ñÄ>å¾xµèIËÀb„—','',0,'?'),('»&qÚ·J7™\'3èŸ#4\'','wp-content/plugins/jetpack/modules/minileven/theme/pub/minileven/style.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','™¾Í*ƒÙ3“¶ò70ÏÂ“','DN/o OO\\ÜóõYãŸŸö%á8F\\x2,$','',0,'?'),('ddÔü4Ï]×ÃÇ/:','wp-content/plugins/jetpack/modules/minileven.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','6¹Ê¿ðõÊ®°	ž	»J','X/ÂÓÃÌäÂCüê&õtÑ-¨Îuúk€~Ö|^=sX7','',0,'?'),(',“¦“PzÛž¢p:ˆ_9','wp-content/plugins/jetpack/modules/mobile-push.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÑÀeÕ…‡Í@c®cK×(ß¾','@CûyVJYÞZ»ÃÝÅÇÁ<\r[Ë\"ê»Et :‡Gým','',0,'?'),('»cvÞ½¸èf\'IÓ›íZ£E','wp-content/plugins/jetpack/modules/module-extras.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','«ÒúÈKµU‹DØžMÒ','¹ÈÙØœÍA:<üÑýPÇ.%\'g:JÜ%éÅ*Ñ2KŽ{','',0,'?'),('=à¥²|z;Ö$U%Q8O','wp-content/plugins/jetpack/modules/module-headings.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','îÏu—¶ëó\0adùðÒ','æè¿Fg‹?§fÚÈ\\+UÐ”!£¸#¦\'·<1úÖ','',0,'?'),('º\Zd×® -`Œ ?Ìhn','wp-content/plugins/jetpack/modules/module-info.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Å—û]Kø‡<h›CPã¤G','”Ô”ìªV€‰ò™ÅßÚñqÕeÊÆ±a{½·b4J/','',0,'?'),('Ûâ¤åˆ–jÜ›Se§|C','wp-content/plugins/jetpack/modules/monitor.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ø/=`ÿ)þVÃR†õ','W˜‡88×Û¯FÖ`1æ\\	ùäRåsöòh,¿„{Ì­Ô','',0,'?'),('™EUð)7Ò-É\'œ¾','wp-content/plugins/jetpack/modules/notes.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ƒ¢§ÎŠŸvWä>ä&²','>TD’ê ÈŸTýÛêXgRñ›[Àö2?i¾é','',0,'?'),('ciæû[zãèo	z\0FF','wp-content/plugins/jetpack/modules/omnisearch.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ž@µ¾§ŸÎùµ}‚.óP','‰ÐPØ9ƒSdˆ[Aû%w”²f«=À•¼l•','',0,'?'),('ˆ\\#Œ\0*Ð³7wÇ^sé\0','wp-content/plugins/jetpack/modules/photon/photon.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','6b7òŒZÏà×Œ6+','‚*K_¾é¾gò‘mË¤ïìŒŠ/Êú1Í»Spz¾»y','',0,'?'),('³h™t¾¥Hcx¯Æ¹ê	','wp-content/plugins/jetpack/modules/photon.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','	c³CBáN¨ÒK©¦fð=','_SÉÅ1ÎÏö‘¾GE¬õfìœêð¯Î|ö¢ZµWö','',0,'?'),('Æ€.´2ÅÖß1ë›×ñïöf','wp-content/plugins/jetpack/modules/post-by-email/post-by-email-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','±/·¤4¤&Ö1¨wt„¼','z|L<·ÕN‘/OOy¡tG¨TÛq\Z{{×+ú“Lê','',0,'?'),('h‡’&62‚ÂÚ9þÌâã','wp-content/plugins/jetpack/modules/post-by-email/post-by-email-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','œ=dÚÞH—!™qó”\0`Œ¥','Ä)U)D»Ùq©Gî–_—äO|£h¸äü”…¾tƒÿ','',0,'?'),('>Lã?â–¼ÍèXI¢','wp-content/plugins/jetpack/modules/post-by-email/post-by-email.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\0•æfïifDÜ¤\'1u¼F','M¦L²rJó‹ºöÏR5MÜÕy˜žíŽÙ™÷Ðš6‡','',0,'?'),('µL¤+ÜW;3¾Øã`˜Ä','wp-content/plugins/jetpack/modules/post-by-email/post-by-email.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','„¥zã Hð¥Y5­o ê','g0Ç±ºqEÏçwq˜ÕH”ä+ö–lyQt<šÎ','',0,'?'),('øúã*—ñ;{Ø¥ƒPárÁ','wp-content/plugins/jetpack/modules/post-by-email/post-by-email.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','j »8)zûËjÖdÖ','(4ìs8àò¹	˜¥§Žsæ ìH“›o+?k\n3\n—Ñ&D','',0,'?'),('qkøPúrÙÚ6ZÝL©â;Œ','wp-content/plugins/jetpack/modules/post-by-email.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¿¼üa„½P¤šÁžÅaY','²(£\ZGˆ+ƒG«JdR…Ú‰A\Z\ZG1àœOB‡#§ë','',0,'?'),('ZfŸ˜]üS èÚ€‰:','wp-content/plugins/jetpack/modules/protect/blocked-login-page.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','þ¾ÏŠâ3$$aÊ','$e…ÛÓb\'gò¯[·ˆÁ½8U®éãqÌH@’D©','',0,'?'),('a•ëìw–„õ‰Ì®gý|3','wp-content/plugins/jetpack/modules/protect/config-ui.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','6&5p)w†ÐÒ´óÓía','îq;fãÁ	™¦³½·)°¼X7\nÁÓSUí¾°)åÐ','',0,'?'),('˜HeD>¼ðÏ9UÛ5‰','wp-content/plugins/jetpack/modules/protect/math-fallback.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','XÄ>za*‚ÒÖLè™Kò3','57ûÿÝˆŠNõ£ë´‹ãVdît+2¦m»ÊŠ¹ŸÚŸØ','',0,'?'),('û¡ÉÞç-ÎbÁº¢FÑú','wp-content/plugins/jetpack/modules/protect/protect-dashboard-widget-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','db.ug“w<cºûÔZán','Vì¢‡âj°Òõ|d.¶‡}¤‡\\¾A¨ÑáÚ\reŒî+','',0,'?'),('ÖÉRéR‰¼¤øŠ,Ñ ?*','wp-content/plugins/jetpack/modules/protect/protect-dashboard-widget-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ô&€fõŠvåW°:OŒù','û(&:Z\\æ\"©½c¥ú`\'*P²ïgˆ&ìQ|3','',0,'?'),('R3ÅÅ•Øzñ(}çñÝ#X','wp-content/plugins/jetpack/modules/protect/protect-dashboard-widget.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¿zýý¡›qÊ\"#','0»ûQº_¶J¾PèW°IQTÏˆµŠ¤:úÇ†÷Âw','',0,'?'),('¦ŽÐ.hq~öó{ls™Ü','wp-content/plugins/jetpack/modules/protect/protect-dashboard-widget.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÃIüq4\0ü¾€ú…T”','\n	–øSN6…„¹Ð)ÿe9‹æFÃÆã7?QOx ž','',0,'?'),(')ïµ…¯d™Ë%ó©ùP‡³','wp-content/plugins/jetpack/modules/protect/protect.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','«®Š\0·Êøëmêw“%]','fÐÿÂíê÷ö£éãpœ·–÷¾ÈäHrðƒ;£5','',0,'?'),('åé¡)êmåœxÚŽSq«','wp-content/plugins/jetpack/modules/protect/shared-functions.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Øv)*”ôÌŸ’4·—9','&h\\«.¸1óò«PM˜‰½HÔ\ZÜüæcV*?\'™Ä0','',0,'?'),('ÏŸëœpáóµõÙCÊc','wp-content/plugins/jetpack/modules/protect/transient-cleanup.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Zqç¿[YèÆ™‰n?8','›É,}\r²‚°²<yŠÄÞ5DÄsËòÿæq¢öÝ','',0,'?'),('Sú¥Þ¶ÃÅNz_´çD÷','wp-content/plugins/jetpack/modules/protect.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','çÜ+™JÄqŒ]”Y…ê	','8” ½ÑPq~‘ÂFþ:?Ð•ˆd‘:ðSy€\0’í™','',0,'?'),('0õ$\0¥\n÷o\nMÌ:•]@','wp-content/plugins/jetpack/modules/publicize/assets/connected.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ï7O#~Ix	ñ—Úc','•¨GaâSþÆDJc~Àá9\"<ó[ý1Ñ_U=Ä','',0,'?'),('óbmy%­ú†‘–Îõd6','wp-content/plugins/jetpack/modules/publicize/assets/facebook-logo.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','hÖL˜xÂ·)Eëª+d9','.<ëz±öär…&…0*·|bÇ£9˜/.¡\0ì€\0½Fdõ','',0,'?'),('#ì÷ã*¥m5®ˆbyÕ±ˆ','wp-content/plugins/jetpack/modules/publicize/assets/linkedin-logo.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',',~›Ûˆ„èÎŸÚ°','Š…|=¬b­ÂèSh+Ó•‚D!QóŸ{Ð&+pË{ßw','',0,'?'),('›ža$¥73xãÄØF•@','wp-content/plugins/jetpack/modules/publicize/assets/path-logo.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','÷-ª£ ¤ž¨™!Ã“9‘','$™Š*æ˜|¢Ø#²³$éïYB¿9ø¨šøº¿)','',0,'?'),('Ó«Ò^4-ë+FÔ.¨24¸²','wp-content/plugins/jetpack/modules/publicize/assets/publicize-fb-2x.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','|Nføxn`ñ\n€Û´Á¼','€äþI$ª~bÚD‡àŸÁ W	…²>¿„‹Äxôˆ¬','',0,'?'),('ÔïJ§@ Bs·2Y¯,—Õ','wp-content/plugins/jetpack/modules/publicize/assets/publicize-google-2x.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','÷cséº8BùÆ¦¿Ï','Î,xBÄ¥„h»Ä±ÍLg\"X·Xÿä1üÝþëˆPÖcg¬','',0,'?'),('pgéæ\\—È­ÄX‰?µ:×','wp-content/plugins/jetpack/modules/publicize/assets/publicize-linkedin-2x.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','3¢¶:v£Õ^­ô†jÚ®p‹','Ö<ˆ]\0p\n“¶—WœTåñlÝçám÷“äê©l$Ï','',0,'?'),(',cØê/ÁíØSD\"MÒÃ','wp-content/plugins/jetpack/modules/publicize/assets/publicize-path-2x.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','°Ÿ\rFÞ	\Z–0K÷rœµõ','%ýNs]ï/Dë7ù	6ªS·ü‘ÛÝ?à–UH','',0,'?'),('æg@–ç½ká\\;hñðí','wp-content/plugins/jetpack/modules/publicize/assets/publicize-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','»³d»ùtßÙÝ)]l?Ê','¤¸	£ßüÑ¢(¾æj•5zý%„°ó5Hµ±›ñs”Ó','',0,'?'),('úX5±-ÎÝîÅ,ô\\‚Çã','wp-content/plugins/jetpack/modules/publicize/assets/publicize-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','&€4Óªb™SñYa÷$™','F[9v\rÄÉÔY‘0pÕœ\r6æùF§òSô','',0,'?'),('·-äsã|³„Ðƒóâ*õe','wp-content/plugins/jetpack/modules/publicize/assets/publicize-tumblr-2x.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ãh½b–¥VÎ÷’î;Ñ4^','Þ×z”k—VÄ´¨É;qO[õ¸ó\\h0º”„R­V','',0,'?'),('ùª4$@`ƒ¦ebm/)´q','wp-content/plugins/jetpack/modules/publicize/assets/publicize-twitter-2x.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¡6ØD£\ZÒW	\0nè3','¼Z°%íÉIg\' Û«˜¯%z<Ê*É\'~ù¯v	Þ\"¾n»','',0,'?'),('|\'uð/ƒSœe$:’îE7','wp-content/plugins/jetpack/modules/publicize/assets/publicize.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','(„ìÈò·Ò…dN@¯„.','x-eXîôS{ã`|*£î=ð\'ÇKb§¿¸é]Ó@','',0,'?'),('ã¢EÕ$Ñ]ú\'à\"Ö÷¼','wp-content/plugins/jetpack/modules/publicize/assets/publicize.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ªf:øÉ„})	[ÅÓß\n¡','§úh‹õ,,*&Éå¯Áíÿ¦…÷p¤ø—©3½2aAº','',0,'?'),('KtóS÷z‚¨œU#ñçA','wp-content/plugins/jetpack/modules/publicize/assets/publicize.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ðƒLAbèWâ\'µW-\ZO<±','‹™;èo ˆFaº“ÅiO] ƒýfhÆ#ÈÔÈÞ–åL','',0,'?'),('uåå«ù|¿O†áŠ¶a{','wp-content/plugins/jetpack/modules/publicize/assets/rtl/publicize-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','†¸ÒRú¿4¸ë¤á','áÃ”KLC¦¯ˆ·Ðóî‰˜cŸ{a%&Tokº\n9“','',0,'?'),('ÿÒÔ˜ 2§ÑL\0h´0ö\\','wp-content/plugins/jetpack/modules/publicize/assets/spinner.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ç™*%Â¸Î·…v©‚lò','³­À¥?=ÕVét˜­`“’R´U]Ù7ÄšÑgÍ¼‰g{','',0,'?'),('D_:á bT«\Zo\r0ÞÀu','wp-content/plugins/jetpack/modules/publicize/assets/tumblr-logo.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','%*óoY‡GÂ5ƒCrF','Þ_Ž\nOVÂ;-ç9úŽ_[ôä&¬y3áÚ w\"™\\','',0,'?'),('J÷ª™³¶m%\'d@ ','wp-content/plugins/jetpack/modules/publicize/assets/twitter-logo.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÈjéVô‘]ÃÆ×³©a','U®ãM| ¼õlÖ>3U> ±¬¡gíÐa…äƒº¡+','',0,'?'),('hÓ™5Ý\'jjPç+5Ýƒ÷','wp-content/plugins/jetpack/modules/publicize/enhanced-open-graph.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Óá€1Ñi¯RÑAxR','k‚žœ´íç¶‹ÀNÂÄ¾}Ë ÉðWøìÅ@ëóW\'','',0,'?'),('7¶uÀÃ\\$ÕíXÖ@X5','wp-content/plugins/jetpack/modules/publicize/publicize-jetpack.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÎeÉfôÊKvE8YÎ¦qc','#•ÞBvæÏÊï:äc›Moéã¾w€2¿^¹ºÈË','',0,'?'),('w×^Á•‹/°*ºª»£Þ','wp-content/plugins/jetpack/modules/publicize/publicize.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ž†¡¦ú\'4«.óÞ­‡Ú','\nòÉ;@–±M˜WP)Ü835—í6ÀVê{µy4õ','',0,'?'),('w4ë£à•M°dÜÿÆäŽ','wp-content/plugins/jetpack/modules/publicize/ui.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','uäî9É‰L+P«J·}÷','ýW°n´¶”Ë5Ué\\Þ›`©CK–á\0YªàDù~‚','',0,'?'),('&Ïe› `™“ÊlýâŠÞN','wp-content/plugins/jetpack/modules/publicize.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','“eIh\Z›0\"lŸ·«Yö','¾({¬ªµÄBy{ÄìY?pìö¦GR?Ù5Óøñ','',0,'?'),('`¶nWÉÉ«Žš¥Wt','wp-content/plugins/jetpack/modules/pwa/class.jetpack-pwa-helpers.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','g;\"oúP”%Ç»z”$','¥A£cÇcz-8gçKé8žEny(#bâÃ›;','',0,'?'),('°îðÑ#\"!ËŒàµc','wp-content/plugins/jetpack/modules/pwa/class.jetpack-pwa-manifest.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ö4|.„wl]Gd´Zs','1ÃU´™Ö 4§¨N\\yIìÁÔâñ„ä$‰±ûlÇîv','',0,'?'),('ö¤&äÁà_8Îs.„~Ã','wp-content/plugins/jetpack/modules/pwa/images/wp-192.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ý†Õ›Ï\'ãfš~r\0WP\n','Í$QôŽ“|¤Óðùì•ÓÅÖsÇuîŽ¤ÇÆ’zö;ƒDÊ','',0,'?'),('Üý·ç/ñC|\nì5~!ÿe','wp-content/plugins/jetpack/modules/pwa/images/wp-512.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','OmÑRÅkîÃtDÆ2ï*','òGàá#ýûa¹,WE63gyTñä—*Mê|ã/–','',0,'?'),('•n²aÆ9Õù\rgæs<0','wp-content/plugins/jetpack/modules/pwa.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¸·[†\n!O8Àx¬ãtîð','./‚IqO–…µ¶à ¼î–Qž~qÉi6py8‡Çû’','',0,'?'),('º<á@7Ò§½íÉ©f\Z','wp-content/plugins/jetpack/modules/random-redirect.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ž@µ¾§ŸÎùµ}‚.óP','‰ÐPØ9ƒSdˆ[Aû%w”²f«=À•¼l•','',0,'?'),('1>‘>ƒ;½åÆVúG™p˜','wp-content/plugins/jetpack/modules/related-posts/class.related-posts-customize.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','’¡ogŽ\'AeFA„®F~','t|rÜ§¯…WŸÍ†Ã÷ôÀ/(Ø–ª4j8Ö£…”','',0,'?'),('µìÔÑCp£6=ë','wp-content/plugins/jetpack/modules/related-posts/jetpack-related-posts.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','”Á…ÆÖ2®25æ[Mß²ñ','|ó_ø·ïÌV_J‰x÷`UDžCHét=’ÁlKS','',0,'?'),('®¾œ1¤qÉród2\\P','wp-content/plugins/jetpack/modules/related-posts/related-posts-customizer.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','mî\'¥ÃêRg§‚ðXë|H','GÀ\"qYé}å\0DSµ±ú]ÊmµájàöGçm¥Ç1Fp©','',0,'?'),('Ù1z/ToÍßØ(*\\','wp-content/plugins/jetpack/modules/related-posts/related-posts-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ËŽö;£uXíš‚+8','èóÏ\"½ê\n_9Ëc/2ù}&e‘©vïÛC­\\½øj‚ê','',0,'?'),('/èƒ\"k#WqGƒ(ænñ£','wp-content/plugins/jetpack/modules/related-posts/related-posts.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',',/ù€õÑÄÓy¡­×','ÊNúc×¸ó=zœƒ¾œMF®ûŠO)qÃä³!Ðuƒ	5&Ý','',0,'?'),('\'>wQâVŽ¨‚*NÈD•','wp-content/plugins/jetpack/modules/related-posts/related-posts.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','=Z\Z¼.À\n¿ö1E);ï','£C£2Î©JÔNj¾qäP£ÿ§-iÇa>´i•','',0,'?'),('Ž~e¯’þŸþ»_1.Ç','wp-content/plugins/jetpack/modules/related-posts/rtl/related-posts-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','N‡·#Ù®ÄÅ¾OÛ8ŸL','	ë1ø.Ï\"’IÛÆmæ£åÔ	 	}6	\'‘;™','',0,'?'),('ý\\¯ðé×EC½à&3\0\rL}','wp-content/plugins/jetpack/modules/related-posts.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','cq³Cë–=ïåñ/hPô','ÓÊ5Ž¢«Ì\'FÆ\'“²¾Äq!…åÎÝÇEñ','',0,'?'),('™[ŸèÖ»µ»“XÊÍ','wp-content/plugins/jetpack/modules/search/class.jetpack-search-helpers.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','´™cž«n‚®µI,Æ’”','ÂZ+Õ•¨4\0¨OŠ‚í)o(€UfzÁ)²óót','',0,'?'),('}~…£aõã$h…@åŸb','wp-content/plugins/jetpack/modules/search/class.jetpack-search-template-tags.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','©\"˜2¹nÝBÍ\\¦ð5C','G°¬*Ä*U<ÿRÅWÀ2Ì„ÃW†ï\nà¼‰RÊB','',0,'?'),('¼Æó³å´r,½Òçòô','wp-content/plugins/jetpack/modules/search/class.jetpack-search.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ª¹Q Í´;Aã<-N¶°','@“a¸AŠŸîŽ/ü=,œ/Køôtß8Íç¬c6m¼Œ','',0,'?'),('¯yá‘eEÄÏ}• ´‚','wp-content/plugins/jetpack/modules/search.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','à;¿&Qâ.<µÿ~ g¼r','ƒ=)î+º„ ÂÿûŽY­‘sèöÄ:\núî0_õÞ3','',0,'?'),('#Ó,¥­ºíüŽ“^*','wp-content/plugins/jetpack/modules/seo-tools/jetpack-seo-posts.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',':ghÎ‰Xbôž›5÷Üï','ïá ëÏôQÌ™¥èÓ1“•ã¡IÜÁ7pnŸfB6F¬','',0,'?'),('}\\èA=j¢_×õ\0ÄYÂD','wp-content/plugins/jetpack/modules/seo-tools/jetpack-seo-titles.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',')q\'ãü²¸Ëô’ovUç','ìv‚|l†÷F´úÎêGQ§¹áÓ=™È|Â^ŽëFéO','',0,'?'),('ÂœB\'Ä[_¸;¡MRP`¯','wp-content/plugins/jetpack/modules/seo-tools/jetpack-seo-utils.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','SŽœšî;‘Ór`Ò½ZEk','Äªcuƒ]_œV$÷ÏfõWa‰HÅ«g¼-±Ù-}2','',0,'?'),('¡Öû,F€Á\":()r¦ÕþF','wp-content/plugins/jetpack/modules/seo-tools/jetpack-seo.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¦„ÔˆD·{.Nqn”Ág','Ø\nm4ùpE;À†e¼¨{ßºñJ›[Á¬‚ÖôU²ú','',0,'?'),('Ì;*¬ßt`DÎ‰ñXU*','wp-content/plugins/jetpack/modules/seo-tools.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','4YçhÑÈÁåjÖ\rx±','‡§äí—D<‚žlßPð¨H$&	úA~Àå:bþ','',0,'?'),('Leæ3Š5d8Ípá%~Wg','wp-content/plugins/jetpack/modules/sharedaddy/admin-sharing-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ë Èvè\ZD«ØøúŽP	O','PZà¨y¬x%Ç>ßMþÂu7û¸}HÔµzXHýêæ¨','',0,'?'),('ŽÑ0`äÕLÆFØÞßî` ','wp-content/plugins/jetpack/modules/sharedaddy/admin-sharing-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','uµN	ZÞ0í¢µÙqñ=	','‡Á’á—ÃHC;ÒZüá‚†­BDÒ-vg=','',0,'?'),('v’ø¦y­@¥‘×gql','wp-content/plugins/jetpack/modules/sharedaddy/admin-sharing.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÿm¼²¬s‘9Íµù½¤P',';àÕÃz·ö¯öGôîúW)NUÃˆŒYÔL¶7´ç^4','',0,'?'),('ñˆä\rùû,qbÃ!¬jÞ€','wp-content/plugins/jetpack/modules/sharedaddy/admin-sharing.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Š`PÏg•“!1þ¸—(¹','h3T·üX¢Úª;ÅZÙ4”¸¿Èƒ\'éÌz8ªÌ„','',0,'?'),('éd+Ô™Þ:3«2ä›aÁ{ã','wp-content/plugins/jetpack/modules/sharedaddy/admin-sharing.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','796“ÝN,“!cø;»b',' øœÉ°îFK>\"…#7|]u`­udèfÀëåm§','',0,'?'),('¢Ù¸ú^ë¨é¦w0_ù','wp-content/plugins/jetpack/modules/sharedaddy/images/after-the-deadline@2x.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¾IòE1ŽoˆµEáOjÓ','»ÜP„!>8ÃbGÓô®™÷êº­ÿg­ŒL:±¨gí','',0,'?'),('Q1n–»™1À¸’ƒB*Þz','wp-content/plugins/jetpack/modules/sharedaddy/images/comments@2x.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','y¢.C<ªÞv®`Æör\rôX','ñ¼ØwRÇÊf ß´\'|\Z°ƒíþšæº+ðÎûÌ%ÓF','',0,'?'),('„ÏF³e¥ CÁ·ÿÛP>Ë','wp-content/plugins/jetpack/modules/sharedaddy/images/contact-form@2x.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','†ÅZ_YûÊ__œÍ','ÄÞoúºø.[ùBØêshõã;‰Å~yójŠåý)q$','',0,'?'),('«d tù tþBú.ƒj.rŸ','wp-content/plugins/jetpack/modules/sharedaddy/images/custom.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','´=Ê!EOÆËy}b™$½',']³+‰î~È¦…àÜîÆñø\\+ecxUƒUõV	í‡†','',0,'?'),('Twt¸‚JÙ¹Úƒ7·C·†','wp-content/plugins/jetpack/modules/sharedaddy/images/custom@2x.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','°Í(Ï.ÍA¿\"$‘g|[','k³·îòûˆÍ‘­P†ê©LÔhøÄDV=x$öü^T>','',0,'?'),('s%d‹È¼ÙÔ1(ñ','wp-content/plugins/jetpack/modules/sharedaddy/images/designfloat.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','”E>Šo±a¯Bü¤n¾¬~d','eûW”XG¤xÞÆ‡o\'_OVð§wØýnºO','',0,'?'),('`FÈpTº<JW\0HàQ:','wp-content/plugins/jetpack/modules/sharedaddy/images/digg.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Þ€¬Ó?íöY1jª?','€›ù$ÍQ]Ùb¹ýšûÐ\\¶â\\M¤¥ìÕ','',0,'?'),('Pt^XÏÕ¼˜©f	','wp-content/plugins/jetpack/modules/sharedaddy/images/digg@2x.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ë¾yé÷âfHË	¾','<fŠcsµrXGæ~J7 ùÇ\rBž¯^P¹…‘Ò','',0,'?'),('É¹žR™é›- iK¸“cŠ‚','wp-content/plugins/jetpack/modules/sharedaddy/images/divider.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ð ‰ü‰‹Ù¬2ŠPø','—O4?CjzCký;½u†gå¡×mòÑ÷Î)i\ré','',0,'?'),('ð þ*¾z	Ò.)-æ½\nX','wp-content/plugins/jetpack/modules/sharedaddy/images/divider@2x.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ñ§­T¥µSi,.–t®Hñƒ','ÝÎ/>É¤çgÛ#O¥‰]RñÿWª-”÷Á„<¼“Ë«ª','',0,'?'),('«Qð³Z™Çfl¬k,Ë','wp-content/plugins/jetpack/modules/sharedaddy/images/draggy.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','‡w¶q‹Âk+®V=X‹ó','ù´MÀ®íQsÇ#»Ø“Åƒ€¡´ãnvFJÛd)ƒ—ä','',0,'?'),('Évœ—C=.K3Ñ#÷w|`','wp-content/plugins/jetpack/modules/sharedaddy/images/draggy@2x.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÿ&¨Üê¸%DQ…yDj.','s_b	ü…2S]d|¾ÜzÛÇt§ÚôìaþYJí','',0,'?'),('…ì‡‡jÛ¹Š•æü\roó“','wp-content/plugins/jetpack/modules/sharedaddy/images/email.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ck™R¹GduÁKk\0p?','Ž|ÎÐ€×¼AÄB?±úvKûÍºÄ )¡±ÂTÉ ®','',0,'?'),('Ó¹btZ¯ÂsÒ.Ø0þD','wp-content/plugins/jetpack/modules/sharedaddy/images/email@2x.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','O}çÖJ•w!ç´†q‡','²£SßYp¶dUøÆN3Ñ†HOUÊoˆh‰l±ƒ‰4“','',0,'?'),('/Ã¦Š£RøóTªl‘','wp-content/plugins/jetpack/modules/sharedaddy/images/ember.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','åhJ¤	›nó‘%ZZä Â','³4{¥ÔkxCï¸OÙž1¦0]‹Ò©\Z>íÂ\ZÃ¤’','',0,'?'),(':–ù¡æ¾F»WWÄöýºi\'','wp-content/plugins/jetpack/modules/sharedaddy/images/enhanced-distribution@2x.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ò™8ZÈYÓR‹à0€Òa','rrz’ø¬),¦ÒÕŒ\n@¯ ó¯ÏWóÖ„‚‹ÃNU','',0,'?'),('hé¦-‚#höŸ²’T«','wp-content/plugins/jetpack/modules/sharedaddy/images/facebook.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Z³w¾&	)Ûá‰Ž‘¨nÉ','Ù^°ö,[â$Bèû\nÅ6-Õ„R!êÞzÀŽà\"ìès','',0,'?'),('ó½Í¦a(~Ž¶£¥¨ø','wp-content/plugins/jetpack/modules/sharedaddy/images/facebook@2x.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','8NÌ0\'X«Ê£<â4Îýj','¬zM¬B!6?rù©ˆbÝc3?Ôí6Ôã«q³‘M','',0,'?'),('’]I2Ç¤<H¨¯’%È¬','wp-content/plugins/jetpack/modules/sharedaddy/images/feed.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','a2œ÷`?+­dÈ«m¼¤Ê>','¦=\Z!„\Zõd<Åi9·gØŽ(&úál”OGëÓ','',0,'?'),('Ëõæýï`pûÅ+žƒï','wp-content/plugins/jetpack/modules/sharedaddy/images/googleplus1.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÈÚT¤A!‘#ˆ9mÓc‰','Í±=vùã‡é3ºîNÚÄ^/7}ùÔ—+Ðò@¡ë(•Q','',0,'?'),('#a¿4×žpa,nŠ>øë','wp-content/plugins/jetpack/modules/sharedaddy/images/googleplus1@2x.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Æ‘ñ¢D‚)êaÅí‚ùv<','=ÓÐBÉY‚zW\0€H-Ó)Ñc*5\r_ÃÈ,€a-','',0,'?'),('Ì&¨[U¿bÉN§Ê;œáÌ+','wp-content/plugins/jetpack/modules/sharedaddy/images/icon-facebook-2x.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',')Ð$	ŒW³áPý{×\rƒô','Ô×ï’Pe4bUC&Âsñÿûƒ\Z—bÜ BÁÝö­','',0,'?'),('·Põ_¯šÄX½ý	Ò-4','wp-content/plugins/jetpack/modules/sharedaddy/images/icon-facebook.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ßQ\n¤_âµ- NëT„,¦','M?Êþ~õª ƒ‹‚f<†ÕÝ8Å2“BôŒ—','',0,'?'),('c%šd0Œ»ƒÅ;~ïñš¬','wp-content/plugins/jetpack/modules/sharedaddy/images/icon-googleplus-2x.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','tk½%zþ€ŒÂ¦ÚZ','’†‚ÔÒ·m¦æœ×Ÿ«3(ð\\Þ\'G_9¢¡å­³­|','',0,'?'),('÷_Âäç=¤cì7V,ÄSÙ','wp-content/plugins/jetpack/modules/sharedaddy/images/icon-googleplus.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','šÞå­[„Nd£4\"~š','ÞO§äœe<D„UHÓÖV3%Ùçº4SÃc#ÀR\rg»','',0,'?'),('œZžªLÌSl™8LOtË_','wp-content/plugins/jetpack/modules/sharedaddy/images/icon-twitter-2x.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ç‹ \'æÉq+H$¸ÌFó','Ûâü%ó×.¯Oínäõ¶²¸nè;g…Ëû²ÜeI>[D‘','',0,'?'),('ÝtWsE±»‹H™@ïW','wp-content/plugins/jetpack/modules/sharedaddy/images/icon-twitter.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','kÙæzýMR,Lì”u’jå%','a­žŠ~Ò±ç™ªã2÷€™xwy1à˜†¼lÚÉh¬','',0,'?'),('•‡Bú;ÜÞY|Ðu','wp-content/plugins/jetpack/modules/sharedaddy/images/icon-wordpress-2x.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ajÈñ\\t›q¯9D:th•Ç','%‹™SÔ¾ÅÔKx<-\Z±3×M’÷uÂ¿9ÁTæÂŠ”š','',0,'?'),('fql\"~\0ßwD\"fµìFC]','wp-content/plugins/jetpack/modules/sharedaddy/images/icon-wordpress.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ØªÑ´°Ég&Ã/â½I','&_cÀª ½`¸p¹J•Äìc3=.¼8b`ÒU™™','',0,'?'),('¨+g$Ëiƒk¶CŒ°P–öN','wp-content/plugins/jetpack/modules/sharedaddy/images/kindle.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',':fÄ_6A1€Œs¬Ýi°','/Ó\Z¦ž>ÍßåDEêj{òm9­¥—¼xvl\'|z °¢’','',0,'?'),('Æy|F%åQ’yÒ®Q«öd','wp-content/plugins/jetpack/modules/sharedaddy/images/kindle@2x.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',',½ìÒQ>ó\"ŽèZBGÀV','NcGÓ46vÝ\'Ïv2jYÈt¬U¤º³$q%õ“Þx','',0,'?'),('=G&§¡øPõ)GÚvC','wp-content/plugins/jetpack/modules/sharedaddy/images/linkedin-horizontal.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','BfûQ\0jLÌÕ‚CÔèœ','–˜Ž!pªýçÀ(Üñ9åÖ¢KÖ„ßpy´H—À','',0,'?'),('M»AÈKLvÎ9A+Êí±','wp-content/plugins/jetpack/modules/sharedaddy/images/linkedin-horizontal@2x.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','	ô\\Ò·…,7Ö£îà','Ò¦6Çd_+ÂqW\0~‘g\0Õ£¼1§\0ŸFÎž·\'\'Ç¤~','',0,'?'),('k‹$œÂÓÌ¹ûBÆ\Z-˜','wp-content/plugins/jetpack/modules/sharedaddy/images/linkedin-nocount.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ŽMbœ9kÇ6x\'éªè^','œ¢´²AbOÌÀåS:)õ—bÙ!Ú]é3¸4–)˜','',0,'?'),('Èi@ä³‘Rø•ÍÄ~É','wp-content/plugins/jetpack/modules/sharedaddy/images/linkedin-nocount@2x.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','&«–³Ì}-HÑëYn(àt','Ä¹\0Ý¥~‘³{Ó\" |fù¾\"ø3d´&^‡ý©ÍE','',0,'?'),('ñ\0@èóN\nÐ§¢&p²/','wp-content/plugins/jetpack/modules/sharedaddy/images/linkedin-smart.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','BfûQ\0jLÌÕ‚CÔèœ','–˜Ž!pªýçÀ(Üñ9åÖ¢KÖ„ßpy´H—À','',0,'?'),('#(Y»ƒ0nÃ©p‹b}¡®','wp-content/plugins/jetpack/modules/sharedaddy/images/linkedin-smart@2x.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','	ô\\Ò·…,7Ö£îà','Ò¦6Çd_+ÂqW\0~‘g\0Õ£¼1§\0ŸFÎž·\'\'Ç¤~','',0,'?'),('TúRúu	W:Én?ù?‰','wp-content/plugins/jetpack/modules/sharedaddy/images/linkedin-vertical.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','«ÈåoDƒ¤Ò“¨©“±€','¢oµê/oÔÃX\\ç‡.DŠ8@­…Ä¥¾æj/5Ú','',0,'?'),('ôàœØÙ	ø¯iDÞµ{','wp-content/plugins/jetpack/modules/sharedaddy/images/linkedin-vertical@2x.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','n&¶Ü3­Þx=&_','~íQ;)Û42G*ÆÃWŠ¨5!KJÏ¨-œ¾,','',0,'?'),('Â—{ý¦«ZÿN9–Ë96','wp-content/plugins/jetpack/modules/sharedaddy/images/linkedin.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','O»Ìrí^9ë—€’Õ','s%&¿\rÿÓPôÒà=ýEîTÆEZi‹ÉzaØpe','',0,'?'),('¶\'\0ÏàØ‰-ŠÅoáñ†Í¶','wp-content/plugins/jetpack/modules/sharedaddy/images/linkedin@2x.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Õ1ž4øÛUuÊÆ Û2îŠ','”@°Z›J.¤:?„»GÒ=V´l&ó@Êq½îC´üX¸','',0,'?'),('|Hßi· ×ü‰©&­(','wp-content/plugins/jetpack/modules/sharedaddy/images/loading.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','š‚iBc¾JµãHpá','ÁçD(!þRm¢Ý‚/^L´‰öÄØá†Ýçç‰´í@PØ','',0,'?'),('Â².Uò\"Ò>¢Y52­','wp-content/plugins/jetpack/modules/sharedaddy/images/more.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','«&c_/6ÅæðòÔV','±\'k_\ZÒâƒîãBŸbÝ·áûÃ+å·§Áïˆ˜ifK','',0,'?'),('k2±Ìì?Ï¢}&¤¶¢´','wp-content/plugins/jetpack/modules/sharedaddy/images/more@2x.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','LH ˜ïyÐ{ëGöY3•Ma','›\rfä©ŠE>Â‰iñ˜FàWGäYÇ vŽ¶¸58','',0,'?'),('GÎ´‚l<î.*š¡ÇÖôe','wp-content/plugins/jetpack/modules/sharedaddy/images/pinterest.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','²»d~ŽÁ¶NWÂN?&ùv','ªüÅóäå—Ù-Š]8ôšªcÿ˜¦zß¤£ü<\\?KåÒ','',0,'?'),('$Q¼y¼‰X„D`öÿ6°','wp-content/plugins/jetpack/modules/sharedaddy/images/pinterest@2x.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÙT1`•?³ývæb~ÆZÇ','ƒv<g}IéŠ¦UïGˆ4rÀn»Ñh-ws¸GyÝ','',0,'?'),('bd³ÔsÔ‡ÖcÞÂÒ×Þ™','wp-content/plugins/jetpack/modules/sharedaddy/images/pocket.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','fräz&\n®éËÇe\'×9ç','t¸5±”³›Õ?,Í¤ =U+e1¸žÄd\"IQ-','',0,'?'),('E¼¾GõÇ+°(ïII¨˜\Z','wp-content/plugins/jetpack/modules/sharedaddy/images/pocket@2x.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','c>S\Z\rir:\"bØ·¨Dœ','÷Ý}ã%•j4î	#ø,ß‘OBgí‰úˆA…éU/¡-','',0,'?'),('ñ FhèÂa3àÄ\\­a~','wp-content/plugins/jetpack/modules/sharedaddy/images/print.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÂLt]‹š>å>ÆÁXƒ','¥)†pV\Z£™Wi\\Ð™[Û‰ÉµÍŠsh*–MtäÊ','',0,'?'),('4ŸT\nÔHñ(	8ŒXù','wp-content/plugins/jetpack/modules/sharedaddy/images/print@2x.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','×H¶šILgò¾Ø¦×y','K¨þúøjõñ\0—x B¶‰<€pfJS’8Â-½LÐ','',0,'?'),('çå³Õ–:–\'óä€-í','wp-content/plugins/jetpack/modules/sharedaddy/images/reddit.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','´!÷–dæ˜´eÞYåmYÇÁ','[_u‡ )Œ†9©é‡%}8–>ê\"S„#ŸÍ+÷:','',0,'?'),(';O«ßŽña3ËxäÂÎ,','wp-content/plugins/jetpack/modules/sharedaddy/images/reddit@2x.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Eå°z5e±	¶MHB','2TIÈ!zÜs¶áÞ€é«ªéÍSÂ\'DˆfüóÌ','',0,'?'),('É~ªÄ;¨Ü$¸—dÈ²lÊ','wp-content/plugins/jetpack/modules/sharedaddy/images/rss.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','~O£úŽcoæ=UÂ#¦1','\Z¨0Vò¾Ý1\',äê‡¬ÄÚ¼¾(9uÕ‰\"¡W¨§þ','',0,'?'),('[ð~Å˜˜,Í¤MÃ¯—Ó*','wp-content/plugins/jetpack/modules/sharedaddy/images/rss@2x.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\'°\0ì‡ò	Š» o','aÆÄþçoˆîh€//âv¤ÅÄû,Ñÿ³o|NjòëÎ','',0,'?'),('qdì§˜#×k-’\\÷n3','wp-content/plugins/jetpack/modules/sharedaddy/images/share-bg.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','‰ÍÿíŸÆwò²åî¼è×','â–Muówú±î¬\r±Va¾ˆaÜX÷Ö8L\"~z§ûô','',0,'?'),('ºg±¢ý\\@¦øoÉ¬@+','wp-content/plugins/jetpack/modules/sharedaddy/images/sharing-hidden.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','^¬Ö7–[ö“O<Ë¬™Ê','m°ÕR‹*ƒúóöÑÆf˜y€Õ‰|&¶#·Ÿÿ(','',0,'?'),('Ö”åöë£ŽX5}òÝ\0h²','wp-content/plugins/jetpack/modules/sharedaddy/images/sharing-hidden@2x.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','m°ÁÒØzÅ7ŒïÇ€…','Ä!‚‹yøj¨¸	º£½Î”~jÆ@®5œ©J¾','',0,'?'),('˜,Dð2IÝ«r}ÌÆ«X','wp-content/plugins/jetpack/modules/sharedaddy/images/smart-digg.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','MKç¿Q§pH¢ÞÚ','½Ì–oV¦ß€¯$þ	ûÜì©ÄEËaÊ\Zõ4Ò’','',0,'?'),('±Iœê ïù§ÄßRÁZåÕ','wp-content/plugins/jetpack/modules/sharedaddy/images/smart-digg@2x.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ƒŠYß{‹ìGÕkÔØ[SO^','ŽB6MàP¶xûÊÑA^l‡(y…ðoùÝwbn\\`','',0,'?'),('¦ùIâUq‹üåóÈÿö¦','wp-content/plugins/jetpack/modules/sharedaddy/images/smart-facebook.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',']kÄNßU·-¸µÄ™mžS','‚ØnÏŸa“fó9Ã:V™¡ÐÄ´ØÑ\rÝÃ]o\"ž','',0,'?'),('\rY•‰A’ørGÖ^¨èe£„','wp-content/plugins/jetpack/modules/sharedaddy/images/smart-facebook@2x.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','øâ¶Úýs]}Ó¨Éii­u','Å¨6ÉUpÂÁÊûFDcGCÕO -!4%ñb(¹ð\\±','',0,'?'),('0XˆA¶+ê!~G)wvÿš','wp-content/plugins/jetpack/modules/sharedaddy/images/smart-googleplus1.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','’­þ8Mò‘‡\Z2áž½¶—','4¥[Æ%¨\"3O°Šb<ôRt5E‚ˆ…	M=Û‚Ig.','',0,'?'),(' ËåõÌ ¬Ë™žú•Ñ','wp-content/plugins/jetpack/modules/sharedaddy/images/smart-googleplus1@2x.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ž¨qS{æ+Ò4Çÿsí','RXLq€nî<ÂØ|ÂdÞjX <;MnBä]n+ OV','',0,'?'),('.K\r\0;ó<â_à¬ÑX\r\'@','wp-content/plugins/jetpack/modules/sharedaddy/images/smart-like.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','`Þ®mF ~^Ù\r^câJ˜','‹Q‘JrŒÀQTþŸD=È/òÁ.ñeÐå™CKñ†','',0,'?'),('‘Æ\n*”[MìZ‘±¯YÑÊ','wp-content/plugins/jetpack/modules/sharedaddy/images/smart-like@2x.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\"ò¹Ñè~†;ËH-&€K_','Y õ<ôóÂ}CÓyé=Ÿƒ>9‚[Öo‹f|mÃS','',0,'?'),('fêÉÆ~.Ê±.E;‡^','wp-content/plugins/jetpack/modules/sharedaddy/images/smart-pinterest.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','˜+Ø0–M) :Gø\r','÷Œs%L\'HÐÜå(zJÞÒWoGT¯µtÐå:—ç“','',0,'?'),('˜nÏÀâ^2õýÊðüµ','wp-content/plugins/jetpack/modules/sharedaddy/images/smart-pinterest@2x.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','±B!-¹—JW@Ì9ð›F1','·\'ß#^žÃ‡%}/ïÂ7éjã$±ý?9ÑïBÊÒ','',0,'?'),('v^b‹£XÖý7i@¤»jø','wp-content/plugins/jetpack/modules/sharedaddy/images/smart-pocket.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','=]\Z$yìèá\\u]Y­²','n§ëÄ5U`‚\nÅz˜,Z\"pØ=¹I ·øS@†lÆ2','',0,'?'),('<Ô‹?:Rç%VÁ3','wp-content/plugins/jetpack/modules/sharedaddy/images/smart-pocket@2x.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÉŽ!Ã8R°êUAH”','°1ðð,£6éýð‹òÉ¶»âQ&âï¸8ïÏ»øeh?','',0,'?'),('³	øÒd>Ú°.ÉÔ—ë','wp-content/plugins/jetpack/modules/sharedaddy/images/smart-reddit.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','A»hVÎaãÁ.ÿ+Í|','9dj5kuÊSüØ`>áÎËËV£§½—`(kùÌ@E¹','',0,'?'),('6½çÕj¼þÒ¨÷ßfÎKtd','wp-content/plugins/jetpack/modules/sharedaddy/images/smart-reddit@2x.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','hï¢!QézAœý¡¯C~(B','›åcÜ_„8‹T§º¨4HP~“m˜Hß¦%<a','',0,'?'),('_aD Dj_KZ~ñ«Öeæ','wp-content/plugins/jetpack/modules/sharedaddy/images/smart-skype.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Þ`Š± ÓÀäë î`Qü','L‰&WqçÄÍ¸¨Øž\Z±x\ZÞ|kÓè-ò„4·çÆ','',0,'?'),('³ùMísUdíj^C™5','wp-content/plugins/jetpack/modules/sharedaddy/images/smart-skype@2x.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',';ðü*(&WÏŠÖ¾','ƒ¡’–4CHqág#©œŠ¬UËJ)s«D4ý&DŒ½I','',0,'?'),('Q÷âFûd„í²˜u1jV\r','wp-content/plugins/jetpack/modules/sharedaddy/images/smart-stumbleupon.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Jä_°l»}ÒP°wcsV','þ0Ï‹«\ZíÏ‡`—»¡pB/—Î·_ÄÐ©§¶+Á$Ó','',0,'?'),('}åôü%:eCÀ~Ö&.Iû','wp-content/plugins/jetpack/modules/sharedaddy/images/smart-stumbleupon@2x.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ØÊ|‰Låå )PfSæ ±','Fò0àå ¶‚¶†ÚK·í¤UÅãy\'Ò‘nCXS@','',0,'?'),('O’XGÉ\"®…/£à7lÃGK','wp-content/plugins/jetpack/modules/sharedaddy/images/smart-tumblr.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','G„);£ëÕ5M© 3À–','â`iÝ¬ÇWÑ9v°fˆŠõï¯¬ê/†wi6+','',0,'?'),('QAÚ4’ËÉìu£_Ù˜0á{','wp-content/plugins/jetpack/modules/sharedaddy/images/smart-tumblr@2x.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','‚˜+KÓŽô_?¸¡åÉ}','bžÀ¡;ÿ’Á˜Œ‘3×\04;¹cáXÝ®?\0„@wóy´','',0,'?'),('‚¤mžY²=lQ\\eæ.','wp-content/plugins/jetpack/modules/sharedaddy/images/smart-twitter.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ç½øÈ½~È+òF“%…®','„1+*ì·‚à7Š\n:	\'V«Wü}LG,Eþa ','',0,'?'),('Hí-š‘êTM‹\'›Ó¥','wp-content/plugins/jetpack/modules/sharedaddy/images/smart-twitter@2x.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','}‘müŸ^5d± I|!¤','EEÙö[ã.Û&•4¦~…ì§ÍÆçÓ©æ¬¥’‰Ù\Z','',0,'?'),('óluâ“Æ¤ëŽ×\"E‡p','wp-content/plugins/jetpack/modules/sharedaddy/images/tumblr.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¸¼MCÈˆþ\ZÒÚ$e@×','^	ÛˆCäö\Z¿ˆÝo\räc—Œ’÷niû®š•>','',0,'?'),('?è!†–„EE™‚5NKH¶Ç','wp-content/plugins/jetpack/modules/sharedaddy/images/tumblr@2x.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','X`zyÚë5Y†½™GÃÇ/÷','~Bí—Þö¯mh¸1lð­dõ\'ü`ÞPBXê~','',0,'?'),('B\Z\\çmó¥ßq Ûë‡ÚñV','wp-content/plugins/jetpack/modules/sharedaddy/images/twitter.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','kÙæzýMR,Lì”u’jå%','a­žŠ~Ò±ç™ªã2÷€™xwy1à˜†¼lÚÉh¬','',0,'?'),('hLÍÿù¼}…íQÆd¦/ú','wp-content/plugins/jetpack/modules/sharedaddy/images/twitter@2x.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ì^²ôÝáñ€¶¨*n%À\07','ÉÁOà~efqŠ2¹Ï‡YB*Øñkñß![Ì\'z','',0,'?'),('GÏ½¿¾® v¨ÝuZÂq','wp-content/plugins/jetpack/modules/sharedaddy/images/wordpress.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¯^ŒrN†óÝ„\r;sq—','\Z<9á.ýÊ»ýŠˆ/öƒˆ!FÜÓ“°\nÊ@2Ù`','',0,'?'),('È(µ#×’tÞö—¹G)´®','wp-content/plugins/jetpack/modules/sharedaddy/images/wordpress@2x.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÃòáŸî¨gáÓ‚*îµe','ÂÊ’íl\0KÞ³?®	\'ô8’Ó)HC^ˆ²M ÷','',0,'?'),('Äup\n¯_†êþ†nƒ~/ÅÑ','wp-content/plugins/jetpack/modules/sharedaddy/recaptcha.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ghu/wS	õ#Þí/rï;­','@~öX1t¼g¤Nû.Íî{~Œ®aè³Xì³~å„!åw','',0,'?'),('”šK4¹WU‘ÏðDÝ€','wp-content/plugins/jetpack/modules/sharedaddy/sharedaddy.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','&Ü~9’š™$qßª','Egº™÷¸—h«÷äé¼¥ƒ\'¯IáLzÏ»77P','',0,'?'),('U5W¸G<^©Ã¬ÙÌvÈ','wp-content/plugins/jetpack/modules/sharedaddy/sharing-service.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','kÇ;¹Ÿ1<«a:/ÚÙ','ÑÂÓþ0ÌŒm<JnþÁkyîéeVoœã6Øƒ#o','',0,'?'),('=¹·Dë³uºRZÈÛ®¤%','wp-content/plugins/jetpack/modules/sharedaddy/sharing-sources.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¨²c5–îDMÐŸC','Æ5‚ãïò£“q™i@«ƒ!Ð¶ì7p;Pô¦b`ÈÈ','',0,'?'),('l¸hÐºùÍ=·ýÎ@as','wp-content/plugins/jetpack/modules/sharedaddy/sharing.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ªCª‡„\0*_83bù','˜›eäÝì„Ù·¹_ÔK¬ÍI[,ÉF°¸¶÷ÇlØŸš`','',0,'?'),('KqfÃ˜ÍI\rîž-O!Þa¿','wp-content/plugins/jetpack/modules/sharedaddy/sharing.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','î¬«¼ÙÛúüâ‚|K{–„','nÏŠºãÜP>¢øÏÞ	Û“p—‚(ŠÁ¼ÎN0¨','',0,'?'),('•÷âðöâ½Í÷´É1ñö','wp-content/plugins/jetpack/modules/sharedaddy/sharing.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ù–»ãt Ùj¨¥ãcGÍxP','NåÊ`T‰zÎxð²ûGô`õ\\l86*‡ÕQ#Q‡p½','',0,'?'),('²o©æª†,\r–;þöÔ/kÄ','wp-content/plugins/jetpack/modules/sharedaddy.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','.¼³:•ñ§¬+@`ÀU','…ÅmBX§\\G5>ZHÆÉþ¤µŸ?Í{Njå’°éš—','',0,'?'),('Ó:9ËX×9TA&»p-o”.','wp-content/plugins/jetpack/modules/shortcodes/archiveorg-book.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','®œ•A2!L	tÛŸ~N\"','bzuEI0n>öòrZUV?<núk>Œð\rœfhÉc','',0,'?'),('í~ê¯ÕsŽ=Ç^Öüñc–','wp-content/plugins/jetpack/modules/shortcodes/archiveorg.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Èe:Ô\\Ci+ÿè\\Sì','\r§4:˜ß9dð(lÌ“Ú©ã«l˜—N·®\\ñ|','',0,'?'),('Cm´z—ËóÖ\0JÓìÚw','wp-content/plugins/jetpack/modules/shortcodes/archives.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÒCmå=šóöçyö\' ã','¾¸/%èÎ¥.Ý„Ô“Š€yŒ†ç.Ng\0éš%È’','',0,'?'),('‚Ï•ƒâÂÛ­™ÿÐxØ.','wp-content/plugins/jetpack/modules/shortcodes/audio.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ž@µ¾§ŸÎùµ}‚.óP','‰ÐPØ9ƒSdˆ[Aû%w”²f«=À•¼l•','',0,'?'),('â5ƒ/Uy„*8¡ÙŽhQô','wp-content/plugins/jetpack/modules/shortcodes/bandcamp.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','xK”á¥Ä8Û—Ñ¤þ\0Î','µ¶Y7”é&«~C_Ñ%eˆ½²„çÃRDŸ,Ê÷Ùc‡g','',0,'?'),('/÷°ÖE«YcTš>h‚','wp-content/plugins/jetpack/modules/shortcodes/brightcove.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','í:(ÛDñ×»rY\'Tç%H4','‹ŸœùàDŒŠ_^.tc<í.,Ì0QÁR1ÖÀ]{\r|','',0,'?'),('”Í+Œ®Ô­ï*BySJf','wp-content/plugins/jetpack/modules/shortcodes/cartodb.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','>¼Çùœö\"ª4½E','Yã·==/&•\"ˆ^É=hFáC‘\0JÓ6å©>»É…?','',0,'?'),('k^ãÜO¢hQ-M_Î×','wp-content/plugins/jetpack/modules/shortcodes/class.filter-embedded-html-objects.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','0×$bó€£¨Ý¡ö,U(›³','è©ðO²~øqï]µ«ÙmŸbÉtÉÆÅ“ßž©8','',0,'?'),('^ƒ¯Î[ Ô¼NØ€;O¥','wp-content/plugins/jetpack/modules/shortcodes/codepen.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ïé{–?ñÄèØo3b9¯ˆ','´&=×ˆÈ:G±,rr£ I]ø§®<ˆgÍŽÙ4rŒ','',0,'?'),('ëÈMtmâÞ?p¸0¯<‹','wp-content/plugins/jetpack/modules/shortcodes/css/quiz.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÇdÑ;\"Ÿ­3š]Ì¬¸TÆ','.Ðo>¯ùçÔ6²”Ý|uT‹®;\'¹ù–¯Õ\"™«NnyŒ','',0,'?'),('Õz”úLPGó\0=æÓ','wp-content/plugins/jetpack/modules/shortcodes/css/recipes-print-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','„4&ý-l½5â3bŠŠJ','\'\"ž¥˜b?7{<ª~¸~2ju&qNÿ9ëñ\Z;x','',0,'?'),('„nP7¤ãBÍz•Ôšv$','wp-content/plugins/jetpack/modules/shortcodes/css/recipes-print-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','„4&ý-l½5â3bŠŠJ','\'\"ž¥˜b?7{<ª~¸~2ju&qNÿ9ëñ\Z;x','',0,'?'),('/8i«Uc\nìu¿¦c@¯','wp-content/plugins/jetpack/modules/shortcodes/css/recipes-print.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','†ËØ<M¹¼‘›ÍY	…­ðé','lóqâ´àŸÚž’å7¿u¦Lt,Û»øeý¿f','',0,'?'),('‹Ó3Ä#¿HtöJÇ£@u','wp-content/plugins/jetpack/modules/shortcodes/css/recipes-print.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','€)êÄ“nÍ3X\"XÇÌ“','Tæ{;’q/Žoüæ°@þÐ¶Hø½:Õ¡`þ*ÒŽ','',0,'?'),('\'|–_Â“<Cg›·Ç','wp-content/plugins/jetpack/modules/shortcodes/css/recipes-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','hL„:„B)¦½©tTí','»±y\"g8Å¦o™Ü”‘½­²wªp\\BŒpëëý','',0,'?'),('<WfC¹Îg#êí•–·ž','wp-content/plugins/jetpack/modules/shortcodes/css/recipes-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','hL„:„B)¦½©tTí','»±y\"g8Å¦o™Ü”‘½­²wªp\\BŒpëëý','',0,'?'),('ÙèçÝµþ}™ÞS.So~mË','wp-content/plugins/jetpack/modules/shortcodes/css/recipes.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ìf(2ðÏ$xCg\"”3aÅß','¤ñiöª@}]üÌq³B—;8Ÿü¬þEán@ºÏÖ','',0,'?'),('`N3mlPgNsowÆF®','wp-content/plugins/jetpack/modules/shortcodes/css/recipes.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','?6ÉXdÉC”`!~¯Ìp¦','€±ãÊšØZ×ÛDºÓjúåÌ’Eç[:BµŒŸ~å‡Ü','',0,'?'),('Yú•laÌðf˜g^òå','wp-content/plugins/jetpack/modules/shortcodes/css/rtl/slideshow-shortcode-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÔŒÙ\0²é€	˜ìøB~','ã°ÄB˜üšûôÈ™o¹$\'®Aäd›“L¤•™xR¸U','',0,'?'),('³ëÐÄ˜å`„í“hñåoj','wp-content/plugins/jetpack/modules/shortcodes/css/slideshow-shortcode.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','H Å§yó Â?ûãsÓ','r>Ðâó×Õ@Of¬ãUÓ3¦Dh?ˆIC\Z\"¡','',0,'?'),('K»µTGšBÖs`¤ Ý','wp-content/plugins/jetpack/modules/shortcodes/css/style.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¼Ö0õ²y	*ž±Ššê,','¼£KíõC)Å¹\Z`©´¤MpÉ{±òÉ}`»0›{','',0,'?'),('“lM[Ü…0®ëû²^_','wp-content/plugins/jetpack/modules/shortcodes/dailymotion.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','^Û[nb‹5/¥P\\k','Ä¸“/7L£ÂTÎ$=u]F³ÒÑ0êÛ†ER#*','',0,'?'),('\'÷7¹vË@‡öµ-·L','wp-content/plugins/jetpack/modules/shortcodes/diggthis.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','í3)»:òlÆ—9%DÀ\"','!+¯*\ZÃµÛKJ¾‘Â±qù¶tÝŽV.º\nj','',0,'?'),('ä¶ÑmKL\'›%(\r&—É','wp-content/plugins/jetpack/modules/shortcodes/facebook.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','áöéQi\nšjJ]\"çy','ø/8OŠ\'9b\"Ÿt‰Ôô7“>»áÿ«Fÿo\nÔ½Z7‚¥','',0,'?'),('Ërè5`—Â×[¢~aË¼¸','wp-content/plugins/jetpack/modules/shortcodes/flickr.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','NOpúY4lZà½‹‹è,',':ÑYBÀ	Ç~~•cx&î¦‘Êàå¡þý\03¨«ß:.','',0,'?'),('Â9¯Û+šbÛ\nä8QÍ','wp-content/plugins/jetpack/modules/shortcodes/getty.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','õÂ.u^6•õ,j6ò?','ËêÑÜ¥¤1Wñ§»v¨Ïè—y\0¸¶³t…§_¤±º','',0,'?'),('„&ÔlN¬UÏÐ¹¡’¡j…Þ','wp-content/plugins/jetpack/modules/shortcodes/gist.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','^^øÄËY¥EY—\03Ú\n','€ÑÌÌäŸ[«£ýf3úO›É‰U Êˆu¥å¤Ê	','',0,'?'),('û$¼—ù)÷@lY;bƒ','wp-content/plugins/jetpack/modules/shortcodes/googleapps.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','PÍtƒÂ¸’ÔFž™¬Í','§:¿\n¼KÖ\\«…°Ð¢éDs‰÷ñÄ·]„™œYÏA','',0,'?'),('Lq¼¢ÑR\nK)6zœ8','wp-content/plugins/jetpack/modules/shortcodes/googlemaps.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','&“‡?œV0š_X†‚','ÆGFI] ï oŠ™Ô\ZÌud¡O¨œÈ=m®º','',0,'?'),('qÙ“°ÒµÇu’M	\\ß','wp-content/plugins/jetpack/modules/shortcodes/googleplus.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','7¾„ò,&e!î¨¬¢','Dˆÿ‚rñŠ°€9‚$Öíþ\r§î\0¦—ŠS/tt÷Ù','',0,'?'),('ñ#pTêéÚa;#ë´‡_Á','wp-content/plugins/jetpack/modules/shortcodes/googlevideo.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','™³xÖ\0’~Å±A]ÊH€ËË','fÄÕýx>s»b²u)#ÿ[ÜÂdøO²Øas,Mã','',0,'?'),('F¼Ôˆl2þ—äEF¹áºÙ¸','wp-content/plugins/jetpack/modules/shortcodes/gravatar.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','8U°¶šHSÇàJø1','ÌˆþWN?ÕŒà„‚ÅWn4\r•§8¹£Tüw\ZÎ³9x','',0,'?'),('t3ÂØ«÷ìµ¤’ÿ+w3','wp-content/plugins/jetpack/modules/shortcodes/houzz.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','‚Rléí7džiÛô_','6m&l¼“!ÄÕuòJëÈø&¾è0¶ÛûehHçiÀ','',0,'?'),('aÀ·.ÍY\0b©k-˜\nJÒ','wp-content/plugins/jetpack/modules/shortcodes/hulu.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Mdy©ÊTFìoOèé„ÑÅ','l£ÌŽs,“W\'“¡”¿\'TGM`„1àð©,µyª','',0,'?'),('Î?XÝQRE°\0¦ž kR','wp-content/plugins/jetpack/modules/shortcodes/images/collapse.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¦†\Z$€RLŒP&¢/PÛ','8¹Ë\0(‹ùÊ­0¹…rwJáÑQ±Ÿºg÷ÓÏÓ,=ÅQ','',0,'?'),('v?U\ZÏnÃŸßJ57?','wp-content/plugins/jetpack/modules/shortcodes/images/expand.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ñ+îñ¼¨é9Þª²ÒF™','Å]Ü‚Ò°©“27×\"@’\nMw—xŠEÜDOy´','',0,'?'),('j—Ô:æ’ßON10º¤ö','wp-content/plugins/jetpack/modules/shortcodes/images/slide-nav.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','8ZíCÓj»~ºé¾´¹','Ó2eû\0ÜyK\'œÞiÙa”õ,»gìe©…ö7ß*†å','',0,'?'),('½*çøxXª.Ð(\"PËå','wp-content/plugins/jetpack/modules/shortcodes/img/slideshow-controls-2x.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','O8ü¿[§Ö\Zø;¡Œz\Z7','0\\Š†;³Þtãm/YÑ$@?½Ž&5ˆ…:…‹é“','',0,'?'),('}‰#~Èï¦¢!ÙÇÈ#','wp-content/plugins/jetpack/modules/shortcodes/img/slideshow-controls.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\r\\ÿºãä=ãì¶&OJ‡/','xc²‚\0¾*‹&5}Íé‚~‚2š=vbG×æ‘lÉÍ¤','',0,'?'),('q^¬Ö¨Ë^¡¡Bó¸®Á4','wp-content/plugins/jetpack/modules/shortcodes/img/slideshow-loader.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','PEûeäp D~$«’a','Ûýà;á$^“U\\3P!èéÇE9h‘™ÒÔ»ÌþÎ','',0,'?'),('mkÚÞxÅâi›†	W…ÿv','wp-content/plugins/jetpack/modules/shortcodes/instagram.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','˜‘/Y:<î’oMæ(6‰3','\'ùð¼Nûh¢ãÕ™qYÝš­œxô%øäFMÂÊ×','',0,'?'),('âMdõI»Ú˜‰€>','wp-content/plugins/jetpack/modules/shortcodes/js/brightcove.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Æ“þcsK…Ö?ueÿ¢','éÈdß¼´`$7N³hÕkpÞÉŽ•$ðë{Ö]t‹ÄÛ[','',0,'?'),('gOõÿ«\0Ûº@U(±KšE','wp-content/plugins/jetpack/modules/shortcodes/js/gist.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¼ü†ÊqüŽûENÈ\0D','9ÄÒŸn;Å´I@¾žU¯ª~ª]·¿¸nÞž0.ÚF†A','',0,'?'),('Æÿßôý]Jv`IŒÉ!','wp-content/plugins/jetpack/modules/shortcodes/js/instagram.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¶ÂŸošÊ*À]D=KFp\n„','ûwRÃ¡øY!Ö¯\'ê¤÷È˜Ñžn;‰}”r','',0,'?'),('Ö{ÿ<þd$ëÜç‹ÏŠ','wp-content/plugins/jetpack/modules/shortcodes/js/jmpress.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',' -xÆß\nV8x´€3FýK','¦ë0…¤vÉ~TûN¨5,SÄnÒ@ÞShÝÊU»f	‡¿','',0,'?'),('ýU}âjžœÜßHætý’','wp-content/plugins/jetpack/modules/shortcodes/js/jquery.cycle.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Á|4¶9]éá¤g½£L‚I\0','…\nt›CåZá¶$ÍØbt šì(™7ŸM±Ñ¼','',0,'?'),('”¢‹7ZµÆ0ëÖAiè','wp-content/plugins/jetpack/modules/shortcodes/js/main.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Æ+äž¹ë‡¶NÚ\":Qj”ø','äÁŸ…gZ9°³Ãº=[Ç¤¼£\"†4hè×‰	ÅÎö}','',0,'?'),('êK¬5Z¦T ãÀcÄ¥','wp-content/plugins/jetpack/modules/shortcodes/js/quiz.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','æS4Ý˜¾{yü©Á¢e','Qµ³ýN\Z¢Î2}ÔH~’ûk‚:l!ËI\\žb¸ãÿÝ','',0,'?'),('¿ÔÑêÒÏÏ	úyrË´','wp-content/plugins/jetpack/modules/shortcodes/js/recipes-printthis.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ˆt¾¬o&aWK	î–æ','›€çJIa<ÿvêžpÛs®o i[Ll­ë±P×C\'9','',0,'?'),('q~ä4!Ÿñå¹Ëƒ!\\Ð~','wp-content/plugins/jetpack/modules/shortcodes/js/recipes.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ù=wÜûS-_É¹p]ÇfÛ',' c£ âgj2°îT³ÈÞ\'\\Ä\Zr]ÒãoÐ–L¬º^','',0,'?'),('\"Â‰®xB&Û¥èiµ…','wp-content/plugins/jetpack/modules/shortcodes/js/slideshow-shortcode.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','´á\"…¤«ŽÐØärô¶x7','þúìÓnì’ÍLN\"¢e­Úy)á¨ó854ECí:~Ê','',0,'?'),('8Å	”ÑÅÈ.§¸ÅÊ†ˆ±ž','wp-content/plugins/jetpack/modules/shortcodes/kickstarter.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ä°ÀÔÅ¹’í2žþªõÅv-','×izö¥é¦Ap\\éL!À:xç\'ß&ÀÓÔÂŸ_¤áá','',0,'?'),('í, }Mj‚¡6vî','wp-content/plugins/jetpack/modules/shortcodes/lytro.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Í€¤M¨ŠªDá«y(Š','”voˆu6ƒ²„ÏôSŽõÔË`RH&z…^šöi1Ê','',0,'?'),('ü—Y—É}s2ã—Ž\\‡í','wp-content/plugins/jetpack/modules/shortcodes/mailchimp.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','p²áÐ\'ÕïÿëßƒöUÐ\'','ÆA0YÔÿqî¬ñ´ö’5nÍóŒ†ÆÑ_åã6”ÎJ','',0,'?'),('ÁIXQ†áî ŸÖýÇÀÌ','wp-content/plugins/jetpack/modules/shortcodes/medium.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','lÅÂÉ7fPtÑeb(ë¦','õhÄ€bV€€%	KC)‹>Éê—Õi]zy¨²WM','',0,'?'),('i,‘ñ8ASSâ ¶cé»]','wp-content/plugins/jetpack/modules/shortcodes/mixcloud.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','8.WðTùÁºõs‡Ì@','Æ‰)óàrˆTcB…h¥†?¦>˜„Ÿj/','',0,'?'),('M“è‚Zš°ì3UM\Záw!','wp-content/plugins/jetpack/modules/shortcodes/pinterest.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',':¾ÊUƒ5¼ww¾iBÿž','¬­Íp’`vWH—ViºˆÁYÑevªaÏºž×êMñ','',0,'?'),('èe²Öý5Ö\"Q_\Za§î³ï','wp-content/plugins/jetpack/modules/shortcodes/polldaddy.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÐÃ|3®¢·“`Ù•Op','5·w©_[W3á&!n’tÝ‰º†ÏÍ\'qš\ZW^‰d','',0,'?'),('É1f\\X§x?3¶«H','wp-content/plugins/jetpack/modules/shortcodes/presentations.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\0[,Ìw¢ÀFŽ9‚š—ŸÝ','–h¡L?U)AÊþ Eø€€ïÏ¡¨qu€ÞX$Ö·@','',0,'?'),('¿ˆÞ‘©JÝåqb\0á\0þ','wp-content/plugins/jetpack/modules/shortcodes/quiz.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','†iT£Š™y¾©‘«D_¯l','ZTsFÜª¡€\n.³ºZ4À#žÚFa8£Ûš6lÃLÚÝy','',0,'?'),('ž÷´³¨Æµ&ÿ²˜³$_š','wp-content/plugins/jetpack/modules/shortcodes/recipe.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','G£:n€¡Ìœµf•‹','bjr\0¬Þ?ë\"3”3ÌÎ$SÅ)IÛîÆW¼iõ@°','',0,'?'),('M¥y+á{ß@&ðb5Q','wp-content/plugins/jetpack/modules/shortcodes/scribd.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','>Â,ÎpiíŠ™þ¾ÇAs','pÏ>OqdÒú®ü·!à!’Ea¢tòõ€âå5-ùµé','',0,'?'),('#¹eú¶­G#Ìé‘ˆC&Î','wp-content/plugins/jetpack/modules/shortcodes/sitemap.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ªsÃe\0ya†­huB¶Ï’','·R‡Ö’cDrf5ö[ÿÞF{6  A‘Kà+\rÁ','',0,'?'),('”gÌ	â×Íí\0ÄÀÉ6>sè','wp-content/plugins/jetpack/modules/shortcodes/slideshare.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','‰Ðêá\\ãz3¶„oåæM½','LIÀ‘×ð¥&49·‚4èñ‡¢ì˜?…“ý”¸ Ñ‹','',0,'?'),('Ñ@<0_m(C}U„K‚ç','wp-content/plugins/jetpack/modules/shortcodes/slideshow.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','y@Ô6­KøNï¼Jôµ','ƒjÉžÏ•%3¯¡Å¡oüÉofÐ]9pzŠÄMj„h¾','',0,'?'),('PA¦p¢Q®áTúôh','wp-content/plugins/jetpack/modules/shortcodes/soundcloud.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','xø	•ó§E±Sva¼	\0','íÏýx(uŽ¥ ,ë´(Z	kTØi¬glOh…$ñ®«','',0,'?'),('ØöI±?[9Èl¯Ê–·ùÃ','wp-content/plugins/jetpack/modules/shortcodes/spotify.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ƒ¡ûlØB”>è…¤Üä','4FßJÙ·wÚ2÷ú§EJJnKtCœ‘ócƒJ\Zíw','',0,'?'),('¢-S_øüÏv@›‹','wp-content/plugins/jetpack/modules/shortcodes/ted.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ì*NS*ì<FtBJA´·','ïP±áÜ=| ]£%Éhqë‡UjA~(JgîP¿@,¯','',0,'?'),('¹àõS^(î„ªlCvl»:','wp-content/plugins/jetpack/modules/shortcodes/tweet.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÎoþÑëk¢fzØ\\ˆ‚½:p','â®‘ËHïœÁpùø¿b‘ÏÒnìçóm. ÅPz','',0,'?'),('^ÜY;KHy±=ü$V^T•','wp-content/plugins/jetpack/modules/shortcodes/twitchtv.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','‹ „vâÔ¤Rµ”EsI','£³ê!BzpWUÎú¢Ó‹-^[6¨;iv·% Wô','',0,'?'),('¬öYhÓ8½«ÚÁ{UÜƒ<','wp-content/plugins/jetpack/modules/shortcodes/twitter-timeline.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','!¢(<	\'-Éï)§Ÿ','9Ù3ëŒöùå¥Øß—Y#Õ3›ä‹j3_ÁŒ~ŒEñ','',0,'?'),('²™ÉOœ@\"i|ÂÅï0C$','wp-content/plugins/jetpack/modules/shortcodes/unavailable.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','5W&­,ÿ<`ƒ[šp/ˆÕ','›°Q´sŒÞÿ‰dÉ½\'ñÖÌ÷¥—qÂ$[4SÆqËçÎ','',0,'?'),('É3ŒXêP?di¦\"\0Íp','wp-content/plugins/jetpack/modules/shortcodes/untappd-menu.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','»©‡¾Óó™¿kHíö&‚','›+Ž­)éJ´|æ`±ú¤(,Rï†cQ¦ÈÊ_¼Ñ+','',0,'?'),('7(ÊúI¶Ñ•º^@ª?Ü','wp-content/plugins/jetpack/modules/shortcodes/upcoming-events.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ŠªYé0åæÉ8oCÿ¦','$§õº»5;IËiò&”…\n¾XoÔ†tP´„(¤Ò','',0,'?'),('‹\r&ÖJÈ ÿP[.£ïùp','wp-content/plugins/jetpack/modules/shortcodes/ustream.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ƒ“¥uÛS1YY…+-','^jï©ü2æA9­ŸœÔ9d,«>· sbÖ;{AÓ¹éG','',0,'?'),('ú|FÂlRÑƒÑ9ÓÆ','wp-content/plugins/jetpack/modules/shortcodes/videopress.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¢¦àè\"h{\n:§º1ô‹','\rÐlûpÊ…®iå‹Š#Ê„?©\0%·ªHèºEÀ&ÍÄ','',0,'?'),('±iT{„å¸‡êå 0FÂ','wp-content/plugins/jetpack/modules/shortcodes/vimeo.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','FýÑkýÆÞ.czÅË','ó—5eÆ€W6—…øw×kÈž»ñ£BË´¹ú@h0¬ ','',0,'?'),('4 ~_BƒƒÊ·ùä\'bªó‘','wp-content/plugins/jetpack/modules/shortcodes/vine.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','xC©.ÄùhÁ%h¿Ð&á','×Þ€sg*Å ­õwL™:5õž\\[ÄËÞµbaLæ˜.¤','',0,'?'),('—‰!ÙI§Ž5½þ)pÊ#Ì','wp-content/plugins/jetpack/modules/shortcodes/vr.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ú”bÈ°¼ì›*‘ú©ç','Uå\0’Šõ¤4D=î(MŒq[ªxBëMo9\\~ôH-š','',0,'?'),('÷ØÇƒl\rç¡‚®É','wp-content/plugins/jetpack/modules/shortcodes/wufoo.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','µ]|\'Þó›|XIâ','¤‘3y‘Í½\'Éî‰7K)“ð/ÑWÄíÅÌ–)káÃl','',0,'?'),('òáØpÄ€Ï?:—g~¸r','wp-content/plugins/jetpack/modules/shortcodes/youtube.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','d„–¤ñS þv-í¯ ','˜ƒÂP°É›Ï;ù“øï\r`v“~%ýFË7sŽOgÈ ','',0,'?'),('ÈöÂo¿ém`˜\\	%-³o–','wp-content/plugins/jetpack/modules/shortcodes.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ž‡F“ÖÒ*0ò”Jþp','ú§ÝëßP“µŒë}‘SŸ¶(SÎFâ\\‚¹ní}','',0,'?'),('ºP.îª+Þë¯ £âï¸','wp-content/plugins/jetpack/modules/shortlinks.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','uŸ³šØÇ|aÂ%õQh6','¯ {í.cvc¿õ= ç÷Vˆ<¤íã¦Þ®XØzÙÂ\\\ncd','',0,'?'),('>4Ð\0cê6;Íba÷)','wp-content/plugins/jetpack/modules/simple-payments/paypal-express-checkout.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','y0®ýB S9gÌBµà‰','Ó±™:{#„pãöK[}i\n×+5ØÒ÷=>.-p½]\r','',0,'?'),('píWƒŽiú×N\nPj`','wp-content/plugins/jetpack/modules/simple-payments/simple-payments.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','öÂÖNkcaObXÿ+LS¾','ØÚ±úô¾©ô­_7Úâ?FƒÏÐ9¼5R:^ß','',0,'?'),('9”ó¢Q0ŽÚ8é£¨C','wp-content/plugins/jetpack/modules/simple-payments/simple-payments.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','³KÅú±[w\n§#Š','†(_’¸˜ ¥ONì¡Á0¨4ú/ÅŸø£0 ó}aGš¤J','',0,'?'),('Lµ|ÈuN\0š/Q >‘x','wp-content/plugins/jetpack/modules/site-icon/site-icon-functions.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','3Ó/ÌH#¦íx›ãL0«&','Ç]àrb·<<,ôžˆ÷O„^kX*m“ñ­Ù¼÷mX','',0,'?'),('ß¢b8UÔ\"Á*zÚY¹õ¶','wp-content/plugins/jetpack/modules/site-icon.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','qêä°ÿZüôyæ<V&l–S','°íÖQÁ•3Éöêdz\'\"^²|²y2ëp/¤}','',0,'?'),('õ\"óMðGóHËˆ«ØLa','wp-content/plugins/jetpack/modules/sitemaps/sitemap-buffer-fallback.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','â¹4¢Ð‘Á´õæ$É€t','SœŠ[âã©ýZmJâ5+æTU¾!~í›»k','',0,'?'),('-lX“1;q g¯´p(','wp-content/plugins/jetpack/modules/sitemaps/sitemap-buffer-image-fallback.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ºãŠï‹-¶S€IQH™§\"','§‘ž®éæzcò^½„êL…~ò¾¦HœìA‹Îà-t%','',0,'?'),('8~P;\ZOôç—,xý@ã','wp-content/plugins/jetpack/modules/sitemaps/sitemap-buffer-image.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ãë<x9E\"#‰°RâZ[','Ó	6‘ÛòÃ±}•íÂŸGpÆžýV¸“{ÿ‘äÀ','',0,'?'),('+_­¸‘íÍÿ0íWñw¤','wp-content/plugins/jetpack/modules/sitemaps/sitemap-buffer-master-fallback.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ì³‹8e\ZE×YÆ\0','ç|/þ¼.g‰C{ÞºëôRÁ¼ÛÃè)€Ç41Þväs','',0,'?'),('¤V_ášD³DÏ>Æ»','wp-content/plugins/jetpack/modules/sitemaps/sitemap-buffer-master.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Jc\rXžyÊ“XÃÅ0+„Û','À_ú	[3;£z­Lßò(RHò5O‹‘1ß9øx‹á[','',0,'?'),('Ç’à#[ÿs¾þÕ½I~cÊ¯','wp-content/plugins/jetpack/modules/sitemaps/sitemap-buffer-news-fallback.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÎTf°î†…iv…€I®v','\n/îZ0MÏ3¶Šôðñ–mÔqºëô½™àhèBùslÂ','',0,'?'),('Ÿ‘,ì®y°Ïè©\0guˆ\Z','wp-content/plugins/jetpack/modules/sitemaps/sitemap-buffer-news.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','õà&“÷l‹‘9‘bè','s©šõL\"ê›×—R2mH.æjÏD»‘vºk','',0,'?'),('6Üø¨šJ™p;öŒ<ä','wp-content/plugins/jetpack/modules/sitemaps/sitemap-buffer-page-fallback.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','IÉk4i×úñh@z\0gÇó','\'þ@åpóìë“Ð<ßéÆþ;[…à9çœ‡`æ PC‘	‰','',0,'?'),('`tiŽPÆ³<n‡+hn','wp-content/plugins/jetpack/modules/sitemaps/sitemap-buffer-page.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','÷÷±¹[äJ‡Æ;ÝÏ²¼','FR,ºžW†ùØŠ…“ŸfáEôgKeû¦Ë^','',0,'?'),('àiëT\'Á‰yÛb_O½','wp-content/plugins/jetpack/modules/sitemaps/sitemap-buffer-video-fallback.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ãï@.Wð#à@°ÑO¤­y','<jfú-	À»‚Å\'B“>ûZ	è?{È9-Ï%o£	Ì','',0,'?'),('Í:åÔ4ç¥G•394','wp-content/plugins/jetpack/modules/sitemaps/sitemap-buffer-video.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÏØWnDU_Þ;ŸLH×”','émš_ñð\"«°ÕO¸*³¡\ZÖV5‚ÈHÀÐ\\×Ãðì','',0,'?'),('öÈ>\"÷k Ø{••²Î','wp-content/plugins/jetpack/modules/sitemaps/sitemap-buffer.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¦‰KÆU,ñÔ$¶?×	','1õo˜?‚óJ÷!·o6T6i‚w²[ÌB1ËÔ\\¬Ñ|…zO','',0,'?'),('’“¸B\nPrr-	%\Z','wp-content/plugins/jetpack/modules/sitemaps/sitemap-builder.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','bJw@€ñfMfµõß‡','&‡Êu¶s€±¶éZgC¢;¼‹Ð\Zs†Xbn1€#É','',0,'?'),('åÌ`¡w€ŒáfÏ¢ÖÅæ','wp-content/plugins/jetpack/modules/sitemaps/sitemap-constants.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','LØ”¹xµ;— ôÕ‰õ','ý~Öš	’Ý,¢ƒÒ-QôNQÊ°Îc[HÎa4','',0,'?'),('f áAÕ1&]Ö¥»†','wp-content/plugins/jetpack/modules/sitemaps/sitemap-finder.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','äZ¹kl\nJ›1­Æ#ð\n','Ð|)ÎU¬¹C—\"ÈÙ†©GÏŠ÷Êá§ä02JÒ','',0,'?'),('Ú‰IÄ\"`ñ&$Oc\"W¿','wp-content/plugins/jetpack/modules/sitemaps/sitemap-librarian.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','æ^Ý¶eçL&~ÅóÑ_7£ß','QÖÓ)¹ÆcˆaA)Çn‡¾­hSa°ÅŒ½ 0«%~','',0,'?'),('Y\n	¿evàíÕÄ)»¬8:','wp-content/plugins/jetpack/modules/sitemaps/sitemap-logger.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¸Ï{q­Ñ$[oÀç»¦B','ÙdRös4èž$¢ébX«.påìéÖT¼Ïs®Áö¦ƒÔ','',0,'?'),('Êh¹ÿzƒ¤ÞC	ûmO','wp-content/plugins/jetpack/modules/sitemaps/sitemap-state.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','©¾XœÄÇó>Åu]¶ŒFë','\rÂJÁ±‰Øõ¾ÔÌïf9‘(RL†Ï	ÑµYÑ','',0,'?'),('Ì¡AìL 3Œ;›Vµ\rË\0','wp-content/plugins/jetpack/modules/sitemaps/sitemap-stylist.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Â ùBG97Á­¬RRù Ï','ä¶8ÜŽ÷vôt¡µ¢ÍæÁ%sO3âÏ˜§½zäÇ','',0,'?'),('ºçoÿó——ëuwD‰X(','wp-content/plugins/jetpack/modules/sitemaps/sitemaps.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','©˜1n÷ö?²(gÙóB','u;Ðo‰\nâY\rbføÒ¡lY¶ÂE®Æ9nÝ6¿;%¯','',0,'?'),('¡œM±Z}QÛmãùC;ö','wp-content/plugins/jetpack/modules/sitemaps.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','‘5x¸ñ$º`Š@áx\0(ÍÒ','#ÞÍ£R•Ñ½óázÏ‚=”p_»§MÅØC\")H°˜N','',0,'?'),('ÒÌ¾êˆX\rEÀÃ‰ãu\Zõ','wp-content/plugins/jetpack/modules/social-links.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ž@µ¾§ŸÎùµ}‚.óP','‰ÐPØ9ƒSdˆ[Aû%w”²f«=À•¼l•','',0,'?'),('\r2„äKmÅÒ\Z@õ·Úü\\','wp-content/plugins/jetpack/modules/sso/class.jetpack-sso-helpers.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',';- HÒŠá“_Æ1¡ -','Ø,;;ä\'Ì¢;¬Ë\r= ^Æ<ÁA©iWzz#ß­ïECÓ','',0,'?'),(')V¥w²Íõ~‰&\nV<éò','wp-content/plugins/jetpack/modules/sso/class.jetpack-sso-notices.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','HwQÊÌéÚI‰ÇÚœ`–”','e0žÖ^IÌ\0¿TØvÑ*íuº7ér®sB²8‡9S','',0,'?'),('FâÃ ¦žhQe;KáR¨','wp-content/plugins/jetpack/modules/sso/jetpack-sso-login-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','tM¡~“|o½˜2Ékž³l','ø É´ˆý¾\n#{u{óM\"ò5a7oðCÁ]ÁF','',0,'?'),('Šë×Ø_…“\n1KFf\"…','wp-content/plugins/jetpack/modules/sso/jetpack-sso-login-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÕÞslIý:.`Šþ|F{KQ','Ëœ„\r#+Bt¶YŒªnã´c8üŠ‰ÊùÚ™»è','',0,'?'),('Þ%ŒCŒj/›ÞÜVêÁ','wp-content/plugins/jetpack/modules/sso/jetpack-sso-login.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','QTü¶Nº*Ž9¼J­ª-.','/Ïän‡î‚åZåò£·­À[tÕX[MæL˜°†0…º‘','',0,'?'),('°¹u„|s\ZÉOÒYã²','wp-content/plugins/jetpack/modules/sso/jetpack-sso-login.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¶,+‘åP9¢P`ÿÒ¡p™','öí;$.ø2˜Œÿó×ýÉÌ|¡Y6í G\\Ù^[l‹‡','',0,'?'),('¬{H\0¿‘ÛÔÄ½»bÔ','wp-content/plugins/jetpack/modules/sso/jetpack-sso-login.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','†’LkêÛ\"3XªMl¾','›0¾”&X¥\'{¬g][…n\n‡˜õî/1ÇÚ¬','',0,'?'),('Š:ù\r±¡gÏÇ[œÈêÄ','wp-content/plugins/jetpack/modules/sso.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\0n®¦ò	¿©\" ^™Ÿ0','áçMª§“Ú]‚ôR¸ó¡aMg»¤s4','',0,'?'),('Ï­Ôóì¦6nc,µ`¹<','wp-content/plugins/jetpack/modules/stats.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','h2yS[ØÀ@“6“à·\Z','Ñ.f	I<ÎhEêb*ú-\\kæ™Úz#.á7ùúu±$','',0,'?'),('˜ù‡ëÝöèH‚Ô±5©t','wp-content/plugins/jetpack/modules/subscriptions/subscriptions.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','îúlP6Vý¬D_o6á`†r','(®»Hýº\"QÇòÖZþ-ù8G_vgÞ|†N“CÃ—Ë','',0,'?'),('i]×c%œ}	Ôýh”L','wp-content/plugins/jetpack/modules/subscriptions.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','7®OtÛ-|/ÙðÔ.ò','ê9zKÏxx‘Ø¨oyáµˆa»Eì{”Ÿ÷ãK*Á‰m','',0,'?'),('}ˆ‹UÇáðT9%ÿê$®Râ','wp-content/plugins/jetpack/modules/theme-tools/compat/twentyfifteen-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','xw2Õýï½qTùÄ‹a‰2ê','“ðÎ¼ŠLx$\nè´Nit=Œ|—\"ž[¤àÎ¼°éáµ','',0,'?'),('þð	ëCçAÏéËô','wp-content/plugins/jetpack/modules/theme-tools/compat/twentyfifteen.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','>†´NÂr^%®ßñ6´=Ú','5ƒ¹üšö®ZÉÀÑm›Ñ@qÄl>ïlùnumƒ\\É','',0,'?'),('/“Öãð­W£ßâœ´S\0ž','wp-content/plugins/jetpack/modules/theme-tools/compat/twentyfifteen.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','-«:/Ð’¯\0¡³M','oîöû÷\0cE°ãvžÐÆ“ÌÈ\\\rãvÑ>ûž™Œ˜','',0,'?'),('ºœô^ožu?×d','wp-content/plugins/jetpack/modules/theme-tools/compat/twentyfourteen-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','JÍk9l£„¶ÂºSO','¸wƒ“¬,®rIvûÛÕÝíÄ×|Šå¬\nå','',0,'?'),('D4Y8!#_<ƒÐ·T²d7','wp-content/plugins/jetpack/modules/theme-tools/compat/twentyfourteen.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¾ù¼ùë¥ƒ¿Ý	«êÈÐJ','±ƒÜs}tÆƒ”o•nÜA‚¹uÌ$¹ÙtÁšxS','',0,'?'),('H?‡ú7ÛMfe)*wç_','wp-content/plugins/jetpack/modules/theme-tools/compat/twentyfourteen.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','àM´Ã\\¥ žï\Z·?2c','½‰i™\\»yâŽrÌ\rÙÿÆ-ny®<#ÇðÏìaø','',0,'?'),('ÙçUª>¹yZx±!ú•e','wp-content/plugins/jetpack/modules/theme-tools/compat/twentysixteen-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ƒd•Ä\'nI¡·È	ij','® aü´‚V“Ö»øôwl˜rÃôûeõ‰’½Ê=o7›Ì','',0,'?'),('™¤ØË¤-qIÇ”v[E‚	+','wp-content/plugins/jetpack/modules/theme-tools/compat/twentysixteen.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ê7ø±JÎÀýr.?´Ñ5','ñu\rûýï¶–OÔÜ‹:žÒàèÚÔ¸‡uºÖa{Þ','',0,'?'),('ØÐ…šJ9¥Ýê5\r9\Z','wp-content/plugins/jetpack/modules/theme-tools/compat/twentysixteen.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÿ­ln`Ùã*0|a	tøu','úì	Ø›l”Õá^½‹Ì3R¶žíÅÕèeö»v³','',0,'?'),('ù@;øNè\n²°#¶|à','wp-content/plugins/jetpack/modules/theme-tools/content-options/author-bio.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',')|´/Naü5åàYÌT','#*(˜l0\rªK`°‡ôCé÷ÌÐl@qè+úŽ\\.÷Ï','',0,'?'),('s õõUì!&ÎA¹k®]','wp-content/plugins/jetpack/modules/theme-tools/content-options/blog-display.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','O@GÖ*~2dIïZR+','ŠD“à¥ËË™`ê³u6sâ¦^Sºt†6ÕÃd#KA¦','',0,'?'),('‹ÍeëMXÑ\nFÌ©æë#g','wp-content/plugins/jetpack/modules/theme-tools/content-options/customizer.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÜKß—ÁÍ±¹ó²i•','cŸ\\ƒáïôËCo,{}lB!×X(j+ÇÑ8Ý×§','',0,'?'),('i÷Šð¢ä*I…bÉf','wp-content/plugins/jetpack/modules/theme-tools/content-options/customizer.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','?Ü ¡Ä“±CÎW)jÅ˜','ÊÁ+s£Ð/Eqk÷	ÍÔäUÕÜ-û†qí«2','',0,'?'),('Ê$=(ïZS½õHZ¸®²RE','wp-content/plugins/jetpack/modules/theme-tools/content-options/featured-images-fallback.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¸M:ÛÞ<\r6°\\´üX','CdG™Š1a÷£q¦gp+K³F¸T¡q¶¼a','',0,'?'),('Âã.f\n»’à…¥`Gõo','wp-content/plugins/jetpack/modules/theme-tools/content-options/featured-images.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','mîô¤V­¿ÒPN˜\r','¹jM*!Þ\Z!2v¸Z+ñ‚Mô‹È@TâÇÐ¤ÀðØ«®','',0,'?'),('ý9N?=D@ùåõç','wp-content/plugins/jetpack/modules/theme-tools/content-options/post-details.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','^õM­øNŸC¿wâ§n','ªì4ŽÒÝhYØ?çè‰z÷R·Ñê¢^,RÍšÎ°','',0,'?'),('Î’ €7Sá¦ŠÑmÛ—','wp-content/plugins/jetpack/modules/theme-tools/content-options.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','õDã§Ü3ƒ˜£\rCÜ','4FQë^£á-žHw®“–\'FÒjR\'\nGMÏcñ','',0,'?'),('!]@‹z­jò|çL¸','wp-content/plugins/jetpack/modules/theme-tools/featured-content.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','X®Ò¿À±9‘FV«l—P','h\nÙE Ý›Ç‹4H&úPìûË›Ü´ˆ·RqÇÞ×‘VŠ','',0,'?'),('k¸2nJ÷YuÛ³Š,OG','wp-content/plugins/jetpack/modules/theme-tools/infinite-scroll.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ôÓaè™EÉ9.ð@(‘™ª','Ú`.ÓcŒæ‡º õ§ÆVjZ_Vk+ŒúQy>u','',0,'?'),('¶ÙæÔÚ*°¸„Ý~[	GX','wp-content/plugins/jetpack/modules/theme-tools/js/suggest.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','©b±Ã¾Î\"µ·(á_','=ÝVœR“W8ùTÏ¹tú\r¡q%VÄ;TGƒ[Åž¤jÝ','',0,'?'),('”À­ŒY\Z…³²„©}®À€','wp-content/plugins/jetpack/modules/theme-tools/random-redirect.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','‰6/ç\\¼/@šB¿KÑ&','UÿUá:QáQ\ri\\Ã?¹¾O±¿;T` Ô%kÆ','',0,'?'),('toƒ”¿ØT—$\\:¹IäŒ','wp-content/plugins/jetpack/modules/theme-tools/responsive-videos/responsive-videos.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','NCÌúþ@af`.k_zç','×äÕ´b”èøeû[ý÷þW4>W³™6€ÏoÙÜÏ­J','',0,'?'),('®ù£üÇ¬‰ˆ¸ÖÌ®½','wp-content/plugins/jetpack/modules/theme-tools/responsive-videos/responsive-videos.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ñßaSÃºXŒOá¢“ŸMš÷','ÅÂiDäë±D·c£]©„òEû¯ã0,~±‹Ñ','',0,'?'),('¨\rp4íÇ¥q¹½5	ÌºvÂ','wp-content/plugins/jetpack/modules/theme-tools/responsive-videos/responsive-videos.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','.¼	\0¹œÌÄÓËæ','àÚÔ‘îÔÉ¥Á|_EeK¢Cê=7·÷e^¶»FZ½','',0,'?'),('ZçŽØ«½utÒm¤@','wp-content/plugins/jetpack/modules/theme-tools/responsive-videos.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ûÆHO€è‹@¿dÅßcz','×- A\"j3él@üQãÕBãRKšê¶9Õ†ÛUÁ','',0,'?'),('ŠõaÍÞmÛÓä¥ŠÙx­','wp-content/plugins/jetpack/modules/theme-tools/site-breadcrumbs.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','$õ¸Õ¬E7€@\nÓKÍdU','‡ýRôÿ$–•è½ÐF›L¨’—“Ò62ÑÃîBºÌ','',0,'?'),('êÍƒí,€ÖohNÑ„l ¸','wp-content/plugins/jetpack/modules/theme-tools/site-logo/css/site-logo-control-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','’ˆ‡¨:”Í± º<1‘œ','?6M}¼¨ÌîÉkjG;QÂš\r©-^Ç}$]Óð5ý','',0,'?'),('ëúy03ïº)à²–\0%®','wp-content/plugins/jetpack/modules/theme-tools/site-logo/css/site-logo-control-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ˆ¾†oòèÂD„2 ½ª	uö','¾^”< \"ówêAS$^××îj9Ââ\"Ñ3*','',0,'?'),('‰rcäQS<\nßk»õø¥­','wp-content/plugins/jetpack/modules/theme-tools/site-logo/css/site-logo-control.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','N8×OÛƒ\"m ´ÔÃfŽ','Ò‡dÓo¨.£boIº°/èé°ü¨TSHÉ‡ƒpÀ','',0,'?'),('Ä¬…wmøfìö½oÇÅ','wp-content/plugins/jetpack/modules/theme-tools/site-logo/css/site-logo-control.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ˆÄ*Ž>‰ÿµË†¶¥\\','’	 è³w_úuhe»ÛK–‚²qS<—¯ƒú¬ˆ„ªöh','',0,'?'),('Iõ6/VEE|×d”Îí0','wp-content/plugins/jetpack/modules/theme-tools/site-logo/inc/class-site-logo-control.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','b²L×iï„*ìà,Ü i\"Õ','-}¿Yö?s*ë=k_iŽÆöàW WÈ¾)ÎkÃœ','',0,'?'),('•x>ÔÎB>•sõ¦wª¦','wp-content/plugins/jetpack/modules/theme-tools/site-logo/inc/class-site-logo.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','²ù-§C6-1®Ïf#ù','ªˆcÁPRÈÒûEÝaè	;Eëó|5I•r@…(¾µ¦ç','',0,'?'),('çbÆ¨tq<>óvb','wp-content/plugins/jetpack/modules/theme-tools/site-logo/inc/compat.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','‘WÉl^[tBåÅbP','*Ð–à2B,ƒQ~Í]@³`ÈæØ\'bžpî`ìÇ','',0,'?'),('²§ãÛòn)\"ÿ–Îí','wp-content/plugins/jetpack/modules/theme-tools/site-logo/inc/functions.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','‚©óumG\ZÂ«–—Òt','2ÛYœ\0.Æ‰±ÒhÆB‚½}üx2¸põûqœ=ÂQh','',0,'?'),('ä¸ùÏž­/~½Í*c)c','wp-content/plugins/jetpack/modules/theme-tools/site-logo/js/site-logo-control.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¨3˜þ‚NLËñçmë<­','~1è ,Ì.\0„\0#CÜºî\0~`–\ZŒ¿L¥Þ›ÍžØ','',0,'?'),('§©\r.ŠQ‘æïŒ	%HÇ','wp-content/plugins/jetpack/modules/theme-tools/site-logo/js/site-logo-control.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','>ÈîmD]•ö!Ä‹\rãîU','óÉ{‹ÃýyÕÁg.ï(-o KöA(Á{|+€CAŒ','',0,'?'),('¯~š¥Þ4Y.â‹Húà','wp-content/plugins/jetpack/modules/theme-tools/site-logo/js/site-logo-header-text.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÀXârÀ_£+2qëÄÚ|]','OBù ¦†oE–	\'ìø¶Ô\ZïlP1I{ä\rn>62¤','',0,'?'),('÷)³!¼j´²r¥!b¶','wp-content/plugins/jetpack/modules/theme-tools/site-logo/js/site-logo-header-text.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÛœË•êO“Ž­:”Œ¥ü','¯˜‰Ö\Zs2\'\ZžNsrGÛhly†	óÈ…hyøD!k','',0,'?'),('Ò±ø¿ÅtpDqú›Më²ð','wp-content/plugins/jetpack/modules/theme-tools/site-logo/js/site-logo.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','«<öÖtlÞ ê8<z·—','ÐFÕ¾åbw„·sW0Œ±îÜGÅ”#19ï7§»‡H','',0,'?'),('Õ¦°ˆê´íB$\naTíb*','wp-content/plugins/jetpack/modules/theme-tools/site-logo/js/site-logo.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¿%(ø-Uñª2ÂÐª>','\rÒä‰v„ÓÂ:\0ëyÁfM9sÚSny‡3¬ÊšÓ\r','',0,'?'),('NWLM¢JµÁšá8Ü$:','wp-content/plugins/jetpack/modules/theme-tools/site-logo.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Bz•)È{?=•_†ÖÚÐ','¿;(ê¡º+h‡ÍÎlÿ¬ù\Z¾•S+W/•ðzÁH‰‹','',0,'?'),('</(ôÑ2¤²˜]Þ‘þ—\'','wp-content/plugins/jetpack/modules/theme-tools/social-links.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','óIbQ¸ÜªÚÂ¼ÈLDÿµÉ','\rµø9j%Ñµ\"ºe:M«§,kØk–\"‚\'%:Öœ…','',0,'?'),('þ_8[‘Ù¨û}‘hìC3‡Å','wp-content/plugins/jetpack/modules/theme-tools/social-menu/icon-functions.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',';ãêWŠŽ¯Â*K‰D','Ýs\rQn–ê©,Õüí…:ñäãqn–Vy\n–','',0,'?'),('ÒôÃ¤6â¡’õÈ>íR£À','wp-content/plugins/jetpack/modules/theme-tools/social-menu/social-menu.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¸¹_üôÄ½ÌŸÕÞÊ','3çZh/3×¿¿á¥v¡ä5ð2¡\\\re¶Æ¥Óè¥âW','',0,'?'),('¤˜Âƒ¯†²)%*ñX\Z','wp-content/plugins/jetpack/modules/theme-tools/social-menu/social-menu.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','wðòÅ°ÐÔ`ì)´:ã6Ó','íÅYìm¾Ã±‹u¶ÐîK„ä—O1ßÊ!V%œÃ§','',0,'?'),('aÍ=zAÀ–E©èd:8®è','wp-content/plugins/jetpack/modules/theme-tools/social-menu.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','þŒÞÙýJq\ZJÌ¦`','ÇÎ šwªçHgUXå_Ö›d:3•já\"Âpv*Ù','',0,'?'),('n†{D’‘0y¶gq:Õ','wp-content/plugins/jetpack/modules/theme-tools.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','º”·×Ûwõï2oÒ@‹·','Òj2æYõñØu@ZMµ;0:¿¿^ÌéÈi;I=Â³î4ì','',0,'?'),('‡‚îh:^…ÁKßFâò','wp-content/plugins/jetpack/modules/tiled-gallery/math/class-constrained-array-rounding.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','²k<p>€r¾ˆœ’Ù\n ','œPïú#b¹1Qþ	_`ã@Ý|tÅë«âÅæ·','',0,'?'),('åh±‰²³\rÈõ.Vè®z','wp-content/plugins/jetpack/modules/tiled-gallery/tiled-gallery/rtl/tiled-gallery-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','µŽ¸JW!©ÒR)s{½ñ','%‚œ¼ö\reÆÍma€g<šÖBFÐËÐj—{ï#÷F,ÿ','',0,'?'),('öýd>6GO‚ƒŽ¹Õ¾','wp-content/plugins/jetpack/modules/tiled-gallery/tiled-gallery/templates/carousel-container.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ó/¼¡Óð¾¯Mþ?íC”‚','Š¨WÏü{©éïÎï™ çZ_H¢XlÏb5ïuö','',0,'?'),('6·V¦c%¸=ç++ˆî','wp-content/plugins/jetpack/modules/tiled-gallery/tiled-gallery/templates/circle-layout.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¥ÊüMÍ#¥8IR®','¥,ÐÙGCÏ¡ˆð¤Ú-°XÒÙá¼¹š‘¨ù€S','',0,'?'),('cTÚÐÕ*5¿9½°TÂ…','wp-content/plugins/jetpack/modules/tiled-gallery/tiled-gallery/templates/partials/carousel-image-args.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','/Ò¦I±¥ì©¿ãÝAÚÓ3','wÃ?±Ä|ÛNxù:¨\00d)F#S@\rE›©\0','',0,'?'),('1knm´D†Yy\\ânW¿','wp-content/plugins/jetpack/modules/tiled-gallery/tiled-gallery/templates/partials/item.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','fÂµ¸öcÒ»¶<$nŠ','µXÅQ§îT7´õ2¹¦9,±ÎÆtê;ÿ»\"Tf>','',0,'?'),('™1õh“Ø­\0¡;íŸ\"Ô','wp-content/plugins/jetpack/modules/tiled-gallery/tiled-gallery/templates/rectangular-layout.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','‡ž­×¹7Ø„ä=6ô\\','°b¬éžz‡˜;½MàŠó„Mó¯dQs•Š\"Ð[ ','',0,'?'),('Þ2d—n.lóÿTçi…wÇa','wp-content/plugins/jetpack/modules/tiled-gallery/tiled-gallery/templates/square-layout.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ÿ+ÔéÙÚLËˆiØ–a&×','­åàW*.€&Á±úš9a0KuÊQ°:®A4ñXE×é','',0,'?'),('ZÔ¦,èOÔ•´7¤n›Ðk©','wp-content/plugins/jetpack/modules/tiled-gallery/tiled-gallery/tiled-gallery-circle.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',';™?ä¬+¬bÍ Çw¦v','-ºý-s¤ÄO<ÅÖÆX#é±Å&…W)# <“','',0,'?'),('nÙŠGlä¥^Å¨O¾…@~','wp-content/plugins/jetpack/modules/tiled-gallery/tiled-gallery/tiled-gallery-item.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','R¶5` Ú—ÿógÉf¶','D	pW\\\Z€ ðG,\'Özß¿4ÐžRÎeä‘Y-÷-}™ã','',0,'?'),('†ÎsjàGdGkÏ€+W™','wp-content/plugins/jetpack/modules/tiled-gallery/tiled-gallery/tiled-gallery-layout.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','»hlyJE”sC;Œ2+','&d¥®\rÎ÷¿ø([¨þ°®@^¨Õö¿g‰ˆ\rž×<³´','',0,'?'),('™RÁg¹z‰!2›dPü','wp-content/plugins/jetpack/modules/tiled-gallery/tiled-gallery/tiled-gallery-rectangular.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','$<zQ„y»®&Æ§h²£,','®®ë¿~~œÞ,“	;€ Va{¿{f¾?{táRW±™«/','',0,'?'),('U;‘LööcàVâA	<','wp-content/plugins/jetpack/modules/tiled-gallery/tiled-gallery/tiled-gallery-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\"M¸‹dÒwµmƒ6WŠ)Ô','½&³óohÄÛŒâëhs¢<¥«ìÉ“œ/óQN–Üía','',0,'?'),('9¶{ô+=-O¬e>Vž\Z4','wp-content/plugins/jetpack/modules/tiled-gallery/tiled-gallery/tiled-gallery-shape.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Q2lðÕ\nûÎŽ_yà8','(v¯c‹²È˜Ñ;ù{ R<”Re+˜â2	Ëzø•ÐÙ','',0,'?'),('é!ÓÝèï`í¥n»”«wø•','wp-content/plugins/jetpack/modules/tiled-gallery/tiled-gallery/tiled-gallery-square.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\Z¿2˜È-ƒ;PŸ¬õ,’š','÷©Ë›¥!ÿ–¦/ÝøEJÅj8ÂÈ¹Ý4ýà¼','',0,'?'),('¼\"Äd.…³£hcèù˜Ñ','wp-content/plugins/jetpack/modules/tiled-gallery/tiled-gallery/tiled-gallery.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','+0Ñ¬„3yjãr<•¡þ>','Ûj3øcà¡Ð–Ðad²F·œ^\Z,HÃã-:6`Ç$,Ò','',0,'?'),('…­®„µëCÚDL¾ý»¸¤','wp-content/plugins/jetpack/modules/tiled-gallery/tiled-gallery/tiled-gallery.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','TOø>Ø}q×Ûí/3Éç|','‚@ò¼R‡Ë(ï£ð“LÅrü2ñ§sÇ˜sžx]QS','',0,'?'),('&Ð]±ÏŸp†«ª‹º¸ ™','wp-content/plugins/jetpack/modules/tiled-gallery/tiled-gallery.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','º£º¢‚»Ç§tº7.9O(','ê\Z\Zü!nÕ$û>·•{¾/§ÌúÛÅ°dúWMw\'2','',0,'?'),('çÓ}I…ªâý¥;ˆ G','wp-content/plugins/jetpack/modules/tiled-gallery.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','²ò‚§ÓP(	\0QœÑ”šÃˆ','jnGcm\0W!›QÑ?ŽXê{1øa‰À”\'Å–,','',0,'?'),('jœß³.çGRÅÖeGêžË','wp-content/plugins/jetpack/modules/tonesque.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ž@µ¾§ŸÎùµ}‚.óP','‰ÐPØ9ƒSdˆ[Aû%w”²f«=À•¼l•','',0,'?'),('ŒÞu„W€U7ºÏ','wp-content/plugins/jetpack/modules/vaultpress.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','+Î{<q–0.›dC6	\'','çAéÌ¡~Da‘}BeÉ*Ù|\Z­â)â(ru¼Øšz±ë','',0,'?'),('6ô¼(à¢©Z]˜ûG¼µÒ','wp-content/plugins/jetpack/modules/verification-tools/blog-verification-tools.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','RC®cûã.u–¡Eù','yQ7ç¦á)ìûÉMy˜m­Ç¦ÞC(z°ro_å	dÌ','',0,'?'),('BV·*ª´÷\'¥0GE€öŠ&','wp-content/plugins/jetpack/modules/verification-tools/verification-tools-utils.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','VX\r„ë/Å5ŽãÈ«ì2','”ÕÍQénÚ:eHˆ[Ñ³‹ìÂ	TOFÎŒÎ—s*','',0,'?'),('+Ó³„’S’h@<–}DME','wp-content/plugins/jetpack/modules/verification-tools.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ú“»;&Vrh\Z§Õ¹','ðƒ4-T¡_’?f\'	ÿ•–_ÞVŽ“®CDSöTÀ','',0,'?'),('Æ—€Åó¸gÛÈÌÜŽ','wp-content/plugins/jetpack/modules/videopress/class.jetpack-videopress.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¤D}(ô\0V%äÖF+Yï','&™lÃö=¯m¸’XÈÎdÄ\0\\êfƒCø>\0ÕÞ','',0,'?'),('uüÒÓ×ÙE§\\ê\0>Ì','wp-content/plugins/jetpack/modules/videopress/class.videopress-ajax.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','4ÆÕ×Ý†Coï±bZG','Þ\0Äc\0L¸)ýr	Ç²¦ÍGnEð995,\0¸R†Ìÿó','',0,'?'),('ÆÕe;À[©gï³Â•¯Š','wp-content/plugins/jetpack/modules/videopress/class.videopress-cli.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','òÅD£ôÃÃË¢À8~BI','Ýà»èåec¦kSPkÒÏ6 0ŸWÎñôWP°7°','',0,'?'),('LûVz¢xoYI_,Ú÷kCÀ','wp-content/plugins/jetpack/modules/videopress/class.videopress-edit-attachment.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','­¥œ–•R$ƒÛšô¬Ïc','—Úg$æÒ1hˆ0úSRÔe¬/P}tùÌZÉ”\n\"e','',0,'?'),('_U¼m!w»“Ë(šá¥','wp-content/plugins/jetpack/modules/videopress/class.videopress-options.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ž…ñ8¸\r­½š§JÚ¶',';®=³K42Î…ä,öoÊészP\ZQµ˜ØyÙ¾','',0,'?'),('+c“s´<P‡ÍÈv-','wp-content/plugins/jetpack/modules/videopress/class.videopress-player.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ˆl2\">Ò‚Æˆ¢òŒ«E¦','>ŒÌð·ñŒßK&výt:óõ»\0ýv•çHât','',0,'?'),('H‚Å—Ñ§kN~(ç—ŸŒ','wp-content/plugins/jetpack/modules/videopress/class.videopress-scheduler.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','jžúX÷0SlKŸB‡º','ªBÒA‰ŠìeˆåP’–TÍœ¿Uà1JMC8ôH73\\','',0,'?'),('¿GƒkKÖ>6cüû?Q\'','wp-content/plugins/jetpack/modules/videopress/class.videopress-video.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','èUQØ\"ýÏÿ8¯a¾ÿr¥t','5ÙJwÛN¸R~ÿ\"L\'wVuáÀ¨© \Z\nc3^z','',0,'?'),('<~9„ß>2ÙŠ\"3B ƒ','wp-content/plugins/jetpack/modules/videopress/class.videopress-xmlrpc.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','åjƒ&Æ¦kk\"Pñ-˜','M“Èé…MÖëm¨!æ2«ÎS§0J³iL_Ú÷\ZŠ','',0,'?'),('¼€ŸtVh›1zã«ÆYQ','wp-content/plugins/jetpack/modules/videopress/css/editor-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','êM/È¯’¥mnaÕãùË','ŠÜŽïý’|.´­Ã°#2+_\\™ÓYÕ¹5ã\0\r’d','',0,'?'),('†üw“\rŒ‡Ôr«Sp¬á','wp-content/plugins/jetpack/modules/videopress/css/editor-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','æ›@:JÀÖy*êŒœÝ','­Kp˜å¬ÂêüV©±¹=eb\no<È^ãƒ`šA—','',0,'?'),('BÔ¯íûDø’L¼kœ\rÃ','wp-content/plugins/jetpack/modules/videopress/css/editor.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','°œn±t²UØô‘\'ø',' ; Csµðë0Œ­EŠY?ÑƒH#—)ƒVÏð3N+Y','',0,'?'),('ý˜ê°’[†qcš¯yÑö','wp-content/plugins/jetpack/modules/videopress/css/editor.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','DŒêÈÇA¤_?­rípáŒ','ÄGÐÞ›²D~ŸÙ¿!&¯  ØÅtú,B„ÁÎ:èÞ&ÄTI','',0,'?'),(']*a#•mvÆÓmWÎµ» ','wp-content/plugins/jetpack/modules/videopress/css/videopress-editor-style-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¬™o-à\'jaµAÌ4‘ð','\rÉœè;°õ¥(ùH\"3>3obùðþÅk¨¹–g2Ç%','',0,'?'),('ñÝøÎC¥ûû£ÉìÛfå	','wp-content/plugins/jetpack/modules/videopress/css/videopress-editor-style-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','oÛ2­<æ,-„{â1Ã†','éò‘*\Zµ)]Š\"§ß&VŒbRi¶ûg§]7¦&ÓÜÂ ','',0,'?'),('Ä¼Vn†FX=ïê\0´5û1','wp-content/plugins/jetpack/modules/videopress/css/videopress-editor-style.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Š‘Zé›û/Œþ€’D›ð','KÝôFù;ÅáÛ™µÞt»øÆõŸ‘ÜQøüŠƒ˜','',0,'?'),('8\ný˜æÄËóÝî7þm|','wp-content/plugins/jetpack/modules/videopress/css/videopress-editor-style.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','dvöÙõ•ð#\0™ñÞ1mŒ','ì¸uEÝ(ÈÁ´\'Tu?ýÊ(T‹ç¤ÎRûV“=Ý©','',0,'?'),('Aš/:†ôrV—BÄ‹E.®','wp-content/plugins/jetpack/modules/videopress/editor-media-view.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','±ûþ\rB.4ÇUÓ’§.±Y','ôÐ™ŠHg”EžÅ9u—›uÇ~°ù,ÑoÏM0šñ','',0,'?'),('š`\r”„Ù þËªœ4k','wp-content/plugins/jetpack/modules/videopress/js/editor-view.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Äk°â©ü©‘GhüÂ¾;','õ´,w)ºwâT^ÿ[ÌK‰ÿÌê¾èVÐîŽ–Ì#§','',0,'?'),('°öízÐ\"@ÂçÎ¦Æm³','wp-content/plugins/jetpack/modules/videopress/js/media-video-widget-extensions.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ôE‡^\n+6\Z1¶d¼','[K1€\n~`ñiSÃ·u«O”ï?Ym³ýÖÇs>x•<~G','',0,'?'),('£5+eú*¤$ãÂÎ{','wp-content/plugins/jetpack/modules/videopress/js/videopress-plupload.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÜýxîY%v­ßì¶Ù5','„CÈá£aXÞ$©ííK˜\nƒæ¡Ìó¤g\n·iü','',0,'?'),('øÐ†ÞVÈh2OŽâÇN‘','wp-content/plugins/jetpack/modules/videopress/js/videopress-uploader.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','_2<«ù!íN5Q¯|—','õ‰ô9ÿaå˜yS´ŠñÖ¦ç(ÝN¨àùGÈå','',0,'?'),('´ôAŠÆ\ZR³RRv(|\'Û','wp-content/plugins/jetpack/modules/videopress/shortcode.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ä1.®àª±[@\0®~',']¡‹0Í’2‹ò±ÏéÅÁsÛ–ˆ(\"4úÁB¢Mf¯ì','',0,'?'),('˜)yñ)«­„í|Ü9ö«','wp-content/plugins/jetpack/modules/videopress/utility-functions.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ü^Ví {ê›\'Ì¼šô*¶','Rä—mÂ¨Uwƒ½ÞÈ¿(Ð¢îÍ1›ËQý3ƒ²','',0,'?'),('ÕãCØÿ—kq¸š?¨','wp-content/plugins/jetpack/modules/videopress/videopress-admin-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','`ýáôááÄ$ñ7[4gÉ','ƒG¾MéÐBî¹/\'Ý4ôõdüG§)TEš\n«:)è³','',0,'?'),('±q&Ì\"ÖíyÐ%ívÏ','wp-content/plugins/jetpack/modules/videopress/videopress-admin-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÑRlkØxÆg^‡%¨D','{\0g›–sA»¯”\\‚ª÷sÂ^O	.üÇ`X$A9œ»','',0,'?'),('aÜ„˜¢f×½kÎÍ','wp-content/plugins/jetpack/modules/videopress/videopress-admin.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ñ½«gŽzv3žð¢Wé','bÒWíR·ð%ÄÜøô\"ˆ¿ÒCäTºÆj¤Æz¬{)Zý','',0,'?'),(';Iµð§ßhÆÞNyKå','wp-content/plugins/jetpack/modules/videopress/videopress-admin.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','À˜¨´¬™ÞÅ±¸Af¸Ò','_ë¬ñ@öKeÓhƒC¤M[Ñî³jLQ}ÉÓ™êî¯','',0,'?'),('Ø‚°°tCG•€á=&‹O`%','wp-content/plugins/jetpack/modules/videopress.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¨—{MÔ$™×Pâ!³êÁ','€tP,ˆ×¨$Ìª~}çmâÀ©­A¶®é,ŒI/˜#Q','',0,'?'),('ë¿JÍ*Ž¯šhèôøNS‰‡','wp-content/plugins/jetpack/modules/widget-visibility/widget-conditions/rtl/widget-conditions-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','9[z.ë£VÖ{Zt\"(±½','‘ú¢‡„èó?rÜzo4ù5±ÊæJÆèjúÇ','',0,'?'),('&é¶Ç:€•X½¡³Í°','wp-content/plugins/jetpack/modules/widget-visibility/widget-conditions/widget-conditions-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','9[z.ë£VÖ{Zt\"(±½','‘ú¢‡„èó?rÜzo4ù5±ÊæJÆèjúÇ','',0,'?'),('¨°$þ:êÑfÇÜÏ‚Q\'','wp-content/plugins/jetpack/modules/widget-visibility/widget-conditions/widget-conditions-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','†+ÝŒÏ]¦iõG0€½','6z‚h‡\\OSkn©•ðL±Z§Å®ù¨ŒÚØÝW6','',0,'?'),('ý|Nt¹Î\ZÍðIðžˆîk','wp-content/plugins/jetpack/modules/widget-visibility/widget-conditions/widget-conditions.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\nø¸³uÀ{üÔž\npï2¨','7.Ëý-ÊJ\nö$Jÿ0\0$Šù\Z#ì%ŸfWiD2¶éÅ','',0,'?'),('<Ï‘]šÞ.>ÔFÐ`ž','wp-content/plugins/jetpack/modules/widget-visibility/widget-conditions/widget-conditions.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Àw¹Ä>š˜Å‹$Àá“z','E[Hï÷}>Õïë[ÆO¤ \r8€´æË§š<—”æç','',0,'?'),('áÎ—vD\\#Ädô ÷-ÏN','wp-content/plugins/jetpack/modules/widget-visibility/widget-conditions/widget-conditions.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','?’	’jîmÚ? 6Ö~;ü','Â\r“\Z½hçsŸ7}NžZR¾za›/<_üf¢C0','',0,'?'),('€7w	ùuÒ•x.?BŸ','wp-content/plugins/jetpack/modules/widget-visibility/widget-conditions.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¿ÿ´$\'å­™œI$Ó','AéÚ’‹”ß:™D*=Øà&!I’wKé?>°ï7½õ¤','',0,'?'),('0@pzshMe?çÒ}Ï','wp-content/plugins/jetpack/modules/widget-visibility.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','à•k4‡›Îí±¯æH¥Tâ','ýƒú 3ÀqõØ\r$h#Õxó~ËC©ý‚ÜÞ«','',0,'?'),('¨™Ñ}*Po£î¹g‚îw','wp-content/plugins/jetpack/modules/widgets/authors/style.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','„©RòˆÂ>¬—ºk¹h','!‡Ý,È]ñ,ù›œ)!å†?¥·Tõ†Uþ‹)2u','',0,'?'),('éV hÆ)·7Á*í‘•€','wp-content/plugins/jetpack/modules/widgets/authors.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\ZCÁÝ¾¸¯‰¥$î±','Ç?†M4ˆeo}ÔQ‰ÍòÏèÕ Ç§zRæ\0âà†æÇ','',0,'?'),('ß¢_ªõ¢?^p—Tóh³','wp-content/plugins/jetpack/modules/widgets/blog-stats.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','3CS å¨7<‡‚Kûn.','\"9Ri.^ÖÚ™v‡¥q!ß`:še~69¼Hˆ','',0,'?'),('ÔÔG‹Îwc»ßHüª½','wp-content/plugins/jetpack/modules/widgets/contact-info/contact-info-admin.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ú*96‚ÄØ)9¥$«‚\"','1_[¨7}-à,6l“Ó»W=‚[ŸGN1–…ü\r','',0,'?'),('Ë:lúe\n\\3 Õkºç*','wp-content/plugins/jetpack/modules/widgets/contact-info/contact-info-map.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ìw)	>˜D ìå×ê°','$M°Ä|g:OK}‘,!Í„/Ô…çŒ/¨¾Pr¥õ²','',0,'?'),('az‡j[2+÷}b\"°4Ž~','wp-content/plugins/jetpack/modules/widgets/contact-info.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','|Á%Á™SU¨ÍèJÅ+','Áá\0ôCº¢#ö¡((6¢±†i£«ÄEýÅeNhE·™','',0,'?'),('ügŽàò”X“g—Zzô','wp-content/plugins/jetpack/modules/widgets/customizer-controls.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','»x/ÐŒzaüíá¨j¿SÚ','d%¥0í-VµpiÄÿó“¡\0­×—¨ÈÏVPLYõ½à','',0,'?'),('Íz ã‡9QÛæŽå²”5c','wp-content/plugins/jetpack/modules/widgets/customizer-utils.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','6ÂEÛƒ³„ÆõÈù=šÑ>','h£Ú†\'#.×y¸ÛòÌ{DÖ—ð–„¥ë>U4†²','',0,'?'),('iGi[¬¥ÓLZøgF6\0\0','wp-content/plugins/jetpack/modules/widgets/eu-cookie-law/eu-cookie-law.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','w0ž?2êö\\×<£zg','Æ›bMÒpBàXçyWt%Ê âžà	r’»AP÷ n+','',0,'?'),('RÔ¤]xc°ø$ýÊî×¶','wp-content/plugins/jetpack/modules/widgets/eu-cookie-law/form.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¤8î—)$ù ~ß¼\rÃ','(È\0ÈuÌaœ\Z&îå¾«ùÊ¢]ÚÇë¦¢œPŽ','',0,'?'),('zøª`º”sTŒÜK<¨¬Q','wp-content/plugins/jetpack/modules/widgets/eu-cookie-law/style.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','<ßÀZs_FúýÐaª\0ÉW','“¹èÈµâ„Àªwpw®ÜWá.òyÍ—œßÙLë4e','',0,'?'),('¥§˜§>ŽþbÐ·´†c','wp-content/plugins/jetpack/modules/widgets/eu-cookie-law/widget.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','té“KWŠCÍ.\"\ZÅsNœ','ã ‚¦šÜ#@oG¶S:Ô×È¥a‰8tß¨ØVYšð','',0,'?'),('Ä7Í\rC)o^‹²º','wp-content/plugins/jetpack/modules/widgets/eu-cookie-law.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\0oãÃf)(klb…ó_x','¬Ñnm‰Q¥à1¸ýu}®µÅþ^Îp\Z+Ô¶S:Úã','',0,'?'),('Dö¸ÆØ¥ç/Vvõ&','wp-content/plugins/jetpack/modules/widgets/facebook-likebox/style.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÃÐ@^ú…pÒ%ã×\ZFN','}$É\':OˆðÒ1y>?åüblGÂAäX§åK+','',0,'?'),('+ØŽg¡BŽ‰Þ•KÇ','wp-content/plugins/jetpack/modules/widgets/facebook-likebox.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','x©2¯¨L×&õïñ›','ÒY¼J¦1Ík Kdyˆ]îºúUªçÈ–Ë8$ñ£J&ƒº','',0,'?'),('ëcP’}Á–•Ñ©','wp-content/plugins/jetpack/modules/widgets/flickr/form.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ÿž„®(FôŒ–¡e{ÿ‹','‰mŽù—\"™€-g5š¶ 3¿á­e¹â®¹÷:','',0,'?'),('h†º5Z€ì”x°‚œ¦Ä>','wp-content/plugins/jetpack/modules/widgets/flickr/style.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','os°ÜÄ¿Å\0#ìë/K\\Ô','[ÔukÖþ›ãoÀÀey»cs9ÜpÇ´\"ö	®ä','',0,'?'),('ýþþÝÒ=O÷µ¨ö*3','wp-content/plugins/jetpack/modules/widgets/flickr/widget.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','@Ú8s°ùÂQVÔ5Qµmì','ÁJÓÿK3Ôê°;M•éTv\roŽìòpËmçI!_…','',0,'?'),('ˆ~Û4Gw_eôuâ¯','wp-content/plugins/jetpack/modules/widgets/flickr.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','‘N›	ŽL£+Q6˜Êx','–îkÏÍÜP\0œGÁFá;6W@åµ·$™–³OVÞÆ','',0,'?'),('U­§ õø#5H¸2R¬*0','wp-content/plugins/jetpack/modules/widgets/gallery/css/admin-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','`È´œ <úçGõƒ÷Ã¯ß','Ç—þ®ù³Ž¯&³»bIæà}Ì\rùa6í´¿!³S','',0,'?'),('ÔýÍJ1ÙQžå¿€d0®áw','wp-content/plugins/jetpack/modules/widgets/gallery/css/admin-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','*g1œdú#°´¤½S‚¸','=0¿\nFûîu(fã“sÐ?¯aÅïoS!@î5Ùø}§ÇÊ\n','',0,'?'),('3;þ|øx»öÏ\'6','wp-content/plugins/jetpack/modules/widgets/gallery/css/admin.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','a–bb¤x`±ND‰ˆvÏ¼','æÎ‘„Ý&ÚÂ3Zbq]÷Î\nUèŽ_¿´:*0p¼','',0,'?'),('@nÜ[e*>ò (<½\ZP','wp-content/plugins/jetpack/modules/widgets/gallery/css/admin.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','‡ŽÉ$øì;ª¶˜ÑÒ©=','ôÈ$õ¼i(}([oàÆx¾Ž\0E„‹§h„‘­ös¥¾','',0,'?'),('qõ¯\nøøU@?','wp-content/plugins/jetpack/modules/widgets/gallery/css/rtl/admin-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ñ3£¶”†ÃòíôÍ;)C','(–¹>M²Ë< q¯¤§–¾så0Ä|Såi‡A%P','',0,'?'),('ŠàÚB$\\dª˜á!Æ-S','wp-content/plugins/jetpack/modules/widgets/gallery/js/admin.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','<¶a˜ÜLyXÓ‘êð1ç','G²¯3=zàuVÏg èM®¯p\\efUY%ç‹î','',0,'?'),('ð±POŒþ\0C~ºUí2ñÍ','wp-content/plugins/jetpack/modules/widgets/gallery/js/gallery.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',']\0‡læÈ@@:’Í~','”©åp³D\"½»nlÌo†BbT˜ú%ú&v','',0,'?'),('ž–Qõ(â<ýý\0m•','wp-content/plugins/jetpack/modules/widgets/gallery/templates/form.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','xüƒZ@XàÆÍŒÿ‡á%','í£6yÆÒ3]}¿/T¡™6u«´ŸúŒœ‚+\Zž™\r','',0,'?'),(':qX=CË\nD¢,©ìÿþ','wp-content/plugins/jetpack/modules/widgets/gallery.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\rº!TäÞ”+\0<MÛ\'ú','1\nKq8ƒŽs]’ÎnqŠÕ½øÓê|ÁN„ºlxÆ-Òu','',0,'?'),('¢u¬9†›Ø6Óã‘\'>','wp-content/plugins/jetpack/modules/widgets/goodreads/css/goodreads.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','³ÁP1\0ì~0ë¹Z¡Á.','ñ‰ûðY“{Â×V™Ï´Ê>¢¼*÷\n¶6m/”×’|è','',0,'?'),('ÜÃj|‚ì±øÚ†ØH!','wp-content/plugins/jetpack/modules/widgets/goodreads/css/rtl/goodreads-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','‹¯\'·*,‚\Z™„™ç&','¢“l&´e{oø>§-„>=(V‘	ZÛ²7LÍ¥;Cy','',0,'?'),('Ðî!ËBºž¡Mî','wp-content/plugins/jetpack/modules/widgets/goodreads.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','§å|Q R \nFÆ}à=','é€¶\\^|õd^À»Âv>lä²­¤Ázž³üTU]Äò','',0,'?'),('¶ŠsÙá÷#6×’\nêÂ','wp-content/plugins/jetpack/modules/widgets/google-plus/js/admin.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ö”Þ7&þb¨#é–¡—','Iáë¿í\"/%ùÖR—÷ÿÙÍÕ\"|‰ÅÞçH‰€™J','',0,'?'),('b\\EJÔiÖL{t','wp-content/plugins/jetpack/modules/widgets/google-translate/google-translate.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','üXQAîñ­WÖì\"»','¤×œ¼ôÚë„©€d±©©ÜôøÀ¼Qà8WÈjýÏý¸H§','',0,'?'),(';Æ$ÈOË\n³MXcyŠR','wp-content/plugins/jetpack/modules/widgets/google-translate.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','QçÑ˜«ãˆýêÂ[¹ô°Ú','Û,¹§FGR¾4ñcØºLJ™zü¯K÷íÅVÖ:N','',0,'?'),('dŸ‹®ŽÔT»˜0•ÆÕ·','wp-content/plugins/jetpack/modules/widgets/googleplus-badge.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','R	NìúËùË@œq\'#>','M¹üïÜžŠëÁ‚âŽƒÖ2ï´¨íØ‰I+7;9žô','',0,'?'),('iÁ/°ú§0Ê¶\"#W”','wp-content/plugins/jetpack/modules/widgets/gravatar-profile.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','õÜ5xQ¯2%ïX7ì','Îz)¾¦kIØ¡›¤æ×Êvy!8ŠŽÈõoûBø','',0,'?'),('GžôÿroÖ`¬z‘ª¸','wp-content/plugins/jetpack/modules/widgets/gravatar-profile.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','M9Àêaë4$\0É–ÈÇòÃŠ','xoL^GóL8;ctèóIŽeÄd¢-\'tc\\ÂÇö','',0,'?'),('vÿô^òÈ¡³CìÃÜ®ß','wp-content/plugins/jetpack/modules/widgets/image-widget/style.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','rÔ\0Å™â<!“\rÛXúM','TA3¸¦¯‹/‚ßécª­@ã¼öHu³áƒ^	Û','',0,'?'),(' Pw*º;°]š«°\0…4','wp-content/plugins/jetpack/modules/widgets/image-widget.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Þ…äº/…MúÉƒÑÇ–Ò#','\\íG %Jò¥\rÒöÂ¢7W¼€\'»AHÒGëºü×‰d','',0,'?'),('[(þ	HÐ¹ËüÉùbW','wp-content/plugins/jetpack/modules/widgets/internet-defense-league.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','yOCµfãò¬˜tºµ','Ð\ZãºÂÛá¨÷{pP>‚æE\r¨¦Q¡h2®øí}\0b','',0,'?'),('§–.W½þ—æ‰–`Ã¾','wp-content/plugins/jetpack/modules/widgets/mailchimp.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','×›â©Ä‘ó,^(žJ','ÈÓäiÇÈëL6\'Ó\"žBmþÀ+ßçá53Ùhd¤›ý','',0,'?'),('’9\":æHÍqºljµÌØ	','wp-content/plugins/jetpack/modules/widgets/migrate-to-core/gallery-widget.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','‰)GB­ÌC,d¨žj\r+Ù¦','v)üäÌ¥8gî¯-*ÑÂÅØoÖe5å )æ>‚9Y','',0,'?'),('4•*É·”[†B“Œ¤FIQÙ','wp-content/plugins/jetpack/modules/widgets/migrate-to-core/image-widget.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','#˜c«Ï–.ïB_Ø','Mm[Ž+G©É$l.ZÀÀÑÙ}äMc,ÝªÀK9xÄâ&O','',0,'?'),('NŸ˜zˆ7µþÓó‚ìñ','wp-content/plugins/jetpack/modules/widgets/milestone/admin.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','§Ó@;lÊØŠöƒ×å_','h¦óË+XšÎ! `-Ã×¼R…—¬”¹)a±€ä','',0,'?'),('yÌôNËŽž5U\ZìþcÃ','wp-content/plugins/jetpack/modules/widgets/milestone/milestone.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','§BÀM}ø¥ÕN\\4\nw­ª','kÆ·Ëˆñ5CÆÖ:ëÖUÞvãƒETÓÀÂ	)xJÅ','',0,'?'),('*†ùe@µø4ät*XÆHí¿','wp-content/plugins/jetpack/modules/widgets/milestone/milestone.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','îæjw¥áô{¿×¯¯','•\'÷ÿ2iãÌ³Ñ¤µÈ†o‘NÚ@Jæsß','',0,'?'),('1^\Z¨g0\"+1÷‹','wp-content/plugins/jetpack/modules/widgets/milestone/style-admin.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',',Ç¥Í\n>]%{{ùÌ¤=Ú','-E8*§´pˆB\"&OäõØ·Xž¨•‘gÃ\'&H','',0,'?'),('ä«}+EäùíÉ$$H^ä','wp-content/plugins/jetpack/modules/widgets/milestone.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Qà5L­6s\\¨¹\0g›“','B)mÝÕ5ðûÎ­øíé\Z›\'wy\\UÂÛßÛ·Xuƒ','',0,'?'),('Òóõ)›À]ý5ë','wp-content/plugins/jetpack/modules/widgets/my-community/style.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','.·ºp÷¥±¢Œ|™ˆ\'ü)','{X<èšn¬;±ñ.àk‡Ûä½ÃáË\r¿*;yÜ³','',0,'?'),('m˜ôXåÙVYQ›ÍVØO','wp-content/plugins/jetpack/modules/widgets/my-community.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','P²öw÷:›7mžUyNÔ','™ÙS¾˜Ïs2ù±0mƒE¾m<›.2j>2õÍàƒó','',0,'?'),('nJµ ³€ëâîÙ.+','wp-content/plugins/jetpack/modules/widgets/rsslinks-widget.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','wõ_xé:ßFwÞ×«T','»§f\nÄæ*¦QØ`H8ÝÏ¡¥Ðz”Ló²?áÁ','',0,'?'),('KùãuO6=-¨G(Ü','wp-content/plugins/jetpack/modules/widgets/search/css/search-widget-admin-ui.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','SÖ2ûã—²+®ÕÄj','ÇƒÁ´‰\nS•…kÿ=þXø”åôQõ¡¹¼]k','',0,'?'),('îiÆ8`åIÿg´Ý+÷','wp-content/plugins/jetpack/modules/widgets/search/css/search-widget-frontend.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ßa‡™y(NÈ‘åU§Q','fæ&bË‘«àŠÔCàÔêÂ²&ˆ2» YIþhßó¹×','',0,'?'),('ê\"µþ}§AÔ%Ëø]£','wp-content/plugins/jetpack/modules/widgets/search/js/search-widget-admin.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\nñ¹‘BûC¸î3Q0,\0','æðäG&7ª3ƒ&#¨ëƒµ_¥ŒóØ„ƒ4ºö^\0','',0,'?'),('M¨šäñú¡xz@êîÊJ%?','wp-content/plugins/jetpack/modules/widgets/search/js/search-widget.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','²šEªôKÖ¼üVd°”Æ','vª•k&h/ŸØX™Ó7ˆ	¯õDÛ…Ñ_‹íµp%M}','',0,'?'),('`½–eL¤g!ŸZgÔ»ûÜ','wp-content/plugins/jetpack/modules/widgets/search.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¦Cß¤u–´~rˆñ.¤i8','ƒyû’6´”êÏE=«~\rOŸiU¡¢žN|\"','',0,'?'),('€&xêLÆüã^—','wp-content/plugins/jetpack/modules/widgets/social-media-icons/style.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','œÀ¤\Z\0À·*ÑÖv×Yà','á¥šâŒ–U¸>UÃ|¼ù$ ä[clyž•‹a.ûÜ','',0,'?'),('b <nq‡”øéí²ùA','wp-content/plugins/jetpack/modules/widgets/social-media-icons.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ü3}uEý^˜¦Ly“Y','Åõ“»¯%Ð\rÛùV$CÊVî_ôx²«æc“‹','',0,'?'),('¥ð¼‡PÙæ\Z¤Á 9‚','wp-content/plugins/jetpack/modules/widgets/top-posts/style.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','od¢Ø\Z”cêÍh\nôè¨h£','èŽw[L9kÌy¼ÙbÊÉÎA–a§ÂBeVC–nJ','',0,'?'),('Ðƒ\'£œ¤=à²ŽQ·c','wp-content/plugins/jetpack/modules/widgets/top-posts.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','gTÍ”MèñöUÄªDx','êýÿÝã,@²ƒ°<a”¯þ“AwiübaÚã©U#`','',0,'?'),('…êƒÀŒ†HÞ//@¸>Aâ','wp-content/plugins/jetpack/modules/widgets/twitter-timeline-admin.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ú@ã€8“r‚jkwQ·','V„KÅÿòÍ*ùe£=\"ËÖPûO_·æ¶ý‰I4xX','',0,'?'),('gršØõ©r³Bð§a«£\\','wp-content/plugins/jetpack/modules/widgets/twitter-timeline.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',';ÝÀŽ»ÐÈGñ¡ÞfqÒ','ûq—{°v;ÿø=#søœ«Q´0&R«ž`E\ZÑ¼?Â)','',0,'?'),('S¼„Õ\\íÖ¼aÄ¼‘\nO','wp-content/plugins/jetpack/modules/widgets/upcoming-events.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¿~2£þêk±xœ$g8','ú$™›”NfL\\¶¹¼Ö{\ràófTk0“Ìïàmânh','',0,'?'),('hIÍÅ›Hb¿Õ×\'§úÞ','wp-content/plugins/jetpack/modules/widgets/wordpress-post-widget/style.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','_Ê3WCiç«—ôÄp ŒÕ','ä­ô°v_—±7Qöò‰öÑût\r\0mZ…vÊë-ùó','',0,'?'),('3ýiÝ-znÒðêQ¹†Ø$','wp-content/plugins/jetpack/modules/widgets/wordpress-post-widget.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','l¤×æ£WÒ8†ˆ/©½\n','EÑµê¤6u?€[r#ØcÎÆÆã&ÍÃåKuÌ(','',0,'?'),('”«?¿½Ï‹è‹O)\0ÿc','wp-content/plugins/jetpack/modules/widgets.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Òw?†!EÌ{°¤˜TùLL','ÓJ¦À±°)ˆèú	óHØyÏÐJ©‹X{ãs°µ–','',0,'?'),('åd03‘²¸õF{)BLxüp','wp-content/plugins/jetpack/modules/woocommerce-analytics/classes/wp-woocommerce-analytics-universal.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','/™7*¸èÝ«ä×å¶T','ëªeè…šžùñnKSG4û©\0GZÌéPã\'ˆ6ÄJ','',0,'?'),('[ž`žb˜;àððA×eÀ','wp-content/plugins/jetpack/modules/woocommerce-analytics/classes/wp-woocommerce-analytics-utils.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',')’KÅ8Íj`þÌÁ3=m¶','Y„Lþ)S¿šÉéÔGD­yúÂY<G?úòu@¬¾b/x','',0,'?'),('f’‘\0ëóX†îDÍžã@','wp-content/plugins/jetpack/modules/woocommerce-analytics/wp-woocommerce-analytics.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',':–ìS“ÿVwRö´Ñ\n ˆÆ','R&•Í¥‚’•Þ#¼í®!g\"#Á›ÊmR®…2S¾	','',0,'?'),('\\„,jqë (H;<	0','wp-content/plugins/jetpack/modules/wordads/css/style.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','É€ËCac\ZãÞÜ‘8N','±ø‹BV\nÆê¡¬Ùý¾¾CÅœ$æò½fp°ð/ä\0…È','',0,'?'),('QxˆyÞöÿ]M]Ð\rÐŠ`','wp-content/plugins/jetpack/modules/wordads/php/admin.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ZD ß}è_»Ð{ðT©ë4','òþ¬Ftv-”E\nJ+PÌAŒÐ¸¦¾KHW]’¦S]æ','',0,'?'),('´{%È\n\"Y;¥^Û6=È¯­','wp-content/plugins/jetpack/modules/wordads/php/api.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','pügjÌƒ»ºå','EŸY¬FHxÄ¥ÃdÈ½±\".9·I½/ÏKf~œ»¾','',0,'?'),('âßøw}}GÆ†ñæÌ³§','wp-content/plugins/jetpack/modules/wordads/php/cron.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\\â´9MÜx—LrGQY%','…Õ±°0C1G(§tÞ˜ÝéXçZ¶ÂhXáÃ·”€','',0,'?'),('Ð¿„Ut®=à£ãÀŽ\"x','wp-content/plugins/jetpack/modules/wordads/php/networks/amazon.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÉBi£ú6ÙíÙpñOÓŸ¼','Às¥ÒßªO	ú–E\Zcb\ZÏóIv¡Í®½ùs8lXo','',0,'?'),('\rõ•ÖÇ´Âìôœßÿ‘^','wp-content/plugins/jetpack/modules/wordads/php/params.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',';J%èÌË;.‰wÝâÊÛ=u','EÂÌáFJ—®sg…‹Ñâ‘ä¤ÎõôØ.Øð4¤Ÿ?5QZF','',0,'?'),('x4ò)úªÖ`¹Ôdf^','wp-content/plugins/jetpack/modules/wordads/php/widgets.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','}†¦ÿ#ÒjŽ½?[–^Éõ','.ÕºmÎ÷ùq`Ä\\¯pÚîÇ–¾\Z#ô¬IŒeŒ','',0,'?'),('ÌnéŒÄ^.ë\'\nu\"+I÷–','wp-content/plugins/jetpack/modules/wordads/wordads.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ð¥ë2ò!qúÇGþç','ÄŽï×›\Z’0 c+Ö~!’4e;&\'Î!‰öWüäð–','',0,'?'),('û{AjîÚGýÞŽ@|-ôž','wp-content/plugins/jetpack/modules/wordads.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','b*©ÜpèY@P	¢[‚','è—TOcuØF1N(]«Û±èê¾ökc=ÏJÙƒ','',0,'?'),('òE²ôf–\0§ºŠÞ¸','wp-content/plugins/jetpack/modules/wpcc.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ž@µ¾§ŸÎùµ}‚.óP','‰ÐPØ9ƒSdˆ[Aû%w”²f«=À•¼l•','',0,'?'),('©¾ë7“3¶^	B#@µ','wp-content/plugins/jetpack/modules/wpgroho.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¹\0øe Öõ¸é?ŒcU',' ‘iÄî4{Ty2 K­öÖìq% |Õu{Ýeœ›µn×','',0,'?'),('\Z]þ7ïÌ]¡!)Ê X€','wp-content/plugins/jetpack/phpcs.xml',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','úSìÛ3ÃÐÀ\nÔl„Ïß','‘£Zü;ñX«,ÈÖ#šŸ`ƒaPŽ w‰:€ãkÐÚL','',0,'?'),('Û1ú/‰é¾“`N7ë{','wp-content/plugins/jetpack/readme.txt',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ð”IÝDü‹¼,9è‹ŠmË','í¡C†HÝÆùQE5BhQ(_ÌåÇ¸~9)Ìl:™','',0,'?'),('©úïÏ¨‰øá¡ýmXK•','wp-content/plugins/jetpack/require-lib.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÝˆXR¢/ZuTxƒãï','¾Ö„œÖñ5RX˜ñYR-\r˜ÖŒ§@j ÷ƒ¦Ì','',0,'?'),('ÉÇB’Œ‰‚ªÉ—§—Ó¼','wp-content/plugins/jetpack/sal/class.json-api-date.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','KÍhäÀ>27É.m.','uÅù”ªÙ+©\08;\ZŸönæz¸¼$k0Š(tÖ?ì”¾','',0,'?'),('ƒœSPÜÄhí—cbÂ\r','wp-content/plugins/jetpack/sal/class.json-api-links.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','×ŽñÇÒ—(WùÍžR ','Hˆ“±‡\')Þ›þ‚–[«îÊ´Ñ±ö÷7µ£÷{é9','',0,'?'),('•8Ò¥¼¶º¶}\\&F]G','wp-content/plugins/jetpack/sal/class.json-api-metadata.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','}¾bT=QýiÓTº¢~T ','æNä*öâ¥¬ç•I‹ë‡÷y¦þDLÔV÷Ê×¬ÊÖ','',0,'?'),('WSàÚ³‰º’ì´¤{n“*','wp-content/plugins/jetpack/sal/class.json-api-platform-jetpack.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ªÆç 4 k$\0½Tˆwâ„','‹E”ª¯Å¹N¤_ææpu$J*D¢u˜ï~è‰J','',0,'?'),('|X¥@Š<hØ§k¤·é‹\0A','wp-content/plugins/jetpack/sal/class.json-api-platform.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ñªi°c†sûÐÅ-¬M¡V','1«rN‰`E0jï‡A$ˆ²?Š\0ŸãJ?ÕlÐ+—©úv','',0,'?'),('¼Þ±=E€£‡&ñ—d*Š','wp-content/plugins/jetpack/sal/class.json-api-post-base.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','½€ˆB§¿\"ßPø\nëp˜','³)U¹£YþæÔ¦v‹ªº1b\r¿\r™$±B!W^7€','',0,'?'),('cÐwmÒ½æ´äÚÖ»ætx”','wp-content/plugins/jetpack/sal/class.json-api-post-jetpack.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','â{Zg©Gz)ÐM¿ÒŽ','Ç‘ŽY_0¬‹€÷	nÁ‹}i\r÷Ã˜ëNÏ9@œj','',0,'?'),('\0D~À’+¥$‚6ùsqÍ‰','wp-content/plugins/jetpack/sal/class.json-api-site-base.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','pH€ø¯9ë¾¦#äì³','OÔVGðw(ª\rÛaV¶§,ÖPoãÀïÜ>Aô@','',0,'?'),('Úâž÷‡h±i§~Ç¯?ö','wp-content/plugins/jetpack/sal/class.json-api-site-jetpack-base.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ìŒ2õÏß7Ï7%¡†æØ','“\'’XB,ü—5óUÍ¬wp…‚@;’ÿª§+ÆïÀ\"','',0,'?'),('úu¾ÁnÏë²XÆè¨ú1','wp-content/plugins/jetpack/sal/class.json-api-site-jetpack.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','#ªo¢­¶\nç;9Jµ–ü','³¬Ì^b¢ªüz›Ä^øm)kJþÕ>tö6«Rå­','',0,'?'),('‰ö2ò^<£ÌOˆÙû=','wp-content/plugins/jetpack/sal/class.json-api-token.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','%“Öçæ\Z¬2ØÙÒI','—®P*ë–`S›‰øàH*\'LyÀ‡8œåìzh¼Ùöî°¹','',0,'?'),('‰†ë©\"Ïo+“¾™ôÑ×','wp-content/plugins/jetpack/scss/_utilities/_accessibility.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','LÇ‘€–ÛQ];¡µõ&;d',':˜àø—h/ò;«;s¢=ÛÚ½Ñò \" YMA','',0,'?'),('®¬Ÿ×bº@UõžÑ\'øÌ¼{','wp-content/plugins/jetpack/scss/_utilities/_grid.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','aì¦9¥ÕTˆÅN¿Û)','‚‘uÌlß>Dø\rù”íÔñXÇvÊöB¶—…1Cn','',0,'?'),('~±(›úô˜öp	¼{Ù+e','wp-content/plugins/jetpack/scss/_utilities/mixins/_breakpoint.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','?Ýß¨/úBžÏä¯','ç$t™À^êS¢©¢ûs_Á:\'h>Üî2âÀH:','',0,'?'),('\'6;uzÈ7Àr?WÆeH÷ä','wp-content/plugins/jetpack/scss/atoms/_animations.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','´ˆ¸íZv&š7iŸ¯”½žs','xðZÅ!*f}ö×‚DCô<@U!7_ýY3Ýß2ê','',0,'?'),('ÔÙS;tÕòóD`b','wp-content/plugins/jetpack/scss/atoms/_buttons.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','â·åEÕf7L¬íR„¢‡','Þ<ØFFe¼DÎH¨­¹£§Ê¦æ|>±Ì¾Hbô','',0,'?'),('§E—c»Óo(Räõ¿^','wp-content/plugins/jetpack/scss/atoms/colors/_colors.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ì,@£ù–|H‘ARƒkÏÊ¢','r7H¶^L£Œ_¨QLñúFÏz¾÷ƒVÙ+ìežÚñ','',0,'?'),('9»}Å2¬rà>4#½ã','wp-content/plugins/jetpack/scss/atoms/icons/_automatticons.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Às]—ãk3Å=¦¶Èb','ŒßÞ½fvÕT¤ˆÊ¨ÇÒþäÞImVó3€ý—XÆGŒ','',0,'?'),('kå•·Îµ™:z»_ “','wp-content/plugins/jetpack/scss/atoms/typography/_functions.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ö&Ö¸×ýÅséN¼-úÖ','‹Â—AÄ”³ÏÇªLcx>:\Z	„r\"\"F:üEÃ','',0,'?'),('nåº¤g%Pìœ³Bí´Ì°','wp-content/plugins/jetpack/scss/atoms/typography/_variables.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','gìGúO+è%vfè™ÕÔ','¥cC‹Ý¯èe`ñÄOP	‚°3ði¨·²ÎXA:Z','',0,'?'),('¼V\\8à¾\0ÅX¥Õ™2ÄZ','wp-content/plugins/jetpack/scss/dashboard-widget.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','”ãŠÑ¹]¸D³ñß]+¾Æ','™ÑÄ¿{¿#¼N\0ÌÈ’K·é]~àüþ©“•eÐöi¯e','',0,'?'),('éŠg•Ÿ±*˜Ôñ&ö+?','wp-content/plugins/jetpack/scss/jetpack-admin-jitm.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ê•`Å«b‘9>ƒS¯²»','\r–®à»‘¬,è6!Ñ‡W`ŠÏÎ%âðF+ïiåsÐ»e','',0,'?'),('ã9¼ª\rÝ0ÜÎü;ŠÌ¯8','wp-content/plugins/jetpack/scss/jetpack-admin.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','«óØ>û—¹SqJ0ü%','¬÷lE¯ˆt3a#¥‚/ãµÐÃ^\rëÑn¦“26¸yúá','',0,'?'),('Ú’ÝõÐöCmY×tD_W‰','wp-content/plugins/jetpack/scss/jetpack-banners.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','#EÇãuœgoQ´ŠL”•','TîûÅa„NVdº‘ì%s#zaXí	w:–>”ñËvì','',0,'?'),('Ùþår:‚ñ_¢Z¾:‰¢‘','wp-content/plugins/jetpack/scss/jetpack-icons.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','2)ê´|Ã‡àÿ¶,XÆ÷Ë','(\"\Z`Ö,£î=fOåÐøŽ”fÒ™ƒ=ˆF+bØ\r{õ','',0,'?'),('lG5,k-€ÐíM.(„¬','wp-content/plugins/jetpack/scss/jetpack-idc-admin-bar.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',':Ø–t>~h’‰XB¹,¨PÑ','§¨îë’òC©ãé±ªõ\Z#Gjp_‚pV¹À9v²+','',0,'?'),('‘X¯²³*3­;N5A¡','wp-content/plugins/jetpack/scss/jetpack-idc.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¼FØ×á„Ëýr‘ëæÏÁ','	%I0µ:ç}ÚPÆ|LŸ.©“F‘ð%IQsØ‡\'¥¤','',0,'?'),('#=Cj?x¥SU!l\"[Ü','wp-content/plugins/jetpack/scss/molecules/_nav-horizontal.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Mt¹8R2ÁÀ¢}/ˆaV\Z','\0†jn<cúcGaEàìµü¿I70·˜A3W2­yâå','',0,'?'),('Êìx½ýyôð*KÚÄ¡o×=','wp-content/plugins/jetpack/scss/organisms/_banners.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','=…é­ÃvW®ÆîQQUEu','ñ&Ö²lóÂ:ôrrÕ˜éøÜ¡ŠéÌE„Ò¡ì‹û','',0,'?'),('\0zK!ðç‡ôOó¬Tl¿¨','wp-content/plugins/jetpack/scss/pages/_manage.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ëÜ#=-)f‡· (þ‡PÒ','“yiæ1®*äKé¸;Ì/b“O…r©yâèw‰å„:b›','',0,'?'),('~`)ÏQ\\D(ƒbc÷3äð','wp-content/plugins/jetpack/scss/pages/_protect.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÞŸs6„õ@	Šú.gJ','™~¼,%JÚña¥;T×\0›Ÿhw¸F>±Cÿ´¯+½4','',0,'?'),('(Éææ­‡*«Þ¼ £`»','wp-content/plugins/jetpack/scss/templates/_connection-landing.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','4È‰–Ý’Å3Ž»»²¿ÉA','Ê†è6‰Øè¸Ž0ºÛÕÉN˜”«l±îÑUg™J@ˆ','',0,'?'),('¶2@`‚TDø;:£ðÞ•','wp-content/plugins/jetpack/scss/templates/_main.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Œqv¨·­ÈÄšuôIŠð','Ø¥Õ38ùtc,ù;Y%0Q‹ØNíx¥WfÄ—±z4Ý','',0,'?'),(' k·™oñh:çb–¹($','wp-content/plugins/jetpack/scss/templates/_settings.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','é\0¨ÙÔWD‘ðz˜ÿœì','åQ	Qüó5æ_Ö3+VÕ…¶\rŠÊ¾4+Eæ$²ØË«','',0,'?'),('ðÅøïœ¡7Ot|üÜB1˜','wp-content/plugins/jetpack/sync/class.jetpack-sync-actions.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\Zéåó˜ÙÌP„È[­Ñ','}AÑ?âµ _L%&ó	ù¡›ò‘ˆ²&TÙýë& 4©','',0,'?'),('W®\nÀ;þúû+—E\r','wp-content/plugins/jetpack/sync/class.jetpack-sync-defaults.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÃÅœ®[–lXN¸|*\\ÏÄ','¶R§¸c‚Ö3Hhg–€Þ¶F\\ò…2dýÛ','',0,'?'),('ñðä_Þ;éüÉ-…#§+','wp-content/plugins/jetpack/sync/class.jetpack-sync-functions.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ä½ŽPQµ€G\n…‹³S','cg;#|álS×õ^9•×¢œ$ªpÕ¯19!ZMBE','',0,'?'),('\nÉéÑp8³¿³2Qú–R','wp-content/plugins/jetpack/sync/class.jetpack-sync-json-deflate-array-codec.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ª÷žG}£¾É¯Åœ¬~','(¡ÐòÁñûþmAË¤,AÈ¶T/íç¬(Ò	ÇZ\'n','',0,'?'),('ôx©¸ÓÖuî\n‚üJù¹','wp-content/plugins/jetpack/sync/class.jetpack-sync-listener.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','€åªFz«:aoh•','ûTÛFíæÒƒø˜O«à Îb î^çå6–Ì#','',0,'?'),('ëšÑQ6&v¬9á3š`','wp-content/plugins/jetpack/sync/class.jetpack-sync-module-attachments.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\0*ûÊ!8¦Ÿ\'‹R','—Áù¿ŠhÂüÄŠÕ,‡áïØKaZºPkTÛYŽF','',0,'?'),('17«,âaf3óu«p%‚P','wp-content/plugins/jetpack/sync/class.jetpack-sync-module-callables.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ô;¨Ó7U§ÛX%ÿn#±­c','µBªæJÃš¬¨Çä”­\ZÆh\n¦v=ÇF±quhK','',0,'?'),('ýýôºƒˆú¢‡u<fu²Þ','wp-content/plugins/jetpack/sync/class.jetpack-sync-module-comments.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ZŸ—nÐ„{æ0;úÏ¿ÒK','\Z”PB>Eª±\\ j~©«ŸþTmHXá}ÝàÁÅ¥ª–ø÷','',0,'?'),('åàWæSÈPÜGžEŠ&','wp-content/plugins/jetpack/sync/class.jetpack-sync-module-constants.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','·FGž‰¿-À¯v˜3Ìo.','ÄC ¸ÅD:YI3Fô6¸UKK„Â”¸1&ýÀJ‘Iâ¦–','',0,'?'),('#¡|æ® Õ`H »«','wp-content/plugins/jetpack/sync/class.jetpack-sync-module-full-sync.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ØjÂo—+‘Y¥½÷‰W÷Œ','ÚwáÙ?^õ\nÄû5Nì#ñû[îK²Bù4öM8y¼','',0,'?'),('9C«e„ìJS®ËÎ—r&Rž','wp-content/plugins/jetpack/sync/class.jetpack-sync-module-menus.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÓFÂ\Z‡%…ÖBÔàq=Éj','}qä«žµš`ç7_å‚íÿ«Hk\':tAEJ>ðÞ¨£','',0,'?'),('Fðª¨‰ù+oÀb','wp-content/plugins/jetpack/sync/class.jetpack-sync-module-meta.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ž@)CxQtó[ÅXzòó','±\\9`½æ:(2Ê;-¿ŽA‘—Á@Zp¨ìÍ{Žm','',0,'?'),('ÿæÖIÅì\Z=¤òn)G','wp-content/plugins/jetpack/sync/class.jetpack-sync-module-network-options.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','±p:Ó&+<!<ÿ‡U','·ËU i¦­6¼Ïü!WŸ\"HÞå­ð‡lŽìLÃŽ','',0,'?'),('°êSß€UFcžõß|µjš','wp-content/plugins/jetpack/sync/class.jetpack-sync-module-options.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ü;Ì\\ÍlŽŠìÁvÀâÈÌ','Ï^læ/BˆÐ.›&fJˆ¬*wQ)­êí[Ù ÊÞr','',0,'?'),('Û²“Úmr^Þ>®”oÖ','wp-content/plugins/jetpack/sync/class.jetpack-sync-module-plugins.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','±u9ª»aŸ¸o³…fÉ×¥','	¶7³±¼ã92q-– /v7\r+°ÑœJÿÀLUVi>õ','',0,'?'),('³\nMÜb¦z°ÅŽáí ','wp-content/plugins/jetpack/sync/class.jetpack-sync-module-posts.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','‚-«o¼˜²M¦©Ñmü1‹d','­7Z†”;mÝßØõ+LFZ‰~3@0ø”!4UŽÕª','',0,'?'),('ç‘.¬†=•U’q%','wp-content/plugins/jetpack/sync/class.jetpack-sync-module-protect.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','-¬h!Ã6·¢–[äPc27','8–Và\'NmD(ê­òðGB 4³OâË\'Ä—–‹ì','',0,'?'),('a©Ÿøç+\0Û­;õW›èÎ','wp-content/plugins/jetpack/sync/class.jetpack-sync-module-stats.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Íá¨„K»MßñÞrÉ','QÑa‘¼OˆD·SI’	>Ÿéºœ!-Ì2h„<±.ƒLO','',0,'?'),('|®ž½Èú·8Õ2_ûšz','wp-content/plugins/jetpack/sync/class.jetpack-sync-module-terms.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Þ`ÖÊû×ü};©$Ù;Ñw','-—Û¾ÿŽˆ˜m•(–TâÖ²ý‚_wfŠð\'g£6{','',0,'?'),('³l:9^•T«äœÖhwè”','wp-content/plugins/jetpack/sync/class.jetpack-sync-module-themes.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','mÍEHÓ`ñäèè‘7s','–œrŸ\\¦<¹$—RšáCíþ?gwN¬ü.$ù¯š','',0,'?'),('ìfmj`Hb´ÑfŒzòª','wp-content/plugins/jetpack/sync/class.jetpack-sync-module-updates.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ï³T©Šo<yWª¥ó\nj´','¾-PŠT,Eÿf¿psÆUE,ª‚±žòÍ9z¸jÐ+','',0,'?'),('ÍlN×ä~a‚t!GÉ&ƒeÐ','wp-content/plugins/jetpack/sync/class.jetpack-sync-module-users.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','<šVn•\nQL?üùzL','+	ZŽ;TqásÃ¯ßàõGê £í2X(—´À×','',0,'?'),('<ôŸ†ª*“p’Qñ}Tx','wp-content/plugins/jetpack/sync/class.jetpack-sync-module-woocommerce.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ª<É¿ŽÜ¾+öõÑëv\rû','+×ÿ-ðÇ\'¢Vy|9‡}‚K*¯E€I$|ÿºUMÁT','',0,'?'),(' 4umþg¥Ägªº¨ç«Ý ','wp-content/plugins/jetpack/sync/class.jetpack-sync-module-wp-super-cache.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','V|}ÈWN·\\|1Å[|î%¾','®ˆŒ¼Ðû!8îh¤…nXÿŽuŒÒ7[­Ñ`šM','',0,'?'),('r·”/–E~Êð‰gœ…J','wp-content/plugins/jetpack/sync/class.jetpack-sync-module.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Y¨ª4úØ\\{ÙñÐÅÏMÎ','Þj\'^\rÔ`ýpÒ|ž—ÏvXØõûdçš“ÅXÞž‰','',0,'?'),('½æÒ®K+} Ö\"(§­','wp-content/plugins/jetpack/sync/class.jetpack-sync-modules.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','±š]NCé)Ë;êÉÿ Ç','â¥pD)\\à\0“é«e$ÀQk21ñÝ–ï²¼1qå','',0,'?'),('TÐðý§#atlLtÇµ','wp-content/plugins/jetpack/sync/class.jetpack-sync-queue.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','²\"nU 9½h<¢”Zœ®±','êŒ!Œqsž¾ñ¥›^FC!z¡\06i	¥%mÖ¶j¶','',0,'?'),('¨Vò­^´BÜë‡ÂÒ(','wp-content/plugins/jetpack/sync/class.jetpack-sync-sender.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','’íz‹¥\nÜ\'d>^V','Ìû“š 8ÏÚ¦·ØêNÞUÂs7cŠ‹Y}7žÕ o','',0,'?'),('ÿª˜ØŸ®¢1åðyÒCÍ²','wp-content/plugins/jetpack/sync/class.jetpack-sync-server.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Í·×é2€–ßå™Lä)¶','‘ŒªPT‰l2aÙÊÂŒ\"@ûbEuB½ÚÂŒË®Í±','',0,'?'),('±\0j§\'I.á1/_-#±k','wp-content/plugins/jetpack/sync/class.jetpack-sync-settings.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ûtw`Ï\"ŒÎ(û€Çd\'™','8(ÂhsI0”fŒTMõÍÑû.8O7†K{	É','',0,'?'),('”õÜß„6ÅV§9.¦†\nj}','wp-content/plugins/jetpack/sync/class.jetpack-sync-users.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','æàeJ*~y!äÜµÉ','Ú·ò”¦kû×A{pOgqtwfKò[âòå$¯2','',0,'?'),('ñÿÈ­pDó³&.ôQKb','wp-content/plugins/jetpack/sync/class.jetpack-sync-wp-replicastore.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','3ÿDgæ¦éf:ê×8˜”ð','sds±ú@Ú^,nNÃšuA¸îÓGf¾pÇ“èÈÔ|\nj','',0,'?'),('«š@Uc8Tš\"ŽU','wp-content/plugins/jetpack/sync/interface.jetpack-sync-codec.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','+ˆ+ù¯žæLÅK¦©ÌåÚ‚','d~€\"Á‘í«ÜËhlJHeéP\rJc†&õÅ|=zù¿í','',0,'?'),('·7a4~G>8ø¸¬:ÿ','wp-content/plugins/jetpack/sync/interface.jetpack-sync-replicastore.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ðövT®Þ348Ç)ñ)ìá','ïÁ§±ÊWnÔx*\rƒ’¾Æ·3ö¸óÕø¦ÏN','',0,'?'),('“¶Ò=²×Y=ù\"Â[Ô+¿','wp-content/plugins/jetpack/uninstall.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','2M\"éIJÏ÷ëßúøãò<','gcIKª\"¾£åO¡·v7r-Kó¦OÙÌ¢™žhçì@Ï','',0,'?'),('«–«—«5³ÐÍÍª”L\r˜','wp-content/plugins/jetpack/views/admin/must-connect-main-blog.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','f”z;:˜áŽaÇÁ','³ã²¬¯,\0ô8Ør¦–Q»&tUf¯”gŽèÄC','',0,'?'),('ßû]>z³Ê5€~À¡pâU','wp-content/plugins/jetpack/views/admin/network-activated-notice.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Î»)ÃÚšK}–k©\\³wã','[0øòÓé•rÐá÷ïXéž-øó‘¬d³U•\"ÊogbÄ','',0,'?'),('ù–OfÔøÚ&?j;°¿','wp-content/plugins/jetpack/views/admin/network-admin-alert.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\n®Ëš?µòEq®\"ò@‚','jTÿÈB³™ÈOxvü7%Þšê¨¥uÊ¶9ƒÈü ','',0,'?'),('|õ¦k\"åONr¾¨ëÐvÃ','wp-content/plugins/jetpack/views/admin/network-admin-footer.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','eøX±½\Z¼SŒî¢2%','¡®¼+ \0~HCÛ‘Ï4Š=NM6ÿhmò(–¯Ó×','',0,'?'),('dÌ–G‚…n7vvšÂåZ','wp-content/plugins/jetpack/views/admin/network-admin-header.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Vò9YÞšR¨ \Z9ôs','GÐRïöÚ†@usS“$ò(¾¶Fø%\r-Äú*½À','',0,'?'),('Ï.=\\ÝÔÔÐ*+Í‘','wp-content/plugins/jetpack/views/admin/network-settings.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','×žý(ÔxŠ×|óµÌÏŸZ','z«‹1þ®ŽçÌÉ‹l8a-‡£PøoðSÑúÞe','',0,'?'),('Úñ>ùxú“wO‰êRî','wp-content/plugins/jetpack/wpml-config.xml',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ý¸¿“û«\0Q‘j¢fÿy«','Ê‰hB_¸_¦àQ»ØHˆ÷gžß¥î¦;q^à[¶Ù','',0,'?'),('ªtÅn,¹‚ÌÒ{n<A\0	','wp-content/plugins/members/admin/class-addon.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','}¦\\’âÓ…EÖo£','Á.Gâéz^ò.^r,Pä\\Ç¸¡Ó{Ï&$–¼„r«/&ô','',0,'?'),('B²G¸ÚÖÓ¥íøÀŸu×C','wp-content/plugins/members/admin/class-cap-control.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','´ûÍÔ¥/zcŽÊ(¸ô','ZBy(„:«ó©Ø`r<]rçkFÈ‚Ä|õõX_\r]}','',0,'?'),('º‰ö|ÎòÚâ‚gú—=Ê','wp-content/plugins/members/admin/class-cap-section.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','WIÐÖÔóÞ°Š°11ÿû','Ôç,#v’óµæzK”R\"y+Ê~ñ×äž×¨1âý°¤ÿ','',0,'?'),('ÇòwsôÐHŠ(· %P	­','wp-content/plugins/members/admin/class-cap-tabs.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÀbT`Æ‘ö&9¼Ý£N','¿#¥£–Q¸ÚÖB‡ñ£ü°ñýJó“„ê>ŠWrPö=¨','',0,'?'),('Í^þiÎë?`ã\\b¡˜','wp-content/plugins/members/admin/class-manage-roles.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','vš±§,58Afžúco',':=DŒçêz[\"„@R6–¦ïË\"ó7!ÝAV†;‚','',0,'?'),('vƒqþ_¹”¯ ºta`','wp-content/plugins/members/admin/class-manage-users.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','eG@™.ù]Íû}ÑßDËŸ','å›ÖMäG¼ŒO”ó\r¨æL>Š/¡â”ù¢JI€—K','',0,'?'),('. Ö«‹†q´j€;ûã@','wp-content/plugins/members/admin/class-meta-box-content-permissions.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','”qVì)“$®´­GX!ÙÐ¹','E!Ã]ú‰—H{– ®}|iqÔ37éâÑÂ¾eµž','',0,'?'),('¿!V¬b\ZÄÙû³ž¿O','wp-content/plugins/members/admin/class-meta-box-custom-cap.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ÿ_Hd}þüœG”ì\0È','Ê›ÂM¥ÛË\\õá4iìÝ™?v=1*Öö©Ð#I','',0,'?'),('ÚƒÆòH5o5#QJBN”','wp-content/plugins/members/admin/class-meta-box-publish-role.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Š´t¯ÑoÅÅ.ÚõäÿŸ','\0\"œ-v‰„F(\"ºŒò>Ë…$?ç-ž­›Ø·4’\"Q','',0,'?'),('~zR6qÝEž?ê(H;','wp-content/plugins/members/admin/class-role-edit.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¿YÒÍ_t)¹ óÀfN','w.m˜cnØSq»r$R*I¡÷k28o•îŠ*é\r¤>Û','',0,'?'),('ðïQQ /ð•?«)€ü4®','wp-content/plugins/members/admin/class-role-list-table.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ä\ZOá\"™¬X³\0?ôHi','(¡ÓËŒ¼Ú°__	‹Ï£Úþà¬Héž«!M^ßÑÆ','',0,'?'),('“d\ZÆ	î ºï<:Å','wp-content/plugins/members/admin/class-role-new.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','7Ê¢«oÿFæDŽ/rrª¸É','2…îzã¥¸þœ&DÚZÍÝrü×¨\Z	[|ig4¸','',0,'?'),('Ó%gH¬BkVóõÌôbJ','wp-content/plugins/members/admin/class-roles.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','×%­õŠ4ÝÀ6#‡÷âL','J©ˆ“Ùt›Lˆ‚ÿsÇÓ¥sgH<©ì\'ôòo2¥¥\rÿ','',0,'?'),('+<ÑÕ#Éâ]`”óþÑU˜¥','wp-content/plugins/members/admin/class-settings.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','.ÉÅ$³@Zd£¢ôHð\rï','hù\'*&‘`kHKÝƒå|IwÑÅbK^@–§ôV­`žˆ','',0,'?'),('DžD;Íô~©äLPØj-','wp-content/plugins/members/admin/class-user-edit.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Š‰ðW6¯Vxð“%QÉ\n—','á\0¶ø4é“|Åå«÷¦(ïË9>,\0ÅøÌ? Uîúj','',0,'?'),('$Â‘ kÓÿå9‰>','wp-content/plugins/members/admin/class-user-new.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÜXOjé¹ˆù0ÓžÏP¯Ã','EêÝ”\0ç³g2imÊFÐƒXÂ1ÈQ§W_w°9[Ê92§{','',0,'?'),('~U¢–£®rh¸5.„g4´','wp-content/plugins/members/admin/functions-addons.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ž@3ÑŒ.«LODõ5§','ÈTQ-¿\0‚FÆ%ÀoÉ\Zþú,´Žµrâå(i[ßpX','',0,'?'),('äé	Rîý\n?^Žù)fý','wp-content/plugins/members/admin/functions-admin.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÕZ÷j«%ügp\\]õ§W\'','_Ø°\Z¶\\<ìÏ9qß11dhxFJ#ó½$ÄnpY','',0,'?'),('ìûÂþ VÃ+Ël^©…8','wp-content/plugins/members/admin/functions-help.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','q¬´¹Èp:EäÅ¿¦¶ß','_4OVÇv«`8ÚQ–Õg$1îÑÛH?éhs€æ{L','',0,'?'),('ÂïÛ‚Úô÷Ž…—µe§ž#Ó','wp-content/plugins/members/admin/functions-settings.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','à½m€ÑVØ´ØÈÃP¬','ÜyÙÇ¯†,°°Êô­rÚBçïƒ‹»ÿ€Þ®:	Ò','',0,'?'),('Ò\r(X_öÖýèñK>Y¤','wp-content/plugins/members/admin/tmpl/cap-control.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','&µ8ŠoHx_Âñ`‹','u_PGÌ¼œÌ¨\r4Ñ0™¾vÂ„>“¬™\"%\"¡°Ï‡','',0,'?'),('ŠA™£ûªº].êÑ.J&}ò','wp-content/plugins/members/admin/tmpl/cap-section.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','0¥ÝGh=bµï´xµUZe','8%¤P››Æp­Öº\'\Z¼¶’ZNF–¸‚I•LÌ®','',0,'?'),('D\n2L”™SÒ¾­Ã[q`ŠÔ','wp-content/plugins/members/admin/views/class-view-addons.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','*ªKG›.Èô5p4.týW','ë}‚iEü¯V\"C[$[-).x>¤“\\]*%šhcœ','',0,'?'),('§1/šñu™go­5m„<þÚ','wp-content/plugins/members/admin/views/class-view-general.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','BX‰‚kñ¯.GÒ›I¶','\nƒeµ{‚,j¿žàtL½ª½7üÖ1í¢ª„ý/éí','',0,'?'),('ÎÒƒ|IZ€lRd@kL»3','wp-content/plugins/members/admin/views/class-view.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Œé†å%M~æ','L\0ðÄI¥?Té\ZÒîçÃ6È{½s£ÙŠ,•,KŒÉ','',0,'?'),('ÿ,ïeŸT‡¶¶é','wp-content/plugins/members/changelog.md',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','èÐuìAHz·dH3“<5a','ZR6Ë‹}›onXÝ¢Ö,Üt2rä~B¤€eA÷—','',0,'?'),('×Ê“Ý€Y×†ÌýÎjÑÞ¤','wp-content/plugins/members/composer.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÅÜËgªZ­!NLŸ4riÍh',' zdCô]Yµ£lÍ´*[=@û¦’N_]H¤—fà[Ô`','',0,'?'),('XŒþ£mùYO¤{»','wp-content/plugins/members/contributing.md',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','X-Ï&â-PŠŠÊ¾·b4','ÃIˆh²\nä4}d>áÿÝ°uP`zôYtsâÅ²»CþU','',0,'?'),('²ëJwÛ­ÄÒzx€','wp-content/plugins/members/css/admin.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ï\'Â€=ð%k/±Õûƒr','/vÈÙ»wÌs.H	zŸ³Sê°zeRýè€.¹Ì+\'oh','',0,'?'),('ï†Å!ç®†òÕÅxt','wp-content/plugins/members/css/admin.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¤Zšp\\Š¸•œGÃÂÍß$i','¬¤\n4¨\\Î)°7@Ñê]D\r]ÓGœ]ÉË\0æ(cK','',0,'?'),('°Oþîö“°ïeSÂÓ%¼','wp-content/plugins/members/img/icon-addon.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','lßºIj’mâŒžæÌµ','b–ë…¾7†”äÁ²êx‰|¼—ÐKîÔà:XHSÁÇÍ','',0,'?'),('[Þý’\n›•€ðHR»¥\'.','wp-content/plugins/members/img/icon-members-role-hierarchy.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','lßºIj’mâŒžæÌµ','b–ë…¾7†”äÁ²êx‰|¼—ÐKîÔà:XHSÁÇÍ','',0,'?'),('Ñy¥´îò ¶Cè»a','wp-content/plugins/members/img/icon-members-role-levels.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','cOwÖ2ãÈ\'}$3í]Š','EÕŽ>¡,òp€£ó`é­–¯üÌ\"\\ˆ{HÙÍâï','',0,'?'),('QE£ÕZPÿ@ž¦¿b','wp-content/plugins/members/inc/class-cap-group.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','n¿ë £˜03ÁŽ¤+„2/«','¸·£fäajv»B˜”¶Ä»ø²íÇélüª€Í`$ÎO‰','',0,'?'),('®•u-ÓÆ!FUš}`Ê ¹y','wp-content/plugins/members/inc/class-capability.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','uÔ‰5,æêiŸö§îa‡','ê›\\ßäÇÄ°·¸NµºJq-š§ÑºåUñ?PÒG','',0,'?'),('!ˆsùpsbF…l0x_','wp-content/plugins/members/inc/class-registry.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','3lP”õS-åSt²Âw\n','°ÛñZæ›œmÐŽ¾)-Ë1E®’»ÖíA1˜7Ò.e','',0,'?'),('‘u*ãS#“®V›ÀAtÔ','wp-content/plugins/members/inc/class-role-group.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','XÂºŽ°¥¾$ qp*îöÌ','ÞP%aLþ³þÎAWÁáI.¤’¨—Vçi9MÏ','',0,'?'),('\Zh\nÕ¯Î3~¼„ˆRîcn/','wp-content/plugins/members/inc/class-role.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','~1#å¢\"Þ@¯‡€','™ç+\"	1`Ú,Ë¡ß qâ¾ðRñ\0ê°‚Åýäóô','',0,'?'),('OÈî&Æ%µ¼VðÊ','wp-content/plugins/members/inc/class-widget-login.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¿*¥òúÉKOºblÈïç(Ž','•ð_íGïæY—AþÛßJí$.ÂÅ’•µYáÜxîõ','',0,'?'),('4¢Ã¯¹öÒ)äë}r’‹9','wp-content/plugins/members/inc/class-widget-users.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÑkÅwü¼ïÛüE','žSAâìñ÷Í%æUî”ÛvQ »vkÿWoSÚ‡DÉi','',0,'?'),('[xpèÏÂqúÈeÊ¾','wp-content/plugins/members/inc/functions-admin-bar.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','v$~¹jQó˜èjPÙ','¨…\rã‡ªÌ!Âm6•ótXIøZJ‘¶Ga:âiÿ','',0,'?'),(';Ðr‚eìÿ-4õÿŒƒ!3','wp-content/plugins/members/inc/functions-cap-groups.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\nsòùå=À¿o*åY‹ˆ','¿ŽÊW‡Õ”\\#@$ì_v\0Ò¿¶Í§¯Wþª½è¤y„','',0,'?'),('ÞaCdÂ‹ç\"îÞºÌµÙ”','wp-content/plugins/members/inc/functions-capabilities.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','(.Y!ÍS‰¼J©ÑÃ…4¬','•Æ8Œ²p>ÿ|àcBýU­n¯µòU\r¼\'è¹Ë`¥‹Ó','',0,'?'),('oÜSiu‰ÊÂÿ•ÓRÑÞ+','wp-content/plugins/members/inc/functions-content-permissions.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','—1šŒN9¼µ.uÓT©3;','š½_(B|+­¯ïA¾GÛLaŠå‘-aÖÖi$','',0,'?'),('Ü<ax¯®º«™&ˆAë”','wp-content/plugins/members/inc/functions-deprecated.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','zÊøLÚÍ½~1ìlÊL','ÆpŽxùï2÷px³žäu•À„ËþµLõØ#@U×÷[','',0,'?'),('î¤òõÌDëb{y ËûÅ`','wp-content/plugins/members/inc/functions-options.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÁÓ$$±)¾˜1Í¬`ž#','.©.ñ¶8ÈÊj	’\r“­µÞ~Ï­ñb!ªøtÀÒ÷','',0,'?'),('?‡žÑ[ GåÞèH\\','wp-content/plugins/members/inc/functions-private-site.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','lS4ƒ–_R˜±¥_{A_3','`ªBÒ~8‡sâÉÊ+V˜æGÍÄ,#Ã_\"J5IõP','',0,'?'),('õo=¸!5:<\'—eÿ0(²','wp-content/plugins/members/inc/functions-role-groups.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','‹á0Œ)­\"6ù¼Ýé7Ì','¢öÎÃ1Ýž}§AÆ\Z¢	w„¼úøW™Ø8¯ô±x]+','',0,'?'),('\neñÓr\rîÍËÁQ‰','wp-content/plugins/members/inc/functions-roles.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Q¬ÓÃÆ	ÿPõþ','|3nùõùXBk¯qê~ü¡KZ]ÈDùÙüÃëdø³ª','',0,'?'),('%~ßÝÉU&Æ¢/H\r9ïc¾','wp-content/plugins/members/inc/functions-shortcodes.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','IÆ @˜¦²Œìœfèq­','þA€\rLI—JÛY¥§ò]ÞÈBRÐ‰ó\n‘»¿ ±g>-þ','',0,'?'),('Ä\nÇ£KàÊ~<?®¦¸Ë','wp-content/plugins/members/inc/functions-users.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¡µ\n:r‹ÛÅ!ç6m	C','˜¢Ñ:qžyïP-Þð©‹«\r“¨¾rPhK.IW§å’','',0,'?'),('[ÕÍöÃ¶‰À7J×µO—6','wp-content/plugins/members/inc/functions-widgets.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','G¡hmÛ\'pÌÞñ‘…\n¤','ª×°$0|j’áe@{ë&ó5=mÅ%§çâÈÐâF','',0,'?'),('Waì\Zø²–Q}¾ä¥ý[G×','wp-content/plugins/members/inc/functions.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','^Ï(\'œ¥´iÉ‚sÎC	','éýv¹uªQ^SÀIh4z†\n˜›ðÿ1M÷uSW','',0,'?'),('Æ#ôßôE$÷bµP]nÚ1','wp-content/plugins/members/inc/template.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','t×®éñxí+Ó“­¨Ÿ`á‘','®çu\\rÇŸµ×ÌsºÚúÆÝ¾F!®¬Ô=4}','',0,'?'),(';*íÔ<Š‡—}ýæD@','wp-content/plugins/members/js/edit-post.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¢¸†])Ç¾²>\0nGð€','x!OÈ±üÖgõå{—@ÌYÎATZÚ¢œßi\'±j]‘','',0,'?'),('™Xxr.Ú¬Î–ghV-²','wp-content/plugins/members/js/edit-post.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','5ê1Ý¦¼t4t¶˜Äæ[Ÿ','y!:¸+ñÈ;3ø…²’¬u#RLKšÐxáWÉLw','',0,'?'),('Ï!e±(Ip«ÊÑk¤%-)','wp-content/plugins/members/js/edit-role.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','–dXãÉ¬qgie:è','3ÍŠXŸKJ·õEš_ß\"nò9kz%b»1ÇÜÁ','',0,'?'),('ƒ~6ö²Ëµ¦(mÛáž´','wp-content/plugins/members/js/edit-role.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','TÊ’ò3Uz„r‰Pb”çÒ','VO±—~úÍ\0%o#‡`cU‰1ø½ác-a˜õ¬)&Ï¼','',0,'?'),('Gb\Z/O9p÷©ï—2¦','wp-content/plugins/members/js/settings.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ø\Zs,­SE\'Z©{B±¤¯','n˜9“JámñËºÉ‚Oû–¸ßÐ©bwZ¿^çêUÕ%»','',0,'?'),('±GƒùÜò*­Õ#D½ü2','wp-content/plugins/members/js/settings.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¢ê–#WÖüv8iÂ.]/6','¿`’õ|sàIß-2Î×é‚4çKëÜœñUf\r~SS','',0,'?'),('E¾@Ž›RÄ$ÒþR,’ß','wp-content/plugins/members/lang/members.pot',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¬´¢T•0‡øKÏÞRð+Ù','>©ÍÑ]›ÒŽþó¼Õ¥kW·ãÖ]o¿.X×}','',0,'?'),('W\rtÙ’G)5f6²X¢n','wp-content/plugins/members/license.md',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','=¤O¬³Ázê#Wç=²¤','¼ÿ\0v1£êsÔNí>cIDÙ¦¾Ö„Ié­0ÿ-','',0,'?'),('n¸L}Ùòí\nŒ×´S¶','wp-content/plugins/members/members.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','$eõÓ€±Ò8Þ\"oc{','æk|_ôí5vz27?÷Wó*N7»s„x(rß~','',0,'?'),('¬Pá/(éÅ³u0(\Z´é','wp-content/plugins/members/readme.md',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ät6?ÅÊhÆJX¨<µ?0','ùÍ\"‰ÉÂ@ƒŒÄ+›	ç_ÚðÍ\r.ü,Ç^?Ðy¢','',0,'?'),('‚‚ ¨eK\'3\n ¢Û','wp-content/plugins/members/readme.txt',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','DCXN‰Ô·ÆWB¦ÃrÿY','‹^œ7îdOjR¯T´Šµ`àÞP…Kg|~Ý,“¯','',0,'?'),('C¡-ÕÀŽ§è0nëµ¤ô,','wp-content/plugins/members/screenshot-1.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Pù—Z‹âÆÑªÈúÒ',':áF´ÎŒTˆVžÙÉWI-WSœ¿Â/¾I’','',0,'?'),('x!Ádg…FÕ!€Y¨C•ŸÙ','wp-content/plugins/members/screenshot-2.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Oë2èû£õÉoÑeÆG?à','ÇâUMr?¸Ì€òn)þ=Yã5¶CÁk3¿ôUÖø€','',0,'?'),('Ñå&a|DÕ¶±™^ðx\0','wp-content/plugins/members/screenshot-3.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','“|‚ÃÃèg‡á¥7Á‰','iå¶â’à¹•F\0Èí÷hÕ\"ì\r{c=y^Òá¡WþÕú','',0,'?'),('-êæ•ZyõpAÛÑÕiX‘\Z','wp-content/plugins/members/screenshot-4.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','f\ZgÉBê•ÐXo›B','„Ú> )ÖcýØ9a¶QØ\Z»%DwšÜ©™#ôU{=³]','',0,'?'),('îÛXê?FÏùß›w•‘ÛNÜ','wp-content/plugins/members/screenshot-5.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','öVæƒ^dˆÉhø-.+','åÇG#\'„¿ø,ÝÇ)\'¨ÿÐ	”éÎKÓn[Õ†tvs&','',0,'?'),('ÏY›±Ú<æ*ÞBÐì’Ü','wp-content/plugins/members/templates/comments.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ñre}@zÆK6›Cv','Z`týT- eaž	Ëœ‡‡2œ£ÎœÞº‚CfP','',0,'?'),('Ú+b{[£†CL=m³¿°','wp-content/plugins/ml-slider/admin/Notices.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','öÍ¹-\0«É|å Òì×','Ê0uíi\Z,ˆGÏ³ZÆpQÜ©6ùtŒ.ÿgQ','',0,'?'),('\0®`˜Rå–>ü±ªƒ¢#','wp-content/plugins/ml-slider/admin/Pages.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','z°•n¬½Æªt§‡ð1®4','Rö­?h4÷§E‡%{KÓ•Ÿ¥UM”IÕ>øèsnå','',0,'?'),('ì´É¤Çá<fGûó3Þ«æÛ','wp-content/plugins/ml-slider/admin/Tour.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','™>¥A„‡f³KWŠÊ}g','{ƒ†æÖÑÙÿ`a)Å†dT$7“VGö°ŽÍê¶«','',0,'?'),('Nã ír´½VOKQN]I4','wp-content/plugins/ml-slider/admin/assets/css/admin.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÆwÚåë­vo>†`_ð¿P','ï*s>ÿíŠàJ‹	óJ}9]v/˜Kd‰M\"aüS','',0,'?'),('þ`Ãî6Ñ\nÔ¡è’™%‘Ô','wp-content/plugins/ml-slider/admin/assets/css/icon.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','FŠ.ÐtKcÚ!\'µ£âr',' 6ûŒÌ~‹Ä—¾Í÷wïB’“´ÃZÑ¿<Ÿ”J¦	ÝŠ','',0,'?'),('fH3æ	øé !g1•¸µÿ','wp-content/plugins/ml-slider/admin/assets/css/notices.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','*™+íšAi`}!@1 ifÁ','®XŽZÆê)\ZR4WÓ#Oƒ·%\01pÉ“Àhtê\'É','',0,'?'),('+ëšß\\Â9@Ï…ÙÉP1Øõ','wp-content/plugins/ml-slider/admin/assets/css/upgrade.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','êÖqùÒ\n9¢’úÇÛß˜','ßo@ÃÂƒ1hÞí­û³imŠ$ð¶2q%Â+Öû','',0,'?'),('§!Ž5ôÃ(Góq¬³#ûL','wp-content/plugins/ml-slider/admin/assets/fonts/interface/Interface-Bold.woff',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÔÃ\Z¶ƒ,yˆ€°Œy3€Ø','Š|âõ=”ë¿Õ×N¼BïÜ¯aÔ\rxÁNÓø3õ:¹‹\\','',0,'?'),('—ø¹*¸ywÍ\r?ÿ«','wp-content/plugins/ml-slider/admin/assets/fonts/interface/Interface-Bold.woff2',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','cgë?ažðÍ*„™ÿóös$','`ÂÕ€¶§³Ýð=×«íµ-{8Ç¼\'„ÁP_¯§','',0,'?'),('ÎE~ÒµñzZöcâü!=','wp-content/plugins/ml-slider/admin/assets/fonts/interface/Interface-BoldItalic.woff',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','I%mÃE>Õ\'EwÔ÷Ÿû—','4Ô]:²q;«èJk\'¬ê?h½®%`?Í hQ','',0,'?'),('ý—2~~lWœó{V.(Oa','wp-content/plugins/ml-slider/admin/assets/fonts/interface/Interface-BoldItalic.woff2',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ñà³(µÎ>^²\"’0¬Ï','@%\rnUêª@\'Æ.U=@kM~MMÔ–|­›©…Ñ¿','',0,'?'),('‚.‚“‘Nëá¾2	;6e','wp-content/plugins/ml-slider/admin/assets/fonts/interface/Interface-Medium.woff',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','2=‘#zúÓ‰°½£Ô•Ç¨','-íg™‘Yž›ø1@Sm!j‹«|¤¼…}p£GÄ2äœŒ','',0,'?'),('H‰_Œ çx¾œð£~1º','wp-content/plugins/ml-slider/admin/assets/fonts/interface/Interface-Medium.woff2',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Uê²öäÍ	‰yê­Æ)\0','mDšD;N¹Ã„¡\")\Z+úúËx9o”w‰…ŽN','',0,'?'),('Zî?ò)æ]voýošþ›«','wp-content/plugins/ml-slider/admin/assets/fonts/interface/Interface-MediumItalic.woff',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÓYÆQòöTaŠPÐð','¯ŠÁŒàsã§eƒ)0×N¥GÖ²¥F/.„Ü\0åpô¿X–','',0,'?'),('LH|$¥:Öpx¦T8¹ùÌ','wp-content/plugins/ml-slider/admin/assets/fonts/interface/Interface-MediumItalic.woff2',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','.ö`4JBîµÛ	','R.ïûÛNðþ\rYÛG%±3‡Õù,æ¶>ÜLuÑ','',0,'?'),('5\nT.Ó 6&äZQ¡†','wp-content/plugins/ml-slider/admin/assets/fonts/interface/Interface-Regular.woff',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ô1¥\"”N‡´®0T÷ê','jh¿‡Hîf€¢éÿÎw”—§iˆi6,$Zz™zŒ2','',0,'?'),('ÀèµL“öêù_D›î¸(','wp-content/plugins/ml-slider/admin/assets/fonts/interface/Interface-Regular.woff2',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ð4\'Qg6GÎõ\ZVüEê','ôº˜#Mt“­¬õ«Þ2¾ßÑöw©Ø+ëu]Ô¤3','',0,'?'),('ÉZ—\r¯—9¤&Oì–Ìv»','wp-content/plugins/ml-slider/admin/assets/fonts/interface/Interface-RegularItalic.woff',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','HÌO+$ÿ#É§)018','ª$…ÇßžxÄ¨ÅØ÷p÷u×s¯ú³šª§r¸ÐÞ×','',0,'?'),('‹„@ßÃªŠ£Ÿ\Zc¤Ù','wp-content/plugins/ml-slider/admin/assets/fonts/interface/Interface-RegularItalic.woff2',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','a•ø©—0Ùýb^M·M9ßV','€Í7®:š»‘üFáòÈTÎUdÐ¹öŠúÇ]R/','',0,'?'),('m‰Þ¬‰Ç>J\\2=ºn','wp-content/plugins/ml-slider/admin/assets/fonts/metaslider.eot',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','æè^rI,Ö. ¤?ž±a‡','¯²pCÞíßÿ¥_³ú¨dazzFgkº©½wÍÄÈã','',0,'?'),('97p	têÝZ‹XW½á','wp-content/plugins/ml-slider/admin/assets/fonts/metaslider.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','€ Z×ˆ@íc\"q*•iOh[','¸äªâ~iíƒ\Z%ê|c\r`‡|­J‡Ž:µÅ§JÐÅÌ©','',0,'?'),('fB±Ñ	Š\\h.N²ÿ1Ô','wp-content/plugins/ml-slider/admin/assets/fonts/metaslider.ttf',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','‰<*¦¼û–·sÁÖÁ¶û','l¡ºg5FâÛz²Ût€ZLò3ˆÏ·Ž¬@¤Û$ˆî¸§','',0,'?'),('\\‡Ñ\"3þ!…“ßl4Ý','wp-content/plugins/ml-slider/admin/assets/fonts/metaslider.woff',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','>€%LA^ÉùDoÙäZ','•Ë†³ãé}õ¸Iæq#ðnŠ\\cÐ†\ZÜØŽ²Ôòº&','',0,'?'),('½*»ÀÅZÓ|öà—¾RX','wp-content/plugins/ml-slider/admin/assets/js/admin.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','K~ÎÚêÝ\\qé~uEü','3¸ÃÎDÖùäÙ‘áHÏF8³0°ùÕhÕò¹×™©®°e›€','',0,'?'),('ìó.‚2ü—þ´®~‡J','wp-content/plugins/ml-slider/admin/assets/js/tour.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','y#O—JgLÏ¼¹¬Ô|','˜Êá&\\ºÍý£®¡AµwÃÇ»v:Ké¬b R×5%â','',0,'?'),('c(ÐaôŒÞÝç €q“?‚','wp-content/plugins/ml-slider/admin/assets/tether/LICENSE',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','âØ\ZØpåüØ¥º£Ëi','B¡Ó?Õ\"{\nŽ``à|H„Wˆ“þñ‰ŒÊôj›uœ','',0,'?'),('søKf’b¼VÂÉv81¯^','wp-content/plugins/ml-slider/admin/assets/tether/tether.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ž\'}”ÇÆÖ}˜èâ2vÜ','Š¿AK7®6j7™H]»¨à€ýa20/žÙG\"ÖÒ‰','',0,'?'),('m‘Æé8MÍ7ÛGý†','wp-content/plugins/ml-slider/admin/assets/tether/tether.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Á\ZÇ€¦>7Vè×WŠ{Ô','yŽa^ñÂ…¸Ç²2ÿžìŠºò\ri!K&^&_m5©','',0,'?'),('3V+ï6†d¸ÏRd†','wp-content/plugins/ml-slider/admin/assets/tether-shepherd/LICENSE',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','BF=‰Ç‘ÁG…:\nÅñIË','VíðéåòS}\\–£ûK<’+¹ÏµÝœš?Ï7Õ‡Ž','',0,'?'),('«±b:þlÂ#N>tÆÒ','wp-content/plugins/ml-slider/admin/assets/tether-shepherd/shepherd-theme-arrows-fix.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','^£=$(–Ödµ#îÚf±','‘RxÄˆÊ›üÝÑÀkŸ\ZòoR&ÄŠ\0Pr)ušê#','',0,'?'),('~ËŽm!!ÇÍvØ²ö*^Ô','wp-content/plugins/ml-slider/admin/assets/tether-shepherd/shepherd-theme-arrows-fix.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','7Ïb‚—ÈK-äŸßUvk','ÁIíÃfWˆ÷¢ã¨ÄðV”§™”§÷BAÊ	\0àzZ:ÁK','',0,'?'),('0½Æ§-`ŠÅt¨ƒqš£','wp-content/plugins/ml-slider/admin/assets/tether-shepherd/shepherd-theme-arrows-plain-buttons.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','mê|¡,>.Ëž”æPÅ@','í`ë#p÷UfHŽ@eaÇmßþ§æ/KE7ÞB3Å‚Â','',0,'?'),('~16¼\r$GŒ%Z[õšÁ','wp-content/plugins/ml-slider/admin/assets/tether-shepherd/shepherd-theme-arrows-plain-buttons.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','x2½ï”4™SÂ[ÑCq','Ož®]DHv‚N¼¤¥žÛ>’ÒuõËÌÞ¾ú_™ö7Ý','',0,'?'),('rVxj„I”Ì›ì¸FqÙh','wp-content/plugins/ml-slider/admin/assets/tether-shepherd/shepherd-theme-arrows.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','yáÓ¢ïL€ûµZXä\Z¨','€ÏÙ²BÂçv,ÆÐà42bá-2	õ>Œ+{P—;°›Y','',0,'?'),('Êa¨mFÚÑ\r3}_È','wp-content/plugins/ml-slider/admin/assets/tether-shepherd/shepherd-theme-arrows.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','sãrŠ¢3ûõ%×2\Z%','rUü×ë£*²s—Úýí†Ûp\n$”ü(³ÚbGPd–','',0,'?'),('ú¥¸S\\cü½¬­g®¦­O','wp-content/plugins/ml-slider/admin/assets/tether-shepherd/shepherd-theme-dark.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ö?YïiÅ9XÄp ','9ìu5˜Ê®ïd^3,¬òF§5ªÌØõZë¼³¨=¯','',0,'?'),('^‡&‚èbW¤b	1µ¸[','wp-content/plugins/ml-slider/admin/assets/tether-shepherd/shepherd-theme-dark.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ù³R%[·)tlUù‡?/','á•rî“™>KhH@‰ŠäXU7üo+<BKIóS˜ñ“”','',0,'?'),('.TàêéoëÕž«ÞUÓÒ,','wp-content/plugins/ml-slider/admin/assets/tether-shepherd/shepherd-theme-default.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','»™Õ‚NÚƒ¨†›š$‹','‚ŽàG!Ç¶¨ûñ[î\"pŠƒõ¨bÊaQº','',0,'?'),('mOÂ$ð è8­e\r¾','wp-content/plugins/ml-slider/admin/assets/tether-shepherd/shepherd-theme-default.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','0zo³Y×¨ïEPúç|´','»©½@×fø{´<qMŠ¸`Î\'\"5 ?ØÚEZi}m-Í','',0,'?'),('¥\Z…„{6HÑb:­´“','wp-content/plugins/ml-slider/admin/assets/tether-shepherd/shepherd-theme-square-dark.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ðÑ«d!f Þ7öß|ì¼Ú','ÆéjñZ¬t@úbñ¥\\£$´Ôf˜—+ù}7@ž','',0,'?'),(' >4ÔK«ë!§n‘Ã±','wp-content/plugins/ml-slider/admin/assets/tether-shepherd/shepherd-theme-square-dark.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','í’ê×”œLhRŽ­x‚øÃ','Þ!¼øã2¸[^Úþø{W9½wDiå	–?ÅŠ¹þ.E','',0,'?'),('e”iˆ¿ÓBÈM4^ÂJ','wp-content/plugins/ml-slider/admin/assets/tether-shepherd/shepherd-theme-square.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','èð‘´\0ˆnïXJKw',':·ø¢þvq·£ºR™ë²ˆZ¡ÙZÍ¹TÀâ—#','',0,'?'),('¬ÂN—Ê\"ÊY1¾øÉÜŠ','wp-content/plugins/ml-slider/admin/assets/tether-shepherd/shepherd-theme-square.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\"(è!Ê#_àÚÃ,','3WÀ‘š4E …sWou­ó‡¦ÒÉÒ0ìJó¸‘ÄW','',0,'?'),(',GšJ‡„\Z)\")ñÅÆl','wp-content/plugins/ml-slider/admin/assets/tether-shepherd/shepherd.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','š€œ\\&T…¾+ÛÿKæ','j¯à\\3ø§Ñ3IUâóÞ¾8øƒeP\nJ-j\']lv','',0,'?'),('²-­®y°tÑ…\\l³¼(È','wp-content/plugins/ml-slider/admin/assets/tether-shepherd/shepherd.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','„ÐÛùÕ\n+bA|™-õÓX','g7>‰^¼r—¢Ö²”ƒ£ÄÀYgd7ç¾Šó¹÷`=','',0,'?'),('n©X ù1iùï`¶‘M¦y','wp-content/plugins/ml-slider/admin/assets/tether-shepherd/tether.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ù¬MU6Ð/žûÍàAü1Þ','\n¢Gúäí££‡³™–ý¥è¨#‰sÜìU¸WÇN','',0,'?'),('0MMWìÇ}ËáÌ ó;(K','wp-content/plugins/ml-slider/admin/assets/vendor/colorbox/colorbox.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','“W=w´’KxÇX{ÝÓ·','àžÞ\n|Ôd;çÄ¬‡S¼­beƒë(Ò£e¥	{]¢','',0,'?'),('\n6€:å\ZÔ¥dwÏwË*','wp-content/plugins/ml-slider/admin/assets/vendor/colorbox/images/border.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','|¨¡Òëc³\\&lÕKî/¥','™ý¸ÈZ\rº4ð¦yÙ°CÓìæqšâýŒZf¨ˆð›','',0,'?'),('\'Q¨Ö™þS‡¾O2Ö','wp-content/plugins/ml-slider/admin/assets/vendor/colorbox/images/controls.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¶‹žÊ®BMä†+ ÐU·¥`','Ö\"Ð×|ËQòBMÚ·Ø&ªúNd¢n$0f?ÌbA.','',0,'?'),('˜É¹z‡±Ož3œ	_P¿','wp-content/plugins/ml-slider/admin/assets/vendor/colorbox/images/ie6/borderBottomCenter.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','6XX1è¼ôë^ñŽ%t','±)K!ªý¤å¬e˜‚ªîà¸MAž­5žÉÜþ/','',0,'?'),('¨}ÜÖ¤œñèE\'Ò¢','wp-content/plugins/ml-slider/admin/assets/vendor/colorbox/images/ie6/borderBottomLeft.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','|î°cð0ÜGƒØºÒ”ˆ',', YÞ®[QâCµÍäáéeçÑLº8µäÈß2','',0,'?'),('\"ß>œ\0PÁÕKÒL‡22\'','wp-content/plugins/ml-slider/admin/assets/vendor/colorbox/images/ie6/borderBottomRight.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',')·t@‡\r‘õ¼ìÛ1\'%','ÙñQJCªMøô¹U‡Àã­ô€¡‹Ao´éâÞÆ€','',0,'?'),('ØÛ+NÜËÕàîMüŸUk','wp-content/plugins/ml-slider/admin/assets/vendor/colorbox/images/ie6/borderMiddleLeft.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','dßDîªÞ\'vM,ó6R{','‡Xx\\\'ÐxDx‰eaMð·P¸¦¸šŒ•ªÔ„«jé\næ','',0,'?'),('$²µ®<%ê›bu>(','wp-content/plugins/ml-slider/admin/assets/vendor/colorbox/images/ie6/borderMiddleRight.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ÿ¤Xêª5¸$RóZkM','11Û}ò*2Œé»¬Nx)Ï6Ó²µµ·ŒÒóÔö','',0,'?'),('O“ÓÄÑÔe]ÅzŠƒÉ','wp-content/plugins/ml-slider/admin/assets/vendor/colorbox/images/ie6/borderTopCenter.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ì°A\':vZ­ô	)ó','†Ç¬\nB›>9ò§îu.T¯	‚R“I@Qœ³»','',0,'?'),('0l&o¡+ë!>àßÀW','wp-content/plugins/ml-slider/admin/assets/vendor/colorbox/images/ie6/borderTopLeft.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¿II¹[	ÒUíÙ¼¸5Š5W','§“~lEœEã\"ÀJbÒ!\ZPï 1A0ƒ—­/+	','',0,'?'),('Â7b—ÇÒt2XI4ÁEø?','wp-content/plugins/ml-slider/admin/assets/vendor/colorbox/images/ie6/borderTopRight.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Q1_¡•£=_TY…“ç','±â}Ÿí¬WÔì]P=€Æð‚ž]Õ®j¿æÖç™Øø','',0,'?'),('‰D	GUÍ*Eö—æ-i«','wp-content/plugins/ml-slider/admin/assets/vendor/colorbox/images/loading.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','æa†}cuKz*—O° çÜ','N„ÒO¶jâ~yÎ ½ÅR›ÕufÓÁz•OåÊ¾Ô‡A','',0,'?'),('qeCÑðÕ:;<®Î¨œß','wp-content/plugins/ml-slider/admin/assets/vendor/colorbox/images/loading_background.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¬ô\'é2û”p\nK‹X´ì','ÍÎŽ%XïÅ–F¼ÿçÜò1sÏ;ÀÎLëzrç’»','',0,'?'),('‘•óºaA›eNRXü ÈÄ','wp-content/plugins/ml-slider/admin/assets/vendor/colorbox/images/overlay.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','yváZiYãX¡J~¤7','=æûÜÎŽ0\"„V†°2ÙåùÁ•–J­3ÒpH0','',0,'?'),('i«“h}é×L@XÅÙ™gÚ[','wp-content/plugins/ml-slider/admin/assets/vendor/colorbox/jquery.colorbox-min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÎFŒºÐ &]S_}\n','lVZ£ GÿZ¶Ž wEë]3Íê<j­R÷	ñwE','',0,'?'),(' ºQ[ATEý+{‡u','wp-content/plugins/ml-slider/admin/assets/vendor/tipsy/jquery.tipsy.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','X„¡©xãõX9pïÉ.','¡51\r©*Ÿ6i«$^|PäMÕÝšg^‹ÃÓrzîÐóçÜ','',0,'?'),('—\nKº`±»¼+óÂoy¨','wp-content/plugins/ml-slider/admin/assets/vendor/tipsy/tipsy.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','|vbá–‹ÏÑ“a','ád»âtÕæF¿D° xSÜ?ž4*\"íéÔ5T7','',0,'?'),(']d{¬î^ÖN\\ÿ½*T','wp-content/plugins/ml-slider/admin/images/features/auto-optimize.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','+‰›>nqª—ÜÏa9ó','®Mø•µ^I… Ò½K	|àeã\"Oœ0®\ZÉ,æ´„Û','',0,'?'),('06%åvÎ‡SÄ‹õ\"Òñ','wp-content/plugins/ml-slider/admin/images/features/automatic-clean-ups.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','?¤æ¸ÔÒ4á&éá9Û§g','øÅÊH-Šîr—Wiö®ô{ðÌWqÃÕQï$ë›Î_È','',0,'?'),('W^ÞôXùyÿDÓó<','wp-content/plugins/ml-slider/admin/images/features/automatically cleans.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','`g»îùåPÕT¡Õx³\"%§','OëvúžK+\r[À\Z@³ônrý¹YàQç³c-ÞòâI','',0,'?'),('¾_/•˜+l©Ò §o-','wp-content/plugins/ml-slider/admin/images/features/choice-n-flexibility.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','‘v0Ö9\nPCLÃ¢ïá','Jí•³Ô4þPt-ª¹Žéä2ÄéB•9+cî(z~¨œ·','',0,'?'),('‡®¹†!ymÆ+\\\Z÷Àí','wp-content/plugins/ml-slider/admin/images/features/displays-database-table-sta.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','‰­¿ƒ¶-j7÷ØÎµÔ‚','§üÌágˆ™0n=Ïš{²-”­ž½ó+hgmf­¡[','',0,'?'),('wwU7ªâÅ€MïòÈh','wp-content/plugins/ml-slider/admin/images/features/enables-disables-trackbacks.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','kŽªh`ï¹NÍ³»c','fewv(½«:xoU¶À\ZtK%ž³ºóEƒ àxµß:','',0,'?'),('²Rb=Ä#’I^ÎÔ^Hƒ','wp-content/plugins/ml-slider/admin/images/features/enhanced-robustness.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','3À¹~äMÃâŽsiü¸G','ˆ†Æ%¤\'Úrx\Z5xecçŽŽÒ¹q+ÃöŸ/\nÈM\nˆ','',0,'?'),('‘žç¦/ÿì¤Ò±ß¶ñ¨','wp-content/plugins/ml-slider/admin/images/features/keyy_logo.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','üÞ Ï4`0ˆZŠÈsU',',äàJ¼–!|M\"·’BÎ=6>ÄÎÉá¨Ð@$','',0,'?'),('ð™,Äú™Ô*·ý*\"','wp-content/plugins/ml-slider/admin/images/features/logging-n-reporting.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Z§*:©ôd	l»ú¥\\¸X','ÇªT3¼øñÜåUž`x	`T8€XËÐëEB2ùÔˆJ','',0,'?'),('<óÑQŸ¨â®}…³ð†?','wp-content/plugins/ml-slider/admin/images/features/metaslider_logo.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¤¶v—™.7gö1˜È}œË','ƒÔ”’¤ÕØ=ÝÊ<´à®^2+\05½Œ[ì\Zf@•','',0,'?'),('¯®íóíŸôág\\µÕ¼B','wp-content/plugins/ml-slider/admin/images/features/multisite-support.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','BnæÙÆ€“ÅÐdUrp','Þîi‘<9+óY\"#÷=·Mkì;ˆ¥Š…,.qCÜóÄå','',0,'?'),('ßð.ˆ$Ý•ÖÏ™ÁGÄ','wp-content/plugins/ml-slider/admin/images/features/number_of_weeks.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','óT-¶Úòë(Žãâ_®','ÃË#hÄoi®æC&ð9ï\\žÍ¤±Õå\ZÛþ›¸','',0,'?'),('õ`\'„éÆ\"?=èÎãÁ¶Ó','wp-content/plugins/ml-slider/admin/images/features/optimize-individual.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ë]ù>Í§aY¹$ßw|Òfô','‚7Òœ­ËÃB;€€ò=·0za64Ë…f·CÍâz„ž','',0,'?'),('ðµ?)ó[§Æ)žbuí','wp-content/plugins/ml-slider/admin/images/features/premium-support.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Uþ‰’I\Z@(bêköÖŸK','Öu|Ìx„ê!”ÝÄlš™¡wD…qo×Í(Dð‰½tØ{ï','',0,'?'),('ÛØ÷w²Ó£¹üâÊyÈ','wp-content/plugins/ml-slider/admin/images/features/remove-unwanted-img.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','©Å!<^‘³\Z˜Ù*ÿJ{ó','î»ijÒÍ?â¶èÝ®·ÝGæúÙYM»ô s™ºKþÚ=y','',0,'?'),('ª*Ù¦ñ}wsF)¢9¦¿t','wp-content/plugins/ml-slider/admin/images/features/scheduling.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','’l«‚ï3HBhÿÈžd°\n','.{özst<÷f¾g§àùÝCfkï<=tp','',0,'?'),('ï%ÅóƒhnÁ‚ÕJûš','wp-content/plugins/ml-slider/admin/images/features/updraftcentral_logo.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ž“í^EÆ#Fÿ;I´','©y\\|@ÃPÆà\0–¯Ë\nYÝ¯Ÿ*]UtEžóüÂ','',0,'?'),('å¬R€í7Dæ3Ÿ:OÀ','wp-content/plugins/ml-slider/admin/images/features/updraftplus_logo.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','LŽ\naqYãßp	–F','K&IÎÒOÚk4.÷;ZC³C¥+yñOEdðPërž','',0,'?'),('µg¥4	¥ÿ)Gè]ÔS§¶','wp-content/plugins/ml-slider/admin/images/features/wpo_logo.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','8]iT/´¤è\ZÇSÎ>¤9','?lÏ$á2“Gøóu÷Íðð:íO\\ƒROÜÃrè˜\0','',0,'?'),('räÝ9õ—Î.š›bÐùu–','wp-content/plugins/ml-slider/admin/images/keyy_logo.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','«§†êˆMíËïžªÌ¨Ÿ','ÓÀæÓ…3£ÍoúÝÌïYF\r\\`/ï[Ïb¹Õàã8','',0,'?'),('#åECXò0M’fL±v','wp-content/plugins/ml-slider/admin/images/metaslider_logo.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¬6góà®Eý®)ðiùA','Ãb\r®G.ÊÄÝx_‡;¡at4-x.ÅAóû\rW','',0,'?'),(' q’F³ÑXOªŸ04ÝV','wp-content/plugins/ml-slider/admin/images/metaslider_logo3.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','tZK£›F×ÓèæUòjæ5','@<jÇÁÄ…ˆ!oÞ4ýMV–ÞGuó)¸­ÓIVHâ&','',0,'?'),('ˆQÒ1§ºÂ´ŽTW« é','wp-content/plugins/ml-slider/admin/images/metaslider_logo_large.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ç¿fÊä€$n²åÅVm','Qø.…ñ·G”s•]ÁÛŠóTù¹ßô˜û’.‘£°','',0,'?'),('DA°­rÁt³¦á»¹','wp-content/plugins/ml-slider/admin/images/notices/keyy_logo.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','”	Ó\"o¡¡þ¹ý)àW/','(üi.Ø«o‡¦?bFðÍõCEÚvÍÚwKŸ¶','',0,'?'),('#½‘œþ5«6ëôÐë+','wp-content/plugins/ml-slider/admin/images/notices/metaslider_logo.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','8±³zrÏËá‚<Ú®ZÓ±','hYáú…ç³6\r;M@ö‹ÿÂ6ñYMúíT\Z8È	(','',0,'?'),('\nl4SÀ7U·Ž\Z­™ù[','wp-content/plugins/ml-slider/admin/images/notices/updraft_logo.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','€úÝ²et•¿Þ¡èÍÂ½Ÿ6','(×X¤˜ë—v\0à›6ŽvÌUé‹+g–jÍ{Æùú\"3Þ','',0,'?'),('š“.²I<RmjÜ¸','wp-content/plugins/ml-slider/admin/images/notices/wp_optimize_logo.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','qdþäBnR“ÿË¶\0íw’','Å!Óµ½*ug’{ºIpGýL>W\"VR×¶rË','',0,'?'),('ÓšÊË\r¤$?œ»Rè','wp-content/plugins/ml-slider/admin/images/seasonal/black_friday.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÞÁ`Pˆc™š(0wË','/aÍjÕ/ô3ñ’æ9ý/J”Êø,J^AËû‚‘bB§','',0,'?'),('%@cOQÍ4ÁÏè¹¡›l<','wp-content/plugins/ml-slider/admin/images/seasonal/christmas.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','à¯¤ë†Ø]\\2E›_ó4','¹›‹pîJL7w¸¤}ûçßƒbûø&^ÃýÏ','',0,'?'),('‘)Cé§à´%5¶i~@','wp-content/plugins/ml-slider/admin/images/seasonal/new_year.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Î=uNì²wçta»^\rÄ0','¦rŠëi!ž2ZÖð¤:dèÔjv‘tî‡~¨qµâ¯','',0,'?'),(' ÓÜ»€t²\rž—Ø•ûîA7','wp-content/plugins/ml-slider/admin/images/seasonal/spring.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','/¢#íZxF‡„e^Û','ñhþ%?¸¬²¶dªîdÉ;\"ö^»½ô5¹é£','',0,'?'),('gÖ’RÞË75Påæ\\ösÓ','wp-content/plugins/ml-slider/admin/images/seasonal/summer.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','T‚B—ÇEŸ\rç½','d§,Ö=>¦é–aÜl¶›Ÿxð¸Æ©›„U6™¿Îyè‰','',0,'?'),('yØÂé“@Ô¢†Jq\nE‚?','wp-content/plugins/ml-slider/admin/images/updraft_logo.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','€úÝ²et•¿Þ¡èÍÂ½Ÿ6','(×X¤˜ë—v\0à›6ŽvÌUé‹+g–jÍ{Æùú\"3Þ','',0,'?'),('sÀ€Þ`ðôòñ8¹§¾·u¿','wp-content/plugins/ml-slider/admin/images/wp_optimize_logo.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','qdþäBnR“ÿË¶\0íw’','Å!Óµ½*ug’{ºIpGýL>W\"VR×¶rË','',0,'?'),('dÑDPêqÃ³á[rI±`W`','wp-content/plugins/ml-slider/admin/lib/Updraft_Notices.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','|ƒ2¥¾çêý±*¤ÉX*','ÜFìQ^9M)¦•8y™\Zí¡U¶ò4KËá.oå','',0,'?'),('öá^ÎÛ­56R%Í:<¤|ð','wp-content/plugins/ml-slider/admin/lib/helpers.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÝØBeIƒlSÎ70¼Õ','º0­0ºøû…‚f¥Hgo{\'‹ü’ê›Í\rpÐ\ZyŠ','',0,'?'),('û\rš{VdxÈS¯\\ëH','wp-content/plugins/ml-slider/admin/views/notices/dashboard-notice.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\Z¹\"¡áhT<‚<‚Û2-!','HšÿZÒñæ/.ü„1­þî¡þyvMÂ<»òÐ £','',0,'?'),('¹HÑn]áÓª¥þº­Þ Ã','wp-content/plugins/ml-slider/admin/views/notices/header-notice.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','µùß”\Z1Ixg7›ÝKOõ','\'þôe 5ë9Že¬°ËÞ^*Å½\n¤—ÐZ7Ë©','',0,'?'),('b¯Îðœ¡h(Ò¿9ºÔÆƒø','wp-content/plugins/ml-slider/admin/views/pages/upgrade.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','aˆ—I²€ð?*ÈRÚ','^“\nh1“B6¾öÑšÍj5¨áè†éý­Ô\'f˜ã73','',0,'?'),('Ò.’2ÐŽr‚‚Ðrš¡','wp-content/plugins/ml-slider/admin/views/slides/tabs/crop.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','DÞ;BTÙtZM…Lf','U§]ãìýç6»u¯V€Šœ PXkf™¿þsèÕ','',0,'?'),('”QšjýÞÔ<ÏZÑÝý','wp-content/plugins/ml-slider/admin/views/slides/tabs/general.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','S¹–—ðÎ›Ä¼ù–úÉ','Ëz«“\nNvü/>©Š1°nqÄÑšØø\Z¿\'ß','',0,'?'),('²\"G¼éÏ(?¯­ÁaÁ¦','wp-content/plugins/ml-slider/admin/views/slides/tabs/seo.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','§3Ñï¡øD‡n\0›$2Ú','Ê7-ëB›4„¢øâÎƒ.Àn³>¼XL­ùdS ¡Ýp','',0,'?'),('+æŠ=B‘rôò”³²î	','wp-content/plugins/ml-slider/assets/easing/jQuery.easing.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','œÚžt¿&\n@A+Q','cçijOlHÜï$P`°úüsÆ¼ãW†ÑN{·8š•Ö','',0,'?'),('ÿhÁÛù•²êq\r“âN­','wp-content/plugins/ml-slider/assets/metaslider/edit.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ë—<Ìã2†åÁ€Gì¢','+§E#f-˜å[§ÌÊrFvïÂQPs¯Ôã½zòk‰O.','',0,'?'),('”Cý½êm\Z{ ÈêŠ²Ÿ™','wp-content/plugins/ml-slider/assets/metaslider/matchalabs.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','‘O„jZ5.Û<AòÈ•',':K÷Üh„lAÙH´SÐDºý[$#ÀÉ\Z$ÌÙY','',0,'?'),('bD˜AÎÚ”a5«¥ôtŒ','wp-content/plugins/ml-slider/assets/metaslider/public.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',']$·ž†ú!¼08vp_Ú|Ï','øÌÚõÏÉÔ„N%Â(Ò~®~§mNÞ×p–\rÖrÏ¿º','',0,'?'),('\0^tZ—ºâþ-­ï´GR–','wp-content/plugins/ml-slider/assets/sliders/coinslider/coin-slider-styles.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','øQŠ\'ââÅóÿ¯ÞÀè','Pi@àx$çæÎÍIýQªBòŽ¶sf—³KØY','',0,'?'),('û‰¦ ¿Ýÿ_€b\0_y`o','wp-content/plugins/ml-slider/assets/sliders/coinslider/coin-slider.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','DsQ¢(ù(1§qÄ¬º£','’áF¨ÑXmß¡ÒÙöyÉ”G,VÂ¹j”ø5ŒÇ÷ø¡{','',0,'?'),('âXGÝ‡>”U¥ª5‡2b‡\'','wp-content/plugins/ml-slider/assets/sliders/flexslider/LICENSE.md',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¢:t³ôÊùab0x”!zË','X;Ö1MrìG{– »\\yãÙ%1Î`ÕÔak§˜[‹„','',0,'?'),('0‡¯lßV¤$ýÿ]%^˜³','wp-content/plugins/ml-slider/assets/sliders/flexslider/bg_direction_nav.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','õ•s¿É²MªLƒOŒ†`¹','VÕ—×²¿^ô\ZNíÚqáì®J,!ÊÎv§«Û<','',0,'?'),('ohZ¼þF#>ó³®gwo','wp-content/plugins/ml-slider/assets/sliders/flexslider/flexslider.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','•É?R¶?Û¹½ýPñ','¦yîËÕ×L_z‹ÙT¥@OÃªÛã\\ñ\"þ¬ŸdS','',0,'?'),('3÷]âùí¼¶“<\nÄq','wp-content/plugins/ml-slider/assets/sliders/flexslider/flexslider.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','£ë²|Œ8Ø6†ûz/ã','¦yîËÕ×L_z‹ÙT¥@OÃªÛã\\ñ\"þ¬ŸdS','',0,'?'),('#ÝÏ‚È[/Jrçž×¶Àùþ','wp-content/plugins/ml-slider/assets/sliders/flexslider/jquery.flexslider.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ªßÝú\nV\ZªÉ+_¾Ž','6Ì’­[Íºlq‡Ý’:˜ö;…YÌÿ9Ü“æ','',0,'?'),('°ïÝ•yšb…kø…¥à{0‚','wp-content/plugins/ml-slider/assets/sliders/flexslider/jquery.flexslider.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','[ÊÊ«/\nî³nXLå‡\Z','ñ ÁÅ·¦²*•ód@Þaÿ~EÕdºâTu\"®W‡\n','',0,'?'),('¨†æv=n¼qÖÜ','wp-content/plugins/ml-slider/assets/sliders/nivoslider/jquery.nivo.slider.pack.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',',/­ÜùIçŒ\0Ça4è','Ÿ©)š†ï]R¤‰<£ê¤µ}Ê˜>~ò ØV.è»àÉKv','',0,'?'),(' ª<è³%L7QMÓL(&è','wp-content/plugins/ml-slider/assets/sliders/nivoslider/nivo-slider.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','M¯Î®žg~Xy­ßó»é','‰3+-0Ðíš‡ÉÅÀÈç[¢èÚé=ƒ>†àÉ','',0,'?'),('{=¼Â¼ðl¡Ó_R*€´¡5','wp-content/plugins/ml-slider/assets/sliders/nivoslider/themes/bar/arrows.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','	²O\Zs¹îµÌbÛ~À¶Ê','QÄ¡ÛcðÔ¤«n‰Gö1ja.\rOÎÞ“¡q%-vÏå','',0,'?'),('éŠGw? n4êÕûÄJq','wp-content/plugins/ml-slider/assets/sliders/nivoslider/themes/bar/bar.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','2z_Ñ£iÿŒÒ]o3‰','‡Êõ“î±ñ^ïÛ6ˆ/|ÒEh\\K¿FÝo)æ^<\Z','',0,'?'),('„»Û·Ö›=.ÓsY','wp-content/plugins/ml-slider/assets/sliders/nivoslider/themes/bar/bullets.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¬ÆoÎ5¥MZ:£ýW<Ý','I¾HÆ7 RˆŽƒ˜ñ*Å‘Ð{©ùÉÏ¬‡ìfCÎBEC','',0,'?'),('Pd\n”€7»/f\"cm¡sÂ','wp-content/plugins/ml-slider/assets/sliders/nivoslider/themes/bar/loading.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ýk{õÃ¯\"Iš¼\nžáá²','Ÿo \0CjŠÓ\ZM;2ÇD«¦€\r²2	Ÿ¨‚…','',0,'?'),('3%Dç;úîã—BÑ','wp-content/plugins/ml-slider/assets/sliders/nivoslider/themes/dark/arrows.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','M.Õ¬òÜ’æ[é`—Ö','‘$Eè±þGên\"¤ÌT¨©_Ûc’%,BfuÇ','',0,'?'),('<Þú/•î\' Î¯Bm','wp-content/plugins/ml-slider/assets/sliders/nivoslider/themes/dark/bullets.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',' ŽdšÅ§àÚò>0Ù/g^','qñüpä$†ìÎs€1Í»žî³ý“G¼›çàM+ö','',0,'?'),('‰\00±é÷{jv²…Zíƒ','wp-content/plugins/ml-slider/assets/sliders/nivoslider/themes/dark/dark.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','æ5‘öÊó÷ð*µgû¨','ŠwõQß¯lØ-gŽ¨½Äá8ïÚ”¸RTŽÅb','',0,'?'),('ï†O--r\0Ãà†','wp-content/plugins/ml-slider/assets/sliders/nivoslider/themes/dark/loading.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ýk{õÃ¯\"Iš¼\nžáá²','Ÿo \0CjŠÓ\ZM;2ÇD«¦€\r²2	Ÿ¨‚…','',0,'?'),('ŒåÔE‹#éqÿË4œ%x1','wp-content/plugins/ml-slider/assets/sliders/nivoslider/themes/default/arrows.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','	²O\Zs¹îµÌbÛ~À¶Ê','QÄ¡ÛcðÔ¤«n‰Gö1ja.\rOÎÞ“¡q%-vÏå','',0,'?'),('ÀVV*Ã¹Þ‡Y\nÚbÀ','wp-content/plugins/ml-slider/assets/sliders/nivoslider/themes/default/bullets.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¬ÆoÎ5¥MZ:£ýW<Ý','I¾HÆ7 RˆŽƒ˜ñ*Å‘Ð{©ùÉÏ¬‡ìfCÎBEC','',0,'?'),('sµaÏíU/* Á¿âþ\0','wp-content/plugins/ml-slider/assets/sliders/nivoslider/themes/default/default.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ú•5XJ4UÅ7‹O¸','&ŠÛ\Zðw‚²¥w†f›ß6‚ìh˜hÅÄ¨\':','',0,'?'),(' +ÄäO@ÞZ©ÊØZýŒ¿','wp-content/plugins/ml-slider/assets/sliders/nivoslider/themes/default/loading.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ýk{õÃ¯\"Iš¼\nžáá²','Ÿo \0CjŠÓ\ZM;2ÇD«¦€\r²2	Ÿ¨‚…','',0,'?'),('Ñ_¿j	.\Za^¸\"+\\ÒÀ','wp-content/plugins/ml-slider/assets/sliders/nivoslider/themes/light/arrows.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','$lp}C3›tïè\nvý\0','åµ!‰®¶Ïd×AÈµ†\\]è*&é­•oÝ”+¯','',0,'?'),('Dÿ T³b#åùd\n•ä›','wp-content/plugins/ml-slider/assets/sliders/nivoslider/themes/light/bullets.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','‹èˆÂº›*·rdÓ*ï','ñ7+\Z‹pÄÉ8²_ Oïäé¾Œ*p‡â¹©Y/Þ\0‘','',0,'?'),(',Ï\rMý›¦’Àh1tL\"#$','wp-content/plugins/ml-slider/assets/sliders/nivoslider/themes/light/light.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','-wqŽäãk`Â£Iò,Aÿô',':Å¾3&6H\ZÕ-\ZXz×å;ë* Ë©»’Í¼â^b+³','',0,'?'),('FÕ™0 Ò;º­dëë‹T','wp-content/plugins/ml-slider/assets/sliders/nivoslider/themes/light/loading.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ýk{õÃ¯\"Iš¼\nžáá²','Ÿo \0CjŠÓ\ZM;2ÇD«¦€\r²2	Ÿ¨‚…','',0,'?'),('ýÉê>®=G­å23xëÌ','wp-content/plugins/ml-slider/assets/sliders/responsiveslides/responsiveslides.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','[ù9¥ßýë\nrîè-','çö)½ÆpéTKðüÒbw7Ëí‡Lû‚hà­Èˆl¬­','',0,'?'),('0áí>®Sj@y‰Ée4©ø','wp-content/plugins/ml-slider/assets/sliders/responsiveslides/responsiveslides.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','~à<o•ˆzl8Bqs}»Ã','7ÈOPtm@Ü€Ù|^²ÒZ[´Â6ÖrÄ¶9QÑê™Õxé','',0,'?'),('\n×^ÿÐ,ÿ’’O“;”ˆJp','wp-content/plugins/ml-slider/inc/metaslider.imagehelper.class.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','„qÎ^VÿZ®Y;Cðd0dè','‰‰üEsÐ¸ÝÙÕ4gÚüì	Ø¿QžÂ]Ìœ|','',0,'?'),('9·x°¨Í¡²ça–S','wp-content/plugins/ml-slider/inc/metaslider.systemcheck.class.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ï*.ž]½WBYƒ*ÙkÑy','ë\"\Z^¡e4HÇ‰1h8ºÎ{oÛ)2a¸Ùì¥â­\n’','',0,'?'),('K’Ÿ	1Bý:kºö¦ÞÈÄ)','wp-content/plugins/ml-slider/inc/metaslider.widget.class.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','&È’vKX5Z-n;qqË','îîàçíã¹bŽ½,$ Ã)iÇÆÓø¿W¥¦','',0,'?'),('sÜ=­¡V7N‚ðºm ','wp-content/plugins/ml-slider/inc/slide/metaslide.class.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ök-\'bæ§FÝ´ëNÙT','pß¼äôÙDÞžy]¤7—íçØ=oÃ8¨ŸC3?t“ÿ','',0,'?'),('évm%¶õ%\'ÔÏ…ƒ¸‡','wp-content/plugins/ml-slider/inc/slide/metaslide.image.class.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ï±-“\\¿nP:\\éQ','ÒÝ9ÝtHb}–D-Ÿ&`èiÓGU\0¹P/{kòKW','',0,'?'),('¼—ñ3vÄ^Äüå]\r','wp-content/plugins/ml-slider/inc/slider/metaslider.class.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¹ÑòÍÁ™oH·ª2É','×=\0ý2êuÍ>±xì)4õ†îÓ²#ëÏt•B‹H\Z4l','',0,'?'),('ÏÎÙì÷·Š™Ú¬JËœixØ','wp-content/plugins/ml-slider/inc/slider/metaslider.coin.class.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','~,‚znµ%28M$«Ñ-\0ª','v¤ï2Œ»§/r¹Èƒ¨¢\"í®ß	$Ä«ƒ<XØ‘]Ð\\','',0,'?'),('íé¾kÔLlƒû´ã2Ž÷î°','wp-content/plugins/ml-slider/inc/slider/metaslider.flex.class.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¿ xq#É–œòQè‘','óª\Z”B˜Õ2dKäšÁ•°°N Ua/°–5\"ß“','',0,'?'),('°?ßføäŸÑ©ÁØƒò','wp-content/plugins/ml-slider/inc/slider/metaslider.nivo.class.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','2mvébÅ±a”\'þC5','2:¥•—…ç,lhx?Ö7u#al7;G\'¤zO<é¦','',0,'?'),('ô=£7—¥[óú©ÛGDé','wp-content/plugins/ml-slider/inc/slider/metaslider.responsive.class.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¨ªTO\nRp0ÁøJäÉE^','æ&æÀ@ÒKi´-xÊt€·ªÊxq@’$áôš¶¿´','',0,'?'),('6½Tü¢šî°¦¹S\0v€ñL','wp-content/plugins/ml-slider/languages/ml-slider-de_DE.mo',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ü÷Nï-Ë«ˆ1s¸Ì£!p','ŽSuo™Œã°¶[ù4œ}…#ÁC¶ÀCe\Z+®¬Rî²z','',0,'?'),('säÍÚ;Ñ\"‹L„-Œ0ˆN','wp-content/plugins/ml-slider/languages/ml-slider-de_DE.po',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ñ.‹ 6–×©<<æÞm³ö','!§A¯{Ñåô“Ö€/ªÒoXjGÏ¡eˆ-”üªt{À(µ','',0,'?'),('DêÌ80iÄ;ÅÏUV','wp-content/plugins/ml-slider/languages/ml-slider-es_ES.mo',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÇØlre]¥(ÃTƒ¾1','©¸74$*úõ[oøÇÿî¿e‰JÞöËNž#þ‚ñÝž','',0,'?'),(';ÐvírÑ‡^¦M‘tÄfh','wp-content/plugins/ml-slider/languages/ml-slider-es_ES.po',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','åêk^QPÓk)PO\0ŒÜÙC','\"x\rJ`3/õ1¦q.öî2Læ8ö¾u•¬¬Ùäƒa‹','',0,'?'),('°¡\n‰\\gûN[«0F/ð','wp-content/plugins/ml-slider/languages/ml-slider-fa_IR.mo',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','!Ž3½Ox”¬)ZZµœÞì','?š“¹Õ¼æ¯‚‘¦$§ìŠeñú	ÎLÕh3W^\rf','',0,'?'),('))áiOËžÁnlV#gë','wp-content/plugins/ml-slider/languages/ml-slider-fa_IR.po',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','#6„p*—Þ4¿ùpq‘Í@·','$\0\ní/i¡V…ëÛîã!°†äˆõ‹	Ô0ReÐL','',0,'?'),('‹ú3å¾h1».LCT8H\"','wp-content/plugins/ml-slider/languages/ml-slider-fr_FR.mo',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¦Ã~ØØYìåè0D','ç±ºmO¢«V£“íNƒõuòÀZX»yÈƒ¸Ž','',0,'?'),('„Ò£hŸ¼V“AA','wp-content/plugins/ml-slider/languages/ml-slider-fr_FR.po',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÆÍ‹kò‡	fñ—0‡¦\"äM','›èy@‚9p5¶+s¥É–\\¢¸,±ø\"Ð	¤9¼ù«úk','',0,'?'),(',!@²š@]‹\'¨èúK','wp-content/plugins/ml-slider/languages/ml-slider-he_IL.mo',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','HÔÌú.L—M˜BH\\+L','àê«[ÀmN)v‡*¥Ÿ<½†Ý5ÓOöÆ>U}Ñ','',0,'?'),('àÁ\0\rÅÔ#¼Hz$€A','wp-content/plugins/ml-slider/languages/ml-slider-he_IL.po',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','1ß3š×\\ÜgíðS%ýê',':úÉ,kLn\0flJa\"81iåÁ’Ùûûi‘›oÆÐ','',0,'?'),('œô{Q¦<hp0åóŸ','wp-content/plugins/ml-slider/languages/ml-slider-hr_HR.mo',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ƒÕM@¼?\0Y)?7x©¬','d`!”hž,FÏ<ƒôAÛ>¡/Q w Q\'áhs­ò','',0,'?'),('÷z(m5NM­FŽìÅT*','wp-content/plugins/ml-slider/languages/ml-slider-hr_HR.po',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','uÂO\\b¿Úb¼=p—vOQÞ','GÎgd«†ñíÔ¯Â•„²»rƒ„çÛšQ/Áz£1ú;','',0,'?'),('Æ›Ð16$‘×R?±}/Ç','wp-content/plugins/ml-slider/languages/ml-slider-hu_HU.mo',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','PQ\Z_ªå•\Zxk¢7.Ñ','j³ÚÍ…™ÕšN42›œ–B·(î¢6ŸÝ]Ìþ Ö¶','',0,'?'),('˜2óŽG\nEwÁÔ-;5ÿ{','wp-content/plugins/ml-slider/languages/ml-slider-hu_HU.po',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','W+ªS¹uFÛ²ï†rÝÔ‚','êÕB/„‘¯SÀ&QÛ#?éFÚïK0«ÿ+¨†¤(.uŽÿ','',0,'?'),('#È’ŠÂ¯zÙâ{D','wp-content/plugins/ml-slider/languages/ml-slider-ja.mo',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','msÝŽæL\ZìVÙxµÐö','nîNjÒG—Ëæpä:t+ŽÀ»k‹Dæl…@ûó>c','',0,'?'),('‡\Záe\nD¬\Z‡éý¬È˜¾','wp-content/plugins/ml-slider/languages/ml-slider-ja.po',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','sÎJNªÑD€dç7^f','¤	æ’&t9{Y§Úz÷mð*œ=Côôø±rg-','',0,'?'),('2ýª‹b{ˆ‡‰\nÖ¦‘ ý','wp-content/plugins/ml-slider/languages/ml-slider-nb_NO.mo',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¹\\i‹L)Œ«6Ò¨\\¼µ$','*\'Æ÷âìº?Š\"Åæôé=A‘#n$’÷€‚—« gq=,','',0,'?'),('ä­.ÎæÂp Íš´Ô','wp-content/plugins/ml-slider/languages/ml-slider-nb_NO.po',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','IBmˆìg¤Œ·.‹…˜8','¾y´ÕowëB¤‰Iu·ØÒNíÉhÀ¡ö¢ÂÈÆ‘;… ','',0,'?'),('Äa\'Sˆö0Ž} òGÏG9z','wp-content/plugins/ml-slider/languages/ml-slider-nl_NL.mo',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','*[—ª1 k–÷âD*ÆÑ','/#.1\'´zâÓÀºmÔ\n]Ú”¬ÿ½\09©|[	Ñ–','',0,'?'),('ž¸ûÓh|ÛMÿªC”SŒ','wp-content/plugins/ml-slider/languages/ml-slider-nl_NL.po',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','||ŒêÑ·Öµ2sJ*jôF','^î\"H¿Ûwº\"”*`îYƒÝh>ÒjÒK…','',0,'?'),('N…jú…>QR¬_¦’ÄÎo','wp-content/plugins/ml-slider/languages/ml-slider-pl_PL.mo',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ü×YÍØœ¼Äx±h»×',';TÖå%¶T¾š„z—¹Î|úf0hÃ ~óË´3','',0,'?'),('Û•µ_óÏ’\rÔk+pËã4â','wp-content/plugins/ml-slider/languages/ml-slider-pl_PL.po',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','E¬ôO§§ì=è’ 54Êç','õA¸Æ;fYBŒgÑj ï;?¹”ÚñòçÍŽ,-£™','',0,'?'),('´ò¯ïŠµè/g,WKý','wp-content/plugins/ml-slider/languages/ml-slider-pt_BR.mo',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ý°ärá]å¿t©8Y','cí9…­XS=	ŽÔ„-\'5~êq0]ÔH“<&*dä','',0,'?'),('„¾@ý¤Qaµ¤ª¢Í	','wp-content/plugins/ml-slider/languages/ml-slider-pt_BR.po',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ý\"i»8\ZõÑ+›','$G-Q`s\nÎºÁlc¸\"Œ8ÁN7`,åpŒø\0','',0,'?'),('öæÑÞÑ°S!¾ÝGÍ\r€8','wp-content/plugins/ml-slider/languages/ml-slider-ro_RO.mo',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','³ÓjÛ\nTAyœ\n-° ','|P2gž¹¥Sr4M¶¥åŸsXüïó}ÖCûºÔÇ±','',0,'?'),('§ÒìÃV©GHã(˜÷…','wp-content/plugins/ml-slider/languages/ml-slider-ro_RO.po',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','‡Eœ|È>y|lÁgKþÑxL','%¼ù£Aé-Rš“xÃ²%/	7Qqvœ‚ãR‹','',0,'?'),('„ÕšF\\¼“‰¾¾ž,õ(„','wp-content/plugins/ml-slider/languages/ml-slider-ru_RU.mo',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',']–W+I\r#[ÏfÔ¢','º íšª—ß?i,yÉ?¶Ú²?R\"ôùßéy','',0,'?'),(',Rˆ]BXÆxvp•µþ','wp-content/plugins/ml-slider/languages/ml-slider-ru_RU.po',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','@w=›V«ð³”“$H]','È{Î±mêñLÒ–­—×fÿµI±ëÐWMC¬Út)+&Ãú','',0,'?'),('î•¥ôÿyœ9óÕ#,ž<','wp-content/plugins/ml-slider/languages/ml-slider-uk.mo',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','—J\\ý%6HÝò2¨…Ÿê;','j\rL1LÌ}Zô8\'D2}}â&+Ã|ÜÆêýx','',0,'?'),('o§_Y,EßÄ„^6Ê','wp-content/plugins/ml-slider/languages/ml-slider-uk.po',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ªL-y‹úÚ$w¤;Ù‡O','ÊöÖ@îVÏ¸¬Ñ×Â£r×5šd…úPJÕ±c|È4;','',0,'?'),('­r}k›æûÈ“éõdƒ','wp-content/plugins/ml-slider/languages/ml-slider-zh_CN.mo',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','²¥çLv¨A¶ÚÌ ¤_õß','±IÁ]£øÂlkÙ}Œ³|«6Ý°ÄXí³oÆWfÿñ:','',0,'?'),('{%òô\'þ­+ÆfH1Ä=','wp-content/plugins/ml-slider/languages/ml-slider-zh_CN.po',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ñ…Sò]7ãzúN´\"É','âžR®Ô‚§Á:Å4_¾«¸dÄêÅ€¤ó´,V\n—•¥','',0,'?'),('¯~%á7W²Ù!Sœ‡?†$%','wp-content/plugins/ml-slider/languages/ml-slider-zh_TW.mo',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','gøX¬ô+¶‹à^ãÎ\'e','”üÍ$çóH8¹—¯	³%Ù¢Üëì8!;â¼cÊz','',0,'?'),('úU:~}H‰6Ù†€]','wp-content/plugins/ml-slider/languages/ml-slider-zh_TW.po',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Äì ™C›ìèë\'%W2g',')Ï3µt»©Ûw¦[üí»5½Ïktà]Á|T;˜Äëi‘','',0,'?'),('Úí1«Ö8­¿rgé>2ºç=','wp-content/plugins/ml-slider/languages/ml-slider.pot',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\"9x¥¯&	±ð1Z8\Z{','	‰¡\"Y”üCJzó`”­›iÑO¯RÊ\nP^Ô8ôÛž¹´\"','',0,'?'),('sØÁ–/«ÃHÍÃøzìn','wp-content/plugins/ml-slider/ml-slider.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Çˆf75äu*v“¤m','bÊ\'€B8-È¼¾PciRÁl™0¤éíÃ‘ËWüÔÎ','',0,'?'),('oâ‰QŠ8u[ÄFk	¸‹ª','wp-content/plugins/ml-slider/readme.txt',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¿¤¥ö@>9@*Ñoáÿ;','ñR?5ê4\r}¨©öNc´(˜½nñïíª8YU.¥JY‘','',0,'?'),('ÛzY#1‰„Aø«pVÀm³','wp-content/plugins/really-simple-ssl/class-admin.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','nz]ÿóë\'/P’®Îñl','ysg´öjõ½•7çVÚ\\­€†³ŒÅôræÆ;o ','',0,'?'),('€Ü’Þâ”÷ b‘ÌuÓ','wp-content/plugins/really-simple-ssl/class-cache.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',',ÒbÏ]fÿ\\··Ý«Ô','ÂOiÝnºX7áWeÔ`|ôNXB*ï¥|:dÒ“','',0,'?'),('\'GB¦\në\'M‚Tiš¡µ','wp-content/plugins/really-simple-ssl/class-front-end.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','®l™9$çcr• iC÷Û5J','¨3±¦–E0Å\'Cc¡°æp<Ž—V!©rq','',0,'?'),('ÒÇÉ-{½Vs5‚Õäº','wp-content/plugins/really-simple-ssl/class-help.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ú8ª\nÇÌ¢Åñ\nzïgì¿','Í‡Šà> Ü÷)VTgÍKÌE‡p¬a£ëŠÆë6ÌhB','',0,'?'),('€¯ŠÁÁ^·û\0Ýjœ’','wp-content/plugins/really-simple-ssl/class-mixed-content-fixer.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\Z7Z²þÐ!\'ÍÖáÚ','ç²ü¬}´q8ÄG‘õí¿Bú×/€À®ÙcÊÿO÷Ê','',0,'?'),('Ö>äÂˆqµýf?=Í','wp-content/plugins/really-simple-ssl/class-multisite.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','T@ŸƒjãcžfžÌÞõ','öìC²Bñç³‡•¹‚-:´@ýÌ§è´WëëÕ\\ø','',0,'?'),('›Tqé›Qâ;ý·iTIt	','wp-content/plugins/really-simple-ssl/class-server.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','2UwdûÎ€;Í‘Ùu­k','Òyó‹tp:¾rìÅ¸>JÍ‚‡Ö^RÞ9ÃGÚœP‘Ú','',0,'?'),(',Eî6	]ÔM8}dç÷','wp-content/plugins/really-simple-ssl/class-url.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','_5’K@ã»Ï—xlÝ<¢','ðh“<ë#0Ð<ÒsQ¨c¾ˆMæ2âðl”1rÔ•Ð','',0,'?'),('7µ*&¨°„ýR¨5Ñ','wp-content/plugins/really-simple-ssl/css/index.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','-ƒè(½KSYUëvÐ','ä)Õ\ZÞ?–š{aö3{ó¸Wõ`áÅEX®-Ò','',0,'?'),('¢´cVõE!¯eÜ 4','wp-content/plugins/really-simple-ssl/css/main.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','éühûDÐÝÂËÇ,æ¦x¦£','†õaIÂö]½\nã£U´G‰k†] “ˆóõ¸—yÀ·³+','',0,'?'),('²§{,EÐž}m@àbÕÑ‚“','wp-content/plugins/really-simple-ssl/force-deactivate.txt',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','éö,­¢k_­_!“¤©Pp','Ù†ÎÓ<æŽþÀ±Ð%IÕ7ÍCÎ¯g¯×>ºÐpãü¼È','',0,'?'),('^ÞV—NiL÷ ¾üvÀs','wp-content/plugins/really-simple-ssl/img/check-icon.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','É\Z)¯wÃ*÷¬@J#÷Pý','0MZ@{p½p÷Ú;{ÙÐ‹*¶Ý·}Ðœ¬0‡r·','',0,'?'),('ƒb/Í2sØšàÑTÁÀ°','wp-content/plugins/really-simple-ssl/img/cross-icon.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','O}WZÈVNq%ñ4Ê H…','©(yËð\'ln=›‡Œ³C¢•–—+OÔwœ\\òJYéª','',0,'?'),('R¸¢a\rWû¤d¡*=‚•Ö','wp-content/plugins/really-simple-ssl/img/index.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','-ƒè(½KSYUëvÐ','ä)Õ\ZÞ?–š{aö3{ó¸Wõ`áÅEX®-Ò','',0,'?'),('iZÑ¶m@¡è†O?O','wp-content/plugins/really-simple-ssl/img/warning-icon.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ïß¨š¯G×<¼¢\n','Ô5	oÇñ%F³<àKEù–Û•\ZâçÉºhçZØ','',0,'?'),('ªUJJ0¬EG†¯†™ó}','wp-content/plugins/really-simple-ssl/index.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','-ƒè(½KSYUëvÐ','ä)Õ\ZÞ?–š{aö3{ó¸Wõ`áÅEX®-Ò','',0,'?'),('Ó2žO‹8“u“ÇKÑûÆ','wp-content/plugins/really-simple-ssl/languages/index.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','-ƒè(½KSYUëvÐ','ä)Õ\ZÞ?–š{aö3{ó¸Wõ`áÅEX®-Ò','',0,'?'),('»)1þ7è\0-ìXûn$','wp-content/plugins/really-simple-ssl/languages/really-simple-ssl-fr_FR.mo',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','úN0Vu»þ}Æ‰ÛÒµn','ŽHŸa…úZ†X“Z²Õ,`y}µvjã\0ûûöB','',0,'?'),('>9%¥ÎÏ7ûÀS†è&G','wp-content/plugins/really-simple-ssl/languages/really-simple-ssl-fr_FR.po',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','µ÷Ù;®Ìß÷vP–Žñ‹Äš','á×bÿæH»´f¼j4ƒÿJõÄ‘‹å“X¨Ñi-Õw','',0,'?'),('Qú0§u†{H‘FbLþ¥','wp-content/plugins/really-simple-ssl/languages/really-simple-ssl-ru_RU.mo',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','“Êb4¯ürií+‚÷¯¬','‘ÎŒ7wdtÔÂ0-IwËà®c”Gÿð4xZ|õ¯”Ç','',0,'?'),('˜j/6(ñ˜#à‹¤;Ù’ê','wp-content/plugins/really-simple-ssl/languages/really-simple-ssl-ru_RU.po',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','$èó\"^DÚ\n©¸žfuS¸','ÃøõóÒz¼\'/±úVÆÕVžæ\Z“š|+½&ï&‰E','',0,'?'),('é*ñ­bëùÍšÈª~Fä','wp-content/plugins/really-simple-ssl/languages/really-simple-ssl.po',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','K¡«¦ú9ë0€gJs\0\rÿÿ','&èB­\n×ìK}N< BúÍNÍØ•p¿>ŽnCP','',0,'?'),('õžý†$,V‰€\n½«„','wp-content/plugins/really-simple-ssl/readme.txt',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','†*Þ†O¾ãç¬•p8Gä','K7JÑtFqçÄ­þ\01›E}¹²Yº1i“’d','',0,'?'),('_Ò¹fàœé³p¶í','wp-content/plugins/really-simple-ssl/rlrsssl-really-simple-ssl.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¶‹s–5UsjjŒªþ }','	ÅG‰oBÜ[·é[Û<ŽvN8aáng‡®ÓüÆûš','',0,'?'),(')›oèÓú‰íAwŒ*¶','wp-content/plugins/really-simple-ssl/ssl-test-page.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ËÊ¥r‚xF¤uy¢NI’ò§','\0`”kM4—Ò¹×5H;qºó6*’pÁíL[¦±n«¶ø','',0,'?'),('Ø– .ý¾•&„{ÛR•','wp-content/plugins/really-simple-ssl/testssl/cdn/.htaccess',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','7V´Û H^¶Šû(¥J²£','\rOTØÃ¬]5@>•Šâ·GÏ`2h	ýÃ2©Ø\0','',0,'?'),('<ô˜®¹L%t{3°6æŸ','wp-content/plugins/really-simple-ssl/testssl/cdn/ssl-test-page.html',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¨¸ÜaÌ0ŸÁš¬ø&–-','ÓªƒGDfš¥è‰:ÃÚÈlkŠ#²L+J5B¨Ö','',0,'?'),('çàux7ô\r…ð\'t‘¶Q¿','wp-content/plugins/really-simple-ssl/testssl/cloudflare/.htaccess',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','7ÝË­ËÓÃ’Wv8”qGP','wãÞã\Z‡Û\\Ýl•8UÕÇ‘ÅÝÂfâÀß{·‘\Zš','',0,'?'),('ÍYÅ¥ =­:tZB™ë\rês','wp-content/plugins/really-simple-ssl/testssl/cloudflare/ssl-test-page.html',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¨¸ÜaÌ0ŸÁš¬ø&–-','ÓªƒGDfš¥è‰:ÃÚÈlkŠ#²L+J5B¨Ö','',0,'?'),('¶I²ôË–Ü«\nÿ-ó','wp-content/plugins/really-simple-ssl/testssl/cloudfront/.htaccess',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','šYÿ&OEÔ¶ÎØcäƒ','(PÑ—ñ;‹¾GÂèœt¬2—r§;þîu}›FÞ–/','',0,'?'),('¡œ@ï²Ò}œxÁfþd»Û','wp-content/plugins/really-simple-ssl/testssl/cloudfront/ssl-test-page.html',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¨¸ÜaÌ0ŸÁš¬ø&–-','ÓªƒGDfš¥è‰:ÃÚÈlkŠ#²L+J5B¨Ö','',0,'?'),(' Fiò„ë¦6ò¹9±	£ì','wp-content/plugins/really-simple-ssl/testssl/envhttps/.htaccess',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ì=Jß+‡rZÛ5','¥ëó0ð¢™CJ™Ož«›\Z]¶\nó`Z4`ªVR„','',0,'?'),('>Ì\"ó^÷î^`6Ýô+','wp-content/plugins/really-simple-ssl/testssl/envhttps/ssl-test-page.html',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¨¸ÜaÌ0ŸÁš¬ø&–-','ÓªƒGDfš¥è‰:ÃÚÈlkŠ#²L+J5B¨Ö','',0,'?'),('X¾š¨`ýOÿ?%\'9Õ§×','wp-content/plugins/really-simple-ssl/testssl/loadbalancer/.htaccess',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ñ²B‘\Z†VÅ¹ÐÙÁM¥E','`m}G`\0”Ì‘VÂ¿\\o±S¿¶Ö°/Ö|^ð_é¶‘R\"','',0,'?'),('Üà˜ª€+5˜ïN','wp-content/plugins/really-simple-ssl/testssl/loadbalancer/ssl-test-page.html',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¨¸ÜaÌ0ŸÁš¬ø&–-','ÓªƒGDfš¥è‰:ÃÚÈlkŠ#²L+J5B¨Ö','',0,'?'),('ž-À’Ír}×“¹†ó','wp-content/plugins/really-simple-ssl/testssl/serverhttps1/.htaccess',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','7Ó;šæ9Zm“ÇˆMÔÌæ','Q3×<0m›ÿ¦€dbÃnR¿:é_¯ÜºuA2i','',0,'?'),('Ô½•E;q8†ÿ3O\'Yå}','wp-content/plugins/really-simple-ssl/testssl/serverhttps1/ssl-test-page.html',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¨¸ÜaÌ0ŸÁš¬ø&–-','ÓªƒGDfš¥è‰:ÃÚÈlkŠ#²L+J5B¨Ö','',0,'?'),('hz[Cj8­±J†TþM½¼','wp-content/plugins/really-simple-ssl/testssl/serverhttpson/.htaccess',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','m¹&˜¢ƒ\rsÞU·‡ü','¥3x¦£ðl¯z¼[¿µ’ÊÎ”¢›%8Ï)áçW•Åq®s','',0,'?'),('¯¥£W¿†o	\n4xw.Ù','wp-content/plugins/really-simple-ssl/testssl/serverhttpson/ssl-test-page.html',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¨¸ÜaÌ0ŸÁš¬ø&–-','ÓªƒGDfš¥è‰:ÃÚÈlkŠ#²L+J5B¨Ö','',0,'?'),('½G¥AÉ¹ñ§Á‡$™c³','wp-content/plugins/really-simple-ssl/testssl/serverport443/.htaccess',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','õ-ÛÐYóó¯Ðœ&Zš\Z','CWÏù·ù´Ý6zÿ®ÏfÖK’5Ñ«[1®,â','',0,'?'),('?Í„åš™øÅU5GçXõ)','wp-content/plugins/really-simple-ssl/testssl/serverport443/ssl-test-page.html',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¨¸ÜaÌ0ŸÁš¬ø&–-','ÓªƒGDfš¥è‰:ÃÚÈlkŠ#²L+J5B¨Ö','',0,'?'),('1ý\\IŽ·èS/‘qÛV‰e','wp-content/plugins/really-simple-ssl/uninstall.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','žx1æmÄN(ëø@~ß¢ù','­”^Ü\0\0•UÓ¶s3ÁàœÛÂ®~­¤ƒt‹)O÷Ði','',0,'?'),('Â0ä\nÆoc’tà¹ÙÜO','wp-content/plugins/simple-page-ordering/assets/css/scss/simple-page-ordering.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',' -Bœ½ìÍ!ôpðm,','Þ½®múRÃ‚Nƒ’ã:Þ@&¡sÓp÷ã¥t<#„ö','',0,'?'),('•ÔPòÉgŸnÔ¯¼@?ç°','wp-content/plugins/simple-page-ordering/assets/css/simple-page-ordering.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¯oU&k¶ª \\é½	äð','ñpÞ0°;¼Œ+ƒ*€²†i&¥Ó2–ÇÆ9XU\nl-6%','',0,'?'),('êUÈ”1NžAc¶K_','wp-content/plugins/simple-page-ordering/assets/css/simple-page-ordering.css.map',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Bõ¹:+8þ…Ä&¯~8_/','¢wÊƒ\"ÀË:¯#Éyì>¯	d™¼l¬ãášç˜Y','',0,'?'),('þ–0öù¾ýˆÐûázóCg','wp-content/plugins/simple-page-ordering/assets/js/simple-page-ordering.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','5×žn²RfëâôNÅ','RùÁ›âúú*Fµ?t<Ô61Ôá`Š#ºT¼¼ý','',0,'?'),('a°Sn­É¢@-§¨_;Ü','wp-content/plugins/simple-page-ordering/assets/js/src/simple-page-ordering.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','e\ZëRçÑ4K&ÍäûTi–','?ú³•GÉ×ajZjƒ–,¤æ:Èa86GûSH`sØ_','',0,'?'),('û3}Ço÷žF.\ZÐ§JÒç','wp-content/plugins/simple-page-ordering/readme.txt',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','fû;ÛÉZów,DyÓ“²',':KJk´X;½»ä)}³ \Z¬×Þ2Ù-ØÞcmÙŸ','',0,'?'),('æd+VƒÓùßó×û˜Ü0Ô','wp-content/plugins/simple-page-ordering/simple-page-ordering.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','L¿Ì®CÛÜ\rJ’Xj ä','üXæS:&†Bº@p¯”éÃŒ \nDlà¨«ÍL`ß','',0,'?'),('.KÖñDþŒhóÌH(ßn','wp-content/plugins/technicalities-maintenance-mode.php',0,'Î¨-œ¯ŠÄ~ëqEÏ','Î¨-œ¯ŠÄ~ëqEÏ','¡»ìÍb%•çðZ¹ÌJ0®Vo°hbø9®ÖŒ½½zÄò[','',0,'?'),('NÒ_=Mû‰èÇoYrÛ ','wp-content/plugins/ubermenu/Gruntfile.js',0,'âä`ŠRÂTÈz6£¼†','âä`ŠRÂTÈz6£¼†','8BRa\"cð\n€èi¿ÅS©1­ÀDAï•Ï5Œ9#y’ X','',0,'?'),('šíaT;‚sš8Ö0','wp-content/plugins/ubermenu/admin/admin.php',0,'…~]=F™Â¬¼?ÈÏ™ê.','…~]=F™Â¬¼?ÈÏ™ê.','ŸÏ4Jù]â*Ã‘ÝkËéÂ.\rC(!²+Â©Nãlí','',0,'?'),('¥õ©UP	b¦Ì¦çÜ\"Y•Õ','wp-content/plugins/ubermenu/admin/assets/admin.menu.js',0,'«ÿ<š9‰\0ÅÜØœGå[','«ÿ<š9‰\0ÅÜØœGå[','±7!pYí9ª6C‘£Øò¤\"‚l8Ë€Ö+”í-æ°','',0,'?'),('áwµˆ$?9ËÝš7õÑ','wp-content/plugins/ubermenu/admin/assets/admin.settings.js',0,'Ÿ]™hu\\Âö².ú\0j~°\\','Ÿ]™hu\\Âö².ú\0j~°\\','¾\ZvºšÌ]Á’É1xÜ(Ë3U~%=UÆ†\n´ù','',0,'?'),('ê8»\0`b6tÿQ‚fîÝ£','wp-content/plugins/ubermenu/admin/assets/customizer.js',0,'Š<Ãv^|<’ºêr²üµ','Š<Ãv^|<’ºêr²üµ','K”QUˆòÊÿ3?ND¤Ÿ¯ð=Üê@h€ø÷‰híˆ	ý','',0,'?'),('ñº!œÎèt2²¥Ú  è ','wp-content/plugins/ubermenu/admin/assets/fontawesome/fonts/fontawesome-webfont.svg',0,'e¼¼‰Ÿ7’šÍlIF','e¼¼‰Ÿ7’šÍlIF','Ù7o€Ø¸¨RŽ¦CÆÃÛ§ÖÑ;˜Üó»U7›så','',0,'?'),('¢3bô‰í;3|Ðo+†–þ','wp-content/plugins/ubermenu/admin/custom.menu-item-types.php',0,'ˆ#þÕjßfw„T¸a\\g§¾','ˆ#þÕjßfw„T¸a\\g§¾',',Vÿ_7bIò)ÒëÐ°dš®îŒÌöŠ€9o),¿','',0,'?'),('ŒÑ–	¾?¸„Ûþ;TÐ','wp-content/plugins/ubermenu/admin/migration.php',0,'_%„÷©ÈA1éðÉð','_%„÷©ÈA1éðÉð','fžêi=—²òm4y¦{ûOD…Ãæ«pI%½Ø×5”','',0,'?'),('Zª3%<ºŠâÁ×_÷€7','wp-content/plugins/ubermenu/admin/settings-api.class.php',0,'sÃôô¬Æ›õÉÀ´ˆ]Õ','sÃôô¬Æ›õÉÀ´ˆ]Õ','ÜY‡NŸ)žÅdÍRhÿ,ë¸crFì,©Æ‰Ê','',0,'?'),('VD·à çÂ!4	*•Ÿ','wp-content/plugins/ubermenu/admin/settings.control-panel.php',0,'|£´Kô-4F¯ã¸0','|£´Kô-4F¯ã¸0','åZð‰À5¸T´¦Àè“©qõé”ç½äâÍœUÄSuk','',0,'?'),('pS¢½²aOîòèl;ÍR','wp-content/plugins/ubermenu/admin/settings.menu-item.php',0,'VKCÍ¥UÏêÅFVÎ¨','VKCÍ¥UÏêÅFVÎ¨','ì‰íÑ±äÖ0Ÿ§®VEÆº¤ëñæåQøê6xƒ‰¾Pª','',0,'?'),('A3ÂFáêÆ¥Î\Z^Déë7','wp-content/plugins/ubermenu/admin/settings.widget-manager.php',0,'äãß×ãèö¢;¸Â+{²','äãß×ãèö¢;¸Â+{²','žìØÌÆË’(^zdFQëiÒ—Ïx¬fa]z','',0,'?'),('Nq»ŠÑ÷F•YÀùˆ†','wp-content/plugins/ubermenu/assets/css/fontawesome/fonts/fontawesome-webfont.svg',0,'÷uùÌ¨Ž!Ô[ëá…²|[','÷uùÌ¨Ž!Ô[ëá…²|[','—×l½v[Ð%AhZ‹„R¥I‘l(,Aûk§Û17÷CZh','',0,'?'),('â`|ãìÙ%iKS>‚°t','wp-content/plugins/ubermenu/assets/js/ubermenu.js',0,'yW¹\"\r5¬r•dè}¾²','yW¹\"\r5¬r•dè}¾²','<Ì¿÷„…cŸËR·ZFqžÉ5KÛ]KLRÚaVÃ','',0,'?'),('æ‡ïëñe¯öuÎ³UÒé\n','wp-content/plugins/ubermenu/assets/js/ubermenu.min.js',0,'És6¥Z´f\n¿x$\Zq;ç','És6¥Z´f\n¿x$\Zq;ç','mºš˜xöÃ\r4ˆÒaçû¥ÖN)cgÆÀ…Ò¨i—µ','',0,'?'),('\0aî¡ú/\r\'(õ7Ò£','wp-content/plugins/ubermenu/custom/custom-sample.js',0,'_­A›è£íMn“/UsX','_­A›è£íMn“/UsX','ñ-:	ìK	fÒ¥ÞMµ˜|ÓëÀ~4ÔusÝüpnÆ','',0,'?'),('HóV_•-JìqÙfã€','wp-content/plugins/ubermenu/includes/UberMenuWalker.class.php',0,'ˆÓCÙýêWê5„‚N·Ï‘','ˆÓCÙýêWê5„‚N·Ï‘','„»éx±¼¶‚ÌŸ\rƒ.ò1òDUOìÌ4XU\Z‚','',0,'?'),('Î¡a–æ6šTœ¸ù÷×ù›','wp-content/plugins/ubermenu/includes/customizer/custom-styles.php',0,'z¶¨×ä|g¬\Zw„ÖÊä','z¶¨×ä|g¬\Zw„ÖÊä','Y‚Š?Á|¸Ég“FrÂ±fMTf9‘”ÇßøÊ¨ô\rƒ','',0,'?'),('Få„ìÂrO–¾6$Fa˜','wp-content/plugins/ubermenu/includes/customizer/custom.menu-items.php',0,'ÛðAn¨ÒöÂÈ1ˆKÒ_','ÛðAn¨ÒöÂÈ1ˆKÒ_','ç»˜6šLrZ4¦%øâìü¦\'-¡±š²¿©†:','',0,'?'),(' mW6wžjT3Ä—:Á¹','wp-content/plugins/ubermenu/includes/customizer/custom.menus.php',0,'ÃtT›ýÀTC@í£æCe_÷','ÃtT›ýÀTC@í£æCe_÷','(üz®èS;¢V­,Ì\0¼týq…}÷€{õ7ù”`ü_','',0,'?'),('-T;õQ\'²6,A:\'‡¸ä','wp-content/plugins/ubermenu/includes/customizer/customizer.php',0,'í¦å‡ÛlH4½¦ÙÏJ’%','í¦å‡ÛlH4½¦ÙÏJ’%','y–\'çO3MZÕVE&§;-%\\*wKt{¶\\IQ¡%','',0,'?'),('@vL’]`[†±—Ó™¹À','wp-content/plugins/ubermenu/includes/functions.php',0,'?ðÆM¢66a„óû»4G','?ðÆM¢66a„óû»4G','„;ÊÚ€1F¦º˜.~â *ˆ?oè:¯Jsæ®i‹gp','',0,'?'),('À°”“(á<°pz’<Œ]hƒ','wp-content/plugins/ubermenu/includes/icons.php',0,'\néƒaN´páÔÀ‹yñýŸ','\néƒaN´páÔÀ‹yñýŸ','ôråV´VAza,CVRŽC úíz„s]%ŠïG','',0,'?'),('ùÅƒå,bØôæÃ8ª£','wp-content/plugins/ubermenu/includes/item-limit-detection.php',0,'û•w4îŒ>7ìÒ˜£úö€`','û•w4îŒ>7ìÒ˜£úö€`','¼©©ÖÜ.iP`ºAî[øÁ›ÎDSÃ™8ÊÁ¿oT','',0,'?'),('\'FâÍõ’°Æ²U\0¶ÆÙµ','wp-content/plugins/ubermenu/includes/menuitems/UberMenuItem.class.php',0,'y\\n†qì«Ô§Á#\ZŽŠÆ','y\\n†qì«Ô§Á#\ZŽŠÆ','a¢G@íŽ…bbìõçàg»lç0†b¢-Í?¾S','',0,'?'),('ðTÑ<@$lÁ£ÅÌÿï','wp-content/plugins/ubermenu/includes/menuitems/UberMenuItemColumn.class.php',0,'ø´´Ö¿\0Þ8L#ƒ¼SóÞ','ø´´Ö¿\0Þ8L#ƒ¼SóÞ','àÚtTS\"§p^ÆðÄ‚¸w­Û9VÀú)ÞÅÅ','',0,'?'),('Ýéhc“’u\'¦*}[Ï','wp-content/plugins/ubermenu/includes/menuitems/UberMenuItemDefault.class.php',0,'5\"ÚuiÿIã3Ü:%ÃLÔ','5\"ÚuiÿIã3Ü:%ÃLÔ','°ˆí9\'¥\npœÇl’3#@yêª ÑØÉ&óÅs\n è','',0,'?'),('ž†\'0ª3¦Ÿòu‘#â','wp-content/plugins/ubermenu/includes/menuitems/UberMenuItemRow.class.php',0,'ùä;êì\\÷¥\0Oý’Ý¤bÙ','ùä;êì\\÷¥\0Oý’Ý¤bÙ','HåçÅ/h—NÜYÏµ#SDÑ¦§›â’ã\0wö™}xJŸ','',0,'?'),('y$Ú•qV3¥oªL«Ã[ß','wp-content/plugins/ubermenu/includes/menuitems/UberMenu_dummy_item.class.php',0,'E&\nØ‚-ÐÉ²¤y\Z§','E&\nØ‚-ÐÉ²¤y\Z§','þÏ¥ú89á•\nÅ,½…½SÐï3÷NÚ®L”CŒ','',0,'?'),('H¨ôi{Ÿ@1ã%çP¥™l','wp-content/plugins/ubermenu/includes/menuitems/menuitems.php',0,'U‹X+R¥<Ìí>ÖPùo','U‹X+R¥<Ìí>ÖPùo','»àÖ¤[é*…¹¾f@­Èm‡±F{äRc=Vk0cŒÌ„','',0,'?'),('ÕIfW(7ðMðýIp6Lã','wp-content/plugins/ubermenu/includes/shortcodes.php',0,'`D¾“xÞ.ÑQëB','`D¾“xÞ.ÑQëB','‚ó\'Ë:s»Ëj¹ç³ëcþRÞU,êèÍ¾­üåý<','',0,'?'),('–™0(]%˜8õâhV`²ª','wp-content/plugins/ubermenu/includes/ubermenu.api.php',0,' 6Ìpæ€²¹I(è’’™›',' 6Ìpæ€²¹I(è’’™›','ÀöY¸yŒð/¤²+M»éJ[VøœDšÐ','',0,'?'),('†d[÷=›x³2O§?µ˜þ','wp-content/plugins/ubermenu/pro/admin/admin.pro.php',0,'k„ž—‰<íÛ–3A1ž','k„ž—‰<íÛ–3A1ž','1Àê¶I÷ÜëRØ÷c“$¹`»õ?róïÐ^$\r÷','',0,'?'),('ã{¢mb~±£÷:¾ÙT','wp-content/plugins/ubermenu/pro/admin/custom.menu-item-types.pro.php',0,'ÚìZ‘war´ƒp ëˆÛMÅ','ÚìZ‘war´ƒp ëˆÛMÅ','„I1GqŽ\0†ù;çÀæã7KŽLk«EQ =¿•ý1','',0,'?'),('½uÁŠÎ2&á\roÂâµØŒ','wp-content/plugins/ubermenu/pro/admin/settings.instance-manager.php',0,'+Xû;‘#Ñ@mS','+Xû;‘#Ñ@mS','[¡ÙêÊÛTl³D0G‹4Ïf”W­Ø½˜š×úËÌ\'ÂdÅ','',0,'?'),('ó“_Sl#iTü‡ûQÔ‡¯','wp-content/plugins/ubermenu/pro/admin/settings.menu-item.pro.php',0,'nÙKÈ§nìõêò –_','nÙKÈ§nìõêò –_','®~ÜF³öµ]Žb µ:©ýVPæ¥£¥&6×f\'8\'','',0,'?'),('çâöÚ¢l¡Ih«¯î›','wp-content/plugins/ubermenu/pro/admin/settings.pro.php',0,'AoíçÒ_€›.,¸R@2ï','AoíçÒ_€›.,¸R@2ï','ý˜éði#¦zë}Æü,ótüû¦ºs>,4“k}Ó`£­','',0,'?'),('JÅ+ª4¨^ÑÒå@ÄL¬TÝ','wp-content/plugins/ubermenu/pro/diagnostics/diagnostics.js',0,'*sÌjr&o¹N–1m8­²','*sÌjr&o¹N–1m8­²','ËœEÙm¶„ ©·‰¨@úÉo~ÿàŠy¿auíúÏïÜ','',0,'?'),('øÚ¥ÌéŒuYˆ¸_Z`8','wp-content/plugins/ubermenu/pro/diagnostics/diagnostics.php',0,'Šö\nTÍÆòÅ;èãÓÞñZ','Šö\nTÍÆòÅ;èãÓÞñZ','¸œko-µµüè­ØöÈ†È\'	„è\"Ÿî\rt¯!²ÎÎz','',0,'?'),('ä´¹-«Mý®Ëj¬[:¨‚','wp-content/plugins/ubermenu/pro/diagnostics/diagnostics.tool.residualstyling.php',0,'fµûÖ²ƒ0áBgâoá#','fµûÖ²ƒ0áBgâoá#','@VWÏÖm–¹³ØªâwëHUÕ-IÆ~†ƒ£Ç,§','',0,'?'),('×ó,[\\¿*¢I»¹WË*','wp-content/plugins/ubermenu/pro/fonts.php',0,'òWÃæ\"›J3Ó>\"','òWÃæ\"›J3Ó>\"','H,—‹ªÁÿn_rßHƒVCw<ç×$\0*Ž¿öÄ¼','',0,'?'),('@¡ú\\û«&®+t°1','wp-content/plugins/ubermenu/pro/maps.php',0,'7W<Ô1¶…Š…~Xx','7W<Ô1¶…Š…~Xx','KÜ™ÛTA}Ì…\'Øj…CøS?ëíIùâoƒå®Æ¸','',0,'?'),('¤ô†÷v¬Ã™¤Ç\ZGæ','wp-content/plugins/ubermenu/pro/menuitems/UberMenuItemCustom.class.php',0,'žwèó0Ÿ¶Üô¼CG”÷','žwèó0Ÿ¶Üô¼CG”÷','òžžÿô°3ëËãÜ½Í].’8Ïš#\0Âc2õ¦H‹Q$','',0,'?'),('ã¼IÍÖâã]ô$6k£–','wp-content/plugins/ubermenu/pro/menuitems/UberMenuItemDynamic.class.php',0,'T8ür#DŒYŸ[Ú%Wå','T8ür#DŒYŸ[Ú%Wå','Z†›ù¸ÏOëX:KûÎ)”á¢Vâ¸¬‹nïóI‘žS','',0,'?'),('…0Šþl¤\\®ÓULW«Y','wp-content/plugins/ubermenu/pro/menuitems/UberMenuItemDynamicPosts.class.php',0,'j B\rU`$.NÙï ŒÏ','j B\rU`$.NÙï ŒÏ','d™tï©w/	è²ç/]©]ðë~-ÿ’s)b\n4bÕ','',0,'?'),('ßŠýýEÀ¥mxÝ4L','wp-content/plugins/ubermenu/pro/menuitems/UberMenuItemDynamicTerms.class.php',0,'œv½1ïâPÄ´Æ,ýrÊ','œv½1ïâPÄ´Æ,ýrÊ','‡ÃÆ½{&3j³ÇöØïZ%9øå\0\\7¼*>wužÖ','',0,'?'),(':ÚDÒ§’ZÔFùz–¶','wp-content/plugins/ubermenu/pro/menuitems/UberMenuItemMenuSegment.class.php',0,'ýçHÏxw³ÚÈ•Ž¬Ä','ýçHÏxw³ÚÈ•Ž¬Ä','Ì&âê’¥ù€ÀA@¾P)ò¼XKñ(|ñÕÔáxSc','',0,'?'),('d:œvÅV]éjpYQ¡èa','wp-content/plugins/ubermenu/pro/menuitems/UberMenuItemTabs.class.php',0,'=«‹Únp½VÐ|¾,•àŽ','=«‹Únp½VÐ|¾,•àŽ','J±½³b#GiÕcë^\Z£¦ w?Æá1“?','',0,'?'),('_M«=83\0¤>;Û03FÎ','wp-content/plugins/ubermenu/pro/menuitems/UberMenuItemTabs_relative.class.php',0,'1oUÉ…„q<‹†yõ','1oUÉ…„q<‹†yõ','³Às’úº7dx¢@ZWéùq„nÖyÈ‚XèÉ\0','',0,'?'),('ë3ôØÄÇÒñcŸzÓ”³y','wp-content/plugins/ubermenu/pro/menuitems/UberMenuItemWidgetArea.class.php',0,'ž~æ[¡cÕð¤.Œ—[','ž~æ[¡cÕð¤.Œ—[','XM{:Æ·Y]9ý*¤«LUZU~t7-wh›\n}','',0,'?'),('¾n¡Á×Y;\\!•\Z‘¶=','wp-content/plugins/ubermenu/pro/menuitems/menuitems.pro.php',0,'R\"ƒà!ãA±DÝ†æ5œ','R\"ƒà!ãA±DÝ†æ5œ','³)i*ä‰žñ :‘š¤VØ4ˆ¶5\0M¶rLxè','',0,'?'),('®:§;½oÅËÈ@Ÿ{P\0','wp-content/plugins/ubermenu/pro/search.php',0,'T5!Åj\0C¾KN}Œ˜“','T5!Åj\0C¾KN}Œ˜“','K-yÍ4ÖÎQ2ÉTo“³>âžÁh\"\r†bä Æ¦fjÐ','',0,'?'),('Ù×Øì¶¸Rœ®XÏÂv%TE','wp-content/plugins/ubermenu/pro/shortcodes.php',0,'©ÆŸ®MÒñçâôðÁ¾Í','©ÆŸ®MÒñçâôðÁ¾Í','ÇÑ¹8Êhœ„\nîöÿ¨öòÿ„&YÜöÄeÈ°+','',0,'?'),('2ÓüÌü Òì}wÈŒ)!˜','wp-content/plugins/ubermenu/pro/toolbar.php',0,'XØkIo7Ilu4e[','XØkIo7Ilu4e[','³‡Åv<°Ú<ˆ\\Ú¾K,ÒpFmz6«AÚ@\rN','',0,'?'),('2äýÁ°Ã”ë¸X\rà×ç','wp-content/plugins/ubermenu/pro/ubermenu.pro.php',0,'#mt½Gƒ)ÁÌõã,–_(°','#mt½Gƒ)ÁÌõã,–_(°','º¨#·aeÒWÉÐ2]{Pk8ýß4SÌü¶²­ä\\','',0,'?'),('æÒÎìÓ\"Ÿ™b/ÊVööÝ','wp-content/plugins/ubermenu/pro/updates/backup.php',0,'S\Z¼8©æ&ê„Z›cþÕ´','S\Z¼8©æ&ê„Z›cþÕ´','ÎœÐº¬›ü_r(äfØï¬ÔÄ(jä˜ÚûÚÄ)–Ã','',0,'?'),('å¬Ñ?q”)ó®\"_»mŠ:','wp-content/plugins/ubermenu/pro/updates/debug-bar-panel.php',0,'É\rœ+¡„„0\0q†ã½_®','É\rœ+¡„„0\0q†ã½_®','ª0í”ùßí2Æ‰gÙ3Â¯—c¶1©üÉUî	','',0,'?'),('§w@ðÇrUS\rTûë	','wp-content/plugins/ubermenu/pro/updates/debug-bar-plugin.php',0,')wRvÚ¹zŠÜ4 ˜©AÖ',')wRvÚ¹zŠÜ4 ˜©AÖ','Ú.Õ¬MŒÞ¿ç@aÊYÕ¹H—U\nùT\\~Fj”×Ä','',0,'?'),('6!p!ëåçHPóÃ[‚\'e#','wp-content/plugins/ubermenu/pro/updates/github-checker.php',0,'xw¨ÁíHU|üèÑ?)s­','xw¨ÁíHU|üèÑ?)s­','¿îjyæ\0—ûAgE¿¢VšKÖTNV©mæ	ìëpdÉ®','',0,'?'),('õQóÍŸ^\"îüLd{£ŠÃ…','wp-content/plugins/ubermenu/pro/updates/plugin-update-checker.php',0,'¢ó¹LÝßaVâ×ÇÌÕdž—','¢ó¹LÝßaVâ×ÇÌÕdž—','GVðqG¬×yü2+JÙÓKýtë2a|xªr\"\0Æ›%r','',0,'?'),('¹f@ÿ\'R×/2ðÑ§¤0','wp-content/plugins/ubermenu/pro/updates/updater.php',0,'=ýØ7×µJ\nùz~rY§','=ýØ7×µJ\nùz~rY§','<ŠIçð|§[,7uëëÒ KvÞÑ?É÷þg—ú,dQ','',0,'?'),('2§š¥¥E¨Œ4ÐahEš>','wp-content/plugins/ubermenu/pro/widget.php',0,'®s»pÚÖƒmÓÔÎÄ«¬d•','®s»pÚÖƒmÓÔÎÄ«¬d•','\nZ¼Fß°ûlXÛQ¢!°ÐÔÔåGÜ£Y:Ö¦<º[lÞ','',0,'?'),('Õ2æP±wê›9î¡‡W&ç','wp-content/plugins/ubermenu/pro/widgets.php',0,']¼o›C‰vfñc(Zûþ',']¼o›C‰vfñc(Zûþ','ÙÊ0³´*íNí4BÎ`j‘ìr[“Ð„àØÁêÕÂ¹ ','',0,'?'),('‘LŽc\Z¾¶,Û&âTTV±|','wp-content/plugins/ubermenu/ubermenu.php',0,'A+5Êh‚A9h¿&…	Æ','A+5Êh‚A9h¿&…	Æ','2ø/÷¢Mu­F‰=ö5UXÙÛ/OVww•Ñ’oa%','',0,'?'),('q’ñ2/0«-Fj_C„','wp-content/plugins/wordfence/css/activity-report-widget.1525275841.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','J„^x;y‚­‚°Ôc¡ýÿ','ÐÓ¡®ÁfÅaMšWv+ò€¨WŸ%}Öêž`DöN£Å','',0,'?'),('Ò}0~IpòcÙÑœeÝ¿]','wp-content/plugins/wordfence/css/diff.1525275841.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','I6OGÍjL¦?ÝùvBî','˜…Á1t\\±¶a«ÊP.ÂE¶¬ed²ËŽ±3m¨Ö','',0,'?'),('o_ÙÂ¹ÿ=È8{hØ”¥)%','wp-content/plugins/wordfence/css/dt_table.1525275841.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ågJbjœJÁŽ9¹k:Þ','o[PÂHyÐŠ}½åìiGc¬~”Ð<c¥DìR:Dí','',0,'?'),('™ØÄB@#¤äk=Ôbªý9','wp-content/plugins/wordfence/css/fullLog.1525275841.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','+·ÝòòW‰jwË„}šä','ë0wLQ˜Ö®‡r7Ÿ$ä%ÒçÍ†¾„&¤ïÜïuäÁV’','',0,'?'),('à!ý×0Ç°tTµ(— §‹','wp-content/plugins/wordfence/css/images/ui-bg_flat_0_aaaaaa_40x100.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','f\\KùK‘G’Ð»SAÀ','¹Z%Aã£|xw h×Sed`Æ}ö;%)¸Ë9‚)','',0,'?'),('LW]êä=ŒàôÅ\0;ð:','wp-content/plugins/wordfence/css/images/ui-bg_flat_100_1997c7_40x100.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','jè\ZKÈš-\"ÉÖa{*0','\rãvÖ\0·Ù\ZV\'uYwpyòÐ>ú•ŽHw=q®¼¢','',0,'?'),('•?à>\0%lD[T‰“','wp-content/plugins/wordfence/css/images/ui-bg_flat_100_222_40x100.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¿^×F•\"ÖI~ó\0‹GÍ²','1IÝ§ØÇ½!•Hf}khhr9dØMhk×Žl©','',0,'?'),('“¶Q³c$2Û6.¾i…­','wp-content/plugins/wordfence/css/images/ui-bg_flat_75_ffffff_40x100.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',');7/EÊûwâ¯Açßg','mŠ±¾¹ÇÑ}q¯&¥/hÓ¯bj½š¤\";[¾ŸM','',0,'?'),('ênmq\0³½Í@pF‚d*','wp-content/plugins/wordfence/css/images/ui-bg_glass_95_fef1ec_1x400.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Àž0ìÈà(5Ö&3lhê)W','¦ñ[FWÃx$Á+?À¤hû‡;YŠ7\ZÎ6o¡[ö','',0,'?'),('P£â©£-Æ…‹ÅÀúiƒ','wp-content/plugins/wordfence/css/images/ui-bg_highlight-soft_75_a5a5a5_1x100.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','…ým8O@“üd8§<QÅ¾','â‰t!p$l_ë1\rFÙXÖù¨\"&ÔšùÈ‰=¼','',0,'?'),('Å–ä/PIƒ£¯«c­D=Y','wp-content/plugins/wordfence/css/images/ui-icons_222222_256x240.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',':<Thô„ðzÄ£ Ùâ*ËŒ','4\r§M…q»€˜€ïu…ÈWÌïß¡ð$rsÝ¾séÅß','',0,'?'),('Eõ0fÛ¿oÀiã\rç\"‡’&','wp-content/plugins/wordfence/css/images/ui-icons_cd0a0a_256x240.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ýÅŒé»o•8Å%§î','ê2êK~¤i*Ÿ³nã–næÆw£ÈºüÈ¾ «','',0,'?'),('ŒM$!©‚ð\\Íz´ôÚ','wp-content/plugins/wordfence/css/images/ui-icons_fbe569_256x240.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','˜ÐÂuÝ3À<½•É…Òj','Ò@Î¼úØËÏÀÀY›ÆˆÚ\0«lˆ­°‚lËÏ\'å…','',0,'?'),('üìM¯J¢ðdB.€™î£*','wp-content/plugins/wordfence/css/images/ui-icons_fff_256x240.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Aa+JD$ø2Ÿ‚J”Ú','¬/#?Tï†iOLyv¦íuš˜TK”°©É¤½·\\Ø»õ','',0,'?'),('¸ŽS—÷¥êûçÞ¤Y.x','wp-content/plugins/wordfence/css/iptraf.1525275841.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','+	Îæë<¼dq…7^³','L‡äË®ajñe\"¦Ê„¸ÛÐ¼lz²æ•ŽbÈyÎ:','',0,'?'),('_{šV-Û\n¯²@^áxuˆ','wp-content/plugins/wordfence/css/jquery-ui-timepicker-addon.1525275841.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',')eíôfÕ#¡`Pž~7Än','-míÆzíÜnàNÊFûE\0Ñ­\\vqësL?—Z\Z²½','',0,'?'),('*¨\0EfÑûT+	•Ù9:|','wp-content/plugins/wordfence/css/jquery-ui.min.1525275841.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','N3(Â- M‰²å¡\ràÙ','¿1vÓKÔÜ{KªÃõ³,†™Öêu\"Rä•v#6A~','',0,'?'),(']fýéÍØéPE¡0ðBf','wp-content/plugins/wordfence/css/jquery-ui.structure.min.1525275841.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Þí\\@¯1D«é?ÏÒ™','ž=ùU9Þ8ÊÙmcj_ñ€¥sîþ–ïÍ¹óŽ1¾!<E','',0,'?'),('½z áÊf½Ã‚P{:ã(','wp-content/plugins/wordfence/css/jquery-ui.theme.min.1525275841.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','’Åò{_®ØÎå¯#ÆÔS','ž¤Å³¬SûUM#å¯:¨üÕ™± Ë\n6AÐ”Vý','',0,'?'),('AS¤¹Oÿ¢¦=Ï%+&2','wp-content/plugins/wordfence/css/main.1525275841.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','«q7uÄí1ÕÖè{J²',')Qu«eßa˜z·YaM!pŒ¿¤|dA¼-²ˆ­§Œ','',0,'?'),('»ôâ	yƒWS\rÌ','wp-content/plugins/wordfence/css/phpinfo.1525275841.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','£<`Ì,7‘ÜJu\0Ÿ','!‚aÜEcW´Eó˜©¡ÐxÆVø.ô’z¿‰·*','',0,'?'),('š‘A×°_P–õîvV”†Î','wp-content/plugins/wordfence/css/wf-adminbar.1525275841.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\\ÛFB£­A†ý‰j™+âU','P ;]-léï‹öÆˆà{ïTz^xØã*¥ø<Š','',0,'?'),('aý\\Û:šÒéˆô0†lBZˆ','wp-content/plugins/wordfence/css/wf-colorbox.1525275841.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','PX)p!ƒ¾N8¦j­Œ','o©t0³\r™P2¡è±N¹­óæéiÌ×ÂKæÛu¤àõ','',0,'?'),('Ml©w#xl…KÛ','wp-content/plugins/wordfence/css/wf-font-awesome.1525275841.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¸\'ÄÿMäçÙ‹øVµª¿:','997dIŠOuÖ-Æøùñ%enÔ» 1ºï„é¾ÓI','',0,'?'),('FUû>¤¬‰Í\\ô»','wp-content/plugins/wordfence/css/wf-ionicons.1525275841.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Al¡°sÜÊjÀâ¯ƒ','×’–ð“4ÌË®Àv¨ùãÁ‰MæŽ`—V÷ëýZô','',0,'?'),('Ž•hŠÌûæ€È•”@','wp-content/plugins/wordfence/css/wf-onboarding.1525275841.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','È¨:8}º­¤ÄS~','y‚x;\\wEO&æM)²\\æˆgXDþè<°ÌŒY–‚Â¸','',0,'?'),('a{¿¤wÖæ\ZQÐ@k','wp-content/plugins/wordfence/css/wfselect2.min.1525275841.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¤cŠ˜ÌÏ3,BñVÇÂæ','§€Ú‘ót4UÔ–\"ü;¹tû7äº\ZÀJyÙrb@','',0,'?'),('“T®ÌƒC“@™Å‚†»(','wp-content/plugins/wordfence/css/wordfenceBox.1525275841.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','C¿ÚWYœ~äHœ#ì]','šrºŽµ¨{µÛ\ZI‰5™O1”‡¤QÜÝÓ‡¨£Ò÷Cßï','',0,'?'),('ÍŽ3×¢àJynÎþÄ€Mà','wp-content/plugins/wordfence/fonts/fontawesome-webfont.woff',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','þænq*Šîõ€ZF‰)2­','áü&4\"\rQjXãmN\"ãÉ?P¾o”Í\\°Æõ?¹ùŒ','',0,'?'),('ç2\Zð‰ {D·Zý‚¸-','wp-content/plugins/wordfence/fonts/ionicons.woff',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¬ýµh³ßI­15[I]J','*¡×\\&¿tä­¨\\Ã	gTw°‰µ¯,Æ1ƒ©¢','',0,'?'),('4;`ß¯zŽ?	Å{Çž@','wp-content/plugins/wordfence/images/2fa-whole.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','’Mø“æE¤ì*ˆgþêSG','æßS/ïl™~ò~)6Âb‹OBç5”C„Ö´Ñ®¶+•','',0,'?'),('Ú2àŽ6,Ìž|ke‡L\ns','wp-content/plugins/wordfence/images/2fa1.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','/)Ýh\\ h¨Gæ¯8ü','CÙ%ñ0…z)f ý¶±@Ît>õŠÉ¶{TˆÙ8·o‹','',0,'?'),('ØJ=R\'ÿ¬ßt^ôŸ}ú\n','wp-content/plugins/wordfence/images/2fa2.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ä¾ÜîŠÔû\0¿”H','n¸põŒÊ…¹¨üGÊ¿0Õ6KqÁJ]Œî¾Ã¾Jû','',0,'?'),('æ§˜ºî7Ý^ô»b³\"³','wp-content/plugins/wordfence/images/back_disabled.jpg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','hÙÂÔgØúïiîã†>','Žä›Nó7ÓgÎ‹Ä?ìFb!}„­Ý¿°ÝC¨­é³‡','',0,'?'),('ëÈÄ×®FîêpÞs¥Ø4£','wp-content/plugins/wordfence/images/back_enabled.jpg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¡¡ñø]È÷£”ÒHŽÃ','¹¾¶9í‡¥)Rµ$px#¯q Žþ°£˜Ç{#LøOº','',0,'?'),('ˆ©´÷nï\nõ\0Ü-i','wp-content/plugins/wordfence/images/blocking.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','£\'-H•f—Œ˜<1','A5„Y9Ž®à\0¶óOÄtqäÐ–L\\º}Ëa½Ô&â´','',0,'?'),('^yG=ÚœFg;3‘Ã¡©','wp-content/plugins/wordfence/images/button-grad-grey.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','•ÄRCì¿ÊTyÕý?Þ','DÞú€ÃÁÖHÙ~µ’´Ï¨¢Pº_á§{!Ê×','',0,'?'),('N7—Aä´\0ÂnnV¾Ö‘í','wp-content/plugins/wordfence/images/checkbox.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\"³ÈG\rû6|ôˆ˜€\'','ð‚y~`w(j×~Þ=ë¤¼&·ýÝ´ŠßìQ>`^Þx','',0,'?'),('â$8«.Vpäj½BÁ@ô','wp-content/plugins/wordfence/images/flags/.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','4.‚M:ß<ûK0ÜŸÎ®','Ê—©ÍÏ!ò¤à ä3Çºfù”Š´·ˆ^$ìÃ7','',0,'?'),('\r–«:©§”ù×UË£','wp-content/plugins/wordfence/images/flags/a1.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','4.‚M:ß<ûK0ÜŸÎ®','Ê—©ÍÏ!ò¤à ä3Çºfù”Š´·ˆ^$ìÃ7','',0,'?'),('\nÆ¥uoàÚefaœón','wp-content/plugins/wordfence/images/flags/a2.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','4.‚M:ß<ûK0ÜŸÎ®','Ê—©ÍÏ!ò¤à ä3Çºfù”Š´·ˆ^$ìÃ7','',0,'?'),('ž\'}H™ šWîâÔœ\n{','wp-content/plugins/wordfence/images/flags/ad.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','+¬\Z tVŒù[EØœKŽ“','àQ?ñ5<’»‘”T2OÞ2”êNýÏ.•]ó–BÆn5ä','',0,'?'),('TÚ.ñ€áÊd£Á8ãy°','wp-content/plugins/wordfence/images/flags/ae.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','®Ü7Æ4%ø©¿³Eê\'M}l','è¶?ê­ñ~$)rÐÂ/=#y¨XÂêw§zŒ<…å','',0,'?'),('—ø»˜;ŒcS‚Ô#nv•','wp-content/plugins/wordfence/images/flags/af.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÿ5º{dQí Ãœ³Åç','òw:5x½D{ÍVV§¢(£í0Êº÷;Ÿþ¡è\no9S','',0,'?'),('bÝð`¿×Ò¤¹®-17@','wp-content/plugins/wordfence/images/flags/ag.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','©·\\$,™ £°ù','iÓCŸëy£YXƒnµyTå\0²¤ó}K’Ì€/r,õüÌ','',0,'?'),('ÞÌèþ³·“¤ÀÌ/ÇÏ','wp-content/plugins/wordfence/images/flags/ai.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','7•§Ö–¢*¤¬´ì†¼¼',' 1ëÉTÀ‰­6\räÆ9¾Š\0XfúÐdZ–¼]%õikÈ','',0,'?'),('åP¢vÄdºI®Á4õu','wp-content/plugins/wordfence/images/flags/al.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ðè:\reÝ´OoðjºDO','þ*½/!@í)ŒB~u$ÁëŒ.§º»e·¯šßg;','',0,'?'),('Ï~„ŽpEÙ*«T°E4èû','wp-content/plugins/wordfence/images/flags/am.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','$/þ•ìcC\\&£ª§P%','O–’×ã­D’´úÞàHér[**ÙßÐ@ÕUÍùä ','',0,'?'),(';ä-#nâ9Ý|Š?=çÈ','wp-content/plugins/wordfence/images/flags/an.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','{Ú‡Ìž0sw1¦Z±Ì',']³ä3Y>S&ú€\'ŠÃyDÇ‡P:ûEEû','',0,'?'),('Áþÿyžn6KzÚ9œáGè','wp-content/plugins/wordfence/images/flags/ao.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','A¨ª÷m$ØÙ§wh','ÍÞ¸¸ë>2Pª¼Ó;Â®\\- &Ë‘\Z¦·!?;…','',0,'?'),('Áêþ¸NC‚ÈW›“†»‡¯','wp-content/plugins/wordfence/images/flags/ap.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','^˜¼d¡\rÙª˜_P—','ß¢@›µáRÉÑ/—d†8HžŽ,!é 7”Ð‰˜ š','',0,'?'),('uëõŸ¬\rÃèa\"¶‚\râW','wp-content/plugins/wordfence/images/flags/aq.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','uÊÕw ™†ªÆé‡šd','¹‡õe˜·K{ºÒ°Éî›D\Z‡ÙCâ‘6M6Ð0ô´¾Dã','',0,'?'),('õ»á¯°Ó¦0ncm‘','wp-content/plugins/wordfence/images/flags/ar.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÐlË¼ß´îUcph\ZK¶','|Gy;ØÖõûHûpñ.Î,ü\'e%)—Žt[>','',0,'?'),('ƒ:èÝPb§å4ü³ì	çu','wp-content/plugins/wordfence/images/flags/as.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ç_—WÀú^5F^¸õÕÈ','Qc2#T§¨«·úIBâ?ïL¬¡	<Ì¹VôUÝÚd','',0,'?'),('ŽQB˜ x‹ MB«æaö','wp-content/plugins/wordfence/images/flags/at.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','eŽþÎö\"ÿ‹‹ö—O;','”p×#!ñÄñbû¦ïFßù+QW•w4vA‘O8½','',0,'?'),('Q2\'-OÝ9ÅÄçù¶4','wp-content/plugins/wordfence/images/flags/au.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\r¼…Â”±¶/¥CsêY–í','‡pò%ãBÈð\'ƒ¯@‰(¬5ti@\r±zö','',0,'?'),('MSœ’Ùkì¥˜Ù\nöŒ','wp-content/plugins/wordfence/images/flags/aw.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ë3u³òyœ˜Öjuàø3','±tÇÏÌ„5JW`CLâvñuã^ù!½ßh«}.Ý1¬ë ','',0,'?'),('GúºŸÖü“T!®€†Aà­Ö','wp-content/plugins/wordfence/images/flags/ax.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','FuèwŽbÌ…€Ç(w\r°¾','MI\nì\r°…X°â*Èw$ÇËQøùÌ½U®8T˜','',0,'?'),('.€¸B9¸ß9&–µiâ','wp-content/plugins/wordfence/images/flags/az.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ïþ?Ü\"7^¡î`}]–Ý@','šÂíd|ØŒà1°_ot\'ÄÖ\Z]Ù¤FdÏ9©O—','',0,'?'),('‘SÛmòð$\\xH4Û','wp-content/plugins/wordfence/images/flags/ba.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','æTÌDX,àJ¨y«…$ÔÈ','Ço´¨|ã¢\0ò°=?ÄµS\'/ˆyT§l6]ßÀP9,´','',0,'?'),('ëpÉÄ¢ç „A^s%','wp-content/plugins/wordfence/images/flags/bb.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','–,4ýu‡\nñß¯?Äg','£ lnBVÎ4/1ë&ñ\"´Rm&sGÇtàMS&HFx','',0,'?'),('¼ƒH‡E¿1&Y·œ','wp-content/plugins/wordfence/images/flags/bd.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¸(ÚU!¶Á³ÏÂ¸â™!s','vÈÂm>þ±+Ò^h«b×ÆÃû-¼3c%¸8˜\rû','',0,'?'),('\0¤‹ùIÜJ—¸-$Œ€','wp-content/plugins/wordfence/images/flags/be.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','aòÍÙ£\Z%˜¶½âÁžz','a\0ìB˜t5F¬ºˆ/ÀøL‹>sxuZ\nÞÏä','',0,'?'),('{¼Ñ_9Î­»é³eþ','wp-content/plugins/wordfence/images/flags/bf.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','cYñ8ãiÒñ•3¸â¬Ô','R)hâe£¡YLGÕðþ?ï ÔŽ°ç@™','',0,'?'),('õ)ú©¹ó\Z¸cq&#À,O','wp-content/plugins/wordfence/images/flags/bg.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','},z÷ˆÈdð»@¨@Ö^','\"›Nø‘ºU¼óqsn7í-|ý[<ÏMm~ÿ Nú|‘','',0,'?'),('EŒ58ž B“C)Jùsªú','wp-content/plugins/wordfence/images/flags/bh.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','œ@Týà&„õŠÿ³VÆ','„¿¿ë!»î÷WÛMó¦…^PimÇ\'ÕÒ-–·	þ','',0,'?'),('ñûƒ>Xï@P°›d~R','wp-content/plugins/wordfence/images/flags/bi.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ú´Bp·©+ñþ–ðÄž','A»«ã÷A`¢(÷ÌúðâDiÿâ»ÚáêBˆî µ8V’','',0,'?'),('b32ðN?RŠÒVúMC—R\'','wp-content/plugins/wordfence/images/flags/bj.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','N,X\nlùY—%›ü_ôØ','³õv)&Óþ;\níý£óYÍ7Xà±J}\Z‹W·ôÚ8O','',0,'?'),('Á3y èúu‰E¬¦1wÄŽ','wp-content/plugins/wordfence/images/flags/bm.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Òã|¨Ûë¥¼	Ò9«eX','¬ˆeäÅ\06M*`u0|¸ùp,mn½>¢ï{ÕÏæÎ]','',0,'?'),('œ ‡¨£ª¥-âA÷&W','wp-content/plugins/wordfence/images/flags/bn.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','“ž‰zžðDÌÂ(­+J','Ö.RÑÖvØ*èl¦h\Z—[ÁÕP4¾«\\l]	','',0,'?'),('gMÔBMÔ}ÓÞ­!ßëÚ','wp-content/plugins/wordfence/images/flags/bo.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','&×7_ð |>§)ûÞï','DäE-ÚØý—Àôäüf#ÊÚÔƒ.¤}BA7F<:·6­','',0,'?'),('U­÷}5&`J[ u:','wp-content/plugins/wordfence/images/flags/br.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','m·H%”Wü¼Q“‚[âëë','Ù.\r»W´@±ÓÒ2{Üò6>±ëÆ,¶‹ù°7Fõ','',0,'?'),('²Æ„H™Àè¾3Hâ²×!‘','wp-content/plugins/wordfence/images/flags/bs.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','XÎsYI¢åØÚ}ÓT','^ìy®ZHHêÏA#\"Þ	aÀÞo<^#çúW','',0,'?'),('ÀêøÉÞžÿº¢Œ«Q,În','wp-content/plugins/wordfence/images/flags/bt.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¥KiKçu<ò_Õº’v%','‡\\#¥¿Ê¡ÆÊfŽHxÔÐºÑ&¼g´v¦é	\Z‡ã','',0,'?'),('fÉ¦Ý+¿ŠÌWKZ\"¹','wp-content/plugins/wordfence/images/flags/bv.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ôÒ’TŸÇ¯WóF”«5ö~','i‰«anu£ãvwÚ¯;võÈ^·$\"tÑË…¹)[Ö*ä','',0,'?'),('gñƒ“Ëºæ†3ÆC,','wp-content/plugins/wordfence/images/flags/bw.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÑÿEÊ.ºÆgÒ;æã˜z','YX \Z³Gl„T;¡€f-ÞÍs·^±y5 ƒzŠê','',0,'?'),('k·à±Q‘Ÿí˜íc d','wp-content/plugins/wordfence/images/flags/by.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','_£6\rÅÿÞAû‚¯vŠüÊ','¬9ù‹Ïî…ýXú9¢¸’!—ŽülºÞìv†vÈ÷{+þ','',0,'?'),('eG£=¥Uù\\úÂl¾','wp-content/plugins/wordfence/images/flags/bz.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','8“ß e^z…ñ§e«Í','·ök?V„Ò^ú§nÁ¦¢Ò­^\nîŽ«N3Ff.$ö±','',0,'?'),(',æÜŽ—«„’<9¹TŽj`','wp-content/plugins/wordfence/images/flags/ca.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\"ç…J+/<úâõâ6(','•½ãË$vä­‡jå\'Kµ1°!uh:²{«4­Í3£ä','',0,'?'),('Y÷—«*¢MÝ$ÄÈ½','wp-content/plugins/wordfence/images/flags/cc.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÏêòTÃ’²›;ñ+RÜ@','|…\0z×|ðS=½<ëì½°Ô®¶^)íA·ŒY¦CZ\"','',0,'?'),('•/àÈ¯È©sc\"¹¹‚Ò§','wp-content/plugins/wordfence/images/flags/cd.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','WÉÔj°mû­k”ì“','´{¦wWk¯e~¬\0zÝ!\ZwÅ¼Š\Z_ÀZö×”ô','',0,'?'),('t­p§»þÞÄo\"Ý|:U%','wp-content/plugins/wordfence/images/flags/cf.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','*tü½)¥é’MØ‹F)','›°ÍE…zƒŠÇëNUò3FyÍÖÓ\nx*\nÔ¢ç','',0,'?'),('`X[r»°ëíšŽŸE','wp-content/plugins/wordfence/images/flags/cg.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','®UXB\'#¸TØw¬¼{','&;k¯WZrô!‡ÒTk¬àCöÙëûÆNÅ ÒFccÄê','',0,'?'),('©æ^°·,ûû^æˆ‰8ÉÆ','wp-content/plugins/wordfence/images/flags/ch.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','7_\ZeíçM¼Ñ\rÙ','ÚòØ#}\Z¹°dF Ÿð\0E·DƒP†Ú(úü','',0,'?'),('e>öY9Ä¢œ¦S‘&','wp-content/plugins/wordfence/images/flags/ci.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Øhå¹zPÍÛF+dÔy&à','%vÙ7XyCWö|63™în+àãñ¯µ€5Ùq','',0,'?'),('Ü‰]”júe½*:…¥òŠp','wp-content/plugins/wordfence/images/flags/ck.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','é¸sóÎ¬³ïôiÔ›þ€','1ÖÁ=ÞS¼ðoçpŠú´LÉTjUc=¤ÉçA’ÁÍ[','',0,'?'),('/t;/bñÊ¤4!Ì\"&','wp-content/plugins/wordfence/images/flags/cl.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','hþ´1ÕÜ®í­8»–','N$êá2[¦’È`$Û^ræbÛÔf¶ªÒûNdÀ‰2å','',0,'?'),('Q;Ýõðê¼¡Ê¿æËª','wp-content/plugins/wordfence/images/flags/cm.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ThŸúßWÿF—CÝJŠ¼','ðô)-L·$ÞMXjªsð«8cû)mÏ{,Êå','',0,'?'),('Zà%n•a?á\Z–/·','wp-content/plugins/wordfence/images/flags/cn.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ãŽF[ˆ˜«MZíìNÁ8','RZ1ñ9íãÚ4éok;Û^Ùc.ÞÌ/3^ûÀP','',0,'?'),('S³dÁ:¶ÿjr-I”ÛÆÓF','wp-content/plugins/wordfence/images/flags/co.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ñ7\"‡÷}¹ºË€®´Ð','gºÅ&%í~­â>zOÚ—H~èÌßý}ˆ¯¥:JŠA³Ï','',0,'?'),('ÅƒñÊþ•Î˜ãiÝ+Å','wp-content/plugins/wordfence/images/flags/country-missing.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ý\'W0º2©+à®C—¿äç','À[5ÖqºnÕÈ›#’}%Þ&Ô„tÁ¤æ ’SK‰ûÚ‰A','',0,'?'),('Q	1Þ•úb PSW¹¶—r','wp-content/plugins/wordfence/images/flags/cr.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','£\"q’Ùêì»”ü‘mè.','0ñ¬â#Ùm@ˆµÐÝÖ‘Þ‚|*‚öí‚E(ux?t±×','',0,'?'),(' —Bê¸þý”Â¾æœCJB','wp-content/plugins/wordfence/images/flags/cs.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','´ã\ZœmÜ@\nnÍ#·—','®šX˜¶ºC~Cåõv\Z[ZC›!ú·1ˆxÍs¨@','',0,'?'),('œÅ\nKnEH[„_íˆtÙ\Z¥','wp-content/plugins/wordfence/images/flags/cu.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ŒÑº7²øéÎ½-T\n¨Ä¤','®\'[AØ/‚;šª´¾þ§á|Óf†®i,S52ÿm¨b','',0,'?'),('[h…i&.æéªE\r5S”ë','wp-content/plugins/wordfence/images/flags/cv.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','5`€	÷xJ´ëB€WÓ','9ï:k é›b\'ÔÛ*»Ò;ÍOÏù0½rwMÒ‡•©fp','',0,'?'),('‡ºqàÃ>%£ï<HÝB%G','wp-content/plugins/wordfence/images/flags/cw.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','P¹%:éê—\'_z´Üfh','ì44-ØŽl÷¥ Ž÷îÉåì3ó{7†tQ¶Œ<¨','',0,'?'),('×Éo÷(¸ÿQžÓ<Ú(ôô','wp-content/plugins/wordfence/images/flags/cx.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ƒ:Œñî	B¾€2ÆÓÓ','’-—½‹¬ÿ´	·ûhë7K?uA<´\"â‚DÓ3PÕ…š','',0,'?'),('6À±ôáj4‹1]o½ôØ','wp-content/plugins/wordfence/images/flags/cy.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','È•2ÁcsryÐ8<Ê%\Z,R','Í¥¯½b¯Îû¨¹ãÍ­(µÃ{e‹\nØ¾ŸKµ4súi','',0,'?'),('vñÑäâÃ°šM£vÃ:i–','wp-content/plugins/wordfence/images/flags/cz.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ý\0¨yó S(18´Å#','Ð»éþ5 ýNJ\\¾\Z?:ƒìc¯íÕvH:®?‹v+','',0,'?'),('ÄzkˆnñQm„ð|Ç¸tkÊ','wp-content/plugins/wordfence/images/flags/de.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','n‘Š¯ñ¼áNbœðŸ”Kí','í\n¬U\\÷ØC4%ú·þâ¿pŒ¸V|{–\\.„rÍƒ','',0,'?'),('çòŸ¯†{tŒ‘vOz×³','wp-content/plugins/wordfence/images/flags/dj.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','gá-6¹~Ôð·$Ý‘žï','Ò6É=òÝ˜6Q{G›Z1:‹wWñõœƒa¢fÙ','',0,'?'),('´sF\"tOß“‹®;_‡*.','wp-content/plugins/wordfence/images/flags/dk.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ZöŽßDn~WMÕ¿MÚ','ìãõD\në¯7,\".–jSKçF‰4äÑ+u#pU›ÚÑÐ','',0,'?'),('&Äg½ÂHi†›“(ž¤','wp-content/plugins/wordfence/images/flags/dm.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','_\r&Œ.S%¡™V[\Z5YR','¾ôè/E`—ü‘¹È„…ü§²€=D:UË´Ü’RÎÄP]','',0,'?'),('tøªÁ•âw*‡>ª','wp-content/plugins/wordfence/images/flags/do.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¾V×:EØGaXð—öz','&àÝ*[FiÀï{Ì”—†pP+±ÂžOœ½Äò\n¤=S','',0,'?'),('jßèkQÁÀÄàžåí«0\'','wp-content/plugins/wordfence/images/flags/dz.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','þž“hîª9ª×XÈÈýÔ','Î êÕn—’˜ äL›ª­ËV³[P¤ë‹|M£°bƒò°•','',0,'?'),('6¤ÔKïVÔÎÙuëN\0¨5','wp-content/plugins/wordfence/images/flags/ec.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÎA$ÍŠz»€ˆ÷ƒ÷ª	','ÅAüI`üP{pd€ßP5R	¼Vÿø—ÄíQyðV','',0,'?'),('ÈqðùÏY¿ÚÁ×Hœ\"¨Õ','wp-content/plugins/wordfence/images/flags/ee.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ZšVFY3£\ZXLŠÈÜ(úý','¦ä“|õ,|rƒær±³ˆø¯1.QƒzÎ«r','',0,'?'),('AmK:`ìÌçG¦','wp-content/plugins/wordfence/images/flags/eg.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','”t±{ð-/9ÉME-¨·Ã\"','ËªóZÓmJÍ-$`Ãáƒç…*¾}qàØ{­hÞƒ','',0,'?'),('IŸåƒBÂ×¹7å1T,å','wp-content/plugins/wordfence/images/flags/eh.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',';Õì[e¾†Ìï¤AuK','’~&8Rò†–…h¨Ê)„]ùx(J\\Ì†EÓúsEÆ','',0,'?'),('À^[ç¢º’X„#ù','wp-content/plugins/wordfence/images/flags/england.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','å5Éã[ÑÔW,Ç\'oÅÍ','&4æ›2ÕW†¨é@G7L•I%ûpSJwÎ÷òfÚÍ³','',0,'?'),('Þ½sžæ£ã¢@1i:\Zã','wp-content/plugins/wordfence/images/flags/er.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','–àAQ‘¢Ú	uñV®¦o½','ü÷–r‰ÜžïÆA¤Å>ÓÉ÷fW-s‡·cºC','',0,'?'),('Ž61ôJüKgO 8 ','wp-content/plugins/wordfence/images/flags/es.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','f)„£.>\'ÔµÝRž‰	w','å3¾˜C$¦â¡§ðî*hî1{`.©žÌSrð¯q¡ó³u','',0,'?'),('Ç¸±ÒK*ÜÅuÒƒÌAv','wp-content/plugins/wordfence/images/flags/et.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','T\rPžžùË\0ˆ%á','\"4S„‘ÁPš#ñfuEÃ	;Á¯/.ùlaÕ>˜MDA„','',0,'?'),('>ßA\r´D\0éŠxÖ7à','wp-content/plugins/wordfence/images/flags/eu.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ä­2#Ï«óhk ¯ª’s”','PÁó^œ›MhßOeèAà9L\nvÏ×ÄiÁij¢$‡õ','',0,'?'),('Mü:OGˆædy½Ñ ö;','wp-content/plugins/wordfence/images/flags/fam.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','PÁ	a7\Zç<êh#òú','éB3=nÊœ¾\0;åÌük$Ý¢²ÖÌ-¾ÍºË','',0,'?'),('À¦ÄìŠ¤>­ùj1^','wp-content/plugins/wordfence/images/flags/fi.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','´(ýóKí q¯®i+šö','¼•_Úþ7Þ\ZLQy‹|ÎÖ¾‚…Þ]Bá)•œ©È¹*','',0,'?'),('æÍ¾%©X¦[ærþÞ\\fò','wp-content/plugins/wordfence/images/flags/fj.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','$”n´ €=}<^(]\0â','Z[³2`þ3ÉÂƒ|ø`$Òì§ª¿ìdbÙÄ','',0,'?'),('\\Ÿ‹I:ÞÃÚ²EX¨†—WO','wp-content/plugins/wordfence/images/flags/fk.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','T¢°Ià–]’íQý\n1','\'¿Œ(‰Ë:Y¿[HWÈu„åhñàh»`¾’hâ!¢','',0,'?'),('opUfü›Åš1€†TeRä','wp-content/plugins/wordfence/images/flags/fm.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','tm˜\'¤˜Jò°Ït•Ý?','¼tm{‡@iÛ¼ÿFª<ù$“Ïu[tºtëNcy¸0°','',0,'?'),('Öhƒ`_Jß#ÝS›ˆ_,R','wp-content/plugins/wordfence/images/flags/fo.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','þýå×óe³œ¼^KïIV‘“','Üåèî\"7Àá‘O%»“1ƒbŸÁùíA$Xºå','',0,'?'),('YÖ…4œò:+Xª[Z\Z ','wp-content/plugins/wordfence/images/flags/fr.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¡%›ÿ²}È2ïK¸à°óó','½QSR$4ç²ÚËŠî âk|,Wr\Z˜ãŒ˜³)6','',0,'?'),(':\"»ŽÌ%^ì@ë¿jð<','wp-content/plugins/wordfence/images/flags/ga.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','à˜ÃÜEŸòød\ZÌ‹•õ',':Wí<î\\î\'ŸàdNà‹-K<n€Ø˜	>G<6Xýú','',0,'?'),('{Âµæ´ÂŠ6\n×!³Äµ','wp-content/plugins/wordfence/images/flags/gb.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ûÓêô?îÙçIg*\Z›','7Ë.P£rsxû²{šf§RàmSx|Y¾Àª†fÍ','',0,'?'),('t;ø‚Qõ…<—eãÛr','wp-content/plugins/wordfence/images/flags/gd.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','­?B¶ ~Ìš¨WVÚr.9ì','†:¦rŸ·zòÑBˆI´5×Ç:gudkÁ«Ër»ZÙ','',0,'?'),('bu/~ó½µIÖ„9î»','wp-content/plugins/wordfence/images/flags/ge.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','‹hÀ”!4 ‰:¾ÿR','ôk»ÅRxaÖ!F/2¾fXF´¹ëCýBàiJ0á','',0,'?'),('voFXcœÂ%þÄmù/¿è','wp-content/plugins/wordfence/images/flags/gf.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','$’ü-à[S‰ê¬D]´¶',';ÎxåSuÇ´zìêenò®¶IÒW›j¦j','',0,'?'),('%²SË|ìOÁî@su','wp-content/plugins/wordfence/images/flags/gg.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','*½*™ÒOtƒ3Ì‡h˜ú','ø™õÖä†9í¡(\"ÁVqÝVÓÚî»¾­‚ù3KZP','',0,'?'),(',ÅäìÝÜM9[IvÂ-‰Q','wp-content/plugins/wordfence/images/flags/gh.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','â7ÄKÔzxn™ÕêÔåFn','ý\0¹°G†\n«-ó¤ÚE%ƒÛ–ßšRC€‡&Ï†!qµ','',0,'?'),('ŒéœÃÃ5¬º™.;l¼','wp-content/plugins/wordfence/images/flags/gi.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','›\rVe¾»ÑâOK*a\\','m°.ÿ¾ÊäÛÅäo¢0$‡k˜ÓWnPBTå’8\Z%Ø','',0,'?'),('&©iNó$Jñ…oFúr-„','wp-content/plugins/wordfence/images/flags/gl.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','÷(kt5Ì*\r’iélèü','0‚ò&ÓD4‰nMàþuÜ’ž¦+V0H§éÖà½½!_ú','',0,'?'),('\\&Ä¨æfo…–ÝˆgÆW˜','wp-content/plugins/wordfence/images/flags/gm.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','þ×1¶{ÿˆÍY0]ÂÞ','®yG£ëš-sÖ=„dÓMWhÕPKO¹ž(J\'5Ã','',0,'?'),('›îþ1(\\ÑI™ð‘œoh','wp-content/plugins/wordfence/images/flags/gn.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','{ü’Èýñ>ÙzIÔ	ƒ…ˆù','ƒà; ·\'S`ž˜êæøF„ì\\Ö;žàå	ž','',0,'?'),('a£#ÁçnÛ2fl\\Î	•','wp-content/plugins/wordfence/images/flags/gp.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¥êÂ©Õ¨½m» •g','á¹šÈ´·Ql³š¹7VWÌÑÂëGYuQ(»÷›ÊZÁ','',0,'?'),('ävŠ‹OÔŸÏ†í:Dpg','wp-content/plugins/wordfence/images/flags/gq.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ýØŸ À.³é«Ô¾˜j)q\"','ñ»Ï¥~½±2ú ¼|–Â…k(\0sîô5ªà1)á¢','',0,'?'),('-ï»êP¯ÈÉU\r[Eë','wp-content/plugins/wordfence/images/flags/gr.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','l¿›\r C§üô½éu¤-{','ÖÔn<…HAì6á~îîpœë·üª’û$\n84Î','',0,'?'),('ú^©¿½øEj²FÏÞ…0','wp-content/plugins/wordfence/images/flags/gs.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','b ²¡Ép²H‚¿ésCÿ}','œ¢s,!fê×zK¾5µãÉpøMø”HìŒþ Øö','',0,'?'),('ÌïPÆˆvûý»¸Œ$è','wp-content/plugins/wordfence/images/flags/gt.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\'ÂØvéqÁè¬#Ö\0@—','÷Xf¯4N®«Ô£<Ši[)+\"ô¨õÉ®òµ¾Ok','',0,'?'),('FY¹Ÿ¿»§$\\8“’^X','wp-content/plugins/wordfence/images/flags/gu.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','<èûXÃ£y÷€ÃÌ†²@Ð','’µ\rY*ÀÖ\'ÎáB\nå_½ù£;NÁ]½Ú+L§h±^î','',0,'?'),('Û9Ãæ^+«tˆëÔkóöË','wp-content/plugins/wordfence/images/flags/gw.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','9ÚMj+„çý+ONßzp','¯CN^KqvPÁËí%Ò¢Ç¯û<a vD»GIcZ','',0,'?'),('þùn±ñ8·Ã›íšƒ­','wp-content/plugins/wordfence/images/flags/gy.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÿ„œ*°*÷\"Gô|‚u','4‘Õþé|½ÞÐ5Á­Ð±ÞŽ„mszˆú—÷œ','',0,'?'),('êæèhDÃUX\rôõð|•¥ý','wp-content/plugins/wordfence/images/flags/hk.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÏrY‹FÏfŒÒÌ†U7Â','6®ˆú’¬C™Kã´)´zf³Vvåoþ!³¶£*ÿÙ','',0,'?'),('sùš¿Æß¡k×Ð±²Ê','wp-content/plugins/wordfence/images/flags/hn.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','1á©E•ÊÏP»‰ë+v','ö¶{åv÷:ŒER®ó²ÇuIâ-^¨ZOrà_¥ˆòaÓÞ','',0,'?'),('‰kýï¿HÊëÙìð| Š','wp-content/plugins/wordfence/images/flags/hr.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','—íÝð3òÉæœû•Âƒ7š','Å\\_FFFû h¹V£ù—¹M+n½²È0TÄµ¤Ñ','',0,'?'),('%èJ•„Ã\'šL©à—Ù¸','wp-content/plugins/wordfence/images/flags/ht.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','!–!ã¿wÛÄÕ²HýÖT?Å','NóTî#<QÑV¶\\Ì3¡C€}MFUŽÝÈq ','',0,'?'),('L ñ\rò+q¼|¼h˜•|','wp-content/plugins/wordfence/images/flags/hu.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','&Œ\";d>]pG¯¯@·!d','’%\\üréYf™sJý{ÌÓ‚âJ^ý§X-¾º“?M\'°','',0,'?'),('3\nÁV>›ÔO9ÇªŸ	™ N','wp-content/plugins/wordfence/images/flags/id.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Üt”3ÝÆÔúºmÿ','ÌÖ€ø¸%Ž†/m°öõ54V6r;â)ÈàåÍØ‚÷Y','',0,'?'),('±ÝŒÝ)Æ«ïÌ%ÓZäûé','wp-content/plugins/wordfence/images/flags/ie.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','•çO&Ì-qŒ9–fFÇx°','…¿†>+ö?ªŸi£òß\'ë„´öÊ[…dÞµ=½\n\0','',0,'?'),('=5ÐÁ@NŠ£%¿mº™d','wp-content/plugins/wordfence/images/flags/il.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','áªUPîÛO\nFz†ÊÂÉ','Z9Øªb•Ï\Z/‡/‘\"°;ƒ%iç‚ëªˆ»3Éd/¼','',0,'?'),(':õ6ÀM$žÛÎ¢]“pm¶Ü','wp-content/plugins/wordfence/images/flags/im.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','º:K,}°’¿´ã0Rös','ì¦´ßK{ìŽ¶÷K4‘êµm‡‰ª–²¦è’oÙW­','',0,'?'),('Ý˜`b1tXÂ÷\ZZ´ K/','wp-content/plugins/wordfence/images/flags/in.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¢Žàsü»¾²Y®„','6ñÄ¬zgê¾º}ëz±—bdvå9—ÛâôóvÈJ','',0,'?'),('À³µQÕ~ÓjJÑÂ€D','wp-content/plugins/wordfence/images/flags/io.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÿrûÒÈÒ²W«WœrÉ','L|^“õÄ&Žöò¶¡<ÏPŒSi:õÑ nV!Ì0L+h','',0,'?'),('RÀp5åÉô¢ŒñSi','wp-content/plugins/wordfence/images/flags/iq.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','õ¸!\nµ–ØÁs»7¾','õÛ¯p^G%)­‰‚ÎWÎ4˜Ãë_:ýKclØ¥','',0,'?'),('/k\n¨å•—ÝË8³šª“+','wp-content/plugins/wordfence/images/flags/ir.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Àk‚noT\'îÈÚÉ{K[','°vO{•¨ô¶ç ÛŸ“ådæ¼:½Ô]€å»s>1ð´','',0,'?'),('ÌqÛ©õ†Õ	‹ÎÁ‹§e','wp-content/plugins/wordfence/images/flags/is.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','`ò¬)™¾ÒÇ·h§ŸE','Ãg>»®Àõ2Ý×\nÛÿ$gM¿HeZ¿> ¡>øy×ÒI','',0,'?'),('XÛ2,ÒIìEÖd£{<','wp-content/plugins/wordfence/images/flags/it.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ëþÃ!´Ú%X¸bÌ£','ëàx–Þ5fc†0ÝNÂ‘£9‰\r¤›ñ˜ÝÌÏ¦ùå³¢','',0,'?'),('Aö<á°Ž?ï×ŽcÞQË','wp-content/plugins/wordfence/images/flags/je.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','rÍ;¶“¯­O0]•4­´ßj','ŒŸD„uœ>T™ÛC¼LÚŒÙÈ‹6îWo£…\\…ðã:=','',0,'?'),('’ñ7=Û$µ¾Êéÿ=hëŽ','wp-content/plugins/wordfence/images/flags/jm.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','·nËrmÏ“6þÈfÌk¦\"','èŠ¾ŒÿS¶!™ÙZ]f—O½a2,\Z¿ÙG“6kÓd','',0,'?'),('\\vvÚ¡wx^¹´4C1','wp-content/plugins/wordfence/images/flags/jo.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ó‚Ù1ÿ²ñ¦±ÙÜóWø','aíoFæ¥ØÃHÐ¢ù–KÌp”G«î1\05Mþa¬œ’','',0,'?'),('ŽR)Ô¡¨`PgÙ´·Þ®^„','wp-content/plugins/wordfence/images/flags/jp.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Þ^4>B±´“ÑD‰òYÂ‚é','…²ðx§yÇaâ¦\\‡Ë™ë}CŽ£3 þÖ$»ñŽ»“)¡','',0,'?'),('pñZV_	Â]€¡l{¿','wp-content/plugins/wordfence/images/flags/ke.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','oE5¤JUI´ÆWò>ÝsZÓ','®¹ý5?9›ï>Ñô©u£“\"Fž’ÓÓ£®º“ëèálÞ','',0,'?'),('ˆoÖ<®û»I}œ\n{`s','wp-content/plugins/wordfence/images/flags/kg.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ò¸¥¬\r¥Í§5ÇèóÓ','›-þ6°%EY¸xœ¯–pC;±­õ«iŽ8³ßË}','',0,'?'),('=¬²îìÑGÙ—“\0öC','wp-content/plugins/wordfence/images/flags/kh.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','C&}r@s¬šHL¥ÁOöâ','ÙÕ ÖÀzü[2jÖ¬WJÎ …Ö›¬¥Ô;Ž+·','',0,'?'),(']€â´g> ºÓ¡÷­','wp-content/plugins/wordfence/images/flags/ki.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','æ³áÃ[ƒ#0+µ´AÒg¿','÷³§™•øÚ\":é±·é$ˆåŠ]y¦WRFôimðë','',0,'?'),('-ÝÎ.‹z°e‰Š´—8á','wp-content/plugins/wordfence/images/flags/km.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','âvæ2ûáj\Z»I@	N\\Æ','+§¡ŠPÉ iÊ 7£¥	{‹õt`~ÁþyJ^å','',0,'?'),('S¥T+)Îœ<òCåe¶2\r','wp-content/plugins/wordfence/images/flags/kn.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Hpä¤(Œ©\"ÜIíà[Ä','­øÕ{	~U¯D\\Óä9-jÇ‹ÖEgyÂüÔ®K\'î','',0,'?'),('ûŠi÷Y:\0$°¯z¾÷]','wp-content/plugins/wordfence/images/flags/kp.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÀÛ8[÷š³!ˆzå˜LEt','ÞË ¨«¿•ã¦ã¡’  ?VŸhì®¶_ßÊt…÷M','',0,'?'),(' &ŒK‡,hÈ_ÌR€ð','wp-content/plugins/wordfence/images/flags/kr.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','reâ`¨‘Ì1¹j?;ƒf','š«mêCÀeª¢Ü	a‡¼«cSœæý‡\n1¹i}Ãr¦','',0,'?'),('Œž’W3|¼îåxõÓ•rÖœ','wp-content/plugins/wordfence/images/flags/kw.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','³òï×LÝºaÛft‘5Õ','n³d:T<™\"¸&Îºîd°Aëdý”m Â4Ex±(Ü)','',0,'?'),('·üÕðèb¡³hÖ¸{-w(','wp-content/plugins/wordfence/images/flags/ky.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ëŠ¤Ž>Ä@ã|g¹H˜3òí','Ci‚·ŸF²%™YŒÄÒR¸zdHbxNÛz7C¸Hl','',0,'?'),('\noÇså{–8oYë?','wp-content/plugins/wordfence/images/flags/kz.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ºñö±þzß€ô9\r¡©Â','“Q$Ø»v4ód:º€„I)ÃÌØa÷`\n‹OêÏ','',0,'?'),('¥˜ªtI@ú´è‹,æë([','wp-content/plugins/wordfence/images/flags/la.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\Z…rÎÑãB\0/>~i','†qÂ*‹a9}¡o—JÜ]“(œóSGÄ©4Á4xlˆ','',0,'?'),('¾Ó¨ì:ß:øÇžèêFA©','wp-content/plugins/wordfence/images/flags/lb.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¯¤ÎHƒ(W8Î¤×JW','xbñl*—™Õ-ÑàLe³éâº|C‚±íôAî¯0D','',0,'?'),('aýö?ñ´X@¾€Œ¾—','wp-content/plugins/wordfence/images/flags/lc.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','£ÕfF·ênîm¤Uë%\\','êLE¿§+õÏNÆ¡Yø¨Dìv_òq³cWŽ5','',0,'?'),(' ¥`ªr’²žÎó–¹A','wp-content/plugins/wordfence/images/flags/li.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ë~Á[k\"Ó4Ûê{‘Ò;','‚Æœ`¥,^øð×@Iür2S,j[mØK¤6ÀUt±µ','',0,'?'),('Nu.†˜N3ÿ´XT‹Àòù','wp-content/plugins/wordfence/images/flags/lk.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','·úFqO›Â¾›.·aA','A@·ó1T›VDñ:ý‘~×!ãEÞu>*8?É\0ƒ\"Ÿõ ','',0,'?'),('ïÎYf ùn„“¾Ø±yé','wp-content/plugins/wordfence/images/flags/lr.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','J:”‰xŸ^bö;ï#‚uc','ª÷üäsË¨-%FU‹CEÿÕž24ÙDgI•CÇ','',0,'?'),('$Z<0aeN¿—œT­¨Ä','wp-content/plugins/wordfence/images/flags/ls.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','tx¡•ñE·&Ê®m’\rnÒ','}—}6nGš¦í°\"bd08¼n _úîIäHÄ±;ÙA•ñ','',0,'?'),('¿mª}§†Ã¾‘ÿ+s]','wp-content/plugins/wordfence/images/flags/lt.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','5“.%Vþå‚zlïÃ','©T×™ûé`4vFl¯%lµfuýwòG»GÔ‹±','',0,'?'),('9ù÷žAê¯‹rm\rX','wp-content/plugins/wordfence/images/flags/lu.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Û5œÚ¡ynµžÃ7õxá','^¶Ô¹kîCèxÕ»„&*t7™ÓÈÁÌo—ô°wÅ•ò','',0,'?'),('‰^L9žÑZY†Äÿ„3Àq','wp-content/plugins/wordfence/images/flags/lv.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','–žCmôÓà³|“.„_','/Å¢* ð•\'4õ‚9i¥Œ}©?ýé¼(’®¨äå‹3','',0,'?'),('hM®ôªxù•åhª¤\'','wp-content/plugins/wordfence/images/flags/ly.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Î§CÌ²Û¨b#~<Qñ¦','î(·ä¯¶vLmØçv“6Wqxä^úðþÑ´Ä','',0,'?'),('?Òz¾O{9Š&ì~=vî¹','wp-content/plugins/wordfence/images/flags/ma.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','+”~É¢ÍƒPxU›Ž','_,~c‰\r¨ÐUWò½.ããˆ»?%·×/‹Ð‹','',0,'?'),('nIŸA	ÞR6Ùñ	ˆ}\Z‹\n','wp-content/plugins/wordfence/images/flags/mc.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','(Í	F­Vì–yÇ±.Èm','8çØ¯cVw;—DØ™RÝñ®í8¬¯ì~£?×ôô','',0,'?'),('œ/Ð?ž™[xL’\"ñ½N','wp-content/plugins/wordfence/images/flags/md.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','(¢Òok=h½ðìÜÏa­ö','Ùtˆ+cáxl¨FÒzž’Ü“ovŠ²ˆe¢Ä]ë5s¼—','',0,'?'),('<´^ç^Úi6Ôµ5«„','wp-content/plugins/wordfence/images/flags/me.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Zs»°L5‡¸ÇäU’ØÊ¢','Ë¢ö¬Ö©+4äÆuñ×¦‰•ÚÈû’ÃþL\'%è½ª_','',0,'?'),('ÉÑèMÁŒù[\"\\Û:PØ','wp-content/plugins/wordfence/images/flags/mg.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','žµ£±Äš|ÜÔdôà>½','î)TQiÓb9Ÿ®£ð§qbÝ‚q“ M»*¬œ`6	','',0,'?'),('xxPyÜªŸ‹1—Á¯Þ','wp-content/plugins/wordfence/images/flags/mh.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ÿ‡KQå‘:CÀYM','©_Æ?¶bz33RÕü/zÜÇÁd¡¬XÒÐ<','',0,'?'),(' ­>e‚‘œH…Ùb\0','wp-content/plugins/wordfence/images/flags/mk.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Áçƒ¿¡šô0\nÂ-¤oµ¥','½FeJ¦Rª—\n‡óí7ýLEŸ¬$ÔüT3¾·','',0,'?'),('%J!Ó¦[É,Ã}VšÇ•','wp-content/plugins/wordfence/images/flags/ml.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','V°1²€~e¶áÄx»Éå','ŒŽõv’G™Q%¢TÍÀ.l÷áÖûÆq°Ï!Çñf,>¤','',0,'?'),('æÒ]™ØZs¤@~OQ','wp-content/plugins/wordfence/images/flags/mm.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','uÊk0I«ZAfžÞão','Ôc©ÊËOÛ²€«¦V™½ªaó—‘Öµ Ø%kÖ™','',0,'?'),('ß¥ä“¿~;«ýQ2Dåã','wp-content/plugins/wordfence/images/flags/mn.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÉCŽ\']j¬Ïì±ý…n`','FS^|ù\nFKr­S ˜ç­Œ–%X˜¨™ÖàV7„Ë','',0,'?'),('ˆ¦™Ðf¡<‡u@ÍÜ­îìÁ','wp-content/plugins/wordfence/images/flags/mo.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','f‡ž Oÿ};Ã«1¶À','Ï»*p&=ÔGÕëïbYûT±Aø[÷L÷dÆñ*nø','',0,'?'),('b•Ëí³Â®rùÁ>','wp-content/plugins/wordfence/images/flags/mp.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','å†’;ýA&nÁ¹œï„=','üÄØd:TñùHæÜz,”zYù†Ù;Éh|¤oiÄ–','',0,'?'),('*_ôóçLfV}ùxfN','wp-content/plugins/wordfence/images/flags/mq.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','?ìËH\n¤ „\rp;IE¦','K¾#³JrŽ\r±¤I0fœ×0îdÕ…*Ý\në;3M','',0,'?'),('@$\"óŒ\ršf(7¨“U&','wp-content/plugins/wordfence/images/flags/mr.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Êû%“{¡‰çm³\\¾x','·#“ÙŸ	v©ŸNwŸžÈZ^·—ù›Ûü\"è?ïÙ7','',0,'?'),('k­¸F¬¨3ÓÐlÀt','wp-content/plugins/wordfence/images/flags/ms.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','“åïîÞ›y¢ÃÇ¨xWõ','›r:±1í¶fªJH)81‡ÿ(G{×ù<M)¹³:1','',0,'?'),('½Í&àÍL!³àÜ}Vm `','wp-content/plugins/wordfence/images/flags/mt.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','RdZP|¾i„QÚÞ‰{Ð','¸‰x$!ÒO¸ŠŸó\\%3	oÕ8ŽP`££?Z‡ÝÂG©','',0,'?'),('Ö®…Êxbü=à4Š@ë t%','wp-content/plugins/wordfence/images/flags/mu.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','PÙh\'Êú‹ÉðA(lê','Œ\"ÅÅi€Ê#ÔË7Á.ÃKÃØs¦­ æ(}pxâ×Àê','',0,'?'),('‘	˜ð[00Ÿ79xv','wp-content/plugins/wordfence/images/flags/mv.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','‘{ñÁ)¯jüJ{lÈz','r¤ô•ú\"¥án„?5·×ÀºabÎ2|Jö6…/\r’','',0,'?'),('(wZêBŸN¿àÚ¸]NSS5','wp-content/plugins/wordfence/images/flags/mw.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','å;¥R¢ÚÁö1ß´QJv','‹!’ð-}šëÇÇ*ÆU€ <ô‹LÖÏ¢•/ú§Ý@','',0,'?'),('Zv8~ý€`­Ö¬çüö_','wp-content/plugins/wordfence/images/flags/mx.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\\?Óþ¡a®ˆÒ«ÕK/Ò‹','T\n>F4ß­“X·(¿¦\0\r¬ïØ¨LK¬»F','',0,'?'),('šaSóé•\ZM[h²}·#Hæ','wp-content/plugins/wordfence/images/flags/my.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Öì_Zºçfÿþ˜ ·','ëZ»“¬Ì!&Å°„ð1Á²—œãê.º T«Æü^¨','',0,'?'),('²JgV#ë“OY³','wp-content/plugins/wordfence/images/flags/mz.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\"ë4È­Þ„­Žž£Ô7','³æ3\'œ…DûÕ¯™j\0xƒu„<œõË»É•î:ÊÂ(J','',0,'?'),('q¡‘\0.Þ·\Z`˜«ëÑ-','wp-content/plugins/wordfence/images/flags/na.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','À÷1ð=øXÏu™—4ã','ŠªAî‚HQÛæ:j±îÜ­Æb[œCdþÅý€,','',0,'?'),('¨ÌSQTé¤ê#k’Ní°w','wp-content/plugins/wordfence/images/flags/nc.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','–nÊþÝO”Ž©x¾ÅmÄ|','—O‡½kÍåÙn†©³W¬\r½_!<ÜÎÂh¬¾ÉY','',0,'?'),('–óº,#N2m§\\Übj','wp-content/plugins/wordfence/images/flags/ne.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ì­…BInŸÞC• sÛ~','Q@ïZgF£W‘ÕŒOB#hcc»ÊÒµ€_è½Œ^','',0,'?'),('zDZû¿èØ‰ƒ±JpñÕû’','wp-content/plugins/wordfence/images/flags/nf.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¥“äêóó5E‘Š‘›ÿ5h','ŠÌ‘(%ÓÿQ¼n<,L¦`Ìzs\nPôølÍw:-','',0,'?'),('HuQ¨Õ{yµÎ	W$ Ò','wp-content/plugins/wordfence/images/flags/ng.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','áA3[Æ EN½\"Ñ€YŒ','*élè†`ZÇ}þ¦-X›†Ž¼½WÕÏK¥à\"p','',0,'?'),('d4ÍÐå.ûmŸ4×¢´V)','wp-content/plugins/wordfence/images/flags/ni.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','‰2ý÷Ô™,ï•çfTá','âÄñ^‚@m÷™¹ˆ”MÑ‹‘(\ZÅŽEl¸Ã`%w','',0,'?'),('fÐ­í¤Jò6ç-u¿]œ','wp-content/plugins/wordfence/images/flags/nl.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','š®øº‰áKÉžñçl\r¦',' ¥Û2Ãä(6š€LD\"ðù0ŸFblFt3“†’Ë','',0,'?'),('v‚¢%Q*ÓßÄ[Gw','wp-content/plugins/wordfence/images/flags/no.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ôÒ’TŸÇ¯WóF”«5ö~','i‰«anu£ãvwÚ¯;võÈ^·$\"tÑË…¹)[Ö*ä','',0,'?'),('×MC¶SÚ’%,<µ\'L¾‘Å','wp-content/plugins/wordfence/images/flags/np.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','œ.Ä]×çH“ò2î÷{À','eÈÐ‰ÎLu ¿4´l\04i}QqÍO÷®öowª0\0','',0,'?'),('i8LOå°žžêsL<ºà•','wp-content/plugins/wordfence/images/flags/nr.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','7Éî\Z¿ïøÔ¶|µ','ÌÝnª<Š¬·)eqGn±Ñc?#™r<xd\r³&%ÌÉäW','',0,'?'),('\'Ï)q¡„®Z¼zÞs1<L‚','wp-content/plugins/wordfence/images/flags/nu.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','›Ò(ÚmàÃŸ,öGï™¼','Os]Wv±íøM5ß\'0:ì¶\r±f…½!Žù!Ù`‚>c','',0,'?'),('­–\'y€x\ZüÁuæÉ@Ú\\','wp-content/plugins/wordfence/images/flags/nz.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','“H/ ¦^\"Šâòq\\t€&','Òõ›.øêäçæ;Ym×ÐÑÊfCiXµÇÅ€Óå','',0,'?'),(' ­´ò<Ê8P\0\\=\0+','wp-content/plugins/wordfence/images/flags/om.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','°Z©,;Y¬ÐôO]&','Ó~?î,¨nîÔG?¬Fº°»K&fã‡šë s','',0,'?'),('L[LóªÑAÕ®$8Â);','wp-content/plugins/wordfence/images/flags/pa.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','*®\nýrgì@¸Ÿ<™nÎ','·†Ìz³žÙÿ\'YñÙ‡%ÃoŒå·6l¸pÇn\\PƒéQy','',0,'?'),('ÙÞ(MãRÂ;oÍïÞTPE©','wp-content/plugins/wordfence/images/flags/pe.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¶”<<î$,þE+<Ñ(','–ýÅ?ÝýÓŒ\\·“ì0sÖ ¾Îóop\ZûÇaeèq±','',0,'?'),('ã3\Z~sã¸†¨1¼8)/','wp-content/plugins/wordfence/images/flags/pf.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','É9}Å=T{±îf˜Œ¨\\é','Y{)ÒÚd*D±»û¾¸4ç\"±‹ZHëÆZ#•»','',0,'?'),('‡ôÊ±\'AK\"d;‚÷óƒ3','wp-content/plugins/wordfence/images/flags/pg.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÙÉ‚àì%X;{EÒ³]¢','],µÌl³7n\nª†³»ÙTKm\Z G*K§Tóç²','',0,'?'),('ü_€&ö³O~9îþRªG÷','wp-content/plugins/wordfence/images/flags/ph.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ù„@Ü¥Î){v»Âšáç','’¶ ƒMÎkôpõq)cî±.}šM^áË™z©¦','',0,'?'),('`Ú®/ZEò\0º]éÜ‹3œP','wp-content/plugins/wordfence/images/flags/pk.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','p,–ºØð¦áÜk¯Û','Ñ¶Æ{Ž«]QÃÙ>xA¤r]9b³ü¡YUÑ','',0,'?'),('ƒâ¥\"—mûéŸŸøo¤Â','wp-content/plugins/wordfence/images/flags/pl.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','–†s£¡¨’í’‘-à','—Z%\'™K²•‚’²±–ÞàH1Í	}Ó?&Ž”•¨%','',0,'?'),('>…Ä%­èp¨mÄÞ','wp-content/plugins/wordfence/images/flags/pm.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ç§,\nK¦ÿ®‚žºFøN','²‘\rã}¨ÍÕÅœ@êùCä˜‚EbŠÅ†\\\nt©a(','',0,'?'),(':Z¿W…Ö_Ý*‘if³‹–â','wp-content/plugins/wordfence/images/flags/pn.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','sš;Î;´N»é³nä©˜','X¢8ÛFpf¶Jx…êÿÙâ%ršÎÊ¥G,¢ÿld^¸,é','',0,'?'),('½éiàŠCX§ÒI¡\n3','wp-content/plugins/wordfence/images/flags/pr.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','éIÑdM›û€NªîhJê#','ÒˆDÉ\0ÅÝçw]ŒK‡#\nžu!*¹ÐYbµóÝ^p\'¾','',0,'?'),('õ3ªÖç™—î@…‰<¿','wp-content/plugins/wordfence/images/flags/ps.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ábHVÖ¨‹zàšk1Îj','üÆÇ‚#lº\'ŒÎªkjÌ–ù[ù)|~ÇW$My+U ß','',0,'?'),('vÝe‰_a´Ì´Š‰Á1','wp-content/plugins/wordfence/images/flags/pt.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÙÔ¢õ±’T:§ìüˆx','ÿ»å²eœ©œ’Qã[¢&Ç(ó¿€ñ&2kæMÒ»w','',0,'?'),('ÙìÂ¹S2–Ý%þ=er>','wp-content/plugins/wordfence/images/flags/pw.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','V…âù0î±\0Lž­‹','¾{&F*oÞŒKú=:ˆïÞéH•â=<Ì\'à','',0,'?'),('!“g¢Û‡ÒCÎ;F\ZTï','wp-content/plugins/wordfence/images/flags/py.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','E¼Ú\næÚEä)\ZøäøM','±F²‘©\"Šv¼€hà#ayjHÙ¿ÂËÞm0\rsé;š','',0,'?'),('’åTiàƒ¯q™Tl¢ }¡','wp-content/plugins/wordfence/images/flags/qa.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ç—¾E·2‡ÆÍ|ñn','NÎRF`ëx3bTöbÕÁÆÓ½WwÐèXÛßµqQ›º','',0,'?'),('OÞ:ð23F`  à•,(2','wp-content/plugins/wordfence/images/flags/re.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','…ph,ê’,Ši€-\r½','sÐk/ÇŽî_û:BÊg÷ƒÈKòáHèîŸæ\\“ÃL','',0,'?'),('öÕÔ $¤Ö½*:Ü¥òÐï','wp-content/plugins/wordfence/images/flags/ro.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÖÚš5ËVZÍ´_»Ý‹','×ióŸ|Õjîfm¡Gß-ÌÛGõjÀ7ò,ŽL“@ž','',0,'?'),('?ÊçmfÞØ\\Ï-Ûhž8T','wp-content/plugins/wordfence/images/flags/rs.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¶ænPÜeô\Z«éS<¦_®','E6¥ŠŠÓ†÷BãeLäh4°L/¥³/a¸ðÊ','',0,'?'),('F„ˆ§ª¬sT­&ý\'ï·Ò|','wp-content/plugins/wordfence/images/flags/ru.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','q?pé¦2Ë^ç™%çk\Z#²','tYÜ±žßMùw7il·¯	PÅIºVhHp¿å]ç','',0,'?'),('¯ºxÊˆp>“kµO z','wp-content/plugins/wordfence/images/flags/rw.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ðÅ/T´½®_níQE*Pk','Ùá˜mòÐˆ€±e\r™£\\Þµ€^³%ç:‚‚­y','',0,'?'),(' dç¯#aòÉ8åÆ-','wp-content/plugins/wordfence/images/flags/sa.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','W÷‹ö\\LbUìCh5âûV','#ê}1~x´¨òPÄÁwd24ZLéª‡§IS\"\\A','',0,'?'),('zlGçÙéœ>?î~±m','wp-content/plugins/wordfence/images/flags/sb.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','äl<Ê)óššJœ¦ÕÉëð+','j©ï1\'šU¨¶ñ„Õ€’¼tÞ¡ÐÞßål˜sRÝ','',0,'?'),('Ë²J0¤\\÷ó‹Vÿ4‘ô','wp-content/plugins/wordfence/images/flags/sc.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ï@l+­^Ö+Ú9U‡ËñÇ','†²ûd8¹öBîÍ!\Z û5Ñ¹V£VÑ+/ 3ûB,/','',0,'?'),('?…bˆUÛ,Iü˜‹„µÂÖ','wp-content/plugins/wordfence/images/flags/scotland.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÜµY5úûbG°Œ‘&','Þ÷ø‘–Ý.e\\	Š†Oö‚ïæÍ³¡Ãú©jŸ–“î','',0,'?'),('½Ð/jÃ×SAùºCJFŠ¾','wp-content/plugins/wordfence/images/flags/sd.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','8Ú¶Æ-£¥‘¢,×p©','Cµ™Pg7»×´@hÀ9ko™ê2CžD½‘5°½ì','',0,'?'),('¸©v\Zê)•¨)`o£Ò','wp-content/plugins/wordfence/images/flags/se.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¼]öeFÚBè³/$Irüi',')³é^Õ+÷{ðíˆ4Zó¿Ä/0R‘TT­¿2±³\'†','',0,'?'),('ŒÑáâ	–^dó7[xC','wp-content/plugins/wordfence/images/flags/sg.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','@Ó³‡jXùfÆš iÑ','»¶X46Žý÷Vp€ÀTE_àÉ.µ“EçÊE#¥‘','',0,'?'),('tëâÃO $Ò¥«h£\r\Z','wp-content/plugins/wordfence/images/flags/sh.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','>GÃ	{nùÕ¤§Ä[',']âL=A…AÎÏ‹Y¸|N0ˆ¹¼œ@Íé‹ÜGsÄ','',0,'?'),('& 6ûº³¬ººÓ¾Òÿ1ýS','wp-content/plugins/wordfence/images/flags/si.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\rÏ•ž5`}Òä‹…Ô%{','Ý,³ï°é&§Ú3?¿\nÈt/Ó„q<}Éz0?«Ô#\'¡','',0,'?'),('W¡¯uû®RPbIHí','wp-content/plugins/wordfence/images/flags/sk.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ùx3Ýiï2f–ùV.V]G','Z“a¼ÑDá…‚¨ƒŸ @1~e”‚òsÀ^Ñ¡‡š-\r¾','',0,'?'),('7©Ú+ì8ödöc¯„@$','wp-content/plugins/wordfence/images/flags/sl.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','.—êB`uÔ,&$èô³1','½\n 5$c2>9ã5tPÁóm˜<+w¢ì›,®œ[ã·','',0,'?'),('æ½‚mˆFË=”åH°{O,','wp-content/plugins/wordfence/images/flags/sm.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','@7fß§84ÎÖøö«¨,e','Ê„½²=cMŠ¤ã@¾L,d®s²{–ë!«ñÜ^j','',0,'?'),('nZ„&œúÉYwL„½‹V<','wp-content/plugins/wordfence/images/flags/sn.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ì»¯æôuŠ™I¿Ú©t','*—6ð–š­_©ŒÅšº[hç^9ô&ÜK/å\\\'Ý[Vþ','',0,'?'),('³ëªÄe:¢Ì³Û „â®','wp-content/plugins/wordfence/images/flags/so.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Wc@ö‘y;ã°W&±ØK’H','¢.#¯!Oc@Ša…j] §àÛ1Ç„ƒ^®L¼e’–Ÿ¤','',0,'?'),('&¯YMR¡éz0­vAo2','wp-content/plugins/wordfence/images/flags/sprite-des-128.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÜL µm„ôîFíæQ×ËrÌ','J)–ð@õu‹Kaå	,œú`8\n¨ òƒ-š’%','',0,'?'),('Nûš-#ØZ3k8‹µT','wp-content/plugins/wordfence/images/flags/sprite-des-16.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','3J¸—E»E4ßÏM`kfÈ','ç‘¸/3æ‘ªVÏ ½ÇÇ1â^2*¨ ÆúT¸½\n','',0,'?'),('H¨ÏÝ&=µ¾·ª€b','wp-content/plugins/wordfence/images/flags/sprite-des-256.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','U5š!B<RÝ2½×|B','u–n#êïl€3\n6ØÛ=1ÔEŽ¾\\]VeëàZ','',0,'?'),('õZbÕîWÀ‰e`›¡ž','wp-content/plugins/wordfence/images/flags/sprite-des-32.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','#5PaêŸf½\'ÞíÊØ','Äìì/ã7ˆ-›ûÜ„Q´¯x“LÊ¾A~{uM:','',0,'?'),('áŸµá‡@~G5©úÆ2¶','wp-content/plugins/wordfence/images/flags/sprite-des-64.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','+\n4Fâ’6½.\\j	$‡R','L»Éœå¡7?¶¿yµÄk‘žÿ„iîÄE&çã:šŒ±Ñ','',0,'?'),('‘fÕè‰U†Ú¬Q7Ølá','wp-content/plugins/wordfence/images/flags/sprite-des.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','9VÁÎ™T3©Èãu«q\"‹','‚¶ÃWZå%è&!sà`záÅM9ÛpfôS¢Êqe','',0,'?'),('ÕPÛÍ)‹þ3t;•­Þ¯','wp-content/plugins/wordfence/images/flags/sprite-des2.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','öÇM—d¡TWÔcp,ô','Àl8õÎË	?Ýì‘ ÃçÞãN/¦<´Œ£òó²öÐM','',0,'?'),('ªŽwûÜì×}Ù%¢euV','wp-content/plugins/wordfence/images/flags/sprite2.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','} ¬o§€Ä˜_›·2àë','J™Áxg7©Ó¬Þ¯0&\'É$K²½«ñFI?\rÕå8','',0,'?'),('Ì¹9BFèáh†¤tñ,<F»','wp-content/plugins/wordfence/images/flags/sprite2.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','»ÌÑé£ê¤µëm3;','F°´ÏŽh”­®ŽŠ›L˜Ív\"œøjÚc€×YLxo','',0,'?'),('çoàÑä2-b…t\rïádº','wp-content/plugins/wordfence/images/flags/sr.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','AÐa»p¶ÄL<zu¼¤ÅÛ','9ÍûæP[¿GŒÌiíhHïi‘\n%ÎÀÛî','',0,'?'),('\\?+V‘Qaò@…îÔl','wp-content/plugins/wordfence/images/flags/st.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÐRKŒž Ü«{‡ÝÏ< ','4›Èš.Û~+mvD…Áï)áÝ˜\nEêî4Ò«Œí’¼‡,','',0,'?'),('Èn¿É94co»öšÄk','wp-content/plugins/wordfence/images/flags/sv.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','çv8mækšDÇa\0ëS6','ØY¥tÏR&m.tÐkJ+Y\"…‹ÛÚ®=|/žÓ°’bê','',0,'?'),('Í,?hgŒc÷hÙùË¡X@','wp-content/plugins/wordfence/images/flags/sy.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','<6ÜF_.à6EÏ=TÖNÏ','ŸCQSW2L®ÿ\"‰)0µ\r•øûÁ Ü½/]Ã','',0,'?'),('5öÝµ›Còåýüt4A','wp-content/plugins/wordfence/images/flags/sz.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',': ð9§Y/X9õõä','Üœ:[\n{¨¹<Yñ\r-¥l?€ÜÝü »QO¯','',0,'?'),('V¼¶›6¨9ÑsCª!Š?‰','wp-content/plugins/wordfence/images/flags/tc.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','G/Ýåê	­¦¹ÈÑÖQJ','bôdm0^ß5]xê·ßöAN{ÑÒNçV(î‘9\\?	','',0,'?'),(']§‡—uF¾aÛÕÒü>','wp-content/plugins/wordfence/images/flags/td.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','™9ïl0#æ8;·ö6’ ·','‹Âg×Ž=Ó×¥1tÕ›Y|ŸšJª“j]ðXúñ,æ','',0,'?'),(']A6p¼ç}ÜÆ0ƒÖv3L','wp-content/plugins/wordfence/images/flags/tf.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¯)–v=^ž¡ë4“sÊ‰<³','£W­âƒuà–»žóÅŸúílvvdiq(Jo¬	‹š','',0,'?'),('@ò`¥u¨«™f÷¿¼\'§','wp-content/plugins/wordfence/images/flags/tg.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ä‚vÚt£o¸óÕ^ÔÇh±','ÿ¶ÖŒÕR+l{,eZ¢ióW×¹ÊÇÒÅdX(…','',0,'?'),('¨îD«›½NCÆ|\\Kd¥7','wp-content/plugins/wordfence/images/flags/th.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ˆ-ñ(äo½‘)ÌÄÆo—','þˆ½¬’Œë“1e2§ó QéLJähÈ70çy','',0,'?'),('ì?ô¡~\"ñSŒ™%‘Éž°','wp-content/plugins/wordfence/images/flags/tj.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','W÷n°ñµXãd,DjnÈ','³A¤´^Ï¶ÅXWE1iûÊÓSÁo\Z½IzÐ¥Š£û±','',0,'?'),('ÃÌ\0ÂÍmU®ÏÕ#¨ªøÿ','wp-content/plugins/wordfence/images/flags/tk.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','X°~´ŸÜk¬diÄ\\','ºC§Ð¼S\ZB/÷vW\\b¾ø~µ:7fÒqËÝÃ','',0,'?'),('qôñºU6JˆÎ£œU‹I>','wp-content/plugins/wordfence/images/flags/tl.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Bì\\ÑX[;O\0w9´¯ –4','í8™Ö2Í\"M@Ê5õ´¯F€-Bàob‘?\'ä¦§Á','',0,'?'),('h†W£(gÞ_æ,rê€Gk','wp-content/plugins/wordfence/images/flags/tm.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¯}kÝÔ¶Ï¯ð1»tÊ6','÷ˆ’•>Wy@Ü\'Ü¼o¿óœWàõBÝç~ñv-ú¿–Y','',0,'?'),('IgùbmÞ,asŸYp)A9','wp-content/plugins/wordfence/images/flags/tn.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','óŠ3eez³ÒÁŠž¨þ','Q—U©¹™‚\'”—L™éMR>žM=Oâ*Ñï5ŒÔ</^','',0,'?'),('¢rÝÖy)®v|ÇÖr','wp-content/plugins/wordfence/images/flags/to.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ÿj\'Kàœ¿^¤eöÝj«J','Ì³ð\0§g)xCêÿ[Ô~lfl@g 2§`Î¯mmxþß‰','',0,'?'),('³\Z5”V«úy“ÆŽ¤ºÜý','wp-content/plugins/wordfence/images/flags/tr.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¤¨ü_ëJsÞ^“R­','GÚ©SW k‘åìõvXa›—w;>|ŠÁ¶…)§ZÛ=w','',0,'?'),('ÍîS-5Å-†‹ËÜp‘a¡u','wp-content/plugins/wordfence/images/flags/tt.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','´Å\r3î—ížtk9V™k','Õº\n(¬$Wþ0ä,~ž\\ò¸¡#ð³$×Á!—/’õ_','',0,'?'),('!À¶áÆóA®;HÿÖWðñ','wp-content/plugins/wordfence/images/flags/tv.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ýªÂàõeKgÐœlí','¯çƒ¢ò³¨áLUÿûšKdŠþÒ“…tû†’¦5x','',0,'?'),('\"\nñkŽ\"cjîiùV€¤(–','wp-content/plugins/wordfence/images/flags/tw.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','l‰€7}šaEYÈ3³ºQâT','GÏ2ƒ‘çvÿÙ—“ùSäÈoÃýÁÀTœ·”ŽÛ&±ý','',0,'?'),('<*ÍÙ)Í1Yg¬ÐÍò','wp-content/plugins/wordfence/images/flags/tz.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','–]‹#Dçè¥ft½>>','Ã­3v	,»àîð·ÑËUå¹$yNáJÒ;èL èvQx“','',0,'?'),(']þí˜dT ŒÑ\'JÈ','wp-content/plugins/wordfence/images/flags/ua.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ì@šsß‘žJ„›”Ä','ÚýGÀ #ŽjÓð\\&ßj¯é¥`ØU@ËíÞPµºIÊ‘','',0,'?'),('.8{\'“OØ2àiøxCQ¥','wp-content/plugins/wordfence/images/flags/ug.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\r+YkSI˜¢ä-@^7nè','.O¹µ5OäÅNÈ—M	âo¼£º	Vª%\0UDt','',0,'?'),(':CcÂ*«àå-«|a4˜ž','wp-content/plugins/wordfence/images/flags/uk.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','(1Ål†ò†ÇÏÈfBÁŽ','’iÁ9å1pIÚÑÆ)HûvS<útoìP}Hh‚\'_','',0,'?'),('¥¾ìyc²%:ÞËúÈoá','wp-content/plugins/wordfence/images/flags/um.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','=GØ\0	-ïk§[ÄÖÔ‡','&‡‡Su:}î’N»,Æ•/¨MÒ[wÍ—¥{¹','',0,'?'),('˜}Éò3³(Ã7fœ\rÀÈKd','wp-content/plugins/wordfence/images/flags/us.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','õÅBbçñ·ð/ª\'x','.@ÕÉ_º…·wïÕ€§$ÌRd\nlŽ#—Ð¬¯”á','',0,'?'),('\\/æàW\"-ý‰ªÎ¤1qÞ','wp-content/plugins/wordfence/images/flags/uy.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','rC¼ž¥àÓ³ÖALô§)','¦G– š˜\0S`½¿ç1¶2S€w´à+ˆº=án2','',0,'?'),('f\'\"YèãîË±ÎVöê˜','wp-content/plugins/wordfence/images/flags/uz.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','^zlvYôíi6)6|c4;','ƒ-ã†™Ü.î¢V?N:Î‘¾ÔãmäY‘YkgV¼†','',0,'?'),('üÝ—!þ¹zˆ¬†ƒ§Š4','wp-content/plugins/wordfence/images/flags/va.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ðr)Ópô Ø‚á\Zt3\0','ê—ƒ\'ÐU°fØÅH/]¸ë›Š-SN›Ø8’©„\"º','',0,'?'),('gìx8²ªPM‹ãúâÇo¨','wp-content/plugins/wordfence/images/flags/vc.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','jF\"ò{åËÅÞ|0Ñœ','£EØÛ³µÞ¦‘DIÄ¿iÁ#ýl˜¿—#á€+v§/Š','',0,'?'),('ù‘È‡Ê±1w¯B_/','wp-content/plugins/wordfence/images/flags/ve.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','µŸUtøv9Hu\Z*a\\P','[C‘ÃoÏVUæ™ºäÖ<ÇX‡ó\\˜xx­òp<	ê­','',0,'?'),('é£âSp±ì*ÇìÍaŒ³Ñ','wp-content/plugins/wordfence/images/flags/vg.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','~U}\0¯$ºÕ¨“’\0ºu~','ì9¯aÃ/oDº²ùõX>àË‚÷Æï¨ˆ÷_‡6ý6','',0,'?'),('`šmäö[é´¡Æ¿jù¬','wp-content/plugins/wordfence/images/flags/vi.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','(ÕÛ~)NÒSÏ¢Ô¡œë','é×ÏØböÜPâ1Ô™áK€Ôã¬ê;˜‚|yÆ_3r¹','',0,'?'),('ÝÜÛ¾–ú´S)…9‹','wp-content/plugins/wordfence/images/flags/vn.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÓP¢¨á³—vwÜ¶ÿ¦PTo','¯¾ïêÖ^S5nÂ“Ao®ôú¬°¾È€ÙU|)6|,õÍ','',0,'?'),(' £SÞ ÒÓè—hnUdÑx','wp-content/plugins/wordfence/images/flags/vu.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','‡ èu%k{“mÍ¢(u','ÍÊ¯ó{§»™iþ\"çÊµBÜG˜‡1Ð\'ëþá\"ˆ*','',0,'?'),('ÎµöÁý`«³tv£Sœ','wp-content/plugins/wordfence/images/flags/wales.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Š‰ëÁ™,ã¥CÕo{×ðv','!¬iôMFÛÙ\\Sþ^¨Mà@j(ž¬ÏÍFH ç9\Z\'','',0,'?'),('‹÷D‡‹#Ia4*xM,','wp-content/plugins/wordfence/images/flags/wf.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','/cé¶¬š  k=‰O•',' Ü3†¯ŠPcÝÌsCÁ—ö:)zK”ž€aŒ¸&æp','',0,'?'),('`O(ºG7¬«€`	ŸM@','wp-content/plugins/wordfence/images/flags/ws.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','L\0N‹àÞ=H‚ŽOùsT','†¬%.Ê=,ò¤©)œ!‰¾Û1Zs S™ØcŽÞý4Ê','',0,'?'),('~¾¬ÊäOUËê½ÍÊÎÐÂ','wp-content/plugins/wordfence/images/flags/xk.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',']ìG×lÄÝ}$ó5»IŽÓÄ','Y‰sçœ\0Ú—Ä–S$Ø#:ì¸.I÷ÃÑUÕ”…w×','',0,'?'),(',¦7µm=i0`¤Ñ@*\\','wp-content/plugins/wordfence/images/flags/ye.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','4\0š7øCKž{DY)','b‹þMßjŠFç\"&Ñt¦,IT1#O­ß2LÓËØ$[ÿâ','',0,'?'),('Ý97X<Ô¹/‰j\\€Þ','wp-content/plugins/wordfence/images/flags/yt.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','öÊ‰…÷rT‡‘æ\0h‰å²','p^EkUC§×–Ôæ¦ý¢• ,0hÒ4=ËÓ_Â[«','',0,'?'),('[këXtÚÇ9Nt‡¿','wp-content/plugins/wordfence/images/flags/za.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÊpCh™\"ÚŸ.âÛ3³','ÂŽÓjÁÓò¶n½’ŒÜ‡‰€·/P†CiI,Yºy[','',0,'?'),('yó5Š1\\´m>çó¨Gÿ','wp-content/plugins/wordfence/images/flags/zm.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ïÖn|ÇÏ·{>cæÍ-R½','	›yˆÑï@ºBÄ›F›£5|³hä’§$‘_¥˜ú','',0,'?'),('!ñx¨sº‰C	pðh^:&ü','wp-content/plugins/wordfence/images/flags/zw.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','š	MšQ½‘Ô>qQ\rè','ô€C—O8+Æ»rD[¶jF6¾¹âŒFO H;zeÒô','',0,'?'),('.¦EÇ[JõÏlžxßã','wp-content/plugins/wordfence/images/forward_disabled.jpg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','M_ÚÖZ?ÚN)ºÒŠê:Ü5','›®€/ß<>O&ßÈ•JRÝ‡eÄ}š(»›m','',0,'?'),('˜\0hî”Kf•\0ðø','wp-content/plugins/wordfence/images/forward_enabled.jpg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','U\0/3e4e™Ï×ƒÞö','0¼´Q7018—Þª9-–z9Ø½qðÓSrÄ’ÓPõÓ','',0,'?'),('û÷Þçª’·u£¡\rZJW+','wp-content/plugins/wordfence/images/help.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','$NÇü;\'ý‡MÏÏùò Y','–ïé\Z²7\0Ùé¤rÂ€/i£Òz;ki,›=L›Z¿g™™','',0,'?'),('Ù˜Ý\"P´Üž÷Æ,ƒ©Ø','wp-content/plugins/wordfence/images/icons/ajax24.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','K:û„²·õmð™—£P½','j*äeŽó©õdoX¤~§7Âë&€²‚Nü9É|L•Ç','',0,'?'),('\'‹ü»ž ˜oÈÍSŠ','wp-content/plugins/wordfence/images/icons/ajax3.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','mwßß´tê“\'\n¤ñís','œdzÉê\nºyK£Æ®¨è’\'#]Òx	VJRø¨.=:','',0,'?'),('¡êyî&a’A 7Â]Dm','wp-content/plugins/wordfence/images/icons/ajaxRed16.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','´Ïà%º»©B\ng 2…‰;','D,…A£JÀíÀƒ»lOS‚p¢eØ‡£&ªÚÆ','',0,'?'),('»ÒÉ4þ™õ‰ù=Ž¸','wp-content/plugins/wordfence/images/icons/ajaxScan.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','‘Ê–´Ñ´­÷~fúúžiÁ','ß©0¼Ôò£ÕÑ¦®Æ»H\n‰•Ž‹ÀÂ¡;Â','',0,'?'),('j&ºV1™¬®6“4ª¯ëâ','wp-content/plugins/wordfence/images/icons/ajaxWhite32x32.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¾íér‰Á9 #Ó{…','ï¾±ÏÜn—Ñ¿¹0c~NüÿræñAuóg~Î”ÎàI','',0,'?'),('(x*J û…,…LÃ›nç<K','wp-content/plugins/wordfence/images/icons/arrow_refresh.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','k•w„`ö`ª|ô}$G€§','u¤/2/¼Œ»@‘Hž_Ilh•™ó¸/aU:«	','',0,'?'),('6[fÀ9¸?†“ _Ç','wp-content/plugins/wordfence/images/icons/bullet_yellow.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','J&ûÞÓÉŒŠýìîÔ”Q<','1µú±Nß—÷¹’ú×?*€i×Ã­!FýMpè9^.','',0,'?'),(']¥¤Ê*…¤…ÿJ–','wp-content/plugins/wordfence/images/icons/email_go.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ºªjÌÙEü´H)«.½í','÷½& ôqC1QU´_.OØî3¿ÂËò1!&Ðç—Û´ªû','',0,'?'),(' ¸‹‡`%ú’{ÍüÒ+›ó','wp-content/plugins/wordfence/images/icons/error128.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','É:Þ%7÷!Á´.Ñ','{h\0,Ž]ózñk“Vî{Ò—¢6nG\nÀxš©s9ê','',0,'?'),('z¢5·*\ZADZCk¬áj®’','wp-content/plugins/wordfence/images/icons/magnifier.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¨§uO®{:qcVãî\'','™ at¿¿vºdQÃë¨0(ìIj®Æ–O§¢$e(*','',0,'?'),('¯Î¡~×ß“þ:ýèàÂøeo','wp-content/plugins/wordfence/images/icons/tick128.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','åÄŸ‹øc·h4\"èÝ«','ÖÒû²çV“ø}X e~G[C©å³†¶ã5›²¥Š±ï','',0,'?'),('ÿ;`º$rçŸËÑ$³ž¦=','wp-content/plugins/wordfence/images/icons/warning128.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','pÏGÀI×t*ö“ÆÊNp=','ù¹äÞ*“/‚ØäÈ¾s›øtèAþˆ¸Ò}.b\'\\','',0,'?'),('uê6êÈ4E~ñø:ðï','wp-content/plugins/wordfence/images/icons/working-indicator.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¿«œéVF‘ ë{N	þ\'G','„fXºîRZ‚|:O…b Ç=fê[yßÛá5 ~	','',0,'?'),('ªXàá@ÁÔ%½1C„Ái','wp-content/plugins/wordfence/images/lightbox-controls.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','m]¼a’¬•\\$É','Ç—’h?àïïSéîÍ)¸:›ÁÖi@h. X×g”†','',0,'?'),('ƒ¨?ç¬Úz6¤—ÛaDz','wp-content/plugins/wordfence/images/loading.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','K:û„²·õmð™—£P½','j*äeŽó©õdoX¤~§7Âë&€²‚Nü9É|L•Ç','',0,'?'),('ýKjòâªhº‘èù','wp-content/plugins/wordfence/images/loading_background.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¬ô\'é2û”p\nK‹X´ì','ÍÎŽ%XïÅ–F¼ÿçÜò1sÏ;ÀÎLëzrç’»','',0,'?'),('ï¾˜QŒ¹©÷´)B\në,','wp-content/plugins/wordfence/images/loading_large.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','‚Y¼®{Ob‰UW~¼YË™','p8ñ\'—÷™	t—Ïß:„Qßo]{5G1åèã»ÅE¾Ç','',0,'?'),('sâ™¼{DRÌ[¥kÙ1ûI','wp-content/plugins/wordfence/images/logo.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','‚ü“š\'9%(wdô²hÉþ','ÒuMò/w`xG|w9Ÿ÷ó?ÓIé±C¾J^¦fNv ½','',0,'?'),('äz^}ù„Â¤hh3\ržˆw','wp-content/plugins/wordfence/images/options.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¥VÉðÑ´®Çó»Aï¥','D:ÂbwÃ#^›€Ï4¬BÀKIP‰?	zÀn‰VÌ_','',0,'?'),('ëx°Dª.¶áÚm~<×2','wp-content/plugins/wordfence/images/ratelimiting.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\0[›ìM±Éž¥yP°é','ô@ƒê­ôSÄçy\'èN+™kéBÀ¿3†J!PbÆ–•','',0,'?'),('êV,”ïU3¦Úêº','wp-content/plugins/wordfence/images/rr_premium.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÚÅ\"›3 ,¿2Ò¤','M\nµ¿¬hg^–ˆÕ¡ÆF‘ÙR-ƒÈ¡~õ³®É0Ú','',0,'?'),('#9\rPuLk0¦®kUØ','wp-content/plugins/wordfence/images/rr_sitecleaning.jpg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',')\r\0™”ÐÿÆÒ)¯5ßÙ','ÅÊ»{\"Ó^mlÜ¡²É±™Mh2aÆ9˜Ëq”7v','',0,'?'),('èò‡òQËoµH*¹‚À(ï','wp-content/plugins/wordfence/images/sort_asc.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',',¸»I§Å+Æ¾ êú=€ü','d¹CìT¾èµÚ…îe&,)Ñ´úàFGî\ZdãONÅ','',0,'?'),('5¡7ðN	C=†Û-ØœcÄ','wp-content/plugins/wordfence/images/sort_asc.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','“&­D®KëÞÝzSÂ§0','N—QÓ* ‘TZ%PºÚ%êÝjÜ‘tZn/Ÿ','',0,'?'),('ÉlX”wÁóBõ*X§Wñ','wp-content/plugins/wordfence/images/sort_asc_disabled.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','OÉ§ÅþÍ*ÒXÿ²Û9e','¯v‰\Zþ|5.YX ©‚÷‰¤òZ–é¹Å¹','',0,'?'),('‘xÃ_,[˜Ô5‰‰†ª','wp-content/plugins/wordfence/images/sort_asc_disabled.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','×ÜÇ#a]2…®¼Øë','Ÿ‹²û[8lÛYô¢ìåcklþÛ	™u#KVÙÆ‰n','',0,'?'),('?YvŽq_ê—ÿ³Û®XO','wp-content/plugins/wordfence/images/sort_both.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Åá%ÙB¬QxÁSV.D','’¨„ù6ÆÂ\"@XÛg\'æW7ÿ°wôËgJ™ßq','',0,'?'),('	7¬®ø¦×îãf	`','wp-content/plugins/wordfence/images/sort_both.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','šd†m	»8Ïf¥|ÅY­ã','~Â%ïñÛ‰Ž%…‹>öõþˆBl²o‡u·I)È‰7g','',0,'?'),('7Àc÷.$P!×\"Œò¹š†','wp-content/plugins/wordfence/images/sort_desc.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','©<„®ÕjÿŒ_³ËŠR2','*†ïþ-õ9Ô.¹û¾HGO6/îLÂ):C×dÃzã','',0,'?'),('ZDá°:-hÐ${ãmaÏ','wp-content/plugins/wordfence/images/sort_desc.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Äã?Õ¦‡)X²?¬N˜','bÆEÔšçBŠ#:Â(²#î=_(Å\Z€ŸÚ| ‹Uæ#Ä','',0,'?'),('xy—!àøôqÁ)ö.Ë‰\"','wp-content/plugins/wordfence/images/sort_desc_disabled.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÎmŽ„†•ÍŸÊärÑÖ 9',';	Ñ_öYïà·ítŠ7KßÕs—•mCøÞ\råàÊîo','',0,'?'),('ýusÛTÂ­Bâúµä¬B','wp-content/plugins/wordfence/images/sort_desc_disabled.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','½¥J%{O•Z\"/Öo','^*Çn^×\0m+¦‹!NkÊÉŒóŸÏ/©¿Ô¯^k','',0,'?'),('o\'RD-”Ü\0¶±¡o‰É','wp-content/plugins/wordfence/images/support.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¬Clâ$£‡r¼“£¼n<.','ŽÊ$ãMû¡Ô®¦&æâÃ(á©˜s¬µ^	Ï¢*NÀÞ','',0,'?'),('´PC<ÂÂ	ºÎÛvnàR8','wp-content/plugins/wordfence/images/tools.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','‡ò@cIÜÛËáÅ','ÜêY„æ=Üéá¾îîRB)	~òë×ï‚Ü–ÝŸr','',0,'?'),(':mwvK\rÿž”‘‚Z‰Œ~','wp-content/plugins/wordfence/images/wordfence-logo-16x16.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Yé~F,¢N8zÐÔ¨úO2','¶u Â¼¸%­üÿ5dÉ»ºDXžÓtÔò ˆ!ø?QÂ','',0,'?'),('FàèOÛ£ ÿÔÿçëg','wp-content/plugins/wordfence/images/wordfence-logo-32x32.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¿Ì@Û¯IëØíßuUÐ','°\\9BËHƒo>¶ß¶YºSs9vüðª*qœ(\0','',0,'?'),('jÚ¿´tØÁ1u©¬†}£§¾','wp-content/plugins/wordfence/images/wordfence-logo-64x64.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','v^¼IêN/©Èg@ö\\u','8ÄV‘¢ñíÝÇƒ4pøŠ]cyì‚\\ôšÏé§','',0,'?'),('E„»(ýzRA1;eNÇqD3','wp-content/plugins/wordfence/index.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','2ÁèeØÂÂª­ë\\ÆÁog','ƒ— ©Šo«ìé¹M¢J#‘A|˜ßŽõ(žÝ;6R\nð','',0,'?'),('ð¡]ŽÖ\0ý.:ƒ,Ò_º','wp-content/plugins/wordfence/js/Chart.bundle.min.1525275841.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ºñó5]”ŠdîÀ ûd€fÝ','¹Ö>Åá`‰ú½´°NN­`ëN\"K ÓžcŸkG<;','',0,'?'),('ºŸÜès²	ÑàÍLê[¯','wp-content/plugins/wordfence/js/admin.1525275841.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Pc²„“bÙ©‚Èô°[Ô¹','òæqÊ¤O¾èþ×m8VþÍ‡gÚ2ä˜ˆ¿Ô²µÁ','',0,'?'),('Ì³õá9’ðþ× ©JÚ±Ø','wp-content/plugins/wordfence/js/admin.ajaxWatcher.1525275841.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','£ðrØ-c/#m¾ Oâ›','vÞ¶£”#N¥ý\0\"Ìkfïê…B{Î”¾ÆR’Ti','',0,'?'),('ËêQ{sd¦ÎQñ:','wp-content/plugins/wordfence/js/admin.liveTraffic.1525275841.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','es;-!~úG^há$þè4','—êZ£õQ¾Þ‚½Dê\\ŸN­Aùå€/[ÿ&yð','',0,'?'),('f´…%d·oDš5µ»','wp-content/plugins/wordfence/js/date.1525275841.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ŒôÕj½P¾ERÐ_¯cÀ','€B=ëè0ÕdÆ©\"B‰tUc¨¹^1€>–q&ø','',0,'?'),('TÕ¬½°ívf‹¤QÜƒ¼','wp-content/plugins/wordfence/js/jquery-ui-timepicker-addon.1525275841.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','89\"ëîzzøÂVv*ÎØ]','«Û†%%lí:JÄf<ÈbqãÅP–ÂPtË¯}ß\"Õf','',0,'?'),('êzWÀÍþx,uZ÷Åž','wp-content/plugins/wordfence/js/jquery.colorbox-min.1525275841.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Y5±=ç÷Ìqîþ)–È','H¦Ö4\\¼óv÷â/XŒG›÷K†¿—:gkl','',0,'?'),('-7¼C¥¯ñé\'“rÁçBª','wp-content/plugins/wordfence/js/jquery.colorbox.1525275841.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','(Oˆ0%6Œ9óe§3åj','{âLý#í\r˜]àý\ngL8P,µü¢@—êIr,{ Ä','',0,'?'),('E\'w¶8\"ª…½«zI3î','wp-content/plugins/wordfence/js/jquery.dataTables.min.1525275841.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','<\\Âô ƒÍ•·h¨','væAo;üïŒ¤uDÌ3$›WB95ë£_\"´ô± ³','',0,'?'),('1ùÛ‡–=GD1I?®R','wp-content/plugins/wordfence/js/jquery.qrcode.min.1525275841.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ð±×Ô¹°´—Xp`me<','wP\0ØpÔzuYDSÞz(W ß¥‰ìP¾3$S‘öò‘','',0,'?'),('†‘Gã‚!£›…½ÀKÚ‘','wp-content/plugins/wordfence/js/jquery.tmpl.min.1525275841.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','€\\}Ã\"£†‹7Ú·’•DZ','ß.IôH\Z„g\0óH!7`‘£gÞ ZøzÈ„ƒÅ¾6|','',0,'?'),('C¿¹.9 —lÌˆª;d[','wp-content/plugins/wordfence/js/jquery.tools.min.1525275841.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ñ:-·áEÕ x¡$à¸B',',¹4Ö~aT•lS fQO	fø×äTÓµ·Ö;ÂÝ)','',0,'?'),('ÍË>O\"ñ[³·d.–(','wp-content/plugins/wordfence/js/knockout-3.3.0.1525275841.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¢Ö_ñÁƒB8lc^é„Ò','5éJª9hýñALg‡™@‚`Ãuw¬o£Û3ÉÎ\0I>','',0,'?'),('üŽ¾é=i4Tèþ^uqéI','wp-content/plugins/wordfence/js/perf.1525275841.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','uQ÷\"ÊwF÷ÜáR@p','ÊU–&+/Å#\"ï´1kã[wƒcÉ6ÝJæìxñÖ','',0,'?'),('J0¨•~MˆÉÉ²øÎ°üjý','wp-content/plugins/wordfence/js/wfdashboard.1525275841.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','©£Ô½¬PŸ¬°Í`ß{i¹','=P¯z×r”ŠŠ!à?w\Z´/d!·½LÓªÄê1!·','',0,'?'),('ô-Sët@’	d““û…à(','wp-content/plugins/wordfence/js/wfdropdown.1525275841.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','€½ÑáØrpôî÷c\'\Z¾','âàŸSGƒ–s8;®Z¢!²×–Já„uÆ1·z?«¿„','',0,'?'),('[m¡À{´4%NlHÂ‹÷','wp-content/plugins/wordfence/js/wfglobal.1525275841.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','JÌ‘1¥óKéI9SÆ>Ô(','pY“à•«Œ¿ã²Îqê9ì·ôe©&Ý¹{±‰G’ºE¡','',0,'?'),('B–‚oGìÓ­&zã)­Ê+','wp-content/plugins/wordfence/js/wfpopover.1525275841.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',';ã&m­AÄhlMPZX','°ì_.Vè¢•ÊŽXÍã4Níi_Òük=ÔæC3','',0,'?'),('\n­öNB…¿w	_\Z`”','wp-content/plugins/wordfence/js/wfselect2.min.1525275841.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Jž¾öü¥!.¡ç×i','lžk}[ÙùZjAÞ.!Áø=+5¨+´~qç 1','',0,'?'),('RŽµú1?™ûˆYÓVDt»','wp-content/plugins/wordfence/lib/.htaccess',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','>ŽJ¼f«£ÃÚK¸+Ï','	ù¦HQIéqz¼Ú¤øpÆ9ŸC4>Hü€Â3¨‰„G','',0,'?'),('Ÿ¸\'úFEŸA–vQMv','wp-content/plugins/wordfence/lib/Diff/Renderer/Abstract.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','>\r°Ã5]xVIÖ\'Œiµ','ÕìG¬ºÝ…\'™!óÂY®E¬3¬ÜP5ad‹ºM¾ÿ','',0,'?'),('yŠ­1‰â-è†/fI× ','wp-content/plugins/wordfence/lib/Diff/Renderer/Html/Array.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','#¿ð¹%y]…¿-bdªåŽ','¢aSH…o±•y§ê(eÛ	Ò0ÕJ:êÀ|f¯Í','',0,'?'),('ë-nê$.ÿ#g%Ä}Ý÷','wp-content/plugins/wordfence/lib/Diff/Renderer/Html/SideBySide.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','§p3ü³´ÛlnæA_6ÎöÐ','?9¤µð½ðœ¢§‰–Ðœt×i­3úmÂ…¤’µ;ÕWÚ','',0,'?'),('`»c0¯žÙ\\ùâë•3æ','wp-content/plugins/wordfence/lib/Diff/SequenceMatcher.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','‰OÒ\"%Ã©¾O²DZÞj','µ™©Z?=b­\0óØD\ZÔZ‘\'ãË¿_p²w•Ñ»,:','',0,'?'),('Û–JBw…C˜¡|Môv','wp-content/plugins/wordfence/lib/Diff.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','R|Ð$¹Èìç©V;Pà“âÙ','Ç–h[\0ðàçÉ¶Ð|Ã0<ÊÒ*ŸÂ\'ìì	lWz=','',0,'?'),('Ó&)-Ã¢«\ZÎ™•p','wp-content/plugins/wordfence/lib/GeoIP.dat',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Žô˜ßŒé½A8,—!±É','.%\\µ´ØjV_œÜþDæY3PK¢ïøðµCü±˜ªïl','',0,'?'),('•gïRT6KXÆÒï“Ñ\ZÃ','wp-content/plugins/wordfence/lib/GeoIPv6.dat',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','³º—ˆqNq`EïVŒ“ñÖ','5æ*ÞpñÚçé~\Zì}ažÞ¬lÂæºgKøqšÙõ—;Ï','',0,'?'),('ÖÏJØûï!¬[W6Ý§éý','wp-content/plugins/wordfence/lib/IPTraf.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','tÃÈ,€ø—î|4LÄ”^','YÒÓ÷û{C )~«I‘PäJÑK.À(@3','',0,'?'),('¬^2^£Tš:ÈmJ‡ø:­','wp-content/plugins/wordfence/lib/IPTrafList.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','áÛ«é§¶9Y”','Û[;\02÷Üy,÷ä¯òíBf¤Ù\nªÂ®U(ç¹¼×','',0,'?'),('K¾ä÷ßºá†b¤','wp-content/plugins/wordfence/lib/compat.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','>îµãøÎzðx”ŠCŠ}','¾NÜ“»#dÒt¤B!\"MÕžÿ==Ë@o‚²','',0,'?'),('€©òSPÓ;^Æ­zßI','wp-content/plugins/wordfence/lib/conntest.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ª–ß¨sßBh\'þ”I•Oy','È 2^4¬¯°É‡üHl§\0—0›ñ‹ÊÅ,Ú²úP¾ð¸','',0,'?'),('ƒ÷f NÊdš©´Lúþ','wp-content/plugins/wordfence/lib/cronview.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Úe˜(®¸Ôt@n€r¤Ã','˜†Zž4,ãhz=>Mš}ÖG/[Ì0Ïlø\"«iK','',0,'?'),('\Zµ;5õ(žOòOÖR«','wp-content/plugins/wordfence/lib/dashboard/widget_content_countries.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','×)W:Ájõ,Ÿ^)1Æ ','™é¸ö‰®.ãQˆ}ïl=Q$,óŒe–#éqçši‘:Ü^','',0,'?'),('²ùzvo:ø·ÜB%šºðõ','wp-content/plugins/wordfence/lib/dashboard/widget_content_ips.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Çyãh= =„Ç¡ô<Z','?Ìð«ãÞ1in+P‘“õ¢÷ØÊbºŠÖ¸:ŠÅÕ','',0,'?'),('\rÒ—èr×¾ˆ Á¹Î\nœ\Z','wp-content/plugins/wordfence/lib/dashboard/widget_content_logins.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ŒU]O,/¸\'öŽYÐ','Ï\Z£ë$(dö—#³ÆtQËq»&“¼íª,âÉˆ¶','',0,'?'),('ºß$á„o“¬1ÖT³2]l','wp-content/plugins/wordfence/lib/dashboard/widget_countries.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','úÌ\rm•nÄZBâÎ ¼¥','äÝƒEZ?öwÈ–ÞÍ–s!½7ôã ÝcÇJÐ7†0','',0,'?'),('Wsåç{NÎhP—ršã¼±','wp-content/plugins/wordfence/lib/dashboard/widget_ips.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','†ï2_£9»Æ–ÛJHQ','¬’íÄ®næÈ:·mµZ\rï´È\'j‡\rZŽJ¼','',0,'?'),('eØŸ÷v¤‹ãç¬ª‹Ej','wp-content/plugins/wordfence/lib/dashboard/widget_localattacks.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','†ÕØ/”]L/Gbè©ë™ý;','$y\r\npÈu ä ?Aÿ8éõÜÿKÎ™ŸÜT‡c„Va','',0,'?'),('ŸúƒLâÔ.\nÞw;[','wp-content/plugins/wordfence/lib/dashboard/widget_logins.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','g–ñÕì#íû»@XsÂ','—ÄªN2ïˆ9¡ëWµDW°®O’0Ñ½mGÆìNãº','',0,'?'),('òu;ÈŒ0åq”wªœ=àß','wp-content/plugins/wordfence/lib/dashboard/widget_networkattacks.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ô¶wK»µàµ>á~½ñ\rg','#·‡èNêŒu}WéýæL!°\\Z …”8²ð\0;k{Ï','',0,'?'),('k6„þ *âÜßHœ	ŒuÙ¡','wp-content/plugins/wordfence/lib/dashboard/widget_notifications.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','s«ÕK [H‡ûö~.†Ö\\','FÉÚge.Þ\0Gl¿ØJÄÚŽsgzEÐ{æK¤r','',0,'?'),('õï´â·\\^¼s,èz(','wp-content/plugins/wordfence/lib/dashboard/widget_tdf.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','2²ÏÝ½­\'³p[Ua‡H','·Ì?â}Š ŠmwD‡qnŠì2R†€\\¸','',0,'?'),('ûÌÃö6Ri*5ŽðÁÄÃ¦','wp-content/plugins/wordfence/lib/dbview.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Æ¤ñÝµ1­è‹™nzk','‹DêÀOh”Bð;4ªU¦7o/g¬ö8iºÀÀÙ+Ì·','',0,'?'),('Í)ÄÅäò\0Ÿe‡_Ô5=«','wp-content/plugins/wordfence/lib/diffResult.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','0çõ±ƒwJ—ÇÓn³','_Ñà^­>îì²8LË¹óÀ¥\\áê›‚ò„†{PæÓ','',0,'?'),('#\nÁô/†ÛPZ~h„Îø','wp-content/plugins/wordfence/lib/email_genericAlert.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','c¬Â¬û¼Û[)ýÃºÛŽ','Ã):5‚²p7úJšf¶³›ÚwQ\r…\Z(¡1ßk•','',0,'?'),('›» ÆíFe±	57[é','wp-content/plugins/wordfence/lib/email_newIssues.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','»ùþ™g˜#ºvˆ\\]ÂP|','mm+ªÚàåJÖ¡[Tð‹Ä…em9$^YÒ±4Ú\0','',0,'?'),('×ä^Ëu©­âË}G»Ô','wp-content/plugins/wordfence/lib/email_unlockRequest.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','§–{É<þòÿ2ßm','R¬£ûÖÙÿpàëM½>dô*Šœ¡œë˜','',0,'?'),('$äÎ-#q`Ðl$W„Û‰','wp-content/plugins/wordfence/lib/live_activity.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','2>(‚]/@êžfˆ','ýQÕ¨¥úúW`~ó«çNÇ_w©ÏID$ñJ3¸','',0,'?'),('òdíToÈf‹öÒ·ÜbS','wp-content/plugins/wordfence/lib/menu_dashboard.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¤^‰)±l†Œ>T%©_p§õ','XVÒ¬ÒN‹ù7ËVÐ¡+‚»ûŒ1;Ç;ÜuBGš‰Ç8','',0,'?'),('Þ’¶?IñÎ©i%úýgÆyÁ','wp-content/plugins/wordfence/lib/menu_dashboard_options.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','tàß\\#wç—Tœ<‚w','`ÐÈ³YMzôûƒ©”â„­%fä©÷{èbo\ZD','',0,'?'),('®W«‡µPæ—ƒ^qðy€','wp-content/plugins/wordfence/lib/menu_firewall.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','!ARÝÆ\'Ž9>Ï’¨<Úù','É°é65/¯‹Me»xh±ü÷wD	Û\n`ñqÕ\ròÓ–D','',0,'?'),('3•dý¤ƒâyjäéßÎóV','wp-content/plugins/wordfence/lib/menu_firewall_blocking.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Z¿­Ó §ù	(ÿ…£~›²','ÔÎg«­Ã¸Ú\'ê¶SRÍŒÃtäVRˆ‰±£$C*-','',0,'?'),('Í¶”jÊƒà°±ýÿ·-¦','wp-content/plugins/wordfence/lib/menu_firewall_blocking_options.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','³°|y>q­Ãtýª`uŠJŽ','v¼&\n¤sŸý)ÊÕjÙfçxÒö³\\JþÜø«ßô¤‰ª¹','',0,'?'),('6cÀb†£kk·Öi3¹@úH','wp-content/plugins/wordfence/lib/menu_firewall_waf.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ºomFÈ…ˆ¨»Œ¯xäF','ô”þE8šM^¦æë^äR½·ŸÕ@Úæˆ%¤wØœ','',0,'?'),('0ÐdÛ¦ZPÉø2ñ¾oëˆ','wp-content/plugins/wordfence/lib/menu_firewall_waf_options.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','@é/8²‚ö!á¥ådÝ','ÎNsJ»4	R×K=èê°Üi‹âR™<î™ÃCMY-­Ë','',0,'?'),('ºWMíŠË{h©øÚÀ(ž','wp-content/plugins/wordfence/lib/menu_options.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','€–ç‘`ÌJÙ¥B£3Í˜Ü','5r.­|SûÜeh£2ñ\'ÝˆrÔfGGÑ×–PéL²','',0,'?'),('z¨‹ß8 Lò{ŸÓõq','wp-content/plugins/wordfence/lib/menu_scanner.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','j[¼Ô¨ðaJÝzê¶l‹','¡««õc 8æMÎ+]a;Þ0 é¿óÿd{ykJ0)WÓîì','',0,'?'),('ŸI|›K9Õ(Ô{sõX','wp-content/plugins/wordfence/lib/menu_scanner_credentials.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','fÑfŒ‰ˆ:©ãÔ&ô,ê[•','B&$q>ìPé\nòÏ¾z&ÈGÀ<ù6Ç´¼:²Ž','',0,'?'),('OåëÏÌåHI!K!0[Ú','wp-content/plugins/wordfence/lib/menu_scanner_options.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\r [¿ 4e¦<\\R*4’','GªXž—-¦Äø÷’­2¸@¶>8}pqÅQlK\'','',0,'?'),('-jÞ§« š Íæ¦~hyb','wp-content/plugins/wordfence/lib/menu_support.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','oB\r4I8ïª‡TŒ.t«','«ÞÁt,ðÿ¶¹ËL^>Â›PÔ¼P}×á·€Ý^?','',0,'?'),('o÷jù‹É»yæ©V','wp-content/plugins/wordfence/lib/menu_tools.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','µ®¬·L4sLøJ­ýbÎ','Ã–ÚzÈøO	`ØŽÎ¹§m+Œu©KZ-²*íñ','',0,'?'),('`Ê!–ž‚i¾°xúgAŽ','wp-content/plugins/wordfence/lib/menu_tools_commentSpam.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','3÷L’­×Ð]½-Y{Ðp','ãÃö\Z+æQiàq9\ZÚÇ&w#¼GVˆ´‘tB‰\n','',0,'?'),('!§##sw:\rH*²$qô','wp-content/plugins/wordfence/lib/menu_tools_diagnostic.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','rÿp_\Z£-ÝÉ’ˆ','Ð;I’+“40ô1qÚª§Rã*©XÕŸû\"»¹ó¡','',0,'?'),('UI‚_•ÑËêYm«çÑ_','wp-content/plugins/wordfence/lib/menu_tools_livetraffic.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÁÐÔ¶cÅD>ïS/','\rIEI_›.³ýxnýv‰â²ÑNˆ8„º@¼#­† ','',0,'?'),('@ØL½Öß¯7»Ù­kÙ‚E','wp-content/plugins/wordfence/lib/menu_tools_twoFactor.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ùtá9BÞæ´\"·ÈÜo²¨','—fü¸¬ØôöÁ®@¢íÜˆ¦ºx‡°þ\"5~ÃºÜÏ¯','',0,'?'),('CúØs\\§\nò–àÚsŽÕ\'m','wp-content/plugins/wordfence/lib/menu_tools_whois.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ø\0JM(]ƒêð§¹\Z7wÂ','[:QÝ”qÆF/q°G;N—@K¤…q08ÇÎ¤OÊ`[È','',0,'?'),('£ÜF¦²™˜{ì´ýA','wp-content/plugins/wordfence/lib/sysinfo.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÛïQê…³ùÂö9ÓÝü','!óD#D\"0Özèt6ðÛIHÔ†\\ÞÜÀ0Ìˆ\Zd','',0,'?'),('ÿ‡·ÖM~ë^xù¼;‡ð','wp-content/plugins/wordfence/lib/unknownFiles.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','nöè½âœšo\"*œ §b','pÝ}\'5ËÎHZ%¿[*åÇ:^•^±®¸þ¬å‚þÕi','',0,'?'),('LR7Q¼äToG|Ä{','wp-content/plugins/wordfence/lib/viewFullActivityLog.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','@lMÿÕ3JtOF¼@','[éƒÅ`¿„\\‰ÁpÇ£ÇóÊTñb>=³îÇPiàvOö','',0,'?'),('ÁÙµ\nh¶ÍJxµdvÏÔƒ]','wp-content/plugins/wordfence/lib/wf503.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ùîçD¸DÑ«íHØÂRn','#¿¦`$Úzx:-`Á%3³ß&™‰^A“˜AðÃñ(','',0,'?'),('¾á2]hqu:ÞT6EÑU¶','wp-content/plugins/wordfence/lib/wfAPI.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','„fZG2‰yÜb\"{LZ',';,	uÁ2Å\Z}$&BHY«L×²ûãÜº0\\«N¿Ø','',0,'?'),('É†8¨ÂÖÀpÅ»ÑµVý','wp-content/plugins/wordfence/lib/wfActivityReport.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','—]‘æ]Ó¼MqÎùow¨','LÛzà¨,—R4×\Z\Z0=³q.ˆ³ßVW˜Z—nÃËe;K','',0,'?'),('zo¸†Ü²ˆ~¡áˆb','wp-content/plugins/wordfence/lib/wfAdminNoticeQueue.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','”‡K\r4X.Çù™','l…ªvÍlÙ	](ïæÚW±7ë„ +——0¨-¾™','',0,'?'),('ÞÞ‹³­”1FóøëÛa“','wp-content/plugins/wordfence/lib/wfArray.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','1}èŒšhu1_[nÞ2ïÏ','âŠ9šh»¸Þ[æuSÇîÇÎ¦%UÂœ3þžˆ·Ì\0','',0,'?'),('ê-=Q°CwàtnLà¡#','wp-content/plugins/wordfence/lib/wfBrowscap.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','0¾w³4ÏV†=‰2¸PÜò','ÈØÙ(óÛ\n|ŽTÍ:]ÎXrÍs-¤`.ä\n÷½\n“M­','',0,'?'),('«ÐèX’°ØJ üp','wp-content/plugins/wordfence/lib/wfBrowscapCache.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','’bf²=n¡åÓÛ2–1Ë‘','êmý¢ìA0]9´K‡ËLläOKËG#b(¡ˆ¯³','',0,'?'),('äê¿1þ]ÃM|®KÔFZ','wp-content/plugins/wordfence/lib/wfBulkCountries.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','n†Dº&ÊZ#%ÀdñÎœq1','Á¦5Ö2Ï‡º½&hñÙ-v9÷ÄkßEX‰´•#ê','',0,'?'),('¸œÒ‘-èÌôŠ\rŠ{,ï','wp-content/plugins/wordfence/lib/wfCache.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','(1b¨Ì\"3:ù!á¬`ktô','ÔMºÉýý‰çÏ¯òýèspžÞø°Nhšé“ŒÊáD4','',0,'?'),('Z4<n?e˜ñ²','wp-content/plugins/wordfence/lib/wfConfig.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','å‘ŠRMØá—ltšSÍ]\\!','Ìó«ñ§PŽ¼µeÉæ§—dòšøvüXöz—UÖþ','',0,'?'),('²ýB¹6[s–M÷','wp-content/plugins/wordfence/lib/wfCountryMap.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','±ñ\n›øE3üûº¬Žñ„','ÝÀŽ°ÐïñÉWÎò×ò{)Õ¿Qà³]0ÕþÖ²ŽP','',0,'?'),('8Ã›ZE‘Q$}UPöT£à','wp-content/plugins/wordfence/lib/wfCrawl.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','É,ä03›Í\r¿Œí','<Ì²÷³>×û06Øe\nï•Ò]-8&A	E0ÚævÑŽ','',0,'?'),('°¶Ú¥±^iç$âýå&','wp-content/plugins/wordfence/lib/wfCredentialsController.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ˆ„m[cbÄÑÄÅàºXR<','±÷¡(LE6ØL«]1ïZeÍ‡æù½éÃån5P','',0,'?'),('Øx¼øÎ²Ð¦¬à¨A	Š<ê','wp-content/plugins/wordfence/lib/wfCrypt.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','®*¨Q6Õl/*ýÞ¢â“I','lìR?ó2µ‹ÒkÝ,)¥üœ†@Tå§ÀJ/Æƒ€Í','',0,'?'),('ÙJàïš^\Z7ü•uG–k+','wp-content/plugins/wordfence/lib/wfDB.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',':_Y åÜ5FÛi&ª\0','°–¨‚ã„LD§o¦ñ\n¤_‹5îÿ°èÍ¿ÏØŠC','',0,'?'),('iŠíÇkmCxþÊ·Ëòù','wp-content/plugins/wordfence/lib/wfDashboard.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÞE/¤X:¾ÆÞwæš9í','Œ@¦úÜ”0 ~o{A­ø¸/Šð.ô@E~>äÔ2ÿÙ','',0,'?'),('7r‘§uFñ˜±@J,','wp-content/plugins/wordfence/lib/wfDateLocalization.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ë4„K_Jú2CmcÍ­ÇtÝ','Dƒjyîº,ÄLwÞaä <U†ÞÚ üû²õS','',0,'?'),('l9é¹=¯ühÇ,>ÙÃç&','wp-content/plugins/wordfence/lib/wfDiagnostic.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','­Ú•Ø¾Ð›–¬~\\62=','ÆÌ5\n«Ýæ	Ý¾Ý&×KÒXÖîªµý€—ª¹˜øS','',0,'?'),('õF¤ë\ZÁ“ç®Cüì1®P','wp-content/plugins/wordfence/lib/wfDict.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','yß LüêïZ!bE±ÔlÚ','óµÊ.{0JeúÂ{×5-Æòì~[Tš$Äž','',0,'?'),('ºíÌA0fŽýf`Â KÇ}','wp-content/plugins/wordfence/lib/wfDirectoryIterator.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ì¼˜~d[µ!L•¸A¾/½9','’áq­ž\\œ}U2@‹n½¼´ÞÍÇ‡°+HÅÜ×¸xi','',0,'?'),('=9)œ‘­)Â\\Õ–','wp-content/plugins/wordfence/lib/wfGeoIP.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','è#†é±HWŒN\"€ÝÂh','à‹ÆÙì‡›jñfjµ—æ€´\rîâ±×ð\0½Ÿg=(?','',0,'?'),('q¾†5@£*=õ&´æ\\Xá','wp-content/plugins/wordfence/lib/wfHelperBin.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',';ï×!·ÈËÉ4QÕÞX#','’—Õ¹%-ø^ê…qƒâUÊqàMéÒeY“êð','',0,'?'),('PÆMî\ZÖIÌ¸Ý­Y`r','wp-content/plugins/wordfence/lib/wfHelperString.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¡OVˆFaDŽVÞ4˜4Üª','2±-7òÑna5A”>ücÖ´\ZNA-•p{äŠQnóµ\Zšô','',0,'?'),('iákìñ­½CñíT,ì','wp-content/plugins/wordfence/lib/wfIPWhitelist.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','i‰¥ôa|³Â0ô\nâ5àa','&;¯ò˜P‚{•$n\0†Êtÿ§r	ú\0mŸ`(ÔÓÅ¶^Ô','',0,'?'),('Œ1ÁêÏ£×é I¤','wp-content/plugins/wordfence/lib/wfImportExportController.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','TÓ â²¡¾ŽfîL]¡&','­H”L‹”„hJ°½„¸àbÑX_k\"ÕÕ[u…«Y]','',0,'?'),('Ójs¤žw2ùìp®ýqS','wp-content/plugins/wordfence/lib/wfIssues.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','f°ï½èìQe‚ºfod¦K','j|·4)ÒÖåž$UO{Ï6 ·’Qwæ¸Gƒg','',0,'?'),('óŠØ ]Ôf•ˆðPô¢†ƒ','wp-content/plugins/wordfence/lib/wfLockedOut.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','âÉ“«˜µø…„*èl·™','ãüùùlñ-g½»PYH‘¾Tlíóß¨?‹Jq²+†','',0,'?'),('òÚwÎ+\"+ú$ã¬^¸','wp-content/plugins/wordfence/lib/wfLog.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','$$Ösƒ6ò6Ò§­sI','1w|iôÎmùn˜¦”Ã}Ú=ˆrI¯¢–·è¿£Âyõ','',0,'?'),('¨\\Çýhû RŸXÕ<ºC®','wp-content/plugins/wordfence/lib/wfMD5BloomFilter.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','›ëß…—w@L‹åOêÁR','àð«´EF‘j©„×r¸Ä;s³ìÎ€.f:ÖáÏ¤ F','',0,'?'),('ŒtÇ±%˜û£‘µÚF','wp-content/plugins/wordfence/lib/wfNotification.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\0Ç V2â(ÆÀþdhVD','SØaÖàY„íµ‡ýgj+|­ë‘ òáJ²ŒM8³ª','',0,'?'),('é+ê‚3ô»pU','wp-content/plugins/wordfence/lib/wfOnboardingController.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','D2Q”©Ò»„QÄ“ŽÌ›','YÄÛëÉßzãmz~~¨Zã¢¬åJ¿R?Ç1wØýwQ¼','',0,'?'),('ÜÎTÐ¾ÀR§Ÿ²\'ï´{','wp-content/plugins/wordfence/lib/wfPersistenceController.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ø%ëâkyŠžiÕMO*','ò¢ïÿ«ìÏX(¾30\r\nåï\nPEžÌ „› Ž9àöªÈ','',0,'?'),('mÉqPoD0â*ÍØL','wp-content/plugins/wordfence/lib/wfRESTAPI.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','FE‚¹W³\"*Ÿ7ÜGJ','”eÜ4âþXðy×MDB=èþÍ0ÕG\'Woø&ÿ°','',0,'?'),('ïÞŒt+é\\õ+ÆXa†ZU','wp-content/plugins/wordfence/lib/wfScan.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','*“g‹L9“¢,&¡ó.ð5ð','ç}Cî¸Ì…/³À?´Äu°»ôà´4ÞµôFµ”','',0,'?'),('ïï6X‡Ôª4ñã[_‡=t','wp-content/plugins/wordfence/lib/wfScanEngine.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Q/á‰’¥öƒLÚÁÅ0ï','OÞ1½oÃœug[O\"°©§BJõâÖ!=\"—rzæ}\"','',0,'?'),('bÊ¥ñHzfW˜ …­gw›','wp-content/plugins/wordfence/lib/wfSchema.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÿå:F¬v‰Ã,ÍcÙÆ',',èŠž\Zòïô ~\rìÝ·uþ‹`£¦(Üïm•Œf,','',0,'?'),('ÕõK2;æ<D¦®‡ƒkub','wp-content/plugins/wordfence/lib/wfStyle.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','«Â#EÚ÷ý”4‘M£îò','°\r>—Õô7ç¨¶^+®X•Ñ\0<;CVâŸvD','',0,'?'),('á´ôÚsk“6/§«Ð½º','wp-content/plugins/wordfence/lib/wfSupportController.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','À§e7žšÏÿE‘qÈ™','ó”à“Ñà•r6¹îÒíú·a’à„ˆõHt¬úÐ§.“','',0,'?'),('šêŠh‹L¼²JHÿX#0','wp-content/plugins/wordfence/lib/wfUnlockMsg.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','2Y\"¼Az8höèxn”XÄ','Ê­#óôÅó“6\"×ï+9eXK¢mõ¢=ÎC]”™ëw','',0,'?'),('‰ªeÄ\\«Ô1átÆ‹Ü<	„','wp-content/plugins/wordfence/lib/wfUpdateCheck.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','šv•ókv)Õ’öi®j','ãÚÃ­o•øÅn†Uúß¨VU û­ñZÒ2²Èw7LB','',0,'?'),('¨Q49ãóLzÓJµ','wp-content/plugins/wordfence/lib/wfUtils.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','^:Âû9‚¨Q:bû0GáI','L­ž¿X\0Á1Lør¥\ra€Â$ 5CaÐ¿.%^]','',0,'?'),('½@G„îtÇeY\\\'>¯O','wp-content/plugins/wordfence/lib/wfVersionCheckController.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','R¯ðÞªáÙÁúYèÑ\'³m','§Í»Œwœnæ÷»”	>=ÍÄ¨âº÷ý¶;\"T','',0,'?'),('åeÅÂúôüýn·…ŸAÛ','wp-content/plugins/wordfence/lib/wfView.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','â‡²*¸!üPÓ\'|ú%\ZØ','­Â\0¶+Foí‹L (\\.ÃÛwµÊ Îg{â¤„&:ÏŒH','',0,'?'),('ªËÙv{C«ÀºÎÒ§€Ž4I','wp-content/plugins/wordfence/lib/wfViewResult.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ù9ÂÖ¿YCA4|à¸p','{30ýpD¼ör%#ÃÁMzÏ_âÏ”K}ŸAo6MøŠRö','',0,'?'),('ÇÝ¡=½½Nx¼‡KÔ`*','wp-content/plugins/wordfence/lib/wordfenceClass.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',';:Ñâ=pÍ/XpÚÉ	','î€U—DuÀ=\r¿JãC¥½VVxÆ¹aÏu5Ý¬<¸Æ','',0,'?'),('ÁkHmå1Óó`0Ñ¹¯–_','wp-content/plugins/wordfence/lib/wordfenceConstants.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','òG›œ1½“kiüH','ËWéDØ›]­a?2’ì†ÖïÖkNj‰îò%:\rmZ¥','',0,'?'),('ÕXùâÏà-Ÿ4¤Jü_ƒ3','wp-content/plugins/wordfence/lib/wordfenceHash.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','‰¿Ù…Y_Êå SJ­_¶','†¼`È/a#Å îORXO÷–Fì&›qÕ÷<uIMö','',0,'?'),('z˜|*6žS\\5·ã¯3','wp-content/plugins/wordfence/lib/wordfenceScanner.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÙòÑT&‘ß`È=£}','ùqÉ®DF8tØ{	 Š›XqZx#KÜeBÃ–Í×à','',0,'?'),('h»<²]“”ìOpNCÆ´æ','wp-content/plugins/wordfence/lib/wordfenceURLHoover.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ƒ½:(–xyÍô†ÄÚŒ(Ç','éœÊý„±vøPCDx~kÕ‰-$°ëmu—Ã°¿«','',0,'?'),('JlšÆ¨1žÏã¥êç','wp-content/plugins/wordfence/models/.htaccess',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','>ŽJ¼f«£ÃÚK¸+Ï','	ù¦HQIéqz¼Ú¤øpÆ9ŸC4>Hü€Â3¨‰„G','',0,'?'),('ˆ`&%eF•gÀœ”ó”d','wp-content/plugins/wordfence/models/block/wfBlock.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ˆ£ëÎ’FÙQ½ªºéhå','9’MŒzRÐ\0Ÿ¶LîJÔ±~SjáW~7¬Ú¡€¬','',0,'?'),('g¶]e…Ô!^…‹(PKðË','wp-content/plugins/wordfence/models/common/wfTab.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','2öTÔ}šHW\'<}\\','ZÂ¥|ÿséSÌ8e•Œ3è‹EØ—ª$‰ŒÖÆÜœ-hå','',0,'?'),('XÆ~ÊVzl!_˜]/ž-3','wp-content/plugins/wordfence/models/firewall/wfFirewall.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','7àšªßWnÄœgr3à ','­%«É¿£!ÍbÿSÎŽ>óeOŠ|DIeÅ_?:8V9','',0,'?'),(' ÞÃ9˜X’¾¸¢U¨7¥z','wp-content/plugins/wordfence/models/page/wfPage.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','’Š|œ³Åv÷9æŠÙ¸‘','Çkè¤ó\r\"—3=¿Ž–ÉoÁ;ÝYjv¡°è	<_\n','',0,'?'),('ŽîOÜŽ$8ª‡J¦e»‚','wp-content/plugins/wordfence/models/scanner/wfScanner.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','®ee]iÕßN;ê\0ìjóK','YPÂœ²Âç›Ê#DŸÒv)#ÅÃW\rØ“§˜ËgÒ¥ˆ','',0,'?'),('¿vé—FI—Ë2h´Ïø¤nÁ','wp-content/plugins/wordfence/readme.txt',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','}Ëï\n^¯â2â·7²‚','—0¹•ffÄ&é„mYèý*¿þ~ƒ†kQðg','',0,'?'),('ï;Lát‰×¬C°ƒ”É£','wp-content/plugins/wordfence/tmp/.htaccess',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','·I z~Òi¶,Lžÿè','	ù¦HQIéqz¼Ú¤øpÆ9ŸC4>Hü€Â3¨‰„G','',0,'?'),('=S–6Èa°ŸXo°,”2','wp-content/plugins/wordfence/vendor/autoload.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','fê\\oÅâ	Êèjk_','²àI#‡Ì\nYñ\ngÚ+Ó©e6J…ª#0Òú*e9\r','',0,'?'),('_£k4é÷·!*}ˆ‚Ý„ ','wp-content/plugins/wordfence/vendor/composer/ClassLoader.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','>B¿‹ÃÅaXãÜÒwa;','?§~ÄnÖ!]·%íïªnÀŒ9§1êœË”;ògÅØÑ\"','',0,'?'),('¢0áÁ&¥Y©îÕ ÕÁ¡','wp-content/plugins/wordfence/vendor/composer/LICENSE',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','JJË­9FN=öÆÜO','v ‘(ÃûŽ‡Ætõ÷M-|1ÕÛä=‰CÀ¸¹¤4','',0,'?'),('\"0ÂrN1M•áä#ž áÀ','wp-content/plugins/wordfence/vendor/composer/autoload_classmap.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','†EÓ¤ã­‡çÏMˆ¤gª´','QØø£*\'¶„þB©+Eüßž³û:•ómŒÎyuÖW','',0,'?'),('t‰Ž®‘Äô!æ\Z‡%\n','wp-content/plugins/wordfence/vendor/composer/autoload_namespaces.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','5á,}vÄ¨3¼õGÀâ)©','E½r4@\0¸Ô¡$¦âzæú3ð¸$l²ê\ZÐ`iäexÃlÊ','',0,'?'),('sìÃË±ŒY*u¿©áO„','wp-content/plugins/wordfence/vendor/composer/autoload_psr4.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ý:\0ðÑ>²—íØÇ}LQ\0','ÀïÃ_U\0]q=Õ‰Š®f\\¿/ 	@d¡Ì\r¨+vÜ*(','',0,'?'),('~ÅÓ¸bcöÝ\Z$@$©ò*','wp-content/plugins/wordfence/vendor/composer/autoload_real.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ùc»@éqôãûxy=`„ù','GÒ-›€úDßœ­zîÕ!Üyq0£mÇØ]!=ñ²','',0,'?'),('Ð¬]mÙ²§	â–­ì','wp-content/plugins/wordfence/vendor/composer/installed.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','O»ófIü—8¥x¾E\Z','ûH\\Î£Bõ.\\;Ój\0õ\'Xä¤Ì`5¼É£ý','',0,'?'),('{PzËÒ¹ùþa§eÒÓ§Ò9','wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/bootstrap-sample.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','K!š¿à³šR‚lúq`','‡Ej(Ø‰×5¦þÅòøŠìåþ/bîw¾…hà)Òžšâ','',0,'?'),('~i°IÒ;Ý­]œA»ÈS','wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/cacert.pem',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','8Íwœ”)«n.ZãC{v28','c’\"3½ø\r)Ù,Ï\\Ó·PíæV)„òîÞ¤3^?','',0,'?'),('I6U‰\r7´ÓúŠÖ3pí¸','wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/falsepositive.key',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ž‚h<ªé¶|Û7bš©¸','ÕÙ_ú^F\"ýæ;+r&Z~Ó¦QÐêð¨Íø|ã±ø5¥','',0,'?'),('„ÖnvûŸZùYVßûÉþ','wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/init.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ö\ré*wîÂ–>+/eú¨','ùKéOoAþèÍ{/\Zã›Ñ:j3\0´j½É¶yøCJ','',0,'?'),('BJ’„O¢žä¯ü†zD±','wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/config.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','öZTÖ·Û?*=á‰Žv%','÷:Z:b\\%5¦N)š*Nôð&2ÜAdŠÂzL¥f±Š	Ä','',0,'?'),('ì¶Pdºµ“ý’íc3','wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/http.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','kYs\Z€•ë†ì¹±u’',';kÍZ­C›³¶¬Ý0ƒ_ÌñR»Q¥ÖÜÇÎ7—Û$¤k','',0,'?'),('ù^Q6l„ÏJ! 	âÍ¦','wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/json.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÓJéaD5Húrúªñ½','žÚ[¸®„49<`“Ï–)BšÑ‹Ó3NG¢TªB¶³ˆÜ','',0,'?'),('ß¹VÌ=¿£»\"à#n§	¹','wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/parser/lexer.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Iõð	=Ä~ÌôiÍø','iþ¨aCøÊ¹ÕIG¤Dózp9„>\n-eþµW\Zð»O2','',0,'?'),('à–ÊrªÖMÓÜ´-\nSƒ„','wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/parser/parser.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Â }«^)9ÉoÀç¥êÂÃ','geH²¯ãBÏ”@\"4Ê#øMóÐŒ†R@¸Ãˆ	DÛI','',0,'?'),('ŠÈàý×X/÷Û\0þƒ	','wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/parser/sqli.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','2Hs£=Fûá­\nnH','û=i\\TG”\Z©§šrÚ®P§‹ÏèÛMÿZß!','',0,'?'),('nóÊó09j®v8õ\"','wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/request.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÒÝì\n”¥BÖðþ”¬óÞ','R5sI¶—TÿHÿ&ÖïŸeùøÐq(MæJ \näö¬¥','',0,'?'),('Ò­ó_VlKøg°!p†1','wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/rules.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Vù·@¬4yÙú«Á“	_',';\'ÙÂbÇ­Éá7¥–Ül¬7ý+Yt[€s±,Ê‰\0Qq','',0,'?'),('!ñOŠ4ÖbCRR›fO²','wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/storage/file.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Óã]+×Õã¤òU,“yr¥','ÅûžñsT@>}†wM“Çt¶ðÃ¦.ÑDÊZ¥MyÑåR','',0,'?'),('cþ†[b]ËÀþÝ½‡JF','wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/storage.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Y…ó’nÝ_È¢›,ñc',' R7ÎLóûb¶Áêi%ÔÃÜ\"ÈÚ^ÙÔÇÿ¬ƒ/','',0,'?'),('ØÐ¡qDÖš?ÓižX','wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/utils.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Q\Z®’¿\Zd¶ów’a”î[V','X¢˜œyBô4˜wju‰ÓÁryñR´‰ó÷ùX•É','',0,'?'),('å\'Ò`FÌ”Ì~ÙÄ–“œ','wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/view.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','}›‘J–gÛ!fy”áLú','êžàŠç^„˜Eý/\ZÎ®<4n\'Ïw}›¶Bït ','',0,'?'),('ž…¶»½î¢è†<ïxÍBŒ','wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/waf.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','}\nË\\•\'Øã:­ˆçbÍg','—›À>y\"o‘Cz¹ìG›Z’‡à¥$ÏY*R5é¥?žÇ','',0,'?'),('ù—8K°ç ?O]Ê¹Y','wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/rules.key',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','º§\ZlY^[F\rÈ2xÊ»','Ï6=““ØS“q®-5 )¸«E¿L}A¤ViA]ŸŸŽ','',0,'?'),('xV‚Mšé>–nÙ{O–ÇŸ','wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/views/403-blacklist.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','	LÉé7q«\"?º²úÒ','ÎŠ‚¦e0/…ž©âÉ(fJº9›ŽC@tè%]è-o¦','',0,'?'),('AØ»#¨²¹\"óàÅj­','wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/views/403-roadblock.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÿ·\njP°\\¨k]þË4J',';Ö†dž·„6—Gìë~™m9ÎhV† j„Íh','',0,'?'),('Q§Û÷6K4öÊ¨€ÒðH','wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/views/403.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','™… T,©`¶H¥RSëÛøv','Dy4‰RwƒÌèºß®’Ò¶kµ,ÆË™8d»¬Ïô','',0,'?'),('rI\0yg×E!€£û2\0C','wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/views/503-lockout.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','cL”üÄE·ÔàÌÌþh¿','=Ã ïR/°ðc£ZŠ#|zõ¬S.bÙ¦¬}3÷¼ò','',0,'?'),('j¯Ò)nƒQ8Þ®á¬DŒ','wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/views/503.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¬ºJ›mA ´ŠÅ×TÏò','R™ÐkSdÌ¡\n¿a¹6Mtú6‰ßM=Û(Ïå¹6','',0,'?'),('ïÅ{´ú \rðSlÅ¿é	','wp-content/plugins/wordfence/views/.htaccess',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','>ŽJ¼f«£ÃÚK¸+Ï','	ù¦HQIéqz¼Ú¤øpÆ9ŸC4>Hü€Â3¨‰„G','',0,'?'),(':¿fØ?bjƒ¿.‹Ÿ¹','wp-content/plugins/wordfence/views/blocking/block-list.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','	å½×pê-T“^xb…','Ãèý9©nq°H–üƒL£òmm´“ŠJõÔHý\\\nÎQÿ','',0,'?'),('rù7²È/y*¸aÚ›P] 0','wp-content/plugins/wordfence/views/blocking/blocking-create.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','$&?zØˆ› ¾$q¬\'’Kœ','üÃÃÂvbÙ“ón‡¡ž3$‚ßß)œûaUÜ7¿lÛj+','',0,'?'),('fp†ú“êçÈjóH›\'','wp-content/plugins/wordfence/views/blocking/blocking-status.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÉË®_ÁìÍõ®ÆäXkìÐ','ÃúÐö4Î>1ü^ˆ¸·fÿs¨{Íq\'	Þ©Míù’¢š','',0,'?'),('¨h¹x×*(½&¾ëÃkO’','wp-content/plugins/wordfence/views/blocking/country-block-map.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¡uœÁyGF¡,{–ŒXÁz','%Ôœ5–;º”û§öx“ˆ^)Ÿ‹¨G(…ào','',0,'?'),('4®ÚÛ¥‘;»0Š.*','wp-content/plugins/wordfence/views/blocking/country-modal.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','-^Aƒ?¤ö¶›','²ax¯—R;Æþ,\'˜K‰™¥é¯æ?QÙØß¦ŠHÏÑ','',0,'?'),('ãm5^¹ÛÀÇuÈê°9>','wp-content/plugins/wordfence/views/blocking/option-bypass-cookie.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','(ŽèÿºTd7ì¼’)ùü','øÔ=ÙÀ¬Ð2¿WOÃeƒ—¤dæÜüÐÊ\n7hLÖ','',0,'?'),('1?oœxøç<È?éÍâ6','wp-content/plugins/wordfence/views/blocking/option-bypass-redirect.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','bø§ü€þ÷r¨ÑØq\0âZ','BWz¨Š|>Mh …¢]oŒuåòÍ=-ÿÜï£›)GÐ','',0,'?'),('4To®â‚iEøåt‹','wp-content/plugins/wordfence/views/blocking/options-group-advanced-country.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','q_žIè‡Qø4Ÿ¿»š»è','ùRŸàƒ|˜kyMˆtzgåÿÙ~Æ.†#€3!¸°1','',0,'?'),('2Ä£­ˆ_½Dã”xˆ“¤','wp-content/plugins/wordfence/views/common/block-navigation-option.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','î¨_J<ð=ªÐ”HI/','ÅçKŽWxDQÿÄÂ\'7”ÎÏŠ˜ß•W¯•Ç««','',0,'?'),('Ïß,”Ÿ´@ÎÖóºQÌ','wp-content/plugins/wordfence/views/common/indeterminate-progress.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','I·æ\"Ýsg½4ˆ\\(±8','´@™îýZn\"Î¾~žQÕ”ºÃ8“sãPŠ¶ž\07å3','',0,'?'),('­ùll¸„ƒxèL,7WÊNÛ','wp-content/plugins/wordfence/views/common/modal-prompt.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','™Ëbæ„[Êlm9sw©^','˜ºñaÅóf·æ,\ZË“be7¡\'“B,LÕëC‰s¨˜fL','',0,'?'),('÷]pÝRŸ/$¸1ö','wp-content/plugins/wordfence/views/common/page-fixed-tabbar.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','óM#Æ‚,ˆnšÈÌj9{¢™','Éé¤+Àžˆû»ÕÈN)Â¨·›ž¨åL	K¬zò(','',0,'?'),('žxÃÂ|s¾ƒÄ×KŸaõ','wp-content/plugins/wordfence/views/common/page-help.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','â2ÔoÖÄ\0X#ë–83”~','‹Ù$Ž>ˆô×\n\ZW–È)OœÒ\0¸ƒƒ³(\nÙÝ®é\08','',0,'?'),('­ÜË‹Ý_o!\'Úuœáør','wp-content/plugins/wordfence/views/common/page-tabbar.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','»ƒ)\Z¯°ótU2Ec0\'é','äÃºMØ..8†Ñ¹>Nwýj¥ZîóÐñ©WbúÃ*B¼','',0,'?'),('qqC¸¢$²žàý¨ƒ@','wp-content/plugins/wordfence/views/common/page-title.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÅÜaA\'4õ=ãÁG³g','R{õh®C;Å_Éî	…•ñêG+RzßrT¥‘z`ž4','',0,'?'),('ÁÚ%G]fÓ@Í%ÊZÜÍ','wp-content/plugins/wordfence/views/common/section-subtitle.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','úKác¦ÛDµøÃƒ¤ÂÛ¬','ZžJ žwsh5ÊM´þÐí«¶Eu/jg[‰‹Æ-èÁ','',0,'?'),('¡%¥°?’ê•õ¨)Ò','wp-content/plugins/wordfence/views/common/section-title.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¢ƒw]±Q¨V÷Õ´i«','Íûñq¬û r*·šÆø-T¹ø¯N5Å\r…ÙOc;mŽa²','',0,'?'),('úw	¥š+»jì¤ûÀ','wp-content/plugins/wordfence/views/common/status-circular.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ðâßº)ß.=£·¥g','q4^\"-ú9†æ‡áí\nd1q¬‘ˆèO,íùÇ','',0,'?'),('ü^ùO|\':QÇ™EçÝð','wp-content/plugins/wordfence/views/common/status-critical.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Q“[õ[_Y[Ê›ÜëJ{&','n¢I‚‚\Z«”g[Áÿ\0¾MÏÉÅËãZà1º]óÕ','',0,'?'),('«³sùÕŒQ±¶7oéÃô','wp-content/plugins/wordfence/views/common/status-detail.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¦Ñ¿DÊ\0»|ö•²ñsæW','¼\n*®v¯Q’÷(GÕóiÔuà3@×Î4ÿŠ*‡É','',0,'?'),('#æ7µírÉYÐ\0¼ái','wp-content/plugins/wordfence/views/common/status-tooltip.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','%e\r©FdœçöE0sB','%ýMÍæbuàÎIÑ]’¡CíIã\n©6€Êz}þîB4','',0,'?'),('ŸD²¸d.PË´{-yoÓg','wp-content/plugins/wordfence/views/common/status-warning.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','m”f·uÖºg-g\0CÖ=v','ÃN<\rŸ;ªüd·*×ô8+)“\ZbO?ï0–ÉEûÀÝ','',0,'?'),('Mx1Ç‹Tm¾R_2o','wp-content/plugins/wordfence/views/dashboard/global-status.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','˜.1ŸÚÐ(>÷«\ZVE~','ËIhù÷ì¯ëæ£—ht‰;õ˜a6›N*Øz','',0,'?'),('{[ã/Á°³†Ú‘Îý„','wp-content/plugins/wordfence/views/dashboard/option-howgetips.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÅK•‰­\"Ó#ÞA}d','\Z¦a¹d{ø‘îúI˜ÇPÈð™g/Ïé}%Ó\Zoþ«‹','',0,'?'),('b‡†êE„Ÿ£»º4t=','wp-content/plugins/wordfence/views/dashboard/options-group-alert.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','8¹Þemc\0Øy{PkB;í','ƒ^ˆ\n}¬ñ›œ«ÕâkÔ|ÊÁJèö€‹ÎxÆãŸ°','',0,'?'),('~È¾/úmÚÖ€Í!üì','wp-content/plugins/wordfence/views/dashboard/options-group-dashboard.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','/€\Z\n=oTÎA”ëB)æ{','\\¹8j ÷²×\Za^V—®!\Z”ªqyÑ~W.þ\Z','',0,'?'),('Ì‹¸qÈB3aêYïç-ö','wp-content/plugins/wordfence/views/dashboard/options-group-email-summary.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','cÝÆþ(óØáB=¬#y','—¯¡!™ÄzÊÉHæ‘‘Â]ðƒE³&ú-‰„Ñ:Âä—','',0,'?'),('Qù.Ã¬¼\\¦‚ëûXeOI','wp-content/plugins/wordfence/views/dashboard/options-group-general.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','3îú8E˜àÂn£IH‘','m§\r \0ªmöd@ÜÚíY®&ê³—ìúò…','',0,'?'),('´‚,é×M†ø;vûû','wp-content/plugins/wordfence/views/dashboard/options-group-import.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¯ÈEìOÒ¢õií‡Ç`','0	¢ß9¢0!?ª!w%¬ý‹}X¦Ë‚ZbF½{Mj¹¸›','',0,'?'),(' 5ÔñrD›g»ç±ƒ¾','wp-content/plugins/wordfence/views/dashboard/options-group-license.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','R~s/nÊnÙùŸ\"ø','´«½˜‰óåÿ 1ß†ÞÙÿë”Î=sCæå¡D‘Æ','',0,'?'),('ž]oMð¢seªªJ4È','wp-content/plugins/wordfence/views/dashboard/options-group-view-customization.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','÷Õ¬},‰¨êVîI¡½•Hb','6¥”ÄÛÀ	ù–u\"&…¼…Ùš^ºB–îa€ñµIÖ$0“','',0,'?'),('„œ‚P»¼ÝM…Ëˆ=U','wp-content/plugins/wordfence/views/dashboard/status-payment-expiring.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','raX\'Éáz\05+“\"¨7','vï$ªr±_s¯yó°Y¡ÈùÂU{Ø˜?™±C','',0,'?'),('È7˜\0ŽùttŠ².','wp-content/plugins/wordfence/views/dashboard/status-renewing.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','an¹$Í6¨Ýåº¹\"','‰tÉ¢µÄãÒC-?ø\'(áuê¢¦A¸T-1ba˜Û:','',0,'?'),('OSïYÓWz!8õÊ£j±','wp-content/plugins/wordfence/views/gdpr/banner.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','´‰}ö\'@’«|òCA(r!G','}yQ;¨@œjü¸/–L\0zmÔ:[EÒnÁ5ÍE¬','',0,'?'),('¨\r#ŠDíje™÷˜]w·”','wp-content/plugins/wordfence/views/marketing/rightrail.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','[‹õ¬.²“R²7ü×éË','ûGÇR;Ý–\nË†o xKh\ZS#rUŒk=˜ÅÜh´','',0,'?'),('ŸBâÔè™ô!³¹vÝ¡É¶','wp-content/plugins/wordfence/views/onboarding/banner.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','êPŸ«gGMÁvÑµuÃý¶','ªl%3È×¦©Â~Í_ûO™d$.“š1µÄÖO­V÷«è','',0,'?'),('°/7›Ã±ãcxîÙpŸ–g','wp-content/plugins/wordfence/views/onboarding/fresh-install.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','÷c†ÂJdÇÁe„îÇ›\n*›','×˜kg«¢4÷€×-…2…\\^Þ‹Ž~½={(ójàÝØ','',0,'?'),('ø;Ç%N!9\nL&N„Þçž','wp-content/plugins/wordfence/views/onboarding/modal-final-attempt.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÕL\"<tm±M£Ú·G´','Ó8Nuƒ!\Z%€Ù}7Í>!ãëŒho\"ïØZº6¢b«ˆ','',0,'?'),('º3ž,’˜×cv‹k–’Ñø','wp-content/plugins/wordfence/views/onboarding/overlay.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','â’iÅ®ô9õe`øÐ2î','Zµ´ÿMËGXL;$xMi|Qè%¡²ÝÅ½Y2Ü­$_','',0,'?'),('+´\ZD€–Ze}É','wp-content/plugins/wordfence/views/onboarding/plugin-header.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÆžkÞ÷Õ×ªð€ÂŽw}','@3?š×g¦óXPÍ„~@£¤íwŒdKHaøÑ','',0,'?'),('\'Ac¸´å,	~—6ØøÜ¦ã','wp-content/plugins/wordfence/views/onboarding/tour-overlay.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','™:è¾½%› Ÿ);§\0','\ZÈó\'Ä¡ë§ªÓÊ¶.s\'Æè­sdÜ4§^´ÓI','',0,'?'),('¤Zò÷ód*–èY¡öÚ˜¡','wp-content/plugins/wordfence/views/options/block-all-options-controls.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','W#ëï\0ô–SÎOè{h­','þ$yÌ[yÆšÙTQzâ Œ!Q$ss2ìÛ\'k¿ró','',0,'?'),('æÃ´˜eÒ•÷h‚V\"€','wp-content/plugins/wordfence/views/options/block-controls.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¯8 5üU,îe˜¡\n®4(','“S©|ÃÙýøºð«—POÈÖâø¹dÉ‡&ØÙ²-ê€','',0,'?'),(',à\Z¼J\'ªAWh€Ì','wp-content/plugins/wordfence/views/options/option-label.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','–°Ë`ñšLô–“gfå','üû_´\r\0¬Ž½¼ÿ\0°Z}ðè})v[4®–Â¼ìñ‹','',0,'?'),('·`™`\'Îl`=èê¢X(','wp-content/plugins/wordfence/views/options/option-select.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ì\"Ü+7>¥ B„­}@ž^','!˜£à×ÆìxtØ·ÕòGÌSn›ì-ç±l>\0JB','',0,'?'),(' o¬Æ•ŸÌt_¯º\0.Í','wp-content/plugins/wordfence/views/options/option-switch.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ç$y–RG¿Þë÷.W˜¼ª“','ƒHC™[áÑæÕ«j˜ž¹±¥UµG·wß97|t','',0,'?'),('Ò–6ŠÐòMÖ¦¶®5wHÌ','wp-content/plugins/wordfence/views/options/option-text.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','0±ÙÏ’ Ÿ†ÞÒOÓQ','v&yÎ‡j±b«ö}=IbQÝÖm“Þng€Œ“9','',0,'?'),('ÂYm–Rôl«X\0ø†Ù:','wp-content/plugins/wordfence/views/options/option-textarea.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','®•ÙŠ˜_øsC÷:','ì‰…\"=‚£¤§±÷qm­{+£­J¿q#¯õQ!e','',0,'?'),('2ê0mKš:rÂ²\\0\nBÙ','wp-content/plugins/wordfence/views/options/option-toggled-boolean-switch.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','B?£÷Á•ê Jƒ=Ek\Z','<íGº”2ÎnCF8—æïÊ2®Up¿O\\ã/ ê7Ï','',0,'?'),('êd\nºv;èO1:®®,Tn','wp-content/plugins/wordfence/views/options/option-toggled-multiple.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','}åeuËìo—Ö©ƒŸ2','b	‰8Ø~ìQ›o‰–v	?UF‚°ä.¡ip–¶·Í','',0,'?'),('.ˆéº‰D0‰u©L-c•','wp-content/plugins/wordfence/views/options/option-toggled-segmented.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','BÈ|ssGo1ºåì²x','\n9VW €ƒ’´˜|:Þí]\\Çå)» ë¯d‰^UÓ#','',0,'?'),('$%#€Æ_‚U»_dÍ','wp-content/plugins/wordfence/views/options/option-toggled-select.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','­†©]ŸÞna1P¨g','×ä@‰2<ùÌ»®ˆ?œ×Ãì’¬d÷+e‰µ©','',0,'?'),('\rzÇ¾±ŠDÖDëžÓ','wp-content/plugins/wordfence/views/options/option-toggled-sub.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','”ŸªˆªÈ=äv¸ešO.','Ñ\nGhí™á,?—´Òÿ¨l÷²ž :™r¢\'$','',0,'?'),('DîT[Ç-ÂáýUáöøð°','wp-content/plugins/wordfence/views/options/option-toggled-textarea.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\0‚à³²¤7Ïôõ\rô\'ð™Æ','f&{±[Ã,´Xë¹áóŽÚ ÄTƒ†œXÁÊ§CÀ¿È™','',0,'?'),('*ê	ì¯Ä…ÉÎüßã\\ã¹','wp-content/plugins/wordfence/views/options/option-toggled.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','?\r /ž#±Äˆt­ü?	','¥9Ü¶<\'d¼b\nUÓLéàß©®Gôv„oK€¡©ñ','',0,'?'),('úˆ7Ú”!õ2¦x%’XNú3','wp-content/plugins/wordfence/views/options/option-token.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','B©Õ\rÏµÃƒYH‚n','d+Â»G„ ÓØ¯—¿ÏžM$XªcÌ>.tJ\\s','',0,'?'),('Æëª³@Ñ ›=¤Åy`','wp-content/plugins/wordfence/views/options/options-title.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','EÝ0ó\"ÿ…’¯#“','ÑÃÖ©y\nÉ	 ûÄ³öÆÂXŸHè-<f	­´c¾','',0,'?'),('T?„?:q×®PÃóah\'««','wp-content/plugins/wordfence/views/reports/activity-report-email-inline.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','MÎNóœ+†®\0Xúd','\0çÛìž|&ˆÇÎ1&\Z¡Wˆ-3<\'È‚)îž¦Re>’','',0,'?'),('Hƒ“ÊcåÁ¤I²J%µH','wp-content/plugins/wordfence/views/reports/activity-report-email.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','gB#‹©ƒÚÜêáócË·L','A|y5êöoZêN§bÓ§ÏËëÃ>õ	Y[;9½ø^!','',0,'?'),('N¡d#R­‡+«Ár\0s[','wp-content/plugins/wordfence/views/reports/activity-report.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','òB°.èˆ‡!¸{N§<¸Œ','¨õ§ÀæŒÜ„  l¢Ìfl¼/\r¹gŸÓŒ‡ÓÆ°Ó­o','',0,'?'),('p{\r¶¨ â%>/üZÿë:','wp-content/plugins/wordfence/views/scanner/issue-base.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ñ&3†ÜZñ	¿R\0°7Žu','?¥| ?A†ÜA€!Ñì\n\"Ø\\4UCIÊr­\'~Ë¶P','',0,'?'),('Ü‘KâÝ“à¥ÉÐ%eP¾^U','wp-content/plugins/wordfence/views/scanner/issue-checkGSB.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','T&ÿñ¡˜#i§]Ý<{','EPmh>*HïSžì8¸SÆF®ûpXbdU8¾ý©…','',0,'?'),('þ%|Ý½°>?v{jÊ·','wp-content/plugins/wordfence/views/scanner/issue-checkHowGetIPs.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',':>Þ¤ˆ€+~ÎtÍ«¿®*','I|‚¤^Ïˆg³?nÆAŸdóöŸ¾ë]68Röã','',0,'?'),('ep\r}Èu_4ý¿‘±ó–Ÿ','wp-content/plugins/wordfence/views/scanner/issue-checkSpamIP.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','œÞØð`X›cÁb7µqNSŠ','‹Mú·ÉGû] é?u“¿gPãp1Ë,£(ËV°^´ôÐ','',0,'?'),('DÌöÉuš\rÅÂ‹ˆÉ²\Z','wp-content/plugins/wordfence/views/scanner/issue-commentBadURL.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','––4Z?d—•¥â¢¡','1XaRpLrIO%˜%|\rÎÖVge\0¯-bë^–n½=±','',0,'?'),('ïô±¨cµÐG¼¶¸(`E»•','wp-content/plugins/wordfence/views/scanner/issue-configReadable.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','þï€ ¾ûœêïåŽòQ¹†L','‹šÕR21Î?ÇŒ*=bÍ¥}•õ·¦“X&û¾M­‘Æ·','',0,'?'),('$èï”|©¨cØ¿ \\~Žõ','wp-content/plugins/wordfence/views/scanner/issue-control-edit-comment.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',' ;Í(vp×èoq´’æ´','z-\0ýéAÂØjô¡¬„Ë@Ä 8cÊà¶íT&ÕžÄ','',0,'?'),('èSHLenPîq7¾Ä‰','wp-content/plugins/wordfence/views/scanner/issue-control-edit-post.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','n©ÊZÓHUåÏ˜¼','Ý“ú!½#hltÒsö)ˆ:}*aÙEàïòÒgñ‰lTD','',0,'?'),('®»Î¦Hcñ^žâû°)','wp-content/plugins/wordfence/views/scanner/issue-control-edit-user.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÍDç§d4ú\'T)Ãç·','áKPUØñwxd¾!)nêŠÈ1wƒ<mžÃ.Ç³f','',0,'?'),('º(dwI\0:\rÎÀ×Xx1DC','wp-content/plugins/wordfence/views/scanner/issue-control-hide-file.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','y_V^Á\n%Œ£‹pýÊc','dW¢g¸meË°5±ÿãúÖÒ Ç©:®;³ÐWá\'Õ','',0,'?'),('´•\'ˆ‹@S Ç÷Dá’š ','wp-content/plugins/wordfence/views/scanner/issue-control-ignore.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','‚–°þŽü§ò\\Pm@án™','4ÄÏ×ê•Ls†ÈFïæ½m\Z^Ó\ZD¤Qž','',0,'?'),(')Ø6#¦_ÅúñÌŸSAF¦','wp-content/plugins/wordfence/views/scanner/issue-control-repair.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','[Ð¾ÏÚ°©ŒA9(Ün','ß‘J[4»žõ#è~H‡8È‰Bê™9+¬»/mvøª','',0,'?'),('Úu78¾Â¸äKÔŠkhî','wp-content/plugins/wordfence/views/scanner/issue-control-show-details.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Iè†É6Ï²Ò¿Ä“ª]ë','yh;§}¾³<6yZ$	M>²K™(\\”#—æ&¸\"\rej','',0,'?'),('eÇìÌXÇŒ.\\ì(&ýd','wp-content/plugins/wordfence/views/scanner/issue-coreUnknown.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','åØ±m:hó\rGZªÚ‹Y','t8uUŸ·UûñSÄ’ªqf¾”¬çSŸ3iœ½Žiöu','',0,'?'),('‘/«Ò0)­ºœ\Zæ«','wp-content/plugins/wordfence/views/scanner/issue-database.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','[›þ \n†Ro¢N7Ö|','~‡âƒgd²&w[•u¿¬ª¡¹‘oÙÑ|t‰Á}','',0,'?'),('XýÉ˜y_ñ7¥XN/','wp-content/plugins/wordfence/views/scanner/issue-diskSpace.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ãåòÌ\ZúÁ.*:Ã®ˆ+¾1','–¯\ZÁúºÞ”Îeg)žòQRC‚äA‡mïÖõô','',0,'?'),('¡¨Zmü,äE¢ Úi)¿´','wp-content/plugins/wordfence/views/scanner/issue-dnsChange.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',']vÎ†.S”—†H^³æ™wz','ìxâg\\$ÂÄC€‰ŽÞäà†JÅ)­ýÈ¶Ð>æL','',0,'?'),('4\n‘”	m‡]Ä¿±ÐŠŠÌ','wp-content/plugins/wordfence/views/scanner/issue-easyPassword.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ð[´+e´¹[eûÏ™¿fW‚','QA½×u&í{AiýXPšK®[ñ’{0€Q´kñÚ','',0,'?'),('§ßV€³t¿Sù-Þº','wp-content/plugins/wordfence/views/scanner/issue-file.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','?³}Æ“.þÎœe1÷²U','M­ñTñ„ôÎzÙÚX`„àªªmO¼ñ]$sXÎ','',0,'?'),('¢;¹f J1øúË˜·€+C','wp-content/plugins/wordfence/views/scanner/issue-geoipSupport.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','©\0«<‘¨îŠ^ý°=îf','s]Ñ½j$¬‰	 ¥â†œÑãþ¸º‡¿¤Skìâik¸','',0,'?'),('BžûõQÁ¢ÓaUÿ%','wp-content/plugins/wordfence/views/scanner/issue-knownfile.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÍG^=²pŠ=$÷§\Zñ®2','…RK6‡×ÄN\"3*\"»JÏ/0ié¢x0Ä','',0,'?'),('±‹weÖöi!<º¡súy\n','wp-content/plugins/wordfence/views/scanner/issue-optionBadURL.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ú˜tÀ£\"N¦Ÿ+îõÕ›Lá','¤67E0„ÜƒÕC¯{\\aþdPb²2æ+ýpW;PÞ','',0,'?'),('Êã±›™‹­ V9ø{â¶éb','wp-content/plugins/wordfence/views/scanner/issue-postBadTitle.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ßd™+êÇçölßÁ@ýhÆ','3Õi]m·¨ÿ&¦	—®sÖ¯õI››gše½okœÒ/M«','',0,'?'),('ì¹Ú!<üÜÓB4\ZS}','wp-content/plugins/wordfence/views/scanner/issue-postBadURL.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','þ¸u“@Þ¦Ö$¦‰èöâ,','å¨dÙ|”]ñÝÅQçà!ÊQw£ÔÊê;™†¿`7Zf','',0,'?'),(' úà\nî#T¨ê?×»ìË','wp-content/plugins/wordfence/views/scanner/issue-publiclyAccessible.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','=3n.ZK7æ¡Rb~<„ò','LòØ–ƒknëðHNž\nêÐ$ú®¯§ÜÊ¨š#½«ñ','',0,'?'),('n[	X”‡ƒ}É0‚','wp-content/plugins/wordfence/views/scanner/issue-spamvertizeCheck.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Êá%Ø˜5ˆÐaåOµ_´','´3Â½}˜ßˆÛ6¨¬-Œ§ÜÂ¹•x%‚uv¡','',0,'?'),('$7yûÈÇ]ÚØðNù','wp-content/plugins/wordfence/views/scanner/issue-suspiciousAdminUsers.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ùP‘<\0cA½FÅLæÑN','R]`”[ºÆ2½À#µXÛŠÃ‰i(±E\n`ËÑrJ‰','',0,'?'),('$šèSÁCkèô‰dÎWû','wp-content/plugins/wordfence/views/scanner/issue-timelimit.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','J7^¤˜ÑšOéõi','5Qgºó¸wB¥ëH.fÒë§<Î<Zh&çVè','',0,'?'),('æé¼\"ŒLJ1ìC4ND÷','wp-content/plugins/wordfence/views/scanner/issue-wfPluginAbandoned.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ø:Çú\rêjÈ\0P·âwÒ',',_.íƒ${ï\\?IÇØ\r‡;\ZKYFK?\0‡É','',0,'?'),('=ãFÓí˜£·Ã†±ÂK&Š','wp-content/plugins/wordfence/views/scanner/issue-wfPluginRemoved.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','oL¥ÁêŠ¿/Ã¼ÿQ','ÏÍ4µ$ÐËÕAIo$‚‰PÄ‚det:>ÍêndgûNe','',0,'?'),('Ú,\ržÊ	ÕgÎHÅþ6','wp-content/plugins/wordfence/views/scanner/issue-wfPluginUpgrade.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Úú†sv\"5œ/‡ËF','6ü\ZB\Z®”5öà6\0¥ÈÉˆY}¿àiÌ*tYG‚Š','',0,'?'),('È;±°”N¼Q>ã‰Äô¨','wp-content/plugins/wordfence/views/scanner/issue-wfPluginVulnerable.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','©}6V9¶ <4Û+\\Ýžy','p’ÿ÷vŽM@ð„®˜\ršg9“Ës™Ž(««q©ôâ9','',0,'?'),('îˆrJÿ<p>§úÃÄZ–','wp-content/plugins/wordfence/views/scanner/issue-wfThemeUpgrade.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ù®ÓŽROýN­Úêhá','G²[w*€?Ÿ‘f-@kq¾¼Ú(J?£w$>ÖÅˆ!','',0,'?'),('|÷¸T]º‡:Y$=\'hº','wp-content/plugins/wordfence/views/scanner/issue-wfUpgrade.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ŸPTéœ¢7F¿VFX¼’','Z>ûÀá$‹dKôk@W ‚Åª˜è–á—§Aþhæ ','',0,'?'),('çÚÝL³.dDvìù','wp-content/plugins/wordfence/views/scanner/issue-wpscan_directoryList.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','…iÄ0ô¦j8‰2\nÚsž','vŠ“\\qY{S«œ<|+ÛÏ{(mÖåý?)òôDó=â','',0,'?'),('ÑmaõvMvŸKó³¥\Z','wp-content/plugins/wordfence/views/scanner/issue-wpscan_fullPathDiscl.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','t†žG¾îNÆÜ8±	úè6','×ÀY³‘£V)›ceW/ÿZ£µmÒ³n\'nÃ\0ÐMK~','',0,'?'),('£z²h9æÇêˆ¦ÄÊXpˆ+','wp-content/plugins/wordfence/views/scanner/no-issues.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','xt-|øFÞýŽ¨ÐÑé…eª','É×_?7ËñÜcõŒ¯:_˜Ò@¨‹ÃEÛJ‰Ÿs©°[','',0,'?'),('Úô“ðC .yj\0oì*úf¹','wp-content/plugins/wordfence/views/scanner/option-scan-signatures.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','½ë!ì-]n’óK{AkßS',' ÷J·³*	p¤ÙÌ·{\0á#È¦§´¨”þG4I>,‡k','',0,'?'),('sò‹«As”Y¼ºø¸D]','wp-content/plugins/wordfence/views/scanner/options-group-advanced.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ëòpt4‘È?°;Ox‰¥','æò¶þY\"†Ô¨ÍÏäˆ;Çø²Hns6]Ýz/pð','',0,'?'),('e}0wTnv_óg§~','wp-content/plugins/wordfence/views/scanner/options-group-basic.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ðxÿX#\0®•”­úykf4','eÕØ€´€9r[‡c^Ãïa¥n‹½°âÍ¥œdŠ·–','',0,'?'),('‘ÜNTZt¿o\r–%²¯F','wp-content/plugins/wordfence/views/scanner/options-group-general.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¢Ã{*-Eâ¨}‚','Rlòx\0,¢äLÄ riu›Ê˜¬H3\\Ü_@Ö:;av','',0,'?'),('ù Å„1šr}mJGWßR¨Ù','wp-content/plugins/wordfence/views/scanner/options-group-performance.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ü¦BîQJiêT)Â\"!±>','½œ\\wGÌËîN[µKVˆÍ9æä4ƒÇ|ë„f\rˆÈ','',0,'?'),('üšlxyý\ZÂùÔÄ\"–‘','wp-content/plugins/wordfence/views/scanner/options-group-scan-schedule.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','G²7~#O¯A<ëcøs','·@}6UŠaïîÃ8DÏ*JŒ¶Ö\"\'äÿu§ŠpsA}','',0,'?'),('µ<Ÿ3ì†v¢&F','wp-content/plugins/wordfence/views/scanner/scan-failed.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','z¯|EqŽ„†!…ièS','DÑöõ9‰i)ÔÎ‹Õ\Züö¡ÞR=–’¤UÎ…¶T','',0,'?'),('žµ‚´„Õ°	Ì‹ÓÈ²ÃS','wp-content/plugins/wordfence/views/scanner/scan-progress-detailed.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','‹Ó ³j<cì(SCJ»','r3Hê[~õ2ç.Ö<_J3{›T{ÆÆX…ŒÓ¼ÖPùq','',0,'?'),('³|]§DÅó\Z.’Eî±®','wp-content/plugins/wordfence/views/scanner/scan-progress-element.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÍJùŽÅ!%I‹Wàbœ','t±wÍ€¢~‰sg\n¯+öA}ºÀbL‚¬ÓNÜu¸','',0,'?'),('Þp«Õ­^ß@#àÔ’','wp-content/plugins/wordfence/views/scanner/scan-progress.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Î%ö\nïrÁE?˜mÅþÿž','QfÞÙ\0.Æ<Î:®à“;ƒé6\"{ÁNô+m¬E','',0,'?'),('\'ÚÀ¿_iYm1ÁR','wp-content/plugins/wordfence/views/scanner/scan-results.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÙÌ×ÝÈÈ8Î‚Ž·,ý\\','ê²SHS‡6—Åp‚€²à_2*Ð\rTD\0G¿§—9','',0,'?'),('ñÆ4‘ìïÛ$êŽª','wp-content/plugins/wordfence/views/scanner/scan-scheduling.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Æ$OÛu-5p7P','¨Ú¶»Šýc(RW\Z½Ð›¤IôºMøxz8®r','',0,'?'),('†F_q¡ÃÈCŠF!o4p·—','wp-content/plugins/wordfence/views/scanner/scan-starter.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','E¨Žø Á“`b{{v\r','qF¤ÿ‹xÐïâgTA]œ¦ôM†­k^¨â>Ç\'UBâ','',0,'?'),('ÀDˆÿ!VD+“óêë','wp-content/plugins/wordfence/views/scanner/scan-type.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','% ž4~ƒ.ß¢w9HDA','*+úuU5V,Z‹ë\ZÉR)ëvÙiòaE{6@Úþ•','',0,'?'),('KKOfºSd«iB0Ovóê','wp-content/plugins/wordfence/views/scanner/scanner-status.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Þ‘ðø[.É•™Þöl\\:','&Àðk0l‡ƒcï X*½‘*?ÀÏÍ\ràääÜ’¥','',0,'?'),('©¬³ô‘9Ä~\0{@ÙÛò','wp-content/plugins/wordfence/views/scanner/site-cleaning-beta-sigs.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',',‹)RÔq¢Æy»|´­4„.','ð¡%U¦<G×H«Ëæ[ãÑ.!eË‚t,g˜äsÉ„','',0,'?'),('&#ÙpªJ£¨há','wp-content/plugins/wordfence/views/scanner/site-cleaning-bottom.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',' ,I÷“s0w4Q¤”ú','EÔÿÿÅ\"v+½ó´„øbƒüoüž}µ†xa{:@E','',0,'?'),('o}ÛCÜŠ8ôEøïGð','wp-content/plugins/wordfence/views/scanner/site-cleaning-high-sense.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','‡sTD·z¸¤üÒ§ém¢','Ý5‹©Ø„²:\"—sxƒº4·çÒ¸\0±9`\Zië?ƒ','',0,'?'),('ÅŠ³÷6ƒ÷½@àL(`öâ','wp-content/plugins/wordfence/views/scanner/site-cleaning.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','5ÿw1,5­b«„dv®F','g\"±gá2¡®ßš}™‚à¶qAøšþ?Ô$Í)Àd…¸','',0,'?'),('mÔÃ±…~–öòR¥?','wp-content/plugins/wordfence/views/tools/options-group-2fa.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','f!Ø˜·„oåKžzµ$¢','_)^óû|Wß|œÛ§e¸uÏ¿f-P±³ëÐ¤}–','',0,'?'),('Më‹0ØÆÂ›&¦¤žò\0õ','wp-content/plugins/wordfence/views/tools/options-group-comment-spam.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¦Dž¶¥¡^5ôßÜérÚ“','†¼;ý.—°?1•Þš±oò@9n51µCÀ5j‹gè','',0,'?'),('ƒãj¬ºÓÃ5²ÞfÅj¡','wp-content/plugins/wordfence/views/tools/options-group-live-traffic.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Íê™WêwÕ\\§$8†	%','/ÌåÊ»	®ÄSVýë\"¥KIÆ,:¤èrß[Ìy?B','',0,'?'),('Ö‹Ë8“[½À¦‰˜0½ÊŠ','wp-content/plugins/wordfence/views/waf/debug.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','æ“\n¨ÇˆŠD‘','YchA¿¬ØZv—®xípam\r5YŠš×hü3˜aü6T','',0,'?'),('ËyÐ6‘6lëšM¬C·','wp-content/plugins/wordfence/views/waf/firewall-status.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','´lw\0i75ÄñŠæƒGô“','\'W±ÖµDírÿDB·íÁeH\nüê@ý…Å\":=!M#fÄ','',0,'?'),('è¨Ã·‘g$ë”õMâsß','wp-content/plugins/wordfence/views/waf/option-rate-limit.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','}W5ÁÎ½&dð_ªÚ‡ô','9jþZÿˆzÔ®2Æ°os\ZcK¨Èít#7á	:üÜ','',0,'?'),('@¹à\Z!z‘žråÊÙWžÈp','wp-content/plugins/wordfence/views/waf/option-rules.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','qi0•t>ž¹Œ×£¥F','wæQ5‡Ài£‘sÌd)Æü$k¼Õ+òCx½ç?½ú','',0,'?'),('œ2X69G3ß\ZÏ+}Aü6','wp-content/plugins/wordfence/views/waf/option-whitelist.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','4K·U>ð}1dz¶Üðç¸','®¤9¯9:Ös÷qàaSžÊœÝ¢ýÈ÷‡McZ','',0,'?'),('zÉµ›‚@ö/Î/@ ','wp-content/plugins/wordfence/views/waf/options-group-advanced-firewall.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\rº\'(e|]@Ó1›•ûá9','üþ•.òþ!Œy;¬`Zr‚J¾;È•52L\\Ÿùü\"','',0,'?'),('ì»[ÝÎäÓƒ©ï2¾W','wp-content/plugins/wordfence/views/waf/options-group-basic-firewall.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Œ¬÷ë\')Ï®G\rÂõým¿',' ®ÝÞwÀ”Ëóý%Ëˆç,d¼}©¥²Tëþ6\'6Èl','',0,'?'),('K¯ª<©H<7ÅEž,lçß','wp-content/plugins/wordfence/views/waf/options-group-brute-force.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','[{°[oÇË²ƒÚÚ˜E_º','*`÷ýqbM™¸I†gÈ45û\Z3³á\nçrx \n‚ÀÖ','',0,'?'),('!¢yË\'UµÇbÖð#}','wp-content/plugins/wordfence/views/waf/options-group-rate-limiting.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','£\ZlIN¾èÙèi F6|','•11ËÅL(DgBÎ*»È=Åv^3¿PþàšÍžb','',0,'?'),('gµsôÎ)¡³mýç%','wp-content/plugins/wordfence/views/waf/options-group-whitelisted.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¹=5e%C;)Öàë7k5','xw´Ö8@ßêÏs¯±Ù?Òœ|bÄ/ò3îÊ@å*’w™L','',0,'?'),('nAj+´uªúVG7d','wp-content/plugins/wordfence/views/waf/status-tooltip-learning-mode.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','øÙ8l¼¡Ÿý´%Âã','!]`_.•Û×\\²ý?‡• ð.\Z·b¢ñÉGQÅe)m','',0,'?'),('=	]þéÿ’}úÜ*<.','wp-content/plugins/wordfence/views/waf/waf-install-manual.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','$òxý°~)‘«‡[Úœz','7ãR ¬ïNÄ`n^š?¦(½Ú)¡€Ï^R„ÎšÄ–','',0,'?'),('\\H¢û–:”¢u3à%‹Fw','wp-content/plugins/wordfence/views/waf/waf-install-success.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ê{r†„§£b^•éÛ?—','§Î/¼Þ\\2¶ÖCe»žL+«Ò:÷p…ïªì·Z','',0,'?'),('…ZÄÛDŸ›l³=¸ì»«','wp-content/plugins/wordfence/views/waf/waf-install.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','s«Êçc\0|å1ÚúJ˜R(','E¥#WÛ—ã_ä¦·2\0L>Õ¼\0\n¹·šN#-LH|Ó±','',0,'?'),('uˆýúë[ý…†äêÚD','wp-content/plugins/wordfence/views/waf/waf-modal-wrapper.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÅnÎ³UÇ©–7P½F‰¨ó','fÌÿõ4úîé´Ö’p.’Õ•*šðë^Nlü8 ïèA','',0,'?'),('p:”,¯`OlL´(éA','wp-content/plugins/wordfence/views/waf/waf-uninstall-success.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ùÀ­‰›»¡¥½*sf2','ó|\rß£2ìž¿óê9õ/%[‡7m—{EàÝû÷u“-','',0,'?'),('’Aç“o\r÷ZÔ”_št','wp-content/plugins/wordfence/views/waf/waf-uninstall.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¢Ø4õn½“¶Z=”t Ô','ë{§†7bR	ÿüãNY\ZB²e´­&C°¿½V-¶Èdä:','',0,'?'),('¡ØHéaŒ+õ§­­Ì°I±','wp-content/plugins/wordfence/waf/bootstrap.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',']’g“jÒæP§wåºÏ','PNðQ^§~ÆÀ³&\n—>DšLw=V”°h;mžX	','',0,'?'),('Ý6>l”ƒŠ\rÑ²Y','wp-content/plugins/wordfence/waf/wfWAFGeoIP.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','I‡ÕZâG×4pÍÃ\'`','É	8+üêÿº>uìwâÚHrðm­“Újj^>é ','',0,'?'),('\0ÐDø`ø8R¦ÇÉ²%†','wp-content/plugins/wordfence/waf/wfWAFIPBlocksController.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','eú¼Úhä×t±©|¡>VUA','…dÝ|îúD“¬ \'éV©ìbgWgêýbâ¨§Ú`É+$','',0,'?'),('%û¢Ã›7Òáå¨³Ì','wp-content/plugins/wordfence/waf/wfWAFUserIPRange.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',' J?Fe’â÷ªNwán@\Z','½£s…Xì½ÁÕ`ü~Ê£P›Rwè›Ã·Šý—Ýßî','',0,'?'),('E#ÍÕç-v37Ù6ëÅ¤','wp-content/plugins/wordfence/wordfence.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','@Ùk<ƒádd%¬5D','Â]IÍ?6MF²O:ïØ·Ü‹K°Ó_þ>Lþ6&´','',0,'?'),('-ÃÜUÅÂã¦\r™š','wp-content/plugins/wp-db-backup/LICENSE',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','²4îMiõüäHj€ý¯JBc','¼ÿ\0v1£êsÔNí>cIDÙ¦¾Ö„Ié­0ÿ-','',0,'?'),('(©³$Ë¸¥>ýÃ9ŽG','wp-content/plugins/wp-db-backup/README.markdown',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','gã¶ÆÒ+\'ÿ´—˜wNÝ','¶‚o@ì¸Wí„õ’\'ïYÄQÆI¥gzEW…øO','',0,'?'),('niëZòR{ÇùÚ°häôŠ','wp-content/plugins/wp-db-backup/readme.txt',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Y®Üí™ÛH=·}QÚ=','D›úlB·ª¢_p[Ôè#£ÿ{BØ¦®YKQ\0·$V','',0,'?'),('â¯”ŽÁŒ¼üG4;Ò	&','wp-content/plugins/wp-db-backup/wp-db-backup-ar.mo',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÝÒ,.Î@ŒÈY³ïT',';\'=ªÄ0(‡šÍBäÉÉÑíÛQ=¥2‹H…*Ú˜N{','',0,'?'),('È	yÈw:×2:K`Ôšë','wp-content/plugins/wp-db-backup/wp-db-backup-ar.po',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ØñT›UJ›ÿAq–½ƒ9','¸FÿXÁP+|ˆ3 Ú×mI­Àgï3ôÍ’¿^\'?NÈ®','',0,'?'),('TBpp§JÙXÌ‹!b¡[','wp-content/plugins/wp-db-backup/wp-db-backup-ca.mo',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','”QuñÓUu–§KÁÿ{ð','T“Ãóæ_¡HCf™Ö®oîI	Œ½Á®AK_É×¤','',0,'?'),('Û1ÓsµduŸ­‰u£','wp-content/plugins/wp-db-backup/wp-db-backup-ca.po',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','µj®Ì.Osƒ…Q¥Ñ7£','µÑ•ÏÓª=Å@ÐU®ð>ºn–çÕ \r•¤Õ“;‰)9?','',0,'?'),('üKv˜_¿[–	EÄ[€','wp-content/plugins/wp-db-backup/wp-db-backup-de_DE.mo',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ì»u#[¬7OpÁ×Œ','!FÖŒ,\nÃÜäœÆlp\\É/€Bìò:q¡øãÝ\"±','',0,'?'),('ñ¡jv@Á¬WªI[','wp-content/plugins/wp-db-backup/wp-db-backup-de_DE.po',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','·úS’¡¿¾L6ôDt','¢¢—eÕ—n¬ËwŽT¡	Q V4ûXróìiÛÕ¬Í\r','',0,'?'),('œ,’,ReVž#ð,—A','wp-content/plugins/wp-db-backup/wp-db-backup-el.mo',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','À\'U‚Å[Wï\r Z£Ô‹','4òŽlÂù\rXSˆXT€Ò·MÿœD¢›;ê','',0,'?'),('yZQ$°âˆ÷ž¨§|µTG','wp-content/plugins/wp-db-backup/wp-db-backup-el.po',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','îÙçJä.S;$®Ÿý¹','ð”%\Z³¿Ò2ü:#æOEÁ\\î³®£w\\Ø>¼LÐÝ','',0,'?'),('L!k¼ìR¼žm´¡øl¹É','wp-content/plugins/wp-db-backup/wp-db-backup-es_ES.mo',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','®™;Œèï„»#‚çT‡l','†v¡’À^>ûr«œ\"	æP*Õ7þ-(œ´ët¥–k­éº','',0,'?'),('ýÉ2ø+”3q½ÇJõ','wp-content/plugins/wp-db-backup/wp-db-backup-es_ES.po',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ü®aŸþ»HïÝ«oœ4Àô','>sâ˜T·WðV_¼¿aïìJ,t¥ôZÝèÖ¦b ','',0,'?'),('?i?•è.òÐƒâ','wp-content/plugins/wp-db-backup/wp-db-backup-fa_IR.mo',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','?­€ŒŽ¼‰\'Úõë)ßœ)','Ù(ªŽÐibÈ«•¯™ïaõœs[ÔÌu@»ÔÉé&k§','',0,'?'),('-ºûÛO™È‹,+$²4Ô','wp-content/plugins/wp-db-backup/wp-db-backup-fa_IR.po',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','×lÆÏ4—ïõýî«„¹','V…«küj±Å¦qªh!zôØÛ(–´!ƒü|U\0ÏJHO¹','',0,'?'),('3)ÐœƒwYÜ\nþ#œ±Æç','wp-content/plugins/wp-db-backup/wp-db-backup-fr_FR.mo',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','·Êº×œx+˜PÌguxÚ','ªÂäòÕ\Z²¤»­\'[×r•°\\Ÿ¾ƒyP–üÔár“','',0,'?'),('}5·äTs¨€bn!iOgäe','wp-content/plugins/wp-db-backup/wp-db-backup-fr_FR.po',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','wQ¸”O­Ýi*6?Ò¸','$+áË\rçÙ6ý;ø+ýÑ¤±n‘ëÛ¬èE?kR¾ý','',0,'?'),('ˆÊäÿÃÝAmëVÓ<','wp-content/plugins/wp-db-backup/wp-db-backup-it_IT.mo',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Q$LbƒÒixl—4cÉ','·p³ŠÕ³ÒHìá)ø ”‡XˆÀ—­²dáøåÈ¬','',0,'?'),('¾7mÀ’_‹rõˆ4»','wp-content/plugins/wp-db-backup/wp-db-backup-it_IT.po',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','éBôXðG{‡:û4ÎR','}g–¾r”iÑ>±Až\'~h™9²8†öàòj\r·ä\ZHñð','',0,'?'),('È?ŸkÂ›)9›áxÒo)','wp-content/plugins/wp-db-backup/wp-db-backup-ja.mo',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','z&ÛéŸFÒx†«n’‚Y','À`y~Kä·n©Œ	¾=œQr)•¹ß‰ñAD‚¶k','',0,'?'),('%\ZiÕ{A<Ž“ÿ=fq?9]','wp-content/plugins/wp-db-backup/wp-db-backup-ja.po',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','L±XÓžd”¯ŸXLµ¯','ƒq~hag \nšðÚž.Rj_x¢u$Ï¤¬œ	ŽÖ','',0,'?'),('c_¸ºf„@’ÔàH]Œ,˜','wp-content/plugins/wp-db-backup/wp-db-backup-ko_KR.mo',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','QÞû‰k·EÒéDµÞÓu','«\n»?æòNã¾áß ²î Ò7€§«$ÖôíN®L\Z','',0,'?'),('é=%ªLt@™ãµT$ëN','wp-content/plugins/wp-db-backup/wp-db-backup-ko_KR.po',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','sCcõB[šJaMÖÞa{YW','ÕoâJiÁ#ç«‚ÚVV§²Ñ-‹4’…xPD³\\`p','',0,'?'),('ŸfŸèT¢M“3Î½eDÕæ','wp-content/plugins/wp-db-backup/wp-db-backup-nb_NO.mo',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ä:Þ0ÛtÀ-ÈyšN•î','¿ñ¹D½Ó¬´àú\\cašš0Æ»é1ARP@äIt','',0,'?'),(',{â»fÎ³OÆc­üõž','wp-content/plugins/wp-db-backup/wp-db-backup-nb_NO.po',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¹E®—ð8`¡‰&\\²·Ø','‹º˜PëëçÖi}ûf^z[rØuIJn‘ëÒ¹Ç','',0,'?'),('þeábñÔƒÒÚ?%$¼œ','wp-content/plugins/wp-db-backup/wp-db-backup-pt_BR.mo',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','n½Êyòþ AXÆ','CJ¶-;þGßúPÛ²ç»LóASø[JD,¹¥‘wkÄ×','',0,'?'),('÷w0ƒLO\Z!è®œ&€Ÿ','wp-content/plugins/wp-db-backup/wp-db-backup-pt_BR.po',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','žÌoœÎ)‚áÙ=ðœž!v','hÇáÜ|š\rÚf&„çá}®Î70ô\Z“&€ƒ÷WV','',0,'?'),('n‡TÞLÞz•÷¯ºF','wp-content/plugins/wp-db-backup/wp-db-backup-ru_RU.mo',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','>Ð—¢zøÄçš,JìAÜ','EÙ:ÊUNÓZãp^Êýsµß“x¼½ASüšz~0V¡','',0,'?'),('…©ºB]§kxÆ3Y¥±SÌ','wp-content/plugins/wp-db-backup/wp-db-backup-ru_RU.po',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','­Öª,.Í•‹ê\"ëhÑe°','­è.úaV	ý|˜(õk§–—%¥Z:ñ¾àÝmm*','',0,'?'),('ZQr¿)ß•tmiÁ­ŠÅ','wp-content/plugins/wp-db-backup/wp-db-backup-sv_SE.mo',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Pðõ§±´ÕØ×Áký„2¸','Cð°¶ÐÞ=Ša¦ã2OÌ¢j7]±Y;Ct«\0û#œ','',0,'?'),('¸F ÄlE5ß™ùVŒ¶½)¹','wp-content/plugins/wp-db-backup/wp-db-backup-sv_SE.po',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÉÅÖ7´8J¿¿,ò¸*I','z%bÍ}¶O¢N—{?+Ì[Å¢Ü9ºu”‡p\'på®&','',0,'?'),('o­ÅœD:–¸#y‚¸h£','wp-content/plugins/wp-db-backup/wp-db-backup-tr_TR.mo',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','&\"Úñ2\0;ñ‹¿UÒO','(1­§Šåè¡¨®ê‚aéÛ	âd´Rý9 U´-4','',0,'?'),('çHX ˜XðžäD \\B÷K','wp-content/plugins/wp-db-backup/wp-db-backup-tr_TR.po',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ø\Z¾ÆÿÁd@°Yq¤','ö|÷qk–’Õ%¿‹2Ù€Œ`úß™!A[í’Õ2Ò»R','',0,'?'),('TÎ°Êî¿%‰GqVuàÑ','wp-content/plugins/wp-db-backup/wp-db-backup-zh_CN.mo',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','DÇ”yÀ•¸Më¤Æ\'î','ÎíD/±|gZ‡×«SÐFªðŽ#M<çìØÌT','',0,'?'),('Þ„\rRCux$ÚÜ™¬Oí','wp-content/plugins/wp-db-backup/wp-db-backup-zh_CN.po',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','n(”¶¡Æ[N((ùpØïÚ','	Ž¾† .e¥\rßW¬ÂÔÆFÈ!hþˆFxÂ`?·','',0,'?'),('–ÛæÁáÏš!Üõê\Zá\r','wp-content/plugins/wp-db-backup/wp-db-backup.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','õßK#K9íø¸^r¸','¦Ÿ¸1:!æ««kèÄeº[cÕ‹çÈÁ¤¸ô²','',0,'?'),('&]\n:V	t†äé”—&¼@\n','wp-content/plugins/wp-db-backup/wp-db-backup.pot',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','øñB‰`\'Ù¹ÁTÐ7Ò','\"™1Ö!eÏÖÜÊ´â2É©dcË_ádYHŒÅâä›A','',0,'?'),('½¿%ÆvZ5Ò¹Z7Õ¥Â','wp-content/plugins/wp-editor/classes/WPEditor.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¯™êŽÓ@Ú¦´>PÌ','g–×Å„AEilñÔÈýÛþÔv‡ì*Ýõv$ís`@','',0,'?'),('³³Ûú„³(ùîvKôÆ«','wp-content/plugins/wp-editor/classes/WPEditorAdmin.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','U§ý+ÓRLô\n;H«W“Ðé','½ •{?úÝ´ÃÚ¨^|åQéw¨ÃüÔz8;Þ(Þÿ4','',0,'?'),('äZ|ònÂ»DÞ“=V¬ ','wp-content/plugins/wp-editor/classes/WPEditorAjax.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','†8o³Ãa¹´èyí°ñ¦','èÍ³U±eG\neæÓáárvïWñS¸º|ÙWøt','',0,'?'),('e¥Ž†×:¾Ã& ÈÏÙ\0','wp-content/plugins/wp-editor/classes/WPEditorBrowser.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','®,(¯Æ—ôÛ\Z_\'=¢','F×+EMûþ3/4’´Âí‹ÕXº²î›•ÜÎ™˜','',0,'?'),('”ÝÆ+–âT¸5=Ëeå¸aç','wp-content/plugins/wp-editor/classes/WPEditorException.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ìaÖ±‚äS¿ýÝ¨éÊ:	','}x“™xeý}Ç¶16L¤ šTÂT™¥™£Äi3\"T\\','',0,'?'),('ðÔeêWÃH¸í†LK+}Õ¯','wp-content/plugins/wp-editor/classes/WPEditorLog.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ªžKÆlð5¦kÝy™­8tš','ï¼nX˜Xq[6C|×q_{­,,?ðØ?‘²æH§','',0,'?'),('Ž#¦Úv¸ºrÐòÃßC)Å','wp-content/plugins/wp-editor/classes/WPEditorPlugins.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Û=Dõðò­oñ%ÖX K','mtÐü3\0þ`±Ä@î&EÙ‹)³ø46OÄæk/õÄ«†…','',0,'?'),('•OäÄµÇ(‚™»±','wp-content/plugins/wp-editor/classes/WPEditorPosts.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ŠnÚþï‹1L\\\n\Z‡XÅ`','éï²a\0Æ/PgTƒáx0LÍ•ü¥@õåÃ¸o©ÿkæ\r','',0,'?'),('½uIÁô€•Ë/ó8.öŸ]','wp-content/plugins/wp-editor/classes/WPEditorSetting.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','`n®\0\\0•\'ú9;JB¼ ','’ëfå÷OÞ\\Ì°_«bD¿ÖŽeYá_%„<§~©‚±','',0,'?'),('•®G9˜cGÓÅ•;ÛÔ”Þ','wp-content/plugins/wp-editor/classes/WPEditorThemes.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Óm÷Â³²ñ[\0g\\y\r','gEG»dµuÿ¤Y`NŸðzG¥Ð…G2êY\"º»Ý','',0,'?'),('Pd¬\\üs¼ÁÍËÔ´þ˜¥z','wp-content/plugins/wp-editor/extensions/attrchange/attrchange.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','KÞ-gƒäÏ,[`TH\0‹¯','hÿkw*Â§âM¤“¿ÅàîÑ`kÇŠŒ).’…‡ñêþ','',0,'?'),(',°.Øh¨=N×Kð6`L\\·','wp-content/plugins/wp-editor/extensions/chosen/css/chosen-sprite.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','‹U¨\"ç+Õâî’6ò×—','Sk 1ºQ:ÊËÞad£DQTÿâ©IBx1¼F`IQ‹˜{','',0,'?'),('³|p‡à‚Uû]æ™ ','wp-content/plugins/wp-editor/extensions/chosen/css/chosen-sprite@2x.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','aO­amM¯SgàhP\\­5','­ÒÖ(\\²Þn·ék:J‰!X¼§þ„ñX¢<RÐˆj4','',0,'?'),('…vÑÏ÷Š%—ÈôŽ','wp-content/plugins/wp-editor/extensions/chosen/css/chosen.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','^²\\¹ØI§wð+ì¥æ†','ï-oâtÍ˜›}ùr3F™íMÁ“Mmi\"Ë}M','',0,'?'),('àŽà…CKÇ„gœë7mxùQ','wp-content/plugins/wp-editor/extensions/chosen/js/chosen.jquery.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','We]V…ãûÕ‘5¸¶ÿ','è6´~â¹åæõÙùL@´6ÒU$ŒÓ6\0¸¹ŒÀ','',0,'?'),('Ëïã­„x¾ôpþa','wp-content/plugins/wp-editor/extensions/codemirror/css/codemirror.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','1	ÍÊFêZ›¡¦Aâêu','~»\\¥\"Bï¢úæL®š½Ç¦È„\06öLx \ntpÕÏ','',0,'?'),('÷w¾q´9‹ØQi=â','wp-content/plugins/wp-editor/extensions/codemirror/css/dialog.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','©Èf¿_?2©È=R€Y','\n3¥=qîš]páÏ‹qŠÃ¯f˜!Q-aüÜžà','',0,'?'),('&U)4GÞR/ÃkyÌ','wp-content/plugins/wp-editor/extensions/codemirror/css/fullscreen.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','õ¡4ÿÞwÈÒgG4Ô','ÈÉÀ7‹G	OÍK\'‰R*å¥)¿¦NÏit','',0,'?'),('ü¥õIp©_z5x’§¨/ð','wp-content/plugins/wp-editor/extensions/codemirror/js/clike.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ðl\n^ÝVã¹¾¨Ü˜1-Æ','/õÚÚ5Øv?ypuÑ¶šÛñÉ¹åËkÑŠ&ùêW*7','',0,'?'),('®|Q‘ëMvÃxHarœ','wp-content/plugins/wp-editor/extensions/codemirror/js/codemirror.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','«Ãž¼Yt*ƒ—sE÷í','nš	ÖiˆÂJ:_T7`Hy‹;”/=\nÊªôV\Z…Fê','',0,'?'),('þÌjw\Ze]Ü;¥òÂØ','wp-content/plugins/wp-editor/extensions/codemirror/js/css.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Nn¿¦ýLN²Àð½ÉBU','‰î¡ŸŠ˜9â9„#mŒÙx®™oÛlòîk	DÌ´Ð','',0,'?'),(',€‡Xð˜ÊZ7¶Ò:£','wp-content/plugins/wp-editor/extensions/codemirror/js/dialog.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','U\'ÛŒéw‘ýU,Žð´','\0í9×¬J³ó19õÛŒa!9\\RzT^+ì¡Íphj','',0,'?'),('b>:NvéoAÿÔó×ÿ;','wp-content/plugins/wp-editor/extensions/codemirror/js/foldcode.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ä=â–‰LMI\'¼N','£?œµ~ŠT†ã\"4¬9Kÿ£÷Ÿü8Á¡Õ£›Jù…','',0,'?'),('raÏ,)ÖF–Ã”G‘LÍõ','wp-content/plugins/wp-editor/extensions/codemirror/js/fullscreen.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\'²óÂ:I\ZF¯X–¯r','þ„axÁŸºòÅ´)lL¦m¹ÝµµËÍBèo*–µÌ8ý','',0,'?'),('ŽjàFsãx)Ã?ž„Ð','wp-content/plugins/wp-editor/extensions/codemirror/js/htmlembedded.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¿˜­Iò’<$ºŸ.â¡ÍB!','‘©Q/:ü(r{uíÚÜ\0ÃàkwVnŸÅdTÇÜPJX','',0,'?'),('\'m,}eœ£ùí]—ïËˆ+','wp-content/plugins/wp-editor/extensions/codemirror/js/htmlmixed.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¿_»ŠFÿ³Å@ªÄ¾¤Ä”','ÉUÒ¯sWÐÒ°_þ‘ëP7+*MT.&öQ¢','',0,'?'),('3*6ÒS[›\0ì‰PC¬','wp-content/plugins/wp-editor/extensions/codemirror/js/javascript.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ˆú$–0-ábÃ÷- $—X','bÞÛ™Ù’Þ˜Œ`+þ;É\ZzÜ‡#(ŸÊ‹ë0!ü7-','',0,'?'),('j­p˜-ÅW÷;×aì\'Ì¸s','wp-content/plugins/wp-editor/extensions/codemirror/js/mustache.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','c[\Z÷”ºÂÐçªNýë5','{“ZÇi†åàÂü	ô·B¿N•¬AnŸ1xv¹;üH','',0,'?'),('ÅÉë‹îö\0u72W^Òd·','wp-content/plugins/wp-editor/extensions/codemirror/js/php.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\"žÁXû}7ŸdhÒ','ë~§Ó·ÇF*¦/E×LRP’S‘zGœº˜×DëÒ','',0,'?'),('z\rÌšz1@_c>£yIÜ','wp-content/plugins/wp-editor/extensions/codemirror/js/search.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ú¿»\\–Ð½eí6Qî','†Kuã°4Â³B·×3õÇqÛÒÊéöüºÓßÚê´rV','',0,'?'),('Ê+–±ƒy1&ŽÜTlA','wp-content/plugins/wp-editor/extensions/codemirror/js/searchcursor.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','â.“Üê¸o¸¥âG`óù','M430–«+?ÎÅŽkV.a€ Ë€<\nÈ’ˆý»NÛ!','',0,'?'),('Ë\Zn2ûh2÷VÌ\'ÇPÕ','wp-content/plugins/wp-editor/extensions/codemirror/js/xml.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Éõy	¬8p95DHð¼ÿÊ%','Ô†->öæ˜wûF!êp¥þž\n|GúÃ.ïüa+NR','',0,'?'),('ÔÒQJËÝâ‚ÿ¾}Ñê','wp-content/plugins/wp-editor/extensions/codemirror/theme/theme.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¨Ô+è-®„ôÖMƒTV³åÃ','Ò”ày™¥¿b¬¿~»­ž´!?6œ¦_–Çqï-}P)N','',0,'?'),('Œvÿ9‹¥2´•ã8 1','wp-content/plugins/wp-editor/extensions/codemirror/themes/themes.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ž\n²y™>>Å1jkY¿ÍÔ','—am“4¿šOJñ«þ¤\r(ÃÚvž¯HLÞÏ˜…Ã±','',0,'?'),('Š¡BIíë¾\0hÍ‹¼»Ì','wp-content/plugins/wp-editor/extensions/fancybox/images/blank.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','2Tr`qóðtÃhÓ5','±D.…°;Ü¯fÜXÇ«¹‡EÝ&‡ØcP¾š)Š“‚¬„›','',0,'?'),('|â\Z¸™–:õê*¬O|$','wp-content/plugins/wp-editor/extensions/fancybox/images/fancy_close.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','n(y£$§n™rëÉ‚ªáØ','Ñ‹óÕièðÿÜÂ–Kš@[‰cÔãS@[S?z•','',0,'?'),('f)Éú0mþ½7p¸9ü¥‚','wp-content/plugins/wp-editor/extensions/fancybox/images/fancy_loading.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','±ÕL$ðnAãrÕi·8','+Þ|Ïˆˆ¯ˆTKõq’+ÆmŸù€k+Óªoücg','',0,'?'),('Åe\nc¼â›Lkl®æ[Í-Ç','wp-content/plugins/wp-editor/extensions/fancybox/images/fancy_nav_left.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','?>@a,Ø#cƒVŠ@º5','ZþÅÓ¤th½†¥11¼(MbÉ0™Â¥<O\0¿šÐÎ','',0,'?'),('å¢Í®B|~>ÓtÚ','wp-content/plugins/wp-editor/extensions/fancybox/images/fancy_nav_right.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','!nKÞ[Ýîª`Ü=i(¦Ž','£G\Z?E·ÆÁ¶=”E	;C\'§@Úqä‡¢Tº×õæ','',0,'?'),('¾üV#BU‡¨©çð$¸','wp-content/plugins/wp-editor/extensions/fancybox/images/fancy_shadow_e.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ýOI€ÒŸ­åwñºL‹','ÐÐ=gD!á´Æ|JÛHw© e[çó}´Ñ.“jÇ','',0,'?'),('Š)Ó:óŠ°‰™ˆˆŠ«O','wp-content/plugins/wp-editor/extensions/fancybox/images/fancy_shadow_n.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Íácy²Î­ïqM›4m	ì','¨špQ‰ƒ¤„}JŸ\nÉÑ\"jÔá[6h¾|ÇW¸¯­','',0,'?'),('tÍrÇ)Ñ>G!:êÚŠ¢ÿ','wp-content/plugins/wp-editor/extensions/fancybox/images/fancy_shadow_ne.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','c­÷ˆ¬ñ“Ôäód-}y1%',' dTd×ÂWÐcÈQ<Õ-Z\'FÛCõue½¯Ï‚Ñø','',0,'?'),('2¦ÄHµ;¢È\nke','wp-content/plugins/wp-editor/extensions/fancybox/images/fancy_shadow_nw.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','È Èx®Ûzž½q5¥Ž|e','QbV{ïg ‹VQÏæÞhÏ¨Js\Z‚<KÚÌíûà…','',0,'?'),(',¡2¨“jZƒ0Ýs\r$Otb','wp-content/plugins/wp-editor/extensions/fancybox/images/fancy_shadow_s.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','›ž\\ˆ€(ªï@þ[j6?)','€Á÷ï\"„¬X÷ÞQŒt1‰BUó`Z£c–D˜[¯{','',0,'?'),('”=—­À¨qaÒO¤ZùÅÏh','wp-content/plugins/wp-editor/extensions/fancybox/images/fancy_shadow_se.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¨¯Õ ˆC€îq-q&','þ£ý´à°^ÿVÒBRXMÓ·ÆËI¾ö‚	%\r˜÷ö','',0,'?'),('ÝÙi)ø²ˆs÷¹~·&','wp-content/plugins/wp-editor/extensions/fancybox/images/fancy_shadow_sw.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','øÀþåXv­<ëä~~y','pŒy,d£Û•\rÿ*E’¬«žz˜ò\0^s€+¬u','',0,'?'),('£H¯áGÅj\rU;J°ƒjï','wp-content/plugins/wp-editor/extensions/fancybox/images/fancy_shadow_w.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Y°æ>°Yå“,ýSÚM‡æ','T§½Áb·wlíÜÛ¬:x/•œŒxia>°Dkæ','',0,'?'),('ÐÄ¸Úëö),5§*6%NV','wp-content/plugins/wp-editor/extensions/fancybox/images/fancy_title_left.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','‚¬-;ïjdE¿ÎÊ\'AÍ','Æ_?~5èà@zôàÿµŠ—ŠÐ—á×¦¢Ñ¦ùäË˜','',0,'?'),('!x[\\J\ZßQÌž©M','wp-content/plugins/wp-editor/extensions/fancybox/images/fancy_title_main.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','8ÚÖÁíKÜÀ¾Ç!²Þ¸Â','þS×«¢„ð-LuSYÜ¬ê£cyHoÓHs´4úÇÆ“','',0,'?'),('vòr4\\G-há‰u¤¶Oe¬','wp-content/plugins/wp-editor/extensions/fancybox/images/fancy_title_over.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¸†ý]KzÇ}AûRØü`','ù*ã9&	)	7žŸždwˆŸ±I1*zœ½\nñYZ','',0,'?'),('oì‹GªÜo«g¿]©¬','wp-content/plugins/wp-editor/extensions/fancybox/images/fancy_title_right.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','l¾“Uçù¢U\\Ëjs$Ä','ñ·ÂŸ„á«÷ÕßºT©€Áªg×\'¼—é~','',0,'?'),('‹Q¦Õ1èí“âÀaaÕ','wp-content/plugins/wp-editor/extensions/fancybox/images/fancybox-x.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','†–Ø¦”!@ïà)Íó“','§þÅ¢\Z;xÐßîõì(³7IÝ¿!¼}eÙ@\"xSYˆ”','',0,'?'),('ÙŒ|\'45]ù`÷ay\rë','wp-content/plugins/wp-editor/extensions/fancybox/images/fancybox-y.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','6¥ˆY¾¹¦±“\"£tf¹÷Ž','Ðp0œ§n1p4m	cQ\"\n(Þyù¤-êAtû¨°žü¨','',0,'?'),('¯°Í\Zq`}f´[ì»íöñ','wp-content/plugins/wp-editor/extensions/fancybox/images/fancybox.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','å~I.à1@–|Ç¡æãâ','4úêçž|};þ†¢×~;Î¬VË™FÄY—¢…Ó²','',0,'?'),('þhŒ’–(AëÜNzvéÂ²','wp-content/plugins/wp-editor/extensions/fancybox/jquery.fancybox-1.3.4.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¦o:,¶5§Eéç8(8','îT±5ÐLâ‘?WF‹ß¸æ‚^¦‘ŽR‰äŸ< æ0 ','',0,'?'),('ØEý¦\\™A#–)Ž#æ5','wp-content/plugins/wp-editor/extensions/fancybox/js/jquery.fancybox-1.3.4.pack.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','‹ÃjÄg7u(Ùb–lã|','Þìè#[D‰éæ©\n\".Mq4Ý’»P,ò›3Ii0','',0,'?'),('‡¢‡!ÑàZQÇÑ“','wp-content/plugins/wp-editor/extensions/nivo-lightbox/css/nivo-lightbox.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','´ˆµg}J.éÛƒq','ã•Ä¯OCQ\"#xTÃÏÏÅ•Ý¬¢\"}E+-”vkF„','',0,'?'),('RˆT}i§ûN(ÿW;“¿÷','wp-content/plugins/wp-editor/extensions/nivo-lightbox/js/nivo-lightbox.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','­°ÁžJúÈ@‚À}Åƒ=äÀ','“©+ìð8ò\'ô1»¹‚c’RÆu\\ûIüy®ê6¢Ÿ‘','',0,'?'),('\\¯=\\c+½s|©‘^','wp-content/plugins/wp-editor/extensions/nivo-lightbox/themes/default/close.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÆïŸûv€ÉSaÃža¦','ßló‚KY²háJ_(,ÓcªEL^#Šªƒ¾ìÀÎ','',0,'?'),('ö\\t¶ÖA5ðÉÕsý*™è','wp-content/plugins/wp-editor/extensions/nivo-lightbox/themes/default/close@2x.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¦ïFVÚ@u%ÕÎ$=H','wwõh7äã™Ê;€uî21Q<1³Ð/Ž\0Bù2\\?D','',0,'?'),('øÈðÊ\rìàò©Àgç¯±í','wp-content/plugins/wp-editor/extensions/nivo-lightbox/themes/default/default.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ØêQ’ècc\'&¡','\rÆ¦2½¢4)8ú%ÃQ\\+_»÷%LùÇUô÷','',0,'?'),('ÌàqÜÆùjie¥¢ß`ß','wp-content/plugins/wp-editor/extensions/nivo-lightbox/themes/default/loading.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','úTá ³†ø?«·¼nbºý,','ÔXèLHúƒRü«Ý½+¼Ûeo¸€±°õ´­ét‹ö','',0,'?'),('ß•XYã´,ŠYR³O©î','wp-content/plugins/wp-editor/extensions/nivo-lightbox/themes/default/loading@2x.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ZÝ2´—b@»°á+·Ê«È!','¯=§¾\n!COÇN¶í-•tX}h\rOôü…¾4LÔ¼','',0,'?'),('÷Ø>\r^¦˜/ƒÑ¢€¥McI','wp-content/plugins/wp-editor/extensions/nivo-lightbox/themes/default/next.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','“ŠLf/ót:	ÍÍäÙ','\0A¡Évv®7ƒþ×khnPãÈ|z>â`ÃÁõgO-','',0,'?'),('³4ÂbPš9ã!Ö`ñì‘','wp-content/plugins/wp-editor/extensions/nivo-lightbox/themes/default/next@2x.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','A‡=Šà›\nŸ	ì‚³6_','=…ó ùhã…®œè:\0æt6Ž %=\"v‘^*H9¾','',0,'?'),('ÃÑ>ØHnÕOŽ¦¨œtÃÈ”','wp-content/plugins/wp-editor/extensions/nivo-lightbox/themes/default/prev.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','WÏý8ú1ƒJY]–‚¶=','ÞÒ’Šì*ÝûÖ®\Z³gÝàÐ½ÿ7ž£ë}:fö','',0,'?'),('Æl£W\\!‹Ä¸ºJœi7','wp-content/plugins/wp-editor/extensions/nivo-lightbox/themes/default/prev@2x.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','1Ùc½£,CÀIÓg7o','0u™ßÞ4%ÜÕ&QˆýV>íÐ³0¡Ø­ýcÞEeüuþ','',0,'?'),('üN½}JVr\\ºåˆgÞÉ','wp-content/plugins/wp-editor/images/css.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','W_\nž¸s³’=PŽ²)','©å˜,÷¿ÕU7Í—ïÉÄÿ}$D´•+wäÆ‹UØúk','',0,'?'),('žª5†®W[¯w\r—dJÿ¾','wp-content/plugins/wp-editor/images/folder.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','_kóž¨ôŽdñå’´¶ù¯à','ûPÛ}H´Âcà‰xÉÖë\\{…JÌY\ng¹à¬ÔÌ§²','',0,'?'),('T%Çs/1Nºbe7€$@','wp-content/plugins/wp-editor/images/gif.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Cž*hã8 ¥7§hü+®,','É»ˆüø¸P#´å÷záÜÞ :ˆ‡Hjž†)²','',0,'?'),('Ðjd×|ñù´Â)EÒ/ ','wp-content/plugins/wp-editor/images/htm.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','b¬‚…oèLq5HøÕß±','ä=nÚb+è¡&Ž™¾{j7xž\\š½y¤!+ñ','',0,'?'),('ø±Í}¾;\rwrÎ\\îqw','wp-content/plugins/wp-editor/images/html.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','‰y>ðÚætÄqÌÃt™«','6¦ºôu·‰Â\"–-\rF	iùÎØ¤ÙZ3-\r3É¬','',0,'?'),('Î»³Â€Ø±n•ÂºG8ðÄ','wp-content/plugins/wp-editor/images/jpeg.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','r`M¯\r¶yU,Ö=9','úB‘iáÄL±oÉåMÁz¶2Ók[9Ô‡TKLéK^{','',0,'?'),('WÆéøÞ‚Ú÷ß_nè','wp-content/plugins/wp-editor/images/jpg.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','±sKÊxFp˜ûEó©I','ƒ\"9ö ‡G@bqeÚºyËhÃ©Ìþ•Ïýo-–\rU#','',0,'?'),('Zè¢LLß>Øýª&°qÜ¶','wp-content/plugins/wp-editor/images/js.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','oõ©Ÿ¿{(È`TìsC','&æÂFÓG“ýR|H=þŠí·&sø¥åY¦E…p\rtzÀ','',0,'?'),('Éüâ‘I¾ì}GCs$´ß*g','wp-content/plugins/wp-editor/images/less.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','cQ\"Å…!Éóú:epNmc','õ(ß(²l+ð2¹5»ÿœv®ô€‰ÒÓ¥÷ì€Ílä','',0,'?'),('z±¾£˜Ì}fk‘úÃ’','wp-content/plugins/wp-editor/images/loader.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','gô\n0¿¡7CåÄèkúFz','UÏÃš“–y´žrË*¥Ï	ìžÑõ`ÌLnSW£','',0,'?'),('“GÄøþ­ŸÅ\0Í‰]‹§Ê','wp-content/plugins/wp-editor/images/php.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','íÁñ–ƒQª™Õ‚ÿã','Áðw;mK[„ú)›:¿4ãnS?Fì>µ…úzóÑÝà','',0,'?'),('ôÑi÷b%\\3Ú*g’Têx','wp-content/plugins/wp-editor/images/png.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','”Ü\r!åþôÓÐ^7n<\0','ˆ?Â‹ˆƒÒæ¯´¥Rb´ß«èæõÛÎ	[Êž9c','',0,'?'),('E\rù‰IÂ#Az«ë?åm','wp-content/plugins/wp-editor/images/po.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','lmB½b-#ž—‡h÷»1','E³e‚†H Pšn´^ìmm´^ú—/³e¢²Ôáê','',0,'?'),('znžÖmû½Ñ^u\"Ï™æ˜','wp-content/plugins/wp-editor/images/pot.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ðÂ5|ì¾J×ôÍð·4Þ','bÓÄ³Ž=b¦îiLd	M\\¬:”ÂdÐ\\‹°\\$Ôö%¹ò','',0,'?'),('R9Ó\r>\0\0ìÚŸ—[','wp-content/plugins/wp-editor/images/sql.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','„ï¹âEœ°vvFYÕ',' ¤¸Ò³ Ú’:î\'NV[*\nn»ö	ÿDÚKþáÒ`‚','',0,'?'),('UÙ^+¥AB\nÉ°MAu','wp-content/plugins/wp-editor/images/txt.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','PÆ@¿tñC.V±ñŸÊvg¡','XZT—»Qt‘¥Ì™áÞgdzJ^ŸäÎyöQ4¦GP7','',0,'?'),('b„6³Ê1Œä\'µ*ï0V','wp-content/plugins/wp-editor/images/wpeditor_logo_16.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Àöç‘#ApŽjù3¦v','UCêó\'Ð#äÑ(ï\nEµ•ÿ¾ô›,nÊãBsÐB¢Y','',0,'?'),('œ&x…åý6Kvs(dá¬\r','wp-content/plugins/wp-editor/images/wpeditor_logo_32.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÕÈgo®,qF\nUò$\\','a\"ÔéŽw”tJeµÐr7TtŽ‡\'Tu¬00…,pí','',0,'?'),('DÃ³ŠðØ-þ}˜\\ô¸Ó','wp-content/plugins/wp-editor/images/xml.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÏKá\\èÑs’¹{ýZ´Â','áÞ*Þp×—=cû˜v¼WÑ?²ÌÕæ\rLPuOé','',0,'?'),('7RE²¤`4¯	‹›‚Ž','wp-content/plugins/wp-editor/images/xml.psd',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','A7ò’õü×›s±‘.','uKäD“ì¤ÚÊUHvÌ6ÿ†ÂÚ§é`cáA¼-','',0,'?'),('èoR,gf†15:ÜËR*Ê','wp-content/plugins/wp-editor/js/posts-jquery.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',':àô‰É§’0Å]åM¿[î','âm¹Ç­+×Ç«ïÅÒÃØz¶ÍúŽ8ÃìËv´aï†','',0,'?'),('1ZÉ#ÌtCG$‚˜»l','wp-content/plugins/wp-editor/js/quicktags.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','‹ô©Ö£ÈGìplˆçzäî','Žñèi›£ý²Ó9î¤Þ”I	ÅDiø‰¼Ð§`_Â','',0,'?'),('ýÔüò.ÌÙr¨äîµd[','wp-content/plugins/wp-editor/js/wpeditor.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¢¥‹‹Ö;ô/n ×\rú','\0Ì3pµÓÓVûóÄ”ï‰¸à@Rx™#´\Zkt=i^®','',0,'?'),('BaFh0Ó˜¡“hG^mî','wp-content/plugins/wp-editor/readme.txt',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Œ«¾©^kÁc.r½]R','<é”Âßk÷_j*Þ„µd¿0\n_V†ÁÉÏ…-Wh!Ã','',0,'?'),('ÿúe3L¤P1CIñ/ë\n','wp-content/plugins/wp-editor/screenshot-1.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','nÉea!‡Fµ°\nR%!ç…','ñŠsµNJ>Lu7–¬Ëp­Öc%ž‚=Ëï®±†','',0,'?'),('h¬¾sŠf>Ã)Å\"Ïß #','wp-content/plugins/wp-editor/screenshot-2.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ì¯;¡ó5|9›xd\'î','^6IË‹#6xêëŠlÞ¹º–â™vøê–(@½A','',0,'?'),('c¿Q$§z{µÄ¾Í¿','wp-content/plugins/wp-editor/screenshot-3.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','óë	‚¶Û%†zÉ³]àVÙ™','O‡\n¡P½¾ºØÏÆÉ¥>\'å¡KM„‚ô˜9\\P•»','',0,'?'),('›~ÒÔÔ)b²D?ðÍì©','wp-content/plugins/wp-editor/screenshot-4.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','æáa;¹†+0æs	\rZ‹4','‹Âº¸ïNí¡mŽ¤´ìÐ¯ñâ|€ø«Z€§ùž!jÓ','',0,'?'),('~ñø‚S2YW »\n‰O•ø','wp-content/plugins/wp-editor/screenshot-5.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','`^ãÝèDZ3wÙ×ëË}É','Ó»|M0Æqd@”‰Ô•\"Ž‘€]¨lßÃtžü+ÅÔ','',0,'?'),('˜9ìuÜˆ¹z]â#“¨MC','wp-content/plugins/wp-editor/sql/database.sql',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','LŽÓàß<q&ÚÊ´†Í,îÄ','­ýš©LÙ~à™˜ÔžvÌÑŠTBesæ*‰¥\\´ÝûÅ','',0,'?'),('Ó‹ñÜ£ÉTD2Žm&Ù¬U','wp-content/plugins/wp-editor/sql/uninstall.sql',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\"ûœ¿Ü{F\Z¢‰	t','M	{éÅ õiÆN¯%T½•íe·Ö]û3¨Û¹9§êÏ','',0,'?'),(',»ô›²<ÒV®ùAÛB!','wp-content/plugins/wp-editor/uninstall.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','7S§íLýõŒ^î,ßO˜î','Ø­Zöµ\\™´dÄi/œÎo7²…rkFä£ Çéï†b','',0,'?'),('áq÷ÆÖ+q3ë7f\npj','wp-content/plugins/wp-editor/views/OLDsettings.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','J‡ü~˜œÕvì—ÊxjùÄ ','bsvÑ•Õ™RL¢0žÊæ½ô„Žo>#²)æOû¼Ë','',0,'?'),('.îHžÉ8–ÒÃ˜\'=Øõ','wp-content/plugins/wp-editor/views/plugin-editor.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Àåß{œ 8¦Ž\'—À','cÞú­’÷Eù‚‹LªÛó\'¿I¢,6ßÚn>ÒgÝ5¢<6','',0,'?'),('?ÜT—¶¦Ihü­µÓ`','wp-content/plugins/wp-editor/views/settings.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','_¿†-1Ü\\þ;?D„\n<',';\0Ž9Æ¢½í–»§×pßœ\0!ÛvÒ`8ª+Ì—Ü','',0,'?'),('ÙGâÆÏÀß’žâ;¶e','wp-content/plugins/wp-editor/views/theme-editor.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ˆÒö€4g÷ÔÇM…{e','\0K±ˆ~H&Æ)òˆ$ýZ(Ù­ÉýN‰ë]…N™1!','',0,'?'),('Æ¹fœ…Äg4f1.šüUH','wp-content/plugins/wp-editor/wpeditor.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','åZø2öõñ`”s&Åô','Âéþñõ÷m¨EIÿÂf9¶ŒÛšàŸé‡¶¤ñ~','',0,'?'),('íÛ_:\\¶-Âº>“/ ýr','wp-content/plugins/wp-editor/wpeditor.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','bÀ62óÀÒñlÈ\ZSO{','k“	ñvÖMþägÛUrc^:L9Hxq0\"]\"=\n±þø','',0,'?'),('E®4š±o#Ä‚Dk¢','wp-content/plugins/wp-media-folder/assets/fonts/Material-Design-Iconic-Font.svg',0,'èfãkÏ7º\r–|~Â†!n','èfãkÏ7º\r–|~Â†!n','`Wdš§b‰kòåãÌiŒØmþó³“iYDÌÀî','',0,'?'),('¹Ù`R	K-—F¥hØ5','wp-content/plugins/wp-media-folder/assets/fonts/flexslider-icon.svg',0,'kn•ïÿ àNAðx¢¿ˆþø','kn•ïÿ àNAðx¢¿ˆþø','’«ì[ìcÕ	s[Ü‚,ŒÐò†\Z¡Yõý\nœÝabñè','',0,'?'),('ß\'÷¤7.YYö¥»3Óhð','wp-content/plugins/wp-media-folder/assets/fonts/icomoon.svg',0,'PG›2ÓÉ@çÕ¨','PG›2ÓÉ@çÕ¨','S¬8O<´¡p›Òá.h÷»mWâJVî8Ìý¼Oƒ¡','',0,'?'),('\0ÞÞv2óê±5êb‚&','wp-content/plugins/wp-media-folder/assets/js/assign_image_folder_tree.js',0,'ë”œËÓø™»§¯Ì\ZÙ>','ë”œËÓø™»§¯Ì\ZÙ>','F—±{7oQN<‚€¯`˜\'~\n´\Z!êø¨ƒA¦•','',0,'?'),('Ã\0œ7µ«”øwÑˆÑëq','wp-content/plugins/wp-media-folder/assets/js/display-gallery/admin_gallery.js',0,'Îÿ(õ¾ŽyÚ.¶¦]î³\n','Îÿ(õ¾ŽyÚ.¶¦]î³\n','a;m`%n<*‹Àõ9B¹ïò\"•šúYùú!›a ','',0,'?'),('²®<æÃ™^Lf¨¨U0h¬U','wp-content/plugins/wp-media-folder/assets/js/display-gallery/flexslider/jquery.flexslider.js',0,'ñÝÎÊzZ(m•ÚŽ[Rš','ñÝÎÊzZ(m•ÚŽ[Rš','?ï®\n(—8\0	‹=¦Ð\0y§góGdŸÕ\\`Suy:','',0,'?'),('ö œwôÈF¯ÅŽÔ','wp-content/plugins/wp-media-folder/assets/js/display-gallery/imagesloaded.pkgd.min.js',0,'õˆÑ¯µJ5»¼NñßëºèÅ','õˆÑ¯µJ5»¼NñßëºèÅ','ÿN„÷\r¾\ZNÂ2äãmx}Ä\'µÿºYd<oÆ$·','',0,'?'),('@Ï¾?ðx9âPuê0‰','wp-content/plugins/wp-media-folder/assets/js/display-gallery/jquery.magnific-popup.min.js',0,'¦G1fN-Ü„FZÁO','¦G1fN-Ü„FZÁO','õ:¸þ”yqã AQÀ¸m–o\'p6\0žÛ*îí²\0Î(','',0,'?'),('HÈöÀÆÌÈõ‚\Zã0ÑSî','wp-content/plugins/wp-media-folder/assets/js/display-gallery/site_gallery.js',0,'rr²¤	UÃÕqyä`p6‡','rr²¤	UÃÕqyä`p6‡','á‹7ëÜg\n¥tòöíåžfEŽIuz0aÓ´´úô½±ÎØ','',0,'?'),('1E#€A3GþTœþF€À','wp-content/plugins/wp-media-folder/assets/js/duplicate-image.js',0,'}HßÈNðS‚±O®ZQýI0','}HßÈNðS‚±O®ZQýI0','ñ±€|³”.³«íönœ²Æ/k®­uaQþçÆ|ZR®','',0,'?'),('0Ç{R€=ö¸Wp_AÒÒ','wp-content/plugins/wp-media-folder/assets/js/folder_tree.js',0,'Ýq‘7gož;¬7B×','Ýq‘7gož;¬7B×','£[0£:“ø…ÈmÖ0>3¸™Àmï¥W¿ß5›jN','',0,'?'),('å€åGWÙ0#/]áQêëê','wp-content/plugins/wp-media-folder/assets/js/gif/jquery.spin.js',0,'±‹fâZ+r—bóJ','±‹fâZ+r—bóJ','G*ê|Žä«…v~§ºØ†CÙÎ)øÂ%µ|hŠÕ½W$','',0,'?'),('-ÈÏõ ggkL808Íç\r','wp-content/plugins/wp-media-folder/assets/js/gif/play_gif.js',0,'#ú€T2V…C ê®îÑXRþ','#ú€T2V…C ê®îÑXRþ','ø`ì+¨¦\r$Æ~Û–ðš«ø÷,‹§E>Í¬°~A†­µ','',0,'?'),('‚Gè’Ö\ZUí\\_k-D','wp-content/plugins/wp-media-folder/assets/js/gif/spin.js',0,'j*Î:Ta)‡eÑÕþó','j*Î:Ta)‡eÑÕþó','NCg¶áÖV1iEÓ‡Åp]EÂó–@ÁäÿZ','',0,'?'),('\"èÝ‚ÕÑ 9Q	bœ','wp-content/plugins/wp-media-folder/assets/js/import_category.js',0,'ˆÈ±Z¼?ØMj¹Òv••','ˆÈ±Z¼?ØMj¹Òv••','|LuHæ’»l7Šö¢Ši?fH˜6Bµ(RÐSz¶ï','',0,'?'),('Ü3ð»3-ƒÝ{/>	(;','wp-content/plugins/wp-media-folder/assets/js/import_custom_order.js',0,'ÞÍ’U0ÛÜ×ÂÁ€k‹^êO','ÞÍ’U0ÛÜ×ÂÁ€k‹^êO','²<.è	jö4ˆÇ™ûºÑ¾”ú@îú€»I¿‚','',0,'?'),(':\\Ì¼…ÂéÍ	±:,§Â','wp-content/plugins/wp-media-folder/assets/js/import_size_filetype.js',0,'ÑI0oì×I|šÎ”ïnu\0','ÑI0oì×I|šÎ”ïnu\0','˜ªFŒO\'¯Ÿ_“ñ.2íá,…½¬>ãØH1€i','',0,'?'),('õÞ&Çúó{íº”=sÆd.','wp-content/plugins/wp-media-folder/assets/js/jquery.form.js',0,'bLo¹E†Fµñ ÚG}Z','bLo¹E†Fµñ ÚG}Z','âi!åyäðÈ,£ä_Ê¨´‘lZ]7\Zq\n:Ç¥&','',0,'?'),('C‹´×›yúÌ°içk¢oF','wp-content/plugins/wp-media-folder/assets/js/jquery.qtip.min.js',0,'V4&ù¸@åÑµnh','V4&ù¸@åÑµnh','ƒFdI\\mÀþþðKM£Å‹‹ujóÁ‚ŠÚâ\\¶@Õ[û','',0,'?'),('¸«ÛþñæÉÕ²ÿØ23','wp-content/plugins/wp-media-folder/assets/js/jquery.textselect.js',0,'nw~âdç°Š &u0JÓ','nw~âdç°Š &u0JÓ','#†Ð‡’Œ_ÁÆ©7oéë2Õi+¹‘LéýÉçµ#Ã,','',0,'?'),('eA%cláÁˆi¡Ï]\0¤Ç','wp-content/plugins/wp-media-folder/assets/js/media-filters.js',0,'hÉzÙ¸h•_±Ãyã¢Š','hÉzÙ¸h•_±Ãyã¢Š','Ä•ö0^aâxþaWêêBŽkåÔ *b%>vaÜ','',0,'?'),('>4Ž(ðqÞœØ# ®§–','wp-content/plugins/wp-media-folder/assets/js/modal-dialog/material.min.js',0,'Ï–3lW½3ãîêŽñ›•Dã','Ï–3lW½3ãîêŽñ›•Dã','ÛO˜nê?,ÊÓ~ãû\nEîÃˆÛÅómª½','',0,'?'),('Ýi\'c«·)áG6pkÌéY±','wp-content/plugins/wp-media-folder/assets/js/modal-dialog/mdl-jquery-modal-dialog.js',0,'<8óG¶êl\'t¸Œ','<8óG¶êl\'t¸Œ','P7W¨þ3ÿíˆ*òÈø®Ó’Ÿ\\lêilÆÙ3›—Å40','',0,'?'),('¥Ô§›æ$<8„>\nüoÔe','wp-content/plugins/wp-media-folder/assets/js/open_link_dialog.js',0,'½®–AÏGTõdöÏc¾õ','½®–AÏGTõdöÏc¾õ','Mq½ÙÈt¥™%AÅ™Ü|®š…\nhmqçfòþ','',0,'?'),('qžßrfSÆ~%`Ç','wp-content/plugins/wp-media-folder/assets/js/pdf-embed/all-pdfemb-basic.min.js',0,'5Iú|ºÙ¨p[h—¢ÿÐ‘á','5Iú|ºÙ¨p[h—¢ÿÐ‘á','d 6Ú2h>6¬¥4›¾Œò´ a™§iÊ–Bsï>','',0,'?'),('JÆdòì*4õB¼Œ’î†','wp-content/plugins/wp-media-folder/assets/js/pdf-embed/compatibility.js',0,'ŸŒº÷Ãk-JÉ¿In','ŸŒº÷Ãk-JÉ¿In','åœºµÏ›(°¯”^+\"*:ìaû:¸8‘¹˜Yg@à¤ÐÌé','',0,'?'),('ï¨¿ðuÀB\'ÜjÖKm•Ì','wp-content/plugins/wp-media-folder/assets/js/pdf-embed/pdf.js',0,'¥, W·µy»Ôúí£','¥, W·µy»Ôúí£','ù{ÏfÇåž*\n}·ÙˆÚuš\rmGê	sé\'5Ñw','',0,'?'),('þrD}ý§bHd;¡H¼`','wp-content/plugins/wp-media-folder/assets/js/pdf-embed/pdf.worker.min.js',0,'Y%G³e\r\'Ÿ|*õxa\n','Y%G³e\r\'Ÿ|*õxa\n','³ºÔöNlElfõL:„`Y6Ë‡\0Ô-\'Ž_gCª¤üµ','',0,'?'),('yW!-y¿ó[V‘ìŠÿyI','wp-content/plugins/wp-media-folder/assets/js/regenerate_thumbnails.js',0,'\\Ó;\\¸¿3ù¨“³Ìcà','\\Ó;\\¸¿3ù¨“³Ìcà','=\'EcÖ *Â‹¡î•ûkÄ’ŸjIÜÌ“š}‡3í','',0,'?'),('þ’ \Z¤¿’cÜ)ªiG','wp-content/plugins/wp-media-folder/assets/js/replace-image.js',0,'×†Nhû±­ãgl‡®','×†Nhû±­ãgl‡®','çÃsÃ¶®ªZ“þÀnÎ¼,~¾œ²\Z‹PNÓÍ	\0','',0,'?'),('Ü\" nçmûµWÚ¾’ÿb*ú','wp-content/plugins/wp-media-folder/assets/js/script-option.js',0,'Þ±›æ)†¿æKàž” `N','Þ±›æ)†¿æKàž” `N','É¬x¤ÞÔq+(EÒm·DôÁ[g?ÊL?ÂK\r\r6·','',0,'?'),('œÞ÷ÌÉ\"žYm^”8îñ','wp-content/plugins/wp-media-folder/assets/js/script.js',0,'ÃvM_õQ•Ÿ‰tÑ$Õ¡','ÃvM_õQ•Ÿ‰tÑ$Õ¡','ùøÏÐ½Ly=fáÿ¦ú]UàyÀòŠë\"È§á»#','',0,'?'),('àos»ÁLg¸n­b7','wp-content/plugins/wp-media-folder/assets/js/single-file.js',0,'²®ºMåZççK5R2}','²®ºMåZççK5R2}','JJRÝÌœ_d‘c,FlS¬ÌÐôƒ+vØqúpŸÞÓÇ','',0,'?'),('y!žÏFÚM|}õ»Y\0¡','wp-content/plugins/wp-media-folder/assets/js/single_image_lightbox/image_lightbox.js',0,'u5¯ÚzÉzÎ°YBà`yo','u5¯ÚzÉzÎ°YBà`yo','Œåw¹\nI²t”oý08r6\rZìR;¸h†%4ÒæÒŠ','',0,'?'),('«5…BMý¡<ää“Bâ0{','wp-content/plugins/wp-media-folder/assets/js/single_image_lightbox/single_image_lightbox.js',0,'% HP¼¨oï¶c£\\\"','% HP¼¨oï¶c£\\\"','taô[ý0òWL],¦*é‚²Xå´­,bên	ÆÐ','',0,'?'),('À^îGêqgÌ¬×>Ál','wp-content/plugins/wp-media-folder/assets/js/snackbar.js',0,'¤œ…;ëÒEÓ@ÐÍ<—','¤œ…;ëÒEÓ@ÐÍ<—','~¬.Ä%²ì¾¶hc}ž°§SN$FÔVh.®Èi','',0,'?'),('3ðfINQ%ìNùñg)?c','wp-content/plugins/wp-media-folder/assets/js/sync_media/folder_tree_categories.js',0,'8ñ§86]§loúÇÚa†¬!','8ñ§86]§loúÇÚa†¬!','cÄt—	c\Zá€ÿ	ð‡\njí=:£4Uò0—~´a~»h	','',0,'?'),('2ŒÎåa;$/\0÷m-Y¢I','wp-content/plugins/wp-media-folder/assets/js/sync_media/folder_tree_sync.js',0,'$°á VÕ˜©î¾``&','$°á VÕ˜©î¾``&','¦U¨öß…lS‘:àÒµ“ÛUo\\ÈªŠ‚Tù\r8…','',0,'?'),('G\0Ü8–}a7ÿæÌ!Ù[á','wp-content/plugins/wp-media-folder/assets/js/tree_users_media.js',0,'Vó¾Øx”•—þØyÌ~èy','Vó¾Øx”•—þØyÌ~èy','Ç»ø-«ÚÅ‘5I5Bbl[¼4”é³ÎV`ML‘³¬‘','',0,'?'),('[‚%SzrX>?lº~\"J','wp-content/plugins/wp-media-folder/assets/js/wpmf-display-media.js',0,'$šEAa,T¨R7*‰W®','$šEAa,T¨R7*‰W®','Þ“RÄÁÛÓmh0P«¥fç˜£¨Ö×I6‹\"Vyì','',0,'?'),('taìÑæù—‘F&‘-™','wp-content/plugins/wp-media-folder/class/ForceUTF8/Encoding.php',0,'\0‹’r&\'À@œŸÆ½','\0‹’r&\'À@œŸÆ½','‰9ñöé-.´úk‘Ë¥9‘¸V+™r*bÍ¶MìÒ÷Þ','',0,'?'),('7ãZÆFvØIZCÀ(7','wp-content/plugins/wp-media-folder/class/class-background-folder.php',0,'jx£.¥ønðé“]à \'¿','jx£.¥ønðé“]à \'¿','†˜4jsêùIÚBË®ï.Uè±Åân-˜ði=ÀŠá‡8´','',0,'?'),('ÇÓ-¬nØ‚ëëáîŸ{D','wp-content/plugins/wp-media-folder/class/class-display-gallery.php',0,'õ¥YfÇÕŠQžXÆ[—æÎ','õ¥YfÇÕŠQžXÆ[—æÎ','Þx‰búmN†ëÍœa!É®µ¶üÒ¤1)Ähb4q£','',0,'?'),('ûþ…Ê§&ÍMõFQ‰õ¥','wp-content/plugins/wp-media-folder/class/class-duplicate-file.php',0,'^ïpâCÿ„MÞäÚß\r','^ïpâCÿ„MÞäÚß\r','²›ØÅÚ•¦•žlá¯í‹ýaÆ\0Æˆ§©U÷:·é#‹t','',0,'?'),('£ûoäÚÈU€`\"–²d³Í²','wp-content/plugins/wp-media-folder/class/class-filter-size.php',0,'\'Ì× ªR!øe‚c\0y','\'Ì× ªR!øe‚c\0y','õt®B›m@“í&Ñ>eª€ôjÍ=…ÄŠReÚ58','',0,'?'),('™H÷)qY¸‘Ž€`˜î„','wp-content/plugins/wp-media-folder/class/class-helper.php',0,'hæT.Ú4¾!z‚ à˜','hæT.Ú4¾!z‚ à˜','L#zl–íÀCˆ]Ll£ žPo”¡aÁ;‰%Ýd;','',0,'?'),('ÚëÕx)€rä¸þ1ÉÜ»½','wp-content/plugins/wp-media-folder/class/class-image-watermark.php',0,'=YqÃ¬%ÝŸ#1œåõD','=YqÃ¬%ÝŸ#1œåõD','žùK˜j‘Á6±jÈªb›åÔ©ŠÙÛ!åŠ›Ô3µ„¡','',0,'?'),(':çvéLtÙo§ÃjÓ¢','wp-content/plugins/wp-media-folder/class/class-load-gif.php',0,',\ræ/\nH—(cÃ§Úùx',',\ræ/\nH—(cÃ§Úùx','7’]	¯Ç	u9™=Ö4$qžŒn	Ð×%K$œw`4þ','',0,'?'),('ô©¿wœŸ^–5“Ù®±tc','wp-content/plugins/wp-media-folder/class/class-media-folder.php',0,'Kõ`üî<)SŽe_Í]','Kõ`üî<)SŽe_Í]','ï’i T–||yéð*Y©D=ÇÐ6€“gt&Èª‰×›','',0,'?'),('¹M<µò,ãaGL2ï&ÙÖ','wp-content/plugins/wp-media-folder/class/class-media-rename.php',0,'~…Î®sP¤ô›xåØ(Q','~…Î®sP¤ô›xåØ(Q','»1¾XWÒ2RîdH\"äª4Û(»ˆ†ÚÝ>Ÿ¥íi','',0,'?'),('7ü-¯–-_í¢\rÖKH','wp-content/plugins/wp-media-folder/class/class-orderby-media.php',0,'p è4¬1v¯=ùC\0/','p è4¬1v¯=ùC\0/','1\"‰A\nýj\';1¿|³rëƒ\\Šû{å}è  ,!','',0,'?'),('¹ü+5ÐÇçÃtîJr(kN','wp-content/plugins/wp-media-folder/class/class-pdf-embed.php',0,'µ0ZÓ/•cGZ;ðŠ==','µ0ZÓ/•cGZ;ðŠ==','nhµè¶%R·$ÿó¿+.”VØŽÙ/6#®{?È³','',0,'?'),('¨˜ýKƒÌW‡8D}','wp-content/plugins/wp-media-folder/class/class-replace-file.php',0,'	mD±›tÂß\ZJ£ú¡','	mD±›tÂß\ZJ£ú¡','\0êµN&é©®é{¨%ybT	ˆŠÖ¨Öä·ïÇ’ËÈ÷','',0,'?'),('â¬SŽ’\r\rœövœÑÿá“[','wp-content/plugins/wp-media-folder/class/class-single-file.php',0,'LpÁâ¿!ƒb\rhK*+ÇO·','LpÁâ¿!ƒb\rhK*+ÇO·','œÅø2\'šX‚åøç°I$ÖuÞ2²Ha’ðO=','',0,'?'),('—\rø0Ç¡O=˜yî±DtX','wp-content/plugins/wp-media-folder/class/class-single-lightbox.php',0,'Þ¿Ú\\ëò‹ô…^Fø\nÆ›™','Þ¿Ú\\ëò‹ô…^Fø\nÆ›™','Òæa©P*Þ3¹8ÁX°Ø:ÜÕwï•°cæ*XJ','',0,'?'),('19Ç5BUÔžÑd¿8×V:Ä','wp-content/plugins/wp-media-folder/class/class-wp-folder-option.php',0,'j•µ”ŠºRU–=drýw','j•µ”ŠºRU–=drýw','fÙ½Í£ŽQÆrï°ÇÊ~–a<>¯uCÖT$I`Ô','',0,'?'),('1²=Lí4z;RÖRã`˜2','wp-content/plugins/wp-media-folder/class/pages/files_folders.php',0,'¥N¡ELMY?\r[ž.Ý±‡','¥N¡ELMY?\r[ž.Ý±‡','yó.ŒÔçÁQ™—¸Æ¡Ä(Úü’Kj)ê†Õ,›','',0,'?'),('Cì˜®/†_\\õz9eu','wp-content/plugins/wp-media-folder/class/pages/ftp_import.php',0,'	i:¯Ð(ÜB®°\n7Î”˜','	i:¯Ð(ÜB®°\n7Î”˜','[„W‰™r[PÂÂÓRÓÍ¡ô\0ã}ûðz‚à1#AL','',0,'?'),('Œ›˜=ô†ñ]ê¯yog','wp-content/plugins/wp-media-folder/class/pages/gallery.php',0,'ÛÔ ^L¤,¦Óù«S‘Íæ)','ÛÔ ^L¤,¦Óù«S‘Íæ)','ð|vD“\r…ÞyI·z“óænf²{=¸1)^¼¦\"','',0,'?'),('~÷À,*þ5HNÌ0«Í','wp-content/plugins/wp-media-folder/class/pages/general.php',0,'fÅØ,D”¥*C¿¢q&ß','fÅØ,D”¥*C¿¢q&ß','$Lš?9í‹ôJëçôŸÂá²ä<çeœ¶³Eñyh','',0,'?'),('”äÀ,øyE3ìxãCœ™X','wp-content/plugins/wp-media-folder/class/pages/image_compression.php',0,'âüÂy´d42ÖZ³i{+','âüÂy´d42ÖZ³i{+','gÁ#w<vß®°}úkQ0\nMm,†äP)F­Oµ','',0,'?'),('Ö0¿ëXÔä\Z¶Ogç¤—','wp-content/plugins/wp-media-folder/class/pages/jutranslation.php',0,'Qòé3}m$Š}‰\\«','Qòé3}m$Š}‰\\«','yK­OƒÊ.\0à%ø›œÝ?ÈåÐÎ\Z¾ï/‚©Ümÿ‚','',0,'?'),('®IWø¥šZÂX.J×OU—','wp-content/plugins/wp-media-folder/class/pages/media_access.php',0,'ùý§—¾u” Ž\0_ü','ùý§—¾u” Ž\0_ü','4¨Œ¼kÿ¾2ªþŠ…¡ämCï&¨yq+ÿ›_þ','',0,'?'),('ä(i@[ÚLC18	³ë','wp-content/plugins/wp-media-folder/class/pages/menus.php',0,'C¡†±ã’¤x7_dAÛ¹','C¡†±ã’¤x7_dAÛ¹','r\'Ó3è§ã×áë»-›\rßk†‚–ò_(\\—ã','',0,'?'),('C3ÜeåÄœtzEÈdÙë0q','wp-content/plugins/wp-media-folder/class/pages/regenerate_thumbnails.php',0,'Ñ®p‹5XÙ&–—á¤ì_','Ñ®p‹5XÙ&–—á¤ì_','˜Q:½UžbTó6•E-lÅE»öX÷Ø>Í@ò7Ë‰‹','',0,'?'),('r05\"é¹ýra½Óí','wp-content/plugins/wp-media-folder/class/pages/saved_info.php',0,'s|Ý\'¹ßnà\r3\0©äêF','s|Ý\'¹ßnà\r3\0©äêF','ßhˆ \'6Üe,ïnýt*”©»ÄhÌšÅ=SÆéï','',0,'?'),('‘=„Çç˜àûOþ{Â','wp-content/plugins/wp-media-folder/class/pages/submit_button.php',0,'í¸; ÝùbG>Á‘¡Dª	Ï','í¸; ÝùbG>Á‘¡Dª	Ï','Æ3ê0Ëý¬P8ÖUÔx¯Ô«8\r5Ãùãß+­4BÖ','',0,'?'),('ë\\·ê*\n@2”Š”¯Œ\'Þ','wp-content/plugins/wp-media-folder/class/pages/sync_media.php',0,'½ËÒZeNSì4h|¤o','½ËÒZeNSì4h|¤o','d3$±ZÅðN¿ªDj“ÇeBÆJƒ‚\rÍEEÔa','',0,'?'),('´¾¡à`\'*¯üW,´Å','wp-content/plugins/wp-media-folder/class/pages/wp-folder-options.php',0,'D\Z¹ƒdbáðæóÐ\Z¿>y','D\Z¹ƒdbáðæóÐ\Z¿>y','=WãàáÔ]‡MÔ¿%fþï“cþàu×‹N„4ûuH”','',0,'?'),('æÌDž,”š8¸=ƒ0ÃÑN','wp-content/plugins/wp-media-folder/jutranslation/assets/images/radio.svg',0,'jýá¡BÌ†Ä;º>»µqø$','jýá¡BÌ†Ä;º>»µqø$','íðÉ3\nsi«\'ªÌäÕç<Ì$³ã&(:/gvV','',0,'?'),('‡gÐ%¡8æ©`ˆP5næQ','wp-content/plugins/wp-media-folder/jutranslation/assets/js/jutranslation.js',0,'$ÌªåKú’XœO)À','$ÌªåKú’XœO)À','L\n1.a”NËºöíVSPÖTMí^4ß%Ÿh)Âvrd','',0,'?'),('Í-Óz¨;p-#µêÔƒ˜ß','wp-content/plugins/wp-media-folder/jutranslation/jutranslation.php',0,'pÝû¦\nOl5®Oz?€I','pÝû¦\nOl5®Oz?€I','NàUÇì;z\"è|0—tuÈ¾[0Ë®Eò¿q?|hà','',0,'?'),('MæÐJKŽ_tÚ­ú`','wp-content/plugins/wp-media-folder/juupdater/js/check_token.js',0,'úB]ò ð ”‘åX©²','úB]ò ð ”‘åX©²','\rW&Ž®––ƒäÒ‘ü®÷ÏI~¢?\0¢êZ','',0,'?'),('û†`)(jß\0Á’*ê¤÷','wp-content/plugins/wp-media-folder/juupdater/js/ju_update_core.js',0,'3Z$²Šœ³\'*†U','3Z$²Šœ³\'*†U','„\0TÞ`ügÒB§SGæ>°i“\'ËÁ‹¥åEðOY/Ó','',0,'?'),('w,ítEû9Pâ“·Òâ{¥t','wp-content/plugins/wp-media-folder/juupdater/juupdater.php',0,'ª‡.°„”®ºNóóÖþ®','ª‡.°„”®ºNóóÖþ®','ˆòŽìÄùªÑ~NkàM\\!—,®‘t˜ñK]Ä*a','',0,'?'),('ÜE‘)†±”‘]ZÞD÷','wp-content/plugins/wp-media-folder/themes-gallery/gallery-default.php',0,'¬¿É“:3÷$p\'Lœi¿','¬¿É“:3÷$p\'Lœi¿','|µqýP`e‰D˜—gýa\"m²ùÿÿ¹ŽUž6†(íÑN','',0,'?'),('Y•Zl“Ø9ý$~‡\\;','wp-content/plugins/wp-media-folder/themes-gallery/gallery-mansory.php',0,'0#ïõp7ãf\"y×¤TOÖ','0#ïõp7ãf\"y×¤TOÖ','¦Zü‹ò¨íÁv‚°ÿ½ørçK =e¤µWÜÎx´Dn','',0,'?'),('0z*ôuÐå€Â¡b','wp-content/plugins/wp-media-folder/themes-gallery/gallery-portfolio.php',0,'2ØøÂYÖ²ÔÈUË59î/','2ØøÂYÖ²ÔÈUË59î/','Sºã\nüÓÝÔ4zÖ§ S<Y6U¼×ÑIÂu-÷','',0,'?'),('c\Z¨äŠÍ\0xºƒŸüÀvR','wp-content/plugins/wp-media-folder/themes-gallery/gallery-slider.php',0,'¿W±ÿØ[‹t«îúó','¿W±ÿØ[‹t«îúó','Ó[ñ“,4´¸ñÂýtê‰›° ÍlCz¼(nTý4*','',0,'?'),('K\'tµaDe ™)€ÅÂ','wp-content/plugins/wp-media-folder/wp-media-folder.php',0,'M’#°ê3\Z2+­2½øLt','M’#°ê3\Z2+­2½øLt','Ö—å\\ù=(oŸO¥Øñ!ŽðLAª•âÑ[ÄÅ£;\0‚','',0,'?'),('¿¯ÆG×ø¢G&Š²?ä\'','wp-content/plugins/wp-mobile-detect/mobile-detect.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','þFé$úÒ@2‰²\"<MTÃ¥','ŽØµ.ÄRÆ´!‹YÉó–3‡-£Ë‡.‘ÉKêñ#f','',0,'?'),('|«úD/ÑHw>Ç¼hÃ\0','wp-content/plugins/wp-mobile-detect/readme.txt',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','_aYÄt·Ñ¦ð¼¢—¤ª','@~ª•­-(\0†>ˆzNyi¸®òËGa-”½@*<kZ','',0,'?'),('öîý;•¹ôu—>PÎûx¹','wp-content/plugins/wp-mobile-detect/wp-mobile-detect.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ò>ëOb®~Ê¸zÁeþË\Z','‹ÕÚæ<ÔæR?FRâ°ÝRÑón%T~H{c¤¯','',0,'?'),('‘±YÌ²¢€éÚþ;\r‹u','wp-content/plugins/wp-simple-booking-calendar-premium/controllers/calendar/calendar-delete.php',0,'ìÇòü¯Òd``Ë·»Á','ìÇòü¯Òd``Ë·»Á','Íú\r]ÆÛå£ü6€¬¸v˜ø	Ê =wÑö)O\nû\r','',0,'?'),('Ç¢f\0þéh·^õÜwS','wp-content/plugins/wp-simple-booking-calendar-premium/controllers/calendar/calendar-save.php',0,'Í>tÐ?ãçð]mðµ¿','Í>tÐ?ãçð]mðµ¿','4ÍÃžHøÌ-dÎÕ¬q¯‰6ïqúMª\ZÍpÀ²>','',0,'?'),('zÞ>+7ùTL×69l™¶','wp-content/plugins/wp-simple-booking-calendar-premium/controllers/calendar/legend-delete.php',0,'P¾öTƒH¯Ù¾DU(á*&','P¾öTƒH¯Ù¾DU(á*&','Ps´•„\rKÂpÂ¬T2vë<…ïÄ¨h‰Ã Ü‹‘a','',0,'?'),('š(ÇGª3ËGVˆ–ˆ/æ–°','wp-content/plugins/wp-simple-booking-calendar-premium/controllers/calendar/legend-save.php',0,'õü%‰gMIA|¤šGjj','õü%‰gMIA|¤šGjj','­kàìƒÇQé	Ö¼–\Z$dì3še¢­hÑ¢´)D“O','',0,'?'),('ŠUf:;)(Ô3® ú”­','wp-content/plugins/wp-simple-booking-calendar-premium/controllers/calendar/legend-set-default.php',0,'ÛJÕZv$uOf•\Z†‚(','ÛJÕZv$uOf•\Z†‚(','|:x(H«Šm¾ÐÌp-¹]—\ZP7]³jU“6hÎá','',0,'?'),('ÄSB3ÔiØ]Ùñ®O5|','wp-content/plugins/wp-simple-booking-calendar-premium/controllers/calendar/legend-set-order.php',0,'ƒ\\òà‘|\"	¯9z¥Dãc','ƒ\\òà‘|\"	¯9z¥Dãc','“þµßHmW‹49\'æ•i¨?ûë°S˜çã¦pemBõ','',0,'?'),('£¬DŒÇýG|ÔQ\0L”','wp-content/plugins/wp-simple-booking-calendar-premium/controllers/calendar/legend-set-visibility.php',0,'x`Î0Z«Y˜G\"ËüãÛ¥','x`Î0Z«Y˜G\"ËüãÛ¥','GJJ°.²%ÐÅ\nãZ%‹^ŒÌµ]i7Ãªº‡­´','',0,'?'),('î&©ªbÿéóô×™7Ôj0§','wp-content/plugins/wp-simple-booking-calendar-premium/controllers/default-legend/legend-delete.php',0,'³–äâ×A‹ÉÔjÐø','³–äâ×A‹ÉÔjÐø','(I1úí\r!;úáÊ¥¨	j&G1lJüÓR‡§»HTO','',0,'?'),('lGfo¥=÷¢iTí\r','wp-content/plugins/wp-simple-booking-calendar-premium/controllers/default-legend/legend-save.php',0,'RÁÁS‰ÃI11)Õä','RÁÁS‰ÃI11)Õä','±“CºÆXÓ,¡óa`ÜFµpîßžÀ}·-y{UO-Ø¢#','',0,'?'),('v	ÄýTÙSJ¯ß³+','wp-content/plugins/wp-simple-booking-calendar-premium/controllers/default-legend/legend-set-default.php',0,'¸y ö¾˜×£¸eýû$râ','¸y ö¾˜×£¸eýû$râ','QŠÓÉnI.’	*/¥ W¼Eü\'ÛåÛmþXÄßõ^Èäƒ','',0,'?'),('>^Ô¹°*©˜•6Î¨º®W','wp-content/plugins/wp-simple-booking-calendar-premium/controllers/default-legend/legend-set-order.php',0,'Kˆªâ.Ø$ÂXý\Z','Kˆªâ.Ø$ÂXý\Z','Ç‡G ÚÍN~	×°ÎÙ5›ã)ÞëX½õfDéÐë','',0,'?'),('_•|ù=†€{Þ»ñ4‹','wp-content/plugins/wp-simple-booking-calendar-premium/controllers/default-legend/legend-set-visibility.php',0,'iš|\Z)^H|GÐÎ@','iš|\Z)^H|GÐÎ@','½ûÿ*ü+£ï-Tg\r\0P%ÑâÊ.­<ÞPÊZ1²]£L','',0,'?'),('·zÃ¦ÎÌ#µòû7‹\n¡(','wp-content/plugins/wp-simple-booking-calendar-premium/controllers/settings/save-settings.php',0,'„S=ëåLjBŠÎB×&]+ö','„S=ëåLjBŠÎB×&]+ö','­Í|ž\nŒoúŽ-E9õ\"»5>2hñn\rj–w','',0,'?'),(':{ÖŽj\0M[¦4ìHU','wp-content/plugins/wp-simple-booking-calendar-premium/include/calendarAdmin.php',0,'EÓSo[V°·/T¶‘F','EÓSo[V°·/T¶‘F','.òöÚ›	xfâe{Ž¦Æ®X”4°\'³\\÷d~³æö','',0,'?'),('òsPG«Ú˜3g(P\Züe ','wp-content/plugins/wp-simple-booking-calendar-premium/include/calendarAjax.php',0,'çOÁg!6j¾™É¿','çOÁg!6j¾™É¿','WµlT‹Ù‡ïâNõNêCp¸ÏÄ*d\Z)¯@(sZ·¯','',0,'?'),('l6YF:E›˜^,r¹dÛ×','wp-content/plugins/wp-simple-booking-calendar-premium/include/calendarCore.php',0,'Û •‚Y+r¿C»“Wzùí¡','Û •‚Y+r¿C»“Wzùí¡','ë¬MìzK®½„À\rÞñ”!ˆ¿ÓÁ“úéåLhÎ','',0,'?'),('g—í’Z»fÃÌÔ	A«]æ','wp-content/plugins/wp-simple-booking-calendar-premium/include/calendarFunctions.php',0,'A¢$h`øE4yµ›•‹','A¢$h`øE4yµ›•‹','Sñ3¤¡´F—Ðu½pÞÄ(½\\íFèÔL¯!wÛE«r','',0,'?'),('8œBBD<Yì=Äµ\\˜{J','wp-content/plugins/wp-simple-booking-calendar-premium/include/calendarLanguages.php',0,'q\0¶Ò+Ãt1™QöÒQ½','q\0¶Ò+Ãt1™QöÒQ½','4ÕÇ™D¦•¡ò,[“ubÙˆîûE×³ngÞ3±ºj¹','',0,'?'),('Ö€l¾›˜\Zˆø¾·`','wp-content/plugins/wp-simple-booking-calendar-premium/include/createTables.php',0,'Å˜…>.•uÑ8(:?–','Å˜…>.•uÑ8(:?–','‰Ñpà@ùYëî«ì\Z˜zÜ1ÄÚ»/þùœßð','',0,'?'),('OOÏ©ßóƒ³u°€2Ý½','wp-content/plugins/wp-simple-booking-calendar-premium/include/pluginShortcode.php',0,'=Õ ôÔ¡6mZÝÌ®ìv5;','=Õ ôÔ¡6mZÝÌ®ìv5;',';KAžq-å®•Oç9RpÕš}m¹šhçÊëç^›','',0,'?'),('ÌÍµ­áH-ö©I8ü2•','wp-content/plugins/wp-simple-booking-calendar-premium/include/pluginShortcodeButton.php',0,'˜‚õl®Rt×x¤rï¹´','˜‚õl®Rt×x¤rï¹´','PQ¢éNpïâœqJTT|ª%”™“™ð64¸¦ÏVñ','',0,'?'),('Ð1\"ëÈ”v•W‚\"HäÇñ','wp-content/plugins/wp-simple-booking-calendar-premium/include/pluginStructure.php',0,'‡¦6Ùmúæ¾¨Â\r4ú†','‡¦6Ùmúæ¾¨Â\r4ú†','ÔÅAãFDŽ“õ¢h¦4x\'c1)ößæªf´+5žþ','',0,'?'),('rtÜäJnm‘z%r”×»õ','wp-content/plugins/wp-simple-booking-calendar-premium/include/pluginWidget.php',0,'k!÷ØÏž=fn\\3®²éª','k!÷ØÏž=fn\\3®²éª','ÇÍãŠáVÛˆ½pÄ3*OÊ\"áàx	Æùñ7ÄÓ','',0,'?'),('õS²än	òZ’¢$÷~V','wp-content/plugins/wp-simple-booking-calendar-premium/js/colorpicker.js',0,'‡½0øÀý-»çþ‰·û‚\'','‡½0øÀý-»çþ‰·û‚\'','|Mÿy7aF‰Ÿƒruu¤&PÇ–CÛsã³,8“Ð','',0,'?'),('þàåŠçíö¤\0y,‰ÉK','wp-content/plugins/wp-simple-booking-calendar-premium/js/custom-select.js',0,'LPöìLÍ6û5SùOÌ','LPöìLÍ6û5SùOÌ','Mz¹HJ…µü‰rêP(Î¢Ã¾\nä:\0Þ¶­','',0,'?'),('88SCÍ3‹ðïYfÁ:>Ñ','wp-content/plugins/wp-simple-booking-calendar-premium/js/jquery-1.10.2.min.js',0,'b€rç!-±èÍ¬²+!u,Ú','b€rç!-±èÍ¬²+!u,Ú','i H‘	´þìù“)¢ôÏ½³óÝBê«ì5ôònF','',0,'?'),('ûÂAšƒì½(Ûx°êüL×','wp-content/plugins/wp-simple-booking-calendar-premium/js/wpsbc-admin.js',0,'žòIÄÂH§ aX>©å','žòIÄÂH§ aX>©å','Ï¿ñ0’™¦‘×*®óøäÇžQ}ý²g9š#4Èv&n¹','',0,'?'),('Ýé`¨7IOèôã=Šâ7','wp-content/plugins/wp-simple-booking-calendar-premium/js/wpsbc.js',0,'°ˆÃð@?á¨ê³ì»ù','°ˆÃð@?á¨ê³ì»ù','Âo»£qý©†)€Ö‘xã¯8rïúG]‘ÙMž3žVòù','',0,'?'),('ˆø‹X¼0¢KŸJo±²ó','wp-content/plugins/wp-simple-booking-calendar-premium/views/calendar/calendars.php',0,'\r›\"ì¥å=úÛ ÓÌë','\r›\"ì¥å=úÛ ÓÌë','™=¾ÞÃf¤(‡—Œt€Ý+ºã f¥ƒ>¶îÃ','',0,'?'),('¥ju¾CœåÏ˜¯“€','wp-content/plugins/wp-simple-booking-calendar-premium/views/calendar/edit-calendar.php',0,'a³D‚/ÇÐ0ñ[dx“ã','a³D‚/ÇÐ0ñ[dx“ã','=\\¯KEvN)(œ¸þÄkvfTm®8k‹k¤Û','',0,'?'),('Ág[F÷Ó‘éOû­ÀQõ','wp-content/plugins/wp-simple-booking-calendar-premium/views/calendar/edit-legend-item.php',0,'»pnî¤­êgýŠ{Èëì','»pnî¤­êgýŠ{Èëì','eq|%¦EÜ>=¶›fC!ë–`@áî$èÌs§…æË','',0,'?'),('u­}äWÌåÞ+ø£°w±','wp-content/plugins/wp-simple-booking-calendar-premium/views/calendar/edit-legend.php',0,'Ÿ„‘Ú¨í¦¬ßZ­ßf','Ÿ„‘Ú¨í¦¬ßZ­ßf','WÎ}>&<H(¾±j2B8®mrÅS(ÀBõäç\'œ','',0,'?'),('—ßûX}&mÎš,\"»ì¯¨ñ','wp-content/plugins/wp-simple-booking-calendar-premium/views/default-legend/edit-legend-item.php',0,'çq5n Èªú)ë;È*t','çq5n Èªú)ë;È*t','R\0pkøfÂ@zO¶vWƒ{ÆMw“0rªïÞ*”³ò)','',0,'?'),('Z	¬tÈ%m°5Êô@våÖ','wp-content/plugins/wp-simple-booking-calendar-premium/views/default-legend/edit-legend.php',0,'†òâ/\"p˜\0DÞX¥6Ü','†òâ/\"p˜\0DÞX¥6Ü','™ïmÊ¨·ôU« `xÌW\Z-ˆÉÊd?ËÆ mÊÕU‰','',0,'?'),('Kš¤ìQŸFúžÒ~(ÍòÖù','wp-content/plugins/wp-simple-booking-calendar-premium/views/settings/settings.php',0,' –ˆ¶lÙ†ËÎà2ï»o¼',' –ˆ¶lÙ†ËÎà2ï»o¼','N1ã‡E(E+ú|›;Qó 5(d¼nA’®-”dà','',0,'?'),('r§¶twü‰ÈJÏålñ','wp-content/plugins/wp-simple-booking-calendar-premium/wp-simple-booking-calendar.php',0,'îõ8ÞY¨sIÑŒ/OHÛ?','îõ8ÞY¨sIÑŒ/OHÛ?','‹Å0x*H>¶–eEåJTIÝjì@.¥íŠJ“0 d','',0,'?'),('®°JZqàôÁùZš•#ß7','wp-content/themes/genesis/404.php',0,'n¬\nì´VÝÏê\'Îæÿýˆ','n¬\nì´VÝÏê\'Îæÿýˆ','O|ðä!K=OW“¸¹ù®ë>*žx5‚ÀŽý\ræw','',0,'?'),('é‹õ.![ŠÆïø¤p','wp-content/themes/genesis/comments.php',0,'\'½¯:· |ûâÚŒ±Í','\'½¯:· |ûâÚŒ±Í','À<Õ‚ì†}Ù§IeÙÐrÝ5šv…<%ú¼õÔÔÕ*¤','',0,'?'),('Ÿ’4£å«½Ó­„nkÕV¶','wp-content/themes/genesis/config/contributors.php',0,'Ä8ŸŠÄ§zwÝ¼|Däd','Ä8ŸŠÄ§zwÝ¼|Däd','@&.7]ýËÒ1­\Z0UÑ/@Xý½¼z\\0e±~','',0,'?'),('9ƒv0Ó!À›£{S#>i','wp-content/themes/genesis/footer.php',0,'›ééýÚÿ¤O	ÿÌ\'ŽœØ','›ééýÚÿ¤O	ÿÌ\'ŽœØ','é^£¹Á¶®²$‚6ë¸:#[§„Ü™ÊpæÆUiÓP','',0,'?'),('ô²°ô\ZŽ¥¢LÇ›¬D\'','wp-content/themes/genesis/functions.php',0,'êŒr©‡“æØÑíFü×Ò´','êŒr©‡“æØÑíFü×Ò´','J8¯LârVËgtl¸³¿m\Z$qÎ#Ï„i','',0,'?'),('‰àæ=Ò·Þ¿åðí%Î~','wp-content/themes/genesis/header.php',0,'ÿˆÑò¹=újÍƒUù”f\0','ÿˆÑò¹=újÍƒUù”f\0','RxTn¨¯øê&¹Tã§ð…H¢n‹æà\"æÝlA´','',0,'?'),('Í}ñæs>[;å5É~u«','wp-content/themes/genesis/index.php',0,'O“õ05Š&Xh;íÿ—WÛ','O“õ05Š&Xh;íÿ—WÛ','ƒ¨âhY±ºTKw\"+PqiÄÐŒ\nðÓ”ºL’	P','',0,'?'),('Òw^x_§ebôŸÀ,\n','wp-content/themes/genesis/lib/admin/admin-functions.php',0,'ò—{‹•‘lÓ¡3\r%','ò—{‹•‘lÓ¡3\r%','¿ÌúBÌ×¥9AâQ‰•i&ØÓÇX,@“‘]K·ÕÄ)','',0,'?'),('–¬ãuæˆRriC•*{r]à','wp-content/themes/genesis/lib/admin/cpt-archive-settings.php',0,'¶’ÇA¿ü	Ý	ë;2þ£P','¶’ÇA¿ü	Ý	ë;2þ£P','°m–Ê³x:|õÇká¸xü&U[L§	Ièq@Ì{ï','',0,'?'),('[3Å€ËV X»zÇ:NÍ','wp-content/themes/genesis/lib/admin/customizer.php',0,'íÚª@öUùet©Ò&s)','íÚª@öUùet©Ò&s)','ul.‡*ÖüËn²5©e¤ÝÃb\0àË—A1hMü€pÞý','',0,'?'),('äYÁ§hô¤Ú¥0pákš','wp-content/themes/genesis/lib/admin/import-export.php',0,'¢¹».óÌ˜Fª%×/%”','¢¹».óÌ˜Fª%×/%”','Ÿv)€þæ¼Æ]¯ÆªúWÕEëÊ\"\\`¡LÕß-X¤','',0,'?'),('4V[i%7ó\níÂ®@¾','wp-content/themes/genesis/lib/admin/inpost-metaboxes.php',0,'þÍØÏ°©Šç4Êwäüú/','þÍØÏ°©Šç4Êwäüú/','>ø=M8SÓ(Ò2÷½Aº4»ŠET~ù²ûìý}göá','',0,'?'),('À¨ÇŽçN™õªQ2L÷7','wp-content/themes/genesis/lib/admin/menu.php',0,'¥1º)Ö_WË‘€rª>l','¥1º)Ö_WË‘€rª>l','°T¤CÒ)âY¼UðÐ©2“å—{ÒKìH³7Ó','',0,'?'),('‚vÉpÿ³•Oª•îÃ=‘¯','wp-content/themes/genesis/lib/admin/seo-settings.php',0,'÷,<4eÂgŒd÷D©2¨ñ5','÷,<4eÂgŒd÷D©2¨ñ5','Á‹ñHÏ\'Ó»õúà£•+nØ{Á’#ÐyrÓg®+À','',0,'?'),('ÌnSÌ¹…ïò•ÿNÍÄãÿ','wp-content/themes/genesis/lib/admin/term-meta.php',0,'þ‡ÑÙ7aTxŸD‚Ñ¤','þ‡ÑÙ7aTxŸD‚Ñ¤','ÖÔžkt‰“ZOw^ÑtMóôN­wŸ/´B’\r”a\0Jæ','',0,'?'),('}ÄBˆ«%ÛsAù¡Sbì','wp-content/themes/genesis/lib/admin/theme-settings.php',0,'‚*BŸæÊG(¼šj\rBÈp','‚*BŸæÊG(¼šj\rBÈp','¼™ÊÏaß¸Â?ÕŠÕ)8Ÿ[d}ôÔ\\“Þ-Òv(T','',0,'?'),('S¬êš`ç||Þ€ýC‰Y5Ý','wp-content/themes/genesis/lib/admin/use-child-theme.php',0,'_üæ\"&UÙ*ñØ7jÈñ','_üæ\"&UÙ*ñØ7jÈñ','Ó­mb@¨<îuºè}³uÝ¬A—~ í6Ÿ´ð‡mªÀ','',0,'?'),('ÆóO<žtÞU\0cöŽŽì','wp-content/themes/genesis/lib/admin/user-meta.php',0,'…<¿?°A~€êm!´»T‡','…<¿?°A~€êm!´»T‡','K>µÁ+Ò/Z 0q`aÜaÅ)·¿šIø{¯+¢Ô¨','',0,'?'),('-à\n\Z…ÿG™ƒv‹[¼ø','wp-content/themes/genesis/lib/admin/whats-new.php',0,'AiL*&%^xÃÊ½vªúØ','AiL*&%^xÃÊ½vªúØ','£#°v“¦‹mË\ZÿHþ±OCwæåó…\ròLµ','',0,'?'),('ž{¢	víeéç¶\\·ßê','wp-content/themes/genesis/lib/classes/admin.php',0,'šÕ‰èŠ^eíŒØÒ/²á','šÕ‰èŠ^eíŒØÒ/²á','<ˆ ¨\"öV\nÝÞ¼L:õ}¸MOv±‹y¸Ë°3Ê','',0,'?'),('ÁÄÁMyêµÞ7åsÎ','wp-content/themes/genesis/lib/classes/breadcrumb.php',0,'LŒ~õ•›kÌµû^öçiªÚ','LŒ~õ•›kÌµû^öçiªÚ','†ú@¶+\Z¯såKÂ%µîü¬Ì¼2Z\"¶®NÀßÉ^=^ÛÙ','',0,'?'),('Ç¼ézÍð™OpDúøŠ1;–','wp-content/themes/genesis/lib/classes/class-genesis-admin-meta-boxes.php',0,'lÂQ¦\'…Ñi+<ããáä','lÂQ¦\'…Ñi+<ããáä','äˆ4ójì8.»ll½Ì½2‰8‘Õ~V\0vÕwXgè','',0,'?'),('áä\0šƒùËb ª\\ÓÉƒ','wp-content/themes/genesis/lib/classes/class-genesis-contributor.php',0,'êOD°G/*Â*ªYó‘','êOD°G/*Â*ªYó‘','\Z…¥zIvÒßNÿÜßJUJÖ^ºñ…rû-–t–¨v±','',0,'?'),('	¶wöy+SÐ²Ï{»iÊ','wp-content/themes/genesis/lib/classes/class-genesis-contributors.php',0,'çö±(rv\'—ïAÙ8Ð(','çö±(rv\'—ïAÙ8Ð(','~²ZzÙ@ù€&§ñ.þU¹<‹g§Ê];¤°@ko:Ow\Z','',0,'?'),('ú7û>¦¿²bËš¼5íÜ','wp-content/themes/genesis/lib/classes/class-genesis-script-loader.php',0,'¹ÈSSIr#“Ä¾ËBE©','¹ÈSSIr#“Ä¾ËBE©','»l_B¶¡@u¨ýƒŸ%ï¢ò–ÐÅ>4:¡Ÿ)\r<','',0,'?'),('¦Ü\rËGµì¼,¥Ùš”È','wp-content/themes/genesis/lib/classes/cli.php',0,'Tw†Üíùmä;n˜‘','Tw†Üíùmä;n˜‘','lñ—«ì›hþC(t/£…›•eSèóñàZ4b&S','',0,'?'),('»fÇQ!dÔÑ™ªI‰','wp-content/themes/genesis/lib/classes/sanitization.php',0,'W,¼$Î¢þRßâTÕGHO','W,¼$Î¢þRßâTÕGHO','í¼Õ.wbë¨¾+VÕp5ík÷ãÜr¸³ØäCÀÅ35','',0,'?'),('äð	Ól7U<‰pâÚê','wp-content/themes/genesis/lib/css/fonts/genesis-icon.svg',0,'Î…ßF÷½Uð¶êï¯U','Î…ßF÷½Uð¶êï¯U','ŽDŸ |®jkÉžnyL¶\n-:&m³_¿Û6ü…—','',0,'?'),('fDø.ç8ï´`XìUÄrÖ','wp-content/themes/genesis/lib/css/load-styles.php',0,'lÅôä-¡ îÂô~¾îrF¾','lÅôä-¡ îÂô~¾îrF¾','HpC-8C]hI¦Ä!8°}’žŠnÿ‹ÅÙ+ß!','',0,'?'),('z\ZÕg‹÷ªŸªn7å­Ž','wp-content/themes/genesis/lib/framework.php',0,'{³ähZnÈB¦…wæ4‡','{³ähZnÈB¦…wæ4‡',' =²Ãu\'‚ºß/,4¶õb½‡>KÕ\"\\µ6E)=0a','',0,'?'),('Œk¸ÒÞù¨ s½e¼Ëµ9','wp-content/themes/genesis/lib/functions/breadcrumb.php',0,'ümgxþVºD¼?ùòEŸ','ümgxþVºD¼?ùòEŸ','âbizš^]6ìsîh	c£ëSéƒFƒžÌF3Ãc²)Å','',0,'?'),('-Žv˜áž¾ÉxYc÷~É','wp-content/themes/genesis/lib/functions/compat.php',0,'ññKÔH4Çl}8`šÀ','ññKÔH4Çl}8`šÀ','w¾Zu—hm\Z–2Ñ`Ö(>ˆÎÕm#CgHdbÃÑÝöz','',0,'?'),('jœWÌœŽãn–€.F»','wp-content/themes/genesis/lib/functions/deprecated.php',0,'Â,§Êð«“Ýs‰‰í\0ÏI','Â,§Êð«“Ýs‰‰í\0ÏI','ð[ÌÑ$\Z1èïdK­h÷‘V..Kà[Ù<c¯…®`M','',0,'?'),('XtÌ˜\'®T³Ö@ZÆ','wp-content/themes/genesis/lib/functions/feed.php',0,'u\Z<LÞ%Ä|ÙŒôÏÄ','u\Z<LÞ%Ä|ÙŒôÏÄ','ÐÉ©ÑÀ[M€£møÏ±4p\"~ûi óW{gõ#)B','',0,'?'),('Û¨RìÒ;4Z£—iLï‡¥\r','wp-content/themes/genesis/lib/functions/formatting.php',0,'Uös_ÏˆnÜ0Žh?F?Ö','Uös_ÏˆnÜ0Žh?F?Ö','³…ˆûÈÇ_-¹éÓF2OV¿³{(ØôUHrçÞ','',0,'?'),('Üí)*PÑ•ÙòóÊ‰','wp-content/themes/genesis/lib/functions/general.php',0,'ù…˜q½$M„ë´äî¿ß','ù…˜q½$M„ë´äî¿ß','ÚyÂ—tyý“!}¸(«1œpPFnuFKiñ[Â+WÃ','',0,'?'),('0~2}°#O¼|xÁG*ô','wp-content/themes/genesis/lib/functions/head.php',0,'µ²m™|êJqÍ¨Š?˜Ac','µ²m™|êJqÍ¨Š?˜Ac','ÙÜhEbÙI\'¥T|ü¡KåÜ–ÖA‘^ŽäNf/\"²Ÿ','',0,'?'),('~vÃyXSð‹‰£„@-','wp-content/themes/genesis/lib/functions/image.php',0,'tÁé±ž€°^«6u','tÁé±ž€°^«6u',';Ø³`„ˆ¶œ<–/«ßZ.ÃÛýJz€AdÝ³ˆ0S´','',0,'?'),('tq€×‘Ä5lJÌ/s','wp-content/themes/genesis/lib/functions/layout.php',0,'^í•¦0„ªtg5\\ŒÑ|i','^í•¦0„ªtg5\\ŒÑ|i','¨\ZIˆàïò×\rÂ¡qáœ(Ô‰Fúé9:ŠbºœÓ\"°v','',0,'?'),('gÄÞž–Êb¸~(#â»','wp-content/themes/genesis/lib/functions/markup.php',0,'ŸßoùÁsÝGó±EZ‡Š','ŸßoùÁsÝGó±EZ‡Š','óòËög}·ILëvqÕ\\Úûaa×¼gÖ…;ÓÊ¿','',0,'?'),('_â\\ªó[ ­ãù¾·Ð™Œ','wp-content/themes/genesis/lib/functions/menu.php',0,'¢>ü\0™­­8ø:\\kiç§','¢>ü\0™­­8ø:\\kiç§','3|_’ì!§îl	¥õ™ëö,ÄÊÆxýÝðÛmT¤E†×','',0,'?'),('f½%Ù?«rRû¢ª(½þ','wp-content/themes/genesis/lib/functions/options.php',0,'Ÿ-ºaóDÐÃ êßÔg£ý','Ÿ-ºaóDÐÃ êßÔg£ý','zî‹—´õY•Ô5©åªâHO|²[#¨‘Ý„´l)Û','',0,'?'),('‰Ac(bêN~¡hß`?Û','wp-content/themes/genesis/lib/functions/seo.php',0,'¨¾„	cµ$GÆhV=kÛ','¨¾„	cµ$GÆhV=kÛ','Œ%¨\n·˜dAÜîÑxcRfûk¤ã%-á¢VÐÀa¨','',0,'?'),('ÌïOO9‚›DÀ¬×«ÒÄ','wp-content/themes/genesis/lib/functions/toolbar.php',0,'qŽ¡ŒÎ`Ÿ—Àãr{o','qŽ¡ŒÎ`Ÿ—Àãr{o','ñ(Ø#™ã vå¥ÍòÞ¿l¬\0¤‰/ì)/Ì@r´°ñ','',0,'?'),('8‚ˆ¿Î±Þ²¨÷þ—¨','wp-content/themes/genesis/lib/functions/upgrade.php',0,'x\rÕfmtM]i¢¢\Z_','x\rÕfmtM]i¢¢\Z_','ÍüØæ°ÁV¤Qã2Ì™¶&Úi•Ë¶Ë§_Æ\\óànv','',0,'?'),('3K•ÇÁÑ=£®[\r³Û','wp-content/themes/genesis/lib/functions/widgetize.php',0,'Ö8ô!2Ö©>]Ll”¿','Ö8ô!2Ö©>]Ll”¿','ßÉ3vÉ[–Äš;áøH\n‘§REé©9fxòô','',0,'?'),('ó	ú×‘±EÅ·*uºØ','wp-content/themes/genesis/lib/init.php',0,'3©#ÑKÞOÞ}šH¥â\\eÕ','3©#ÑKÞOÞ}šH¥â\\eÕ','hëõðÀâÿ)ž…µØUKc¨v¿NÉÿ8 ’³$v','',0,'?'),('â?¦g,½‘hh6öí¨','wp-content/themes/genesis/lib/js/admin.js',0,'Ñ_Øöë{ÍPVãäÎp','Ñ_Øöë{ÍPVãäÎp','›~vlîüoi)„Ô³u_æxûbtõ(‘ýóE·f','',0,'?'),('m1•¬ø\r«*¸ÑËvDy','wp-content/themes/genesis/lib/js/admin.min.js',0,'!çƒÒž[¡¼©{ x¬Ù^ñ','!çƒÒž[¡¼©{ x¬Ù^ñ','ZÀázR§°§=ç\0ÄBë´‡Ùœ8jeÂb+K4«\rÇ','',0,'?'),('c/TÕ*¯E”[fäNÝ¼Î¤','wp-content/themes/genesis/lib/js/drop-down-menu.js',0,'<ûQwtNÎóSº§g³ç','<ûQwtNÎóSº§g³ç','8Ú›&Ðù ü§êuƒ¼€o\\·Â]è@1X/Î“','',0,'?'),('à¶„\'1d®2	PîüÏ','wp-content/themes/genesis/lib/js/html5shiv.js',0,'ôÙÞ¨à®„UPb»¸tÖ<','ôÙÞ¨à®„UPb»¸tÖ<','‡R³y1N…hu¤Â¿ëžÏÖI}€Øžöòñ)i','',0,'?'),('eG~™W†R\'[U7‰5','wp-content/themes/genesis/lib/js/html5shiv.min.js',0,'@½D\r)³©7cþÄæO','@½D\r)³©7cþÄæO','‰(žûB5s‡TP”‡¸<pt%œFI4óL²RZ_¡ˆY','',0,'?'),('ò.û‹¦\ZûFû<ØX+Å','wp-content/themes/genesis/lib/js/load-scripts.php',0,'ÿ  —mQ¥Ì¡(?uV†d','ÿ  —mQ¥Ì¡(?uV†d','§„o¾0Ó   •¢ø`sš}iî¦ðÔˆ8»wtÿÿ£ƒS','',0,'?'),('…ó/é¡%Âá ¬\05Ì`','wp-content/themes/genesis/lib/js/menu/superfish.args.js',0,'Ê2	)\"ÙjŽ\\vGTSOØÀ','Ê2	)\"ÙjŽ\\vGTSOØÀ','w¸[’\n[ï¡êb~\"õiöj°“tmûó¼óšÓ«³I','',0,'?'),('„\n‹×w}Bõ`8U±D\"','wp-content/themes/genesis/lib/js/menu/superfish.args.min.js',0,'yWæðéžÀ\rlæ–â','yWæðéžÀ\rlæ–â','zC±ÃÛ…}Ž—ŒÈ¸.&úÄ×È›H	H«Úi=MÎ','',0,'?'),('8M\rÖ”»?æ¤4V¦wQ‡','wp-content/themes/genesis/lib/js/menu/superfish.compat.js',0,'.Pi»É‘.‘Š¦èÞæJZ','.Pi»É‘.‘Š¦èÞæJZ','diôb~ûn)T¹Ð3Ù~=€d™-lI¿¬Õjæ¹¨ï','',0,'?'),('¿Bc7<úÎ0Ö£ª','wp-content/themes/genesis/lib/js/menu/superfish.compat.min.js',0,'No\nš<ý. Ã»œýßÎ','No\nš<ý. Ã»œýßÎ','öï#)¢Â\\¬nÎ}9û¨O®Ô2Ú8·¾àrcz','',0,'?'),('µ´Î4ªˆ Æº˜“ÆÎ»','wp-content/themes/genesis/lib/js/menu/superfish.js',0,'œý½ˆKÐjtKibR','œý½ˆKÐjtKibR','Ô3på»¸LbÆK¯”ÝœyÈeÂÓÒó¢Ü·D_\"','',0,'?'),('\r\'¶O–¿Ž>uÀjGK¯j','wp-content/themes/genesis/lib/js/menu/superfish.min.js',0,'TðÒ÷Dwñ@hÈÇ¨','TðÒ÷Dwñ@hÈÇ¨','÷Þeê§éê·;¬Â’°|¹ög\"™ðO\'>uVCF','',0,'?'),('À>“GWÖ·îFžåã~Š','wp-content/themes/genesis/lib/js/skip-links.js',0,'û4a?Ä\"o•ÅF‹œÔ˜','û4a?Ä\"o•ÅF‹œÔ˜','A¢%@ZqÁ%5Ö2Ø2|b\0R®=“ÌŽ¸À3Æe·]¹','',0,'?'),('êæFh{ê^c\nRèé’','wp-content/themes/genesis/lib/shortcodes/footer.php',0,'*@/ÓØÌzQ¬fV-Äm¸','*@/ÓØÌzQ¬fV-Äm¸','ÞÁ¦lâ¯Ÿ%ìÌ Q\0ÊþÒ‚ycg?ææÔ˜QÕñ|','',0,'?'),('vXÏ½u\"üÇÌv}fm','wp-content/themes/genesis/lib/shortcodes/post.php',0,'®dÐ­o#ÿ:D°8ön4','®dÐ­o#ÿ:D°8ön4','ÆøQõ9§l´ÅÄ“rBÿ…ÃP›é–j	µdS','',0,'?'),('áfŒ©.ü³»À\\“­ÕD/','wp-content/themes/genesis/lib/structure/archive.php',0,' ÄˆÖè|‹Ç‰™Ü¼¬bü',' ÄˆÖè|‹Ç‰™Ü¼¬bü','©±P¯1Ì[\'^]m¸[ÃÀ·ï†3ñöCŽüÎb´','',0,'?'),('\"èÓa™¾ŠÒWuá™Œö','wp-content/themes/genesis/lib/structure/comments.php',0,'šÈ~ú„·C\0ÝÅ$Nši','šÈ~ú„·C\0ÝÅ$Nši','_#ð¼7DÜ€[$[Jâ;Â>4Ù}ºîˆžÕ§','',0,'?'),('w«°›Jò‡m„X+Pùã','wp-content/themes/genesis/lib/structure/footer.php',0,'±@ÚÃK©\\e^ÚóiÈ','±@ÚÃK©\\e^ÚóiÈ','k|[&£ûú8vˆü1€]bü·z\ZÚâ ¹\\~/²','',0,'?'),(' »Fþ´‚æoˆÚ÷_ø>‘Ü','wp-content/themes/genesis/lib/structure/header.php',0,'³¬Pœzƒ¡:ßÜý˜	šl$','³¬Pœzƒ¡:ßÜý˜	šl$','åÆÈ°ßS–Å¹T?÷È ²e‡/µ;\\Iqç\Z3ÊT§','',0,'?'),('žSj7Ò¶‰\'À2Gò','wp-content/themes/genesis/lib/structure/layout.php',0,'îBQ1Vn=‚lƒ)ÞAq','îBQ1Vn=‚lƒ)ÞAq','4””qu™±žm\r>íú\n+ÑÉš÷?]ŽË”Q&¢ÆñÕ','',0,'?'),('æE-|Ÿ0|ÿcžhˆøé#\Z','wp-content/themes/genesis/lib/structure/loops.php',0,'hôÁ•KÁß\n\'þOK¬','hôÁ•KÁß\n\'þOK¬','Z¸’øâîÀÍpwÆŒ(Ž¼¦YÉÈ¼á‡%ÉÎg7Éq*C','',0,'?'),('bo˜éF•Öì[Ü½­¬3î=','wp-content/themes/genesis/lib/structure/menu.php',0,'#803=‚4î6¢êHØÅ','#803=‚4î6¢êHØÅ','¤Œ~?³»uI5\ZzG’õ‘0ŠÌªc£»adâår«\ZÁ','',0,'?'),('«Ö[Úc©w·S:{(lg','wp-content/themes/genesis/lib/structure/post.php',0,'`ü¶Ÿ³0Àj­gÇ|‚øµ','`ü¶Ÿ³0Àj­gÇ|‚øµ','jñ¢ÄË™qè}þ´ Hûˆ‚™ÃØ¨Ç¤!á‚Ìi\nÕ','',0,'?'),('fJN-6X|Ïõp¦n','wp-content/themes/genesis/lib/structure/search.php',0,'g 9tØ\"g€Žœë…àº—À','g 9tØ\"g€Žœë…àº—À','Ç ÍèT-÷ “OÌv.ŠebŠþÁû€Ä\"ÖÃ]–2','',0,'?'),('Oñ©`¯€hB]xiÌ †L','wp-content/themes/genesis/lib/structure/sidebar.php',0,'WÝ0àû#µK#Í·Ú¥›','WÝ0àû#µK#Í·Ú¥›','ƒõöY^y¡Ï8ñàý*sedRÎ\\½ï78G','',0,'?'),('ƒýÚ²mô“¿vû¦ïeþ','wp-content/themes/genesis/lib/structure/xhtml.php',0,'·ÌX-eß–‡>ÏŽ¿Gd','·ÌX-eß–‡>ÏŽ¿Gd','›3æU`ªÕã9JPÂ ß	§vÛ•ìRÏdúå$¤','',0,'?'),('|©±Þ¤©ºIÄø:›\Z¢Ö','wp-content/themes/genesis/lib/views/help/cpt-archive-archive.php',0,'32TGÈ/E˜çûôKÎ¦','32TGÈ/E˜çûôKÎ¦','w„ì¤–¼+û¦ExlÃ«Ô\nÇZ(t¤@‡X%ßîŒ','',0,'?'),('1ãJa#é$R9·êÔ-õ@z','wp-content/themes/genesis/lib/views/help/cpt-archive-layout.php',0,'u³-à\"I3;Ù‡|LOËÐ','u³-à\"I3;Ù‡|LOËÐ','!\'u«Ž}TºQz–3¸=ÙH—…\\\\­_ZÇÙ­+gƒQ','',0,'?'),('\'Ôjñä–p–)›à@\\','wp-content/themes/genesis/lib/views/help/cpt-archive-seo.php',0,'Ð¤d\0~­…€´x)“','Ð¤d\0~­…€´x)“','˜ÕÝjÌFŸÿ-*óü˜†Å£¬bé¤g_2¸“ê€`\0¢','',0,'?'),('h,´ßwÇžuéH.­v¹f','wp-content/themes/genesis/lib/views/help/genesis-archives.php',0,'û&ÿøŠÎ¡íÔ~Âx4¡','û&ÿøŠÎ¡íÔ~Âx4¡','å\0Î>q>r-Ù‘åCØl×úŸrs‡\0ÌÄj¹×\\º','',0,'?'),('rózW%žaj˜¾J‹:´U','wp-content/themes/genesis/lib/views/help/genesis-blog.php',0,'QÚ%@ð½Á\nXåyB','QÚ%@ð½Á\nXåyB','ýd®üŽ³ïÎ¤ó\0Dô;[Y\\±bß×=âúRSF0Žé','',0,'?'),('SŽ95ÅÛ#3R5ÞkZÞ','wp-content/themes/genesis/lib/views/help/genesis-breadcrumbs.php',0,'è‚Çûø¬Lµl›˜Ãp','è‚Çûø¬Lµl›˜Ãp','¿½¨X£1ÁJw÷­X^4 g÷\0Ì-çžÍyê@è0_','',0,'?'),('—UãäÂõ‚á°SÑ—p','wp-content/themes/genesis/lib/views/help/genesis-comments.php',0,'¨ýÜ‚žrGOÄw\0­Vkû','¨ýÜ‚žrGOÄw\0­Vkû','®\"¥fÝÆ#fjóU\"P–P±gªí[3ÝVò‡SÙ*]Í','',0,'?'),('Zµ\'J½^}.?_ØÃé©¤','wp-content/themes/genesis/lib/views/help/genesis-feeds.php',0,'P“šc{œç:Èvé}I»¡','P“šc{œç:Èvé}I»¡','7Hõ\'ªSÏ\Z×Â¸ÿ‡YšEd5U@DÅ‡Þ','',0,'?'),('qÖ¬ïV\"ýäjp','wp-content/themes/genesis/lib/views/help/genesis-header.php',0,'­4°hÛ“Ï½§×MëÁÐ³','­4°hÛ“Ï½§×MëÁÐ³','\"†o8§,[=&¦’)“™p‘¿dûÑ¼þ?³xÝÇ','',0,'?'),('¸Vj*JíÌ–ÍÍx©V;Ð','wp-content/themes/genesis/lib/views/help/genesis-home.php',0,'ÓÓÃ¨Öt*N_|}¶Œp','ÓÓÃ¨Öt*N_|}¶Œp','²‘È·Ö1©ZßŽÔ)lð¿gçNb	¼þDi§ÛL','',0,'?'),('\\ð>µO\"ÏgE¿Ã¨Jt9','wp-content/themes/genesis/lib/views/help/genesis-information.php',0,'L¹æ•iü0u=SšÞcb','L¹æ•iü0u=SšÞcb','[Çÿ&b¥ÇÔ\'Ô&·S”ƒ¾Î4*yNé®âË×ÙZ/','',0,'?'),('6§Ð¬3ñùyÀ/¬’£','wp-content/themes/genesis/lib/views/help/genesis-inpost-seo.php',0,'·Sƒ|Ãhäg,¾röT¨','·Sƒ|Ãhäg,¾röT¨','¡œtà¯ì÷+8C¹óØ_‘#HëM’ôæ?:eÙ0','',0,'?'),('1¿N‘Z;³Z“kÒ+','wp-content/themes/genesis/lib/views/help/genesis-layout.php',0,'Z\'âÿ¦ZÄäkºè…]q±','Z\'âÿ¦ZÄäkºè…]q±','ÔŠ6G>5\';¼ôŠ¡Rldõ°>ÛEÉÅ»-ËÃÿÿx','',0,'?'),('\'ß\\ÔŠ§°Ø@A•«Á8‚¿','wp-content/themes/genesis/lib/views/help/genesis-navigation.php',0,'ÕNtëÅ6Ü59û<%<bW','ÕNtëÅ6Ü59û<%<bW','/\'gßÔá\nþ/[ÊR3uj>Âí@²ÎÝ§ÙŒ\'\"ÀŽ','',0,'?'),('”UÌa¼+7q}	DÂ;','wp-content/themes/genesis/lib/views/help/genesis-scripts.php',0,'£ß)ae\'èñyD&Þ','£ß)ae\'èñyD&Þ','ùáQ¤œÜ%g’úý ÚÞ±Oôu½yèz]ffÅR','',0,'?'),('’àñ2(¡h0LÝX\r&','wp-content/themes/genesis/lib/views/help/genesis-theme-settings.php',0,'D¯-mÕ×	.Ð»ŸM°\"','D¯-mÕ×	.Ð»ŸM°\"','$éöÛßP¿äØš;Ê–c0\'Ÿ¨KØq~HEWuÚ-','',0,'?'),('~	†e¥º²ß\0QÀ4Š8','wp-content/themes/genesis/lib/views/help/import-export-export.php',0,'{°¥AÓF£”ùìý[hÜ\Zå','{°¥AÓF£”ùìý[hÜ\Zå','Û”â»l¥R rC÷Áçp¹\\4Îw¹‡š¸jq4','',0,'?'),('ÇÅ¯\nš¤ÐÌF´P(™Ž','wp-content/themes/genesis/lib/views/help/import-export-general.php',0,'zÔ·Y66÷äø’pÈÄd\0','zÔ·Y66÷äø’pÈÄd\0','ìäŸÈÏd?_¢¢RgÄW™$“5›~|ÓÈóò«=','',0,'?'),('6¯wÖD |£(•ï\\d3','wp-content/themes/genesis/lib/views/help/import-export-import.php',0,'êà<ŠìougÍ‚B6s','êà<ŠìougÍ‚B6s','0É!ûóg”DTÁŸºId—ïÍÙêhúË™ŸÑþ°ÎÞ&÷','',0,'?'),('¡k+HH)¼™ãáãëÂ','wp-content/themes/genesis/lib/views/help/seo-dochead.php',0,'÷ijÜº\\Ë€§âü^‡Ï','÷ijÜº\\Ë€§âü^‡Ï','@Üá½¨‡™”x‡ûõ¾Ü#ÓŠÏ—¬>s)òž»¤+','',0,'?'),('•Ž%ép¹ƒjßÞY¢‰ã','wp-content/themes/genesis/lib/views/help/seo-doctitle.php',0,'´x–™Á‹#\0oÙ…ˆÒ¸','´x–™Á‹#\0oÙ…ˆÒ¸','mGn¼®§¢’Å®>É¶|1*[²æ¸¶][¨^','',0,'?'),('G€a‘5Âmü¬ÓGJÖ','wp-content/themes/genesis/lib/views/help/seo-homepage.php',0,'³9ˆT·S›©!ºPWBF‹','³9ˆT·S›©!ºPWBF‹','jL¨‡\'\"5CD½¨W/­‚3w—«•õÒ¢ßŽ ¤Vþÿ','',0,'?'),('Ž“nÄqÜýQÎ9(¢rgeÙ','wp-content/themes/genesis/lib/views/help/seo-robots.php',0,'.ý’Õš´ÐæöÍâú^žB','.ý’Õš´ÐæöÍâú^žB','ìò`*¸zrÀ¼ÆØp82cÔ(ì\rýˆñ¼˜ÔÃÈ2î:','',0,'?'),('Ò”K>ATË_ Ó‘Èå„_u','wp-content/themes/genesis/lib/views/help/seo-settings.php',0,'ÿÇ–‡Åþj¹pXjã','ÿÇ–‡Åþj¹pXjã',':gå?žÞpWBðgI`C\'{a÷ÝCâõú=\"Ç','',0,'?'),('?d=ôkÒè¢Ã\r¶ÄÇ$','wp-content/themes/genesis/lib/views/meta-boxes/genesis-cpt-archives-layout-settings.php',0,'µg0øÿV0_Ã.“1‹CÒ','µg0øÿV0_Ã.“1‹CÒ','Qz£ü\'á–\n°Ü-ÎÛ™Í\ZÉ²×\nÄÈC×_=ËJ','',0,'?'),('JµÇ‘wÿ¢=Î/ë','wp-content/themes/genesis/lib/views/meta-boxes/genesis-cpt-archives-seo-settings.php',0,'2ß2s7É°i9¹–QVÃWð','2ß2s7É°i9¹–QVÃWð','/zÿŠ”îÜ<uÒhÞªÄçr>‹pÿ•ÍL>k?÷–','',0,'?'),('8®B’3Ú¼ô^\"{à‰,,','wp-content/themes/genesis/lib/views/meta-boxes/genesis-cpt-archives-settings.php',0,'´ò\"©tï%é×~’°8','´ò\"©tï%é×~’°8','U7ŒA¤HÿÛT¾H¥\\©‹¿ÞÁ;#4\ZX[â§±¾','',0,'?'),('¸Äp{es,«5Q‰Ùæü','wp-content/themes/genesis/lib/views/meta-boxes/genesis-inpost-layout-box.php',0,'±ðÞkþª:oýsN—bœ_','±ðÞkþª:oýsN—bœ_','j®°hgke÷š7Sq»\r‡«¤Ñ31f~côÂ‰íÔ','',0,'?'),('¶?üi,Ý%UF21O_ý','wp-content/themes/genesis/lib/views/meta-boxes/genesis-inpost-scripts-box.php',0,'ÝºÌ•…èQ@Ô^õ‡÷¥','ÝºÌ•…èQ@Ô^õ‡÷¥','#»å¨qÚ‰Ö\ZóÌ\\á¢‹Qsh4œÉjg¶f!GQWT','',0,'?'),('D£·;<:Q\"¦èá‚4','wp-content/themes/genesis/lib/views/meta-boxes/genesis-inpost-seo-box.php',0,'ÁB«. ^}jªAé,+\ZŸ','ÁB«. ^}jªAé,+\ZŸ','BßÎæ;¦â‚\\7¡`ç·ý=¾Õ[ÉÜ2P=RžûuŠb','',0,'?'),(']žõ´+rßÔÆí','wp-content/themes/genesis/lib/views/meta-boxes/genesis-seo-settings-dochead.php',0,'Gº cÿÅæƒü`Žë°','Gº cÿÅæƒü`Žë°','tßbHàV‚éüˆÑ×ˆè£’/LZ §Ûm£ùâyÝ´','',0,'?'),('1îU\r’8IC–9Õ:ƒÅ','wp-content/themes/genesis/lib/views/meta-boxes/genesis-seo-settings-homepage.php',0,'®¸¬é_áæé†ƒÅŒáÄ','®¸¬é_áæé†ƒÅŒáÄ','¤¢Ç²ÝÚÃ*XÖJ`gÚ~¢ 1åï\\ÜÀ¾]^×3RÇŒ','',0,'?'),('5‡ØJp2#•¥ÜtÚF','wp-content/themes/genesis/lib/views/meta-boxes/genesis-seo-settings-robots.php',0,'\"ÏKûYî™éZÆ;äiÝh','\"ÏKûYî™éZÆ;äiÝh','–kÁ¼xy®×Îê*eTÞÃkç§7»êûÃ\'¢	òÓ','',0,'?'),('K—66V`\'k‹’—j‰-','wp-content/themes/genesis/lib/views/meta-boxes/genesis-seo-settings-sitewide.php',0,'Dëm¹F~©®Èê¨5h¸','Dëm¹F~©®Èê¨5h¸','µÌT*„`ÿ‹A:‰ˆË»’Ç¬á„‚ûL&¢}<eÄ‹1','',0,'?'),('ëÃ$fH@ŒÿuHvÍ>','wp-content/themes/genesis/lib/views/meta-boxes/genesis-term-meta-layout.php',0,'¹ß9‚šÖ	ÚüÃŽ\rß*F','¹ß9‚šÖ	ÚüÃŽ\rß*F','cµ€íÃt©ÃdÚrx\'ÐÎ”¥V)õÊeàiÀò¼’âä','',0,'?'),('Í¥+\r-ìlàêZôÛá','wp-content/themes/genesis/lib/views/meta-boxes/genesis-term-meta-seo.php',0,'giMõÒ$0ûcbØK˜æ—','giMõÒ$0ûcbØK˜æ—','cÁñN„h‹þªT¯m4¢z;XG¬Áp/úZSº','',0,'?'),('•/ÄÒÿ‰\0ºrpG(TâÖ','wp-content/themes/genesis/lib/views/meta-boxes/genesis-term-meta-settings.php',0,'6\\¬T9MM²g\ZÔŽE','6\\¬T9MM²g\ZÔŽE','$¯¤ñKg(…s®{¿¨P^´…CQ6ŠüŽ\r‘Ž×ã','',0,'?'),('ÅVT»)0eyú\0‰°oí»','wp-content/themes/genesis/lib/views/meta-boxes/genesis-theme-settings-blogpage.php',0,'+yÝwÜ×<ÒœìXA©¸Nß','+yÝwÜ×<ÒœìXA©¸Nß','ò˜\ZäAtuª*Ô“DXÆòœbØx2ËN¬wi¾à%©gø','',0,'?'),('X0“\"ü2> Oy~Ûâ%','wp-content/themes/genesis/lib/views/meta-boxes/genesis-theme-settings-breadcrumb.php',0,'¶©J^z£ƒ|âv>ŒÐ:¿','¶©J^z£ƒ|âv>ŒÐ:¿','WLø\r6/¹hœ\0ÌŠ‚¸¯LÈ\Zˆ”PÖ$s‡ú‘kZ','',0,'?'),('¨ä=V†h²Øm','wp-content/themes/genesis/lib/views/meta-boxes/genesis-theme-settings-comments.php',0,'½ê&^’¥Úk-ùDÔ','½ê&^’¥Úk-ùDÔ','„bÙÓžtÑÁ–Ç%Õšdûb>&+µKx[m‹­Á','',0,'?'),('Ó·6ÏkN?•˜I±Z&','wp-content/themes/genesis/lib/views/meta-boxes/genesis-theme-settings-feeds.php',0,'ÿ/ã1M4Œ…fZþ\";ä5','ÿ/ã1M4Œ…fZþ\";ä5',' \"2JˆÂÓ™ÍfeÆf£YB\"ùXœ(Ð?v\'Œæü','',0,'?'),('¤°»^y½ËÝQKhfÔª¢','wp-content/themes/genesis/lib/views/meta-boxes/genesis-theme-settings-header.php',0,'w~?g7¾¸XúMWÈ—Í','w~?g7¾¸XúMWÈ—Í','8\rµèÎ¨Oÿ§Àé«™-_°RÃ1ý -Ú”-1‡°k','',0,'?'),('håîË ý¥fç0Ý’¹¯','wp-content/themes/genesis/lib/views/meta-boxes/genesis-theme-settings-layout.php',0,'\"ÄiK^°¼ËÚx¥Ø³é','\"ÄiK^°¼ËÚx¥Ø³é','g´mü™…H­†\r2¢sÇª¿ÄjAär#,\Zò­','',0,'?'),('\r†¿Ãñ*7³¥3Ð™m','wp-content/themes/genesis/lib/views/meta-boxes/genesis-theme-settings-nav.php',0,'eJÖQ°Ä©‡H~³<Æ.','eJÖQ°Ä©‡H~³<Æ.','Ê”}ìªlÚH¥‰²Š/ÁoM„‡ùPf‡ƒg¢§«åï','',0,'?'),('ceUºË( Žµ@íª*š–','wp-content/themes/genesis/lib/views/meta-boxes/genesis-theme-settings-posts.php',0,'	%Ç­¼“Ñ™>¨ë^)9á','	%Ç­¼“Ñ™>¨ë^)9á','‡}Öƒb«£ðjl•IðØyu=ï®®\\ô¢Ñãš','',0,'?'),('1•Wö.ÚÙ5ç…ñÑR','wp-content/themes/genesis/lib/views/meta-boxes/genesis-theme-settings-scripts.php',0,'ôC¦Ð½u²MFr¤gú|','ôC¦Ð½u²MFr¤gú|','•w†<dQÆ5N-Nô¯šÖãC&áØNƒ4e½Qã¾g6','',0,'?'),('ß}ø;ÝdÑß77,xx@×','wp-content/themes/genesis/lib/views/meta-boxes/genesis-theme-settings-style-selector.php',0,'æK)8¯Èo›ø0°zŸP8','æK)8¯Èo›ø0°zŸP8',' Å¸…rÇíŸ•‚FÝ~á«à–/¥‰ô 3€âY©','',0,'?'),('ÝØzJµ`pb¦ÊõÊž…','wp-content/themes/genesis/lib/views/meta-boxes/genesis-theme-settings-version.php',0,'3(Ÿ+ÐÂ°(ðâ÷ºb','3(Ÿ+ÐÂ°(ðâ÷ºb','õYäKLü$¸Ù¾ÿT\Z™BUù×BæÛ\ZŠ>~','',0,'?'),('¬\"—ãÌ*À¨7ÜT9gæ','wp-content/themes/genesis/lib/views/meta-boxes/genesis-user-author.php',0,'Á]”ÓäyÇÚX«˜tSâÎä','Á]”ÓäyÇÚX«˜tSâÎä','ã¡Ò›¼L]çI7~íÝüý…:Êí7üCl©5','',0,'?'),('¦\'ÑÐ4ª¤Æ;nIú','wp-content/themes/genesis/lib/views/meta-boxes/genesis-user-layout.php',0,'»ÞUÈÔ¥lUaŽ¨J)y','»ÞUÈÔ¥lUaŽ¨J)y','e3Ý‚½ÿì¯éZ°Hfß7]C¿ð=úˆål5Qu+','',0,'?'),('µ•DK°\r1.¡&EÌqû','wp-content/themes/genesis/lib/views/meta-boxes/genesis-user-seo.php',0,'ÚcÊ`°¿JZô°@|´ÀE','ÚcÊ`°¿JZô°@|´ÀE','\"\n‘](E†²¹lˆ3»Þ&Çâ„åºÉE1¤†‚ºiL','',0,'?'),('YÈ‰ƒ\\áÝ\"}©\ZUôH','wp-content/themes/genesis/lib/views/meta-boxes/genesis-user-settings.php',0,'Ò\'ÏÞè¨+·}çÞeÁ','Ò\'ÏÞè¨+·}çÞeÁ','O¬†Ýþ½Š`—¶Jyú[!HäÏgè¡Š­b4„›÷`','',0,'?'),('ÜòVËåxnçWŒ8º','wp-content/themes/genesis/lib/views/misc/genesis-admin-boxes-holder.php',0,'ˆ‰P:»äØH±ßïähÒ','ˆ‰P:»äØH±ßïähÒ','Ï1Ëþ£C˜G`Å§þÕ´øLùV)ÌBƒÍTe¥ú‡ˆ½','',0,'?'),('Ë›˜°îËïœóãú3µ\'Ò','wp-content/themes/genesis/lib/views/misc/use-child-theme-notice.php',0,'¼Ü;n8Š_5+¢{/p','¼Ü;n8Š_5+¢{/p','Töb†ßžs€Å¸çÂJ™}”gÐF“/BYDGªb÷°','',0,'?'),('uë§6êƒ4-M\'e','wp-content/themes/genesis/lib/views/pages/genesis-admin-boxes.php',0,'í«(v\"æÉæwóR','í«(v\"æÉæwóR','^‚Ä…ñ˜ÌûJ°³Êu‹F¼Q˜˜U‰6ÑJK{œ','',0,'?'),('äÍß>ñ-m½a+<NYršy','wp-content/themes/genesis/lib/views/pages/genesis-admin-form.php',0,'ÂTDMFðy¦LµÑÝ²25','ÂTDMFðy¦LµÑÝ²25','BV+‡{K1#Ýèžî	ä„¸|™õøí\nT™÷ü','',0,'?'),('ÐðÐ0{:ÒÌvª‰õ3U','wp-content/themes/genesis/lib/views/pages/genesis-admin-import-export.php',0,'ÿŠ÷+n§ÇPt®À<)','ÿŠ÷+n§ÇPt®À<)','bˆÚ‚-PÁã|ÜÀæ†õ0Œ×\r&ŽœhŠp!ÉGÕv','',0,'?'),('€ø3pOHÏ‰Ç•Ö‚=Û','wp-content/themes/genesis/lib/views/pages/genesis-admin-upgraded.php',0,'dÖB¯ð	®4ñ`F§]eBÉ','dÖB¯ð	®4ñ`F§]eBÉ','$¼Ft@Œ\nŒš¤ka=q´´Ñ{FµyË-÷','',0,'?'),('¿GÖ€Y.-\"ŠD‰ÕM','wp-content/themes/genesis/lib/widgets/featured-page-widget.php',0,'|´»G;ÙæQ—5:ž\r—Ž','|´»G;ÙæQ—5:ž\r—Ž','ãï2§¹#ÀqrfÏÚ7NÝ\'÷YÎÇ çs¬&õƒ-RèÂ','',0,'?'),(' \\£\nÄ‹JgPºUäJë ','wp-content/themes/genesis/lib/widgets/featured-post-widget.php',0,'³­jáO¿K Tl6à¶','³­jáO¿K Tl6à¶','§î‘#ÝûØPú<Â¨p!é‘ôR¤Ï\'fŒ*Ú/Fvže','',0,'?'),('˜ï^fa8Ó6‚d9ÖP','wp-content/themes/genesis/lib/widgets/user-profile-widget.php',0,'üÑÜDKKŒ1„5ecµ»›','üÑÜDKKŒ1„5ecµ»›','ŸuÚØÙ7jê¨²2£ïì%·2Çúçß	¨Ûbÿe|™','',0,'?'),(':nI´1ç¬\nßn÷&R;','wp-content/themes/genesis/lib/widgets/widgets.php',0,'ðÔ´²ìP™9vç™ÞŽ','ðÔ´²ìP™9vç™ÞŽ','k\rÉÐ¡üÝv‘\rLø‹%x(6šÄïá*ïAÃô¢','',0,'?'),('`Ó]	n[\"+µ¾­JÖy','wp-content/themes/genesis/page.php',0,'mcâØN–/l»Õ¥å\0','mcâØN–/l»Õ¥å\0','GûÛ7³D–Xiùà}(¶óH(b1\"×ºQÐƒÂ','',0,'?'),('Q$¾\'ÎÍ‘ê‚sta','wp-content/themes/genesis/page_archive.php',0,'Œl—›ÍC]-\\ö6v±','Œl—›ÍC]-\\ö6v±','°Ü+UòÉ<¼Ÿ©Ñf³9Ö/,¤aôdqDôÊ‡','',0,'?'),('¸­z3)ÌµFv0/¨<','wp-content/themes/genesis/page_blog.php',0,' b\'ì5ŒšLÚêP%!',' b\'ì5ŒšLÚêP%!',' ¸€æ õ5¬Çú¢^¡†vuÔº•%ï¥£ÛMG','',0,'?'),('	ÿR²-Ð‹ºäB“úU–ˆ','wp-content/themes/genesis/search.php',0,'\nkC%ÜkAhÂ5œ˜G4>ø','\nkC%ÜkAhÂ5œ˜G4>ø','ÊêbâiåpExæç\r[|bAxÓ±­\'‰1#õÔŽ8±Ð','',0,'?'),('7’ÁóHh}i(šâH|','wp-content/themes/genesis/sidebar-alt.php',0,'©ìU0‹{ úp?Üx','©ìU0‹{ úp?Üx','ÄrhîSð!d™9¤™+SéHõfy]’:¾üßË¹ï','',0,'?'),('µNL2Á“\n7ÀkäŠdþå','wp-content/themes/genesis/sidebar.php',0,'&ÀÁ•µNÔ[ÒææáeÎ~','&ÀÁ•µNÔ[ÒææáeÎ~','(pAüD5KÅ[ô|E¡ó—±\n’ÑSh¿ýqd	KE','',0,'?'),('=­êµ2Ý ÍëÃp)ì\\÷3','wp-content/themes/genesis/single.php',0,'Óµ;.c,‡ÛGÒ/7o','Óµ;.c,‡ÛGÒ/7o','aÍNv¯,RDÃç%È³uèí´“Ó6Öo¶á7L','',0,'?'),('Žšƒ¬JÌ}F·ßE\0Þ9³','wp-content/themes/index.php',0,'gD,Vë§=\\ÆbP','gD,Vë§=\\ÆbP','k‰À—~	¶½UH\Z¥ÖxƒPêÛAÌ„¢ú<¡ž;X¨','',0,'?'),('xŽs¥2éõ³‚\"ZÑUãÂ®','wp-content/themes/twentyfifteen/404.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¬óÂ š’2ÕMD€$‘²',';qúä:\nµÇ°…@5=’¹½$Œ»o‡÷ ´å','',0,'?'),('½}€%Jþ¼ãýgŠåzª','wp-content/themes/twentyfifteen/archive.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','[kù\"x‡E7@s}l¥','58!”¡;§	\'9Os&A3X†L4ï¡Äý€Œ‹oP†','',0,'?'),('Ä|¬·\Z›òîÄ:sÇ~š','wp-content/themes/twentyfifteen/author-bio.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','4ÜÔ¡R$)úÇëûwZOõ','ïÊ8h=\nÒŸ`Â;¿á$ràâãKºkßâøy“„Žoá','',0,'?'),('\\ÔJh\'ò{­áàaÓ`_Ó','wp-content/themes/twentyfifteen/comments.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','I°Í^I´P\nxú	rNR','Í›?MË!^×ùüø°NC4Þ‡ÞHžÞþ–õæw','',0,'?'),('¨2[„ªsÃ$ªÎtÕX[','wp-content/themes/twentyfifteen/content-link.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','³™àF\'iÕVú1¼ó','Vb½3(\nUÅ±1ƒ_K)æü¹¦#êC‰·Î(~ŸW','',0,'?'),('§ÇÜ`Üäƒ½¿eWîY¼¿','wp-content/themes/twentyfifteen/content-none.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','€éî›–Vä½X+Õ1™','ÊB7¿[Õ\rÙYãáç¦÷ƒA\n<0„Kæó8.Ä·A¿','',0,'?'),(';Á\"ÂCèÁØ˜Ü³ƒ hc\Z','wp-content/themes/twentyfifteen/content-page.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ú$zxâÄø6Þ““M#','d¶ÓÄ¥S£åõ„8Lf›O”Ì’‰-”8§×ßahT\ZÅ','',0,'?'),('Þ^ÏK^»8vÙ8ã§ëÐ','wp-content/themes/twentyfifteen/content-search.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ì¥<CUyûQ’OßÄÌbÏ','”D[Àe¥Äqñzyx‹+OseêgP=<,iŒD|','',0,'?'),('Öçãv#ï9÷Ðò)?Ip×','wp-content/themes/twentyfifteen/content.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','?<hžšÖ>C½¥BqÐÎp','÷Á²œ‹¯ž4‡Qu “ðSÀ§£¥pánIk/ï','',0,'?'),('Jìˆ¨úø0ãÆ\0ÉÂÂ;','wp-content/themes/twentyfifteen/css/editor-style.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÅBH\r¥%£Ü%^ÙfÉ\rÌ','ïö¤ È£ÙØJ@%0W-ˆ-Ý]\"\0Õ\0¢\"”C','',0,'?'),('Žå¡çÄ¬+¹¹¬Ù0','wp-content/themes/twentyfifteen/css/ie.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','q={ç›¢í{\nÈ,®¥','Òr^ÇRŒŸ_ÿ´Ïêvn„>Î.O»ÞÎ’ÕîÏÔ”™','',0,'?'),('œl£d¸ÕŸˆL«1u0','wp-content/themes/twentyfifteen/css/ie7.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','dhù‚=ƒ[KM7ÕÅ,ˆ¬','ZÅñ:»Šc®\Z	ãÉºôkðÚ{O;ûôœnJcj','',0,'?'),('\0ûÛŽx%™d\ZÎkK](','wp-content/themes/twentyfifteen/footer.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','hYÓ ¨&é„ß6Ó	Œý‡N','þwŒ÷9n\\&#–,À@^pBsBÒ:óÛtQ2rö','',0,'?'),('ÊèMËaNîšù`´:¸,Ö','wp-content/themes/twentyfifteen/functions.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','’Ò$Á}í\0¶¡úÏ)ÄM','©î[ú½‡ý$†{-Tõ\nëš‰[GäÅoÂkAhÙ$ëm','',0,'?'),('úŠ\'_G·˜þ>âr-gÊ¯','wp-content/themes/twentyfifteen/genericons/COPYING.txt',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¹B;–ëa`GÔ¢·Þ‰','öƒ+¯P4Õg.½àžÄ{ÎáÊþ^WœÄ/![qu','',0,'?'),('Ô€†ªÀ}×vÏ£þGÀ','wp-content/themes/twentyfifteen/genericons/Genericons.eot',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','â†’–ç(íÈ7k¤j','Éž·¤Š1£¨XÅã*…ôÀ*½yŽ‡h‹«à˜s','',0,'?'),('ñÂJ]ú‚±°;o*©±P','wp-content/themes/twentyfifteen/genericons/Genericons.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','/¿=Â³zeX*¹|Óê¤b','Ã„@ÄéPw*\'Š0M‘\'DŠÛc–1¸¾×—¦dÊÂ','',0,'?'),('J9?Å+‹æQÓé´µÃ','wp-content/themes/twentyfifteen/genericons/Genericons.ttf',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','½&twØ4·Ð‰”pc$','œ´;¹ =LV|,8ÞTg0WÛNÌÀQA@kC@¤°í','',0,'?'),('d®on¦W>aÌ§™Àóì','wp-content/themes/twentyfifteen/genericons/Genericons.woff',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','s/ðýn]d²ÈÈzÈ?','Ô*áþÁSW˜‚¢Í.¬Í~5t°=ÈÁ÷ôVópÌ¦ñ','',0,'?'),('uþìQ\"±å~W¨ö¬™Ã°','wp-content/themes/twentyfifteen/genericons/LICENSE.txt',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','²4îMiõüäHj€ý¯JBc','¼ÿ\0v1£êsÔNí>cIDÙ¦¾Ö„Ié­0ÿ-','',0,'?'),('vlBT›èª[6ÇÕBÂJù','wp-content/themes/twentyfifteen/genericons/README.md',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','uö9\nJ“ýLa7Q·©ç„‘','õ{vx( §©ÃüþðDJ*áqb\\Q3µÈßÑ£³Û','',0,'?'),(':¿¨Xï&eÜÓÍ£–§À','wp-content/themes/twentyfifteen/genericons/genericons.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ä¥ñÂUÆSáÿt¯+¯','ˆ©;ŒJi2©4°{3ŠÞ.©ø(^ÃZ}Å™Û‰*E','',0,'?'),('x.o\Z0L³u Ï³äÚ','wp-content/themes/twentyfifteen/header.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','6EâÖ´³ÁJö¦ÆM','¬i9õF¦[+Ÿ31zt\ZÙÖŒ&÷¢Þá/b#šCi','',0,'?'),('Ã^ÀêCÁOïÏP>ô','wp-content/themes/twentyfifteen/image.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ø{ùI»÷<ÿ<$§°~','—\\á‘\r/…²¤ŠBþM^—„¤ÎUÐ®^Ê‹…\n,$','',0,'?'),('ãL$@ª³]½½š%+X','wp-content/themes/twentyfifteen/inc/back-compat.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','a¿ÈÈÀÄ× š[Ü`z','¨†¡Õ¤<N?ÆéGÏX4-\"¤QÖÁgmÛ+còx6Ñc','',0,'?'),('ÎÏ,ÀŸ G¶ ±:Å0 /','wp-content/themes/twentyfifteen/inc/custom-header.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','4_ìNÞG^Fý}[å“F','Q‘B¬|£ÜªÈ\\ë{Î†ÈkK‡¨¥ÑØ4)Ç','',0,'?'),('*lXóª±ÌKPqU','wp-content/themes/twentyfifteen/inc/customizer.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','†%øE¿4G	ðÓÃñHé','­ATŸO&*Ï‘¸äp–ðùµ=\ZÂâ®sÞ±¢µ','',0,'?'),('Ía¢‚qbþOaIÂ-ó\r*','wp-content/themes/twentyfifteen/inc/template-tags.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÖI,÷çH]¢Rß7<ìz1','!(¨dTUþÚàÅá¬¦¬©Ûç¢w=X”$­','',0,'?'),('q\0^ômvBsfC~Ì','wp-content/themes/twentyfifteen/index.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','„É²b®ZK“ž“K­WØî:','W©›îfšþÉp»³¼U¶g!R›£y#?–àYž^','',0,'?'),('¾Ý–@ºŒ¨N”¦ _n','wp-content/themes/twentyfifteen/js/color-scheme-control.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','g½¤O:Ë]ÉÁ¼ÆX„Û','Ë¬G|ÈÉ\0Ýè‚fîËŒ¥Ž²§,Àw}áš‹ë¦žÛ¹','',0,'?'),('œZß1h¦Šý–‘ŒN3Æ','wp-content/themes/twentyfifteen/js/customize-preview.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','àÙtµñ?\rÍJ4¼ÅaÃ)','ÿ\n€™Õë+Ÿ…7¦œgvnKëôwóu%‚ÿbòv&¼Ä(ð','',0,'?'),('¾‰&ÊôKGû‰)–','wp-content/themes/twentyfifteen/js/functions.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','§kf-ÊuÙ-¶m.·Å','Ê˜÷›Ie|®9õÃ±H>DB*xÏ~+Á ý”§â¢!¹f','',0,'?'),('½¬ÈWWÕƒoømÚËÐée','wp-content/themes/twentyfifteen/js/html5.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','é\\¡\"‡È¶ˆ›jÈ“·P','Ù¤m¶S¶¶m§?¬î­öÞ¾›j÷r›^´Ø¢','',0,'?'),('økoZýö¨z!/½Ìf','wp-content/themes/twentyfifteen/js/keyboard-image-navigation.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¸/â80r‹\roº®©','z§pÒÁ®ÄY•uOEàk2ÍhÝ!y¤KÄ&%KõÊA','',0,'?'),('‹Æãqð·žŠøDùª`','wp-content/themes/twentyfifteen/js/skip-link-focus-fix.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','×t¿ââ>:{»šú’ôð¶','v®ÄœàÔÄñeÇÿ7û\0qånc^h¸Ú£¾','',0,'?'),('×²2€D¡É»&-uóõ	','wp-content/themes/twentyfifteen/page.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','B–5ÕäŒ^›\0™`Cþ','ÛjÐ7Xƒ	ôÀwm…8/%2Ÿ¹ñÎ©íÑ|ù–¿àr.','',0,'?'),('é•ªžc–Bòw!÷ÄW','wp-content/themes/twentyfifteen/readme.txt',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','éÅLK]òì¶jÁÔ–Ž2','ªÖc$þBFqµ’M¶¿Ås)³©´}pä85q‡','',0,'?'),('5]ÿôÃ/€„„õ\rÐ','wp-content/themes/twentyfifteen/rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','a¶ü1„†ÄÚQ°¡ä›Ë#','ÓÞk[îÕ†~z»³p™öïðt(tlJÐW,%fq','',0,'?'),('mœÿ¥Æ\Z•/·®‘„Â','wp-content/themes/twentyfifteen/screenshot.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','[£tÕ®1”Oér²H^\r','WA¸ŸÙõ¦LÇ3\'Øj\r”à\rNfFz®†ûa¤ÖqUl','',0,'?'),('\\Ìç+5®éÂ¦DW\"ï˜','wp-content/themes/twentyfifteen/search.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','>·Ä\"7Ñž×‰!ðT\nª}ò','\"`AÊÙHŒ(U³Ôþ¡MÕHlsÀ¿Í\ZÅZº<','',0,'?'),('¤¿î\"\\ÄéD¦-\\gc£','wp-content/themes/twentyfifteen/sidebar.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ì¦À*³pz.9ô{ˆ¥áS','7úA±âûä}ðesÙ‰A} KòÆ¶¥˜het<1ªšXË','',0,'?'),('ç’ÅÿxšÞAgm%¶æž»','wp-content/themes/twentyfifteen/single.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','“^9¡E@XþÍÝu.~*','žÏósµ¬ÁVÉá¢š=êmƒTÜtü§OzoØäíM','',0,'?'),('uvúÕž(S5ä‡¹í›¨','wp-content/themes/twentyfifteen/style.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Y:÷”¯u§.F®a','Ãµa/UõÑ­¼~³\Z	«xôÇŸäN]Ð ‡Ú¥Çò','',0,'?'),('%ñ)\ràß°Œ\'','wp-content/themes/twentyseventeen/404.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','—«R­bšT£¦iYSšÛ','´H{°£Aê­f,äõ[ç$dnŸÂ›È£–ÕýÙ','',0,'?'),('ÔêªœhÁÑÐ•Yº^Ï','wp-content/themes/twentyseventeen/README.txt',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ãÃ6_b)0$4À®ŸCëg','D¶U¼;F=£¹è½d¦øZŸK/ì³h-$»ÝçX#','',0,'?'),('ªaŽq­«+^J³U÷S','wp-content/themes/twentyseventeen/archive.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','y;#§{¥·ç)!_2à','¯mo”K[ÒÄEy=2¹<tè]ü_üêw,§Ù½!çSf','',0,'?'),('AÆó[,#VÚÇ^jùçß','wp-content/themes/twentyseventeen/assets/css/colors-dark.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ªÄL*!jQ=8@¢¼e‡S','“4¬ŽØJKÞi\\CªœËæ&H8oBÆD» ÍîÅä','',0,'?'),('gtß.H*ýW¸¡=ªCŠ','wp-content/themes/twentyseventeen/assets/css/editor-style.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','‰p}cA—åáZ¤8™j','Žjþ´}ô hÚ&³‘¾ŒÇØôÜn:R8_l²¨ò#,Y','',0,'?'),('PÝp­î®´4!Iaiðó¿ò','wp-content/themes/twentyseventeen/assets/css/ie8.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','…/¾eCÄQk‘uÖCwvø','ëq¥A ‹àå€VI¸Bâ‚êå.;\0³s`jM¦','',0,'?'),('Ï[ç¶çã0|Ó2Å¶›','wp-content/themes/twentyseventeen/assets/css/ie9.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','šÖ•´µâß[Y\0¦îÌ','æ\Z.§| éØ¤(À=ã16¤ÆšŒMÏ¸Ê-\n§íGk','',0,'?'),('{míÑ¡¥MYmË|;·F','wp-content/themes/twentyseventeen/assets/images/coffee.jpg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','AÞžÚEoeò	P;Þb ','\\lÏ¸v{zú2›çÕÝ?ÃHÛ9Çl	Mtíä#Ãer[Ž','',0,'?'),('T¡Í_T-xE&á8„ôÆ','wp-content/themes/twentyseventeen/assets/images/espresso.jpg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','p’)=c#|Ëâ','«ed‚GKsç,‚v²’‹õEÚ A4\\\0àÔo7£Á)¤','',0,'?'),('¦µò{Aø7?¤\0\Z.³Û','wp-content/themes/twentyseventeen/assets/images/header.jpg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','€0CŒ›EK­>”5|Â‹Q','|Ž%¶`Æ}3?Mî¾»Â±‰þüK­X†šWME§X','',0,'?'),('4:Õ5~Ç’“Må ù','wp-content/themes/twentyseventeen/assets/images/sandwich.jpg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Èj\nà¸v7§Àïõ59±','½ŒéºQzÐ¥©î·j€@ë|9^®.l?ñ2œ´ÜÜž','',0,'?'),('ÀÜtj¤É-RÞñO','wp-content/themes/twentyseventeen/assets/images/svg-icons.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÕjbÌØ¢@)˜-°J Ø','ÆÂÌž·wºòáð\nüõP‘eÃ…R$×BþRnR#','',0,'?'),('…¬Ç¥c—\Z$ÉL¢*Þuæ','wp-content/themes/twentyseventeen/assets/js/customize-controls.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','@¹ôåæœc*htÔÇ‚','žMHÿÏ›š\"\rñûÙ Á4ãÕ© ¹!Î	è”Ó†Â','',0,'?'),(';&ü²_áXI™¦â‘Ä%;','wp-content/themes/twentyseventeen/assets/js/customize-preview.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',',¯3³šIÍp¦¬KÕ18','^+€5i„‰ÙÑúÌM‰Y0“úçÈš KFØd™kîIÆ4Æ','',0,'?'),('TóQaP\0Ú?¹ò¢£¡H´','wp-content/themes/twentyseventeen/assets/js/global.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','3âÈ­¹–ék@Œ*ln','¬ÊXá¦Ï«ºZW¨g[ˆSSmv†Ãï[Øß–È‹','',0,'?'),('¨<˜ tDÀXÏ¦FÞøø','wp-content/themes/twentyseventeen/assets/js/html5.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','^é{1P\'Ú`î®âàK','‡R³y1N…hu¤Â¿ëžÏÖI}€Øžöòñ)i','',0,'?'),('Ë28c\"«<;É×ÜUvÈ?ö','wp-content/themes/twentyseventeen/assets/js/jquery.scrollTo.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ûdÝëöc©	Å@­y','pö¦0ÂíÙOßÛþ	‰”ØÊ9››@5˜E~“­U‹','',0,'?'),('æQ#jã5½Pò!¤»','wp-content/themes/twentyseventeen/assets/js/navigation.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¡¶p3Æ²ds.b°N=','¾ ´	Ä§€¾°ÄT±‡æàGÖÒóCgÒ«,R¨Â','',0,'?'),('£¥î\\iP‡¢·GN$í°','wp-content/themes/twentyseventeen/assets/js/skip-link-focus-fix.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','u«ÔÍˆ³ù÷úëwîwK','“‡í“ü:($K¸¢Ñ¼¸y£ÏÌ7bàíýªfã“¶§','',0,'?'),('¾ÞD¶X1®ˆ[]+:Aïæ','wp-content/themes/twentyseventeen/comments.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\n‚P×Í+Þ÷§æašÄM','Ä8{dZ¯Y\ri™ºèn›áºwN…xá/Gìƒè„','',0,'?'),('|‡7»Í¹9¦YOÈÓLå','wp-content/themes/twentyseventeen/footer.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','x¦Ø ®6¥ÕnmKúeQ','OùÓ­ÃL—åYaÌÄ:bO_UQôUË5ÚaM4²éŽÂ','',0,'?'),('—\rb/#ÒéQ®‡éÖf•i','wp-content/themes/twentyseventeen/front-page.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','0Þ@¼äîD·ÕÐÜ“h','Ùñý66É©g‚Ûó%²!/X=tf{Rpáš_¡y','',0,'?'),('÷¶ÿµiðYâuN$U-l','wp-content/themes/twentyseventeen/functions.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','û¿Ê~\\#ˆÙK»m Eq¿','òHSóžg’»U‰9’G&íKGWüWµÔSe[lòNj','',0,'?'),('fkp€¿~˜€ðá7®‡','wp-content/themes/twentyseventeen/header.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ü“ÌãeÉv%|¾¿˜ôÇo','däW±P;BÚÉØŒ„ÈæX:d*ŽÈM?\']RÃŠÉ','',0,'?'),('Ñù¤‘o-Ýb‰éÒÏ%Çƒ','wp-content/themes/twentyseventeen/inc/back-compat.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Õ®ÿº+ÕIâÚ&','G0¾3¹¤ò¤X ˜q‰Yö¨ø»B½ ptîº°röL','',0,'?'),('^¨•‘ºž;‹DY\r0R','wp-content/themes/twentyseventeen/inc/color-patterns.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','iÉ%Öù©?&Î´«?','Èé&þ­¦eØ,\0ïtÞüO:ÉÜ€e½	·:cÁhd›','',0,'?'),('†“F1}Et¿jutÿžµ–','wp-content/themes/twentyseventeen/inc/custom-header.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','®´…<¬7¥Ñ å‰!,K,¥',' ¤¥*€Å·#r·âÄÆ&ûsR…_2‘.;(.n','',0,'?'),('PsÔm\r-ÿt\"Ð%','wp-content/themes/twentyseventeen/inc/customizer.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÎÆQïÖ[êˆ•Vk‰S','jó˜Ý¬®³i×f|\n<_\r›ÝFòv–v`¤‚b','',0,'?'),('6 “±Øˆª2á™ýýïò','wp-content/themes/twentyseventeen/inc/icon-functions.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','<1¸&WÄ€šÕöù7ØÃ','#6œGkeÊÊe‰ÿ\0¹Ûš©€ˆ‰ýIžýÞÌ“Ì\0zN','',0,'?'),('/Ù7ŽÑð[çn»È','wp-content/themes/twentyseventeen/inc/template-functions.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','<ñšÓóœš(ö±2ôA','®$‰N\'ÑPŒm<R‹SMµù38ç31ÔPûàEm^ˆf','',0,'?'),('ÈÒ}úâùUkÀµÍÌXmÏ','wp-content/themes/twentyseventeen/inc/template-tags.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ºgopBÿÝ5FOìW','¡um¨½K\nÅ?W`²ôíÄ6*«Wó‘‡\0QN’³ü\"d|#','',0,'?'),('Q¿ŸKì\0ŽéHÝ0À	EÜ','wp-content/themes/twentyseventeen/index.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',']E9“|Ò?>rî;á½µè','¶fC#ü…zýæêa™¼ž/Ø½ïìVŠh’Î{Ûž<N','',0,'?'),('¿)„à]æðD…×ù@w','wp-content/themes/twentyseventeen/page.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Â6P#ú=‘jº\r/','¾ŠFq´åD­ˆ¥”Zçqü	¼ïõùÉ×*Ûy¸‡','',0,'?'),('ïX¾&Ä5×[vé’úbI','wp-content/themes/twentyseventeen/rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','üš½çWÓûRzS––‰','ÓóÊûmHéì±×J§ðFïþóM™6¿\r3ÌUQD™°x','',0,'?'),('ÔJ°÷ª³|\nåbã“…a','wp-content/themes/twentyseventeen/screenshot.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ªDŠ¿ÈŠsËæOqÉÏ2','‹±Ajn\n‘–­r›Ù‚i7Ë¯@\"C›×-\'ù(páo¡','',0,'?'),('DÊ1wNãu»—<mö±M’','wp-content/themes/twentyseventeen/search.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ua¤ã°ý+œqÑ¾ö™ÜB','\0[êÃfquR;G9e«¤½lW íQÛm®<X–§','',0,'?'),('Y\n?ú5‹ñtmÜê!æŽ3ª','wp-content/themes/twentyseventeen/searchform.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÌØÉb3)ˆ¤EÏ›èÁº','/Âñ³§qy±d¦E>^3¶îi%½nš\0\"›§óÝK','',0,'?'),('Ž{’9ó\\\'YÉlÆÿ—v:ž','wp-content/themes/twentyseventeen/sidebar.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','cðxà(Z—%è„p4>ÄÆ','á®ˆX“ÜjÇtcIÊA1ölhRTÊ€ÿ]\"éXÂ','',0,'?'),('é:,~÷ùPLEû™Iƒ\\','wp-content/themes/twentyseventeen/single.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','G—\"ÃüÍ…}Qq$','®>}Oóö_»¹§	¶×Ý+ÔÅ}?êtøsW€][ìÒ:î','',0,'?'),('g–‘?~*5¬@±Æ‰rð1','wp-content/themes/twentyseventeen/style.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','WõóMÔvT¼	¦×— ¦','¬œŒ3Í—¸Ã1Ok±\Zz&zl}ºéÙ×¼™:Á¦”','',0,'?'),('¦j…¿ƒeÃÊb‹=­','wp-content/themes/twentyseventeen/template-parts/footer/footer-widgets.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','èf€He±cò?Çyæ\'æw','¯¬ær1BM µýSü­DÐÜôyá·&º.3xR*g0','',0,'?'),('r–2Ã‰Xzeb­ /¨ôÚ','wp-content/themes/twentyseventeen/template-parts/footer/site-info.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Aj\'ç--LdhùqX<Ú\"œ','#óIwzÌ{÷t5ÔøòmaƒªÃ: ˜šÃQ´ß','',0,'?'),('è“¶˜FÕ·¢	!úc´šù','wp-content/themes/twentyseventeen/template-parts/header/header-image.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','žÿ!u:ÏÆL1ø£˜•','KtZ.o/åZG¡py@¾1C­\";×Âa˜Í:¯','',0,'?'),('™KßiEurK¶ÜÚ–Mý','wp-content/themes/twentyseventeen/template-parts/header/site-branding.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','%Ÿ±Þ+³8w¸wÍO','»ÙÒ||ðÚÃ²+úWã®À’$UèVŸ{r¡','',0,'?'),('¢|¼mN~lEJß£7ù‘','wp-content/themes/twentyseventeen/template-parts/navigation/navigation-top.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','#‚S›¿C^`\'æ·½Ê‘î','ªX¯ÚGÐŸ‚Ž™}ß›Ù1Gõh½–ŽD‰+sæË<','',0,'?'),('¬îÎð>õ½*»ÿ;','wp-content/themes/twentyseventeen/template-parts/page/content-front-page-panels.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÖJ\012IÌ3¥:ßžìÈ','_Vß,ƒ=À=y…!…ˆkêèx/ž¡ŒñÙRš´1P','',0,'?'),('ù2¯n¨i\0D2MhÏ','wp-content/themes/twentyseventeen/template-parts/page/content-front-page.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','cŒ`ÈRø%];m¼ˆÍj','Gw‡‘ú™e&[J#ê±`	êÈ:*ßgÉeŒÜ','',0,'?'),('¡\0Ûi£fPË+²Ü ­I','wp-content/themes/twentyseventeen/template-parts/page/content-page.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','“Îß.vh|O[F{)àÁ','Å™ýŸ;À|‹U¯8p(Õ®±˜ß~A¼c±¨eæ¯','',0,'?'),('çÞÁË®Ë\0êñ¸ˆ(Õ‰','wp-content/themes/twentyseventeen/template-parts/post/content-audio.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','LGAdu@mçÎ¶ò`',',£Iû¡ñ!ïùg-á«ÅÆöAýÝáW}ò-Ç`Õ5A','',0,'?'),('šTþØÊwÀÉìì4°|R','wp-content/themes/twentyseventeen/template-parts/post/content-excerpt.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','LÌ²Œ¬\Z Ð¦ªâ…','€ö#¾Ù OÛqEHµƒBw0ìçfY¹bvÍðË','',0,'?'),('†Dó¸\rTúá£Ûûº1','wp-content/themes/twentyseventeen/template-parts/post/content-gallery.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¿ÏÅöÕ¢àš2DU‡QÔL','fRÛªö8A¡ˆï)Q,5\Z}Œ¸Õ=JZ;}Ó‚A LÜ','',0,'?'),('B\nÂOÀ¯D´–tÅÐ%¾','wp-content/themes/twentyseventeen/template-parts/post/content-image.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','òßDò{5êóíö³ÞÛ¸þ','ÂÙ\nIÈ³ŸÈO>Æáºôføë–pá¶B¡Èû\'R','',0,'?'),('1”Fb3}Ê!Q[ŽdÛ—','wp-content/themes/twentyseventeen/template-parts/post/content-none.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','&h`6KšñÂ¤\Z','™´´‘°PŠ_}ó*5¶6Cá	æ3¾ÄîM,—áþã','',0,'?'),('Öõ6»_‘ä§ÅæzTUô–','wp-content/themes/twentyseventeen/template-parts/post/content-video.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','æ¼·~ì“ˆòüZca\\','³ýdÀ4j¿kØM }_`ê…PÇdÏŒ·´)þ`T','',0,'?'),('RÉJÙ¥D¼Ùcv¿ÖK','wp-content/themes/twentyseventeen/template-parts/post/content.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','òrû/£’\0Ô•˜5!ü','¸\r))¤u^?°;’h¹Ñ3+\"ç¡Ë­bol3mzoÎ','',0,'?'),('Ù¹Óƒ2HAYêfMœ#ŽmÊ','wp-content/themes/twentysixteen/404.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','8È—G@=/6¼(É\rà','/ÃŒæÿ>=UÅm`ä!Ü98j²C3]a‰±ff]f','',0,'?'),('¢Ó?K½öŽ%Q6$Öû3','wp-content/themes/twentysixteen/archive.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ol½¹9¤îüi­~ee\n\0','Âjt:\0¨ë½í™°ÎB6#ÁŸ\rýÓ\Z1@täìÎ¾','',0,'?'),('zúÜ7,D\Z2Ü¤ã­‰M','wp-content/themes/twentysixteen/comments.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','þ/µƒ*Îyb=ùÇh5','>­Í©†A›\r«‘ ô9øÀ˜Iý ¦Ý´U9ôÁD-jy','',0,'?'),('´h³0šso´ÚPôm)Ù','wp-content/themes/twentysixteen/css/editor-style.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÚBz\n3¤ðt®ôaŠIß','¸ÇÍ\0ƒ1ÊZÃÁÃ\008n5Ý™NØ€:ÂUR©Ê¸èâ','',0,'?'),('©V;Å6\\áÌ†=Æ¾','wp-content/themes/twentysixteen/css/ie.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ä¾þÀ¦áƒ×ôÁˆj','Ð05i³Vór¾oõFêšÊ›õAµMâã–ÖY|C ´Ô','',0,'?'),('¡Êëñ_¢ìV¾‚Ù†Àb','wp-content/themes/twentysixteen/css/ie7.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','°Åÿ\Z^½Õ†&ˆëtImÝ','nt¸ CßE1¢*9¡üsÊ\Zž5åj‚sBa\Z‹Œe\'','',0,'?'),('²ŸèSƒWÑM#a·!ö%4’','wp-content/themes/twentysixteen/css/ie8.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\"‡v?ŠPþ.üT<WÐ','îN?’kÈâ¡…æ»x¿Iô_ÌG‚|Oëæ°T','',0,'?'),('Ñßëz…@ë«Ê%†´','wp-content/themes/twentysixteen/footer.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','&IX­oôÌÏOq','›îüÝümˆ)làü\'YÙØ_$’Üà€|x;–','',0,'?'),('<Qà4›¾,‘ZhÊ¨„|','wp-content/themes/twentysixteen/functions.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ãnÆ%ºµeøB€:Ó{','p4˜÷°ßž¿¼Îñvç¤±Õ]reºå¦$ÍCfJòˆ³','',0,'?'),('´^+„w7b=»ö;—E°{','wp-content/themes/twentysixteen/genericons/COPYING.txt',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¹B;–ëa`GÔ¢·Þ‰','öƒ+¯P4Õg.½àžÄ{ÎáÊþ^WœÄ/![qu','',0,'?'),('ýfw@ÅÊæÁ½Jš¾F•Ô','wp-content/themes/twentysixteen/genericons/Genericons.eot',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¾»S¥Ó©\n¹/;]s>','4À+_É[ž¦õ¼ÂÚÌqpv,Ç´{öl¾¤’œÄÒ','',0,'?'),('9„ô}ÜùëªŸù©!\Z\r´','wp-content/themes/twentysixteen/genericons/Genericons.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',')ld*ªZŒ”ôÒÚbÏ','(Ó5Ä\\&HFI7l24=}`›jÕVÇÒôùBj4)å','',0,'?'),('Ex\"‹ŒGC~2J°ÞÅ•s¤','wp-content/themes/twentysixteen/genericons/Genericons.ttf',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\0ˆ\' üNê¹›óÌþV','‹?‰þšÇµ·_-ÏŸÅòµb7b¤\ZÀ	«\'øfp>UG\0','',0,'?'),('s¬‘y- –AæX¦Qäg','wp-content/themes/twentysixteen/genericons/Genericons.woff',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ó÷;(Hîí-Jht¬x†','„¶;Òm†Ú}ÛâÅîÊÌe(~‘y0m¾= },','',0,'?'),('¦TfP¬%,5HäÄ4Œ¸','wp-content/themes/twentysixteen/genericons/LICENSE.txt',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','²4îMiõüäHj€ý¯JBc','¼ÿ\0v1£êsÔNí>cIDÙ¦¾Ö„Ié­0ÿ-','',0,'?'),('¢#që[\nhK+êµ8íémx','wp-content/themes/twentysixteen/genericons/README.md',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Äí6 ×ÙñV\0×ëÕè','Ò•RwÙ&8J’ñŒie@¤í‹î<Må}¾<,\"/d','',0,'?'),('Öò©—¡â¼‘Bœï—W','wp-content/themes/twentysixteen/genericons/genericons.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¦P\rß6ÆÝXw®üxÓM',')å×À@ ÖÑµv©P½4\\W*Yôž\'à-cÍ|ŽŠúû','',0,'?'),('»Cç~gI/¯‘Éi_D','wp-content/themes/twentysixteen/header.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','«QFBN›á!U¬aî†ìÆå','ËÒÒ…P©„aÂûQÆ[û+}V¦Kˆ+ø¡Hñ','',0,'?'),('•Ñ¼RíKd›âåþäP','wp-content/themes/twentysixteen/image.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','²‡Ñi%8¡W÷’ÕO','­FkZjË]’˜‰”ÄÇ@í´Hea½îÑ‘Ûž','',0,'?'),('‚üç]]Sˆx»^ö6Ö','wp-content/themes/twentysixteen/inc/back-compat.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','››Ë€^†lê®tñßŒ','ž1ã`ÝEÏæj°û7ƒú+._¸˜ê$Ùö3â³è','',0,'?'),('f™yÄ²ŒÆ¼vhKŠ','wp-content/themes/twentysixteen/inc/customizer.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','x¢	zCåH„\'[ûÃ{¢–0','Ý ~Ìå[Ù¡µà}›ÖrÜªKùäÑê°m0\\','',0,'?'),('xÛk©€ñM‹^îÞ£O','wp-content/themes/twentysixteen/inc/template-tags.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','æßTp¶s<÷´\\©sw¨','†ŒÚgjqóMà±]+¾šv³LYÈãÖ¥-\'©)}³ q2','',0,'?'),('þsw­fòPrÙÓu¹;','wp-content/themes/twentysixteen/index.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','*±³(¼¡5¢Œ±•å9*4','‡tœ¨QK½µÍr°”„ñš!à·ò³Ö}^—Ò{','',0,'?'),('bˆÊ¡F1t–=ªÇâÞ	v','wp-content/themes/twentysixteen/js/color-scheme-control.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Z•ÉpáíÍö2/ù>)~Oz','L§F\"=ô‘¡§	*ôFç_Oy‘†{ìðöóJ*v	','',0,'?'),('ªMlØ/AÉóÏqÛ·Þ-','wp-content/themes/twentysixteen/js/customize-preview.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','2A¨Àóp$Õ£±JTÐ','Ïhjµtÿ€××âí\näÎÛú:º“W6TöÎÈ°','',0,'?'),('ÇÉDæ…&ÔMê­EÖ*Þ©S','wp-content/themes/twentysixteen/js/functions.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Aê*”g\ràáƒÄ&+gxC™','\\ÖXŠK±D\nR+*%PÞÐè}q‡¿Ø8¤\'FsË‘Y;','',0,'?'),('¼é58R•¦«yx‰Ÿ‘„*','wp-content/themes/twentysixteen/js/html5.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','^é{1P\'Ú`î®âàK','‡R³y1N…hu¤Â¿ëžÏÖI}€Øžöòñ)i','',0,'?'),('>#×Öøª §Ñwt ’Eº7','wp-content/themes/twentysixteen/js/keyboard-image-navigation.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',']çí\'\'Á“éó/W—¥ˆž','ž)4voøê™í$úE­(ëv…9DF¦ß\rîÐU','',0,'?'),('ÜMÞ,TÉvó\Z\0¶\0(ÕU','wp-content/themes/twentysixteen/js/skip-link-focus-fix.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ñ\"B!åîËH1­æ¶­/Ps','ŸòQ¸Û+oBÞVô·à¿j„á„¸S‡FGZÒ¾”¼','',0,'?'),('Ï€¼3¦ËÓ°ÆÛ!Â&','wp-content/themes/twentysixteen/page.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¹éoÊájtÌmúJp; ZÑ','˜øÊ¾Õê°	\0‹ðpÊK¹Nò„í ÎÓrGí¥ý','',0,'?'),('6±ÝàùßtiyÑxÙ¿','wp-content/themes/twentysixteen/readme.txt',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','³5¹Åì/ÚöîŸæ\'5P','¶“žŽÅŸ}¦®»º¿BXÖ<¤¾‰bwˆÒÎÎ°¤F','',0,'?'),('ðBõÈ°º.ºã\0¥7ÆþÕ','wp-content/themes/twentysixteen/rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','rY-¿Ãó’³Ò–Îà@_<',';-‡¦5Ë©­ìàõ¿‚Õm”ˆN…&Ãc7¶|˜¦','',0,'?'),('xÙ,Â¨þ¶N2DñµË±','wp-content/themes/twentysixteen/screenshot.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Þþn\\#J³/<WÍ','/ód\ZÖ…–¨[U[`™{,ûŠæ2‘·ä|1Wê[Ìš','',0,'?'),('M…ã“2öÎ­Ý\"Ò@á8','wp-content/themes/twentysixteen/search.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ø¯veF@ ·1aÂ','ó=2gNò’\0 “|ŸG‘6©R˜VMã¯\0€xB²¼[w','',0,'?'),('FbÙ‰®«QÕl¯š¼¢C','wp-content/themes/twentysixteen/searchform.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','‚ÛÔ›h¥u%Ð>¼×\0#^','zÄVr°¾Þ;æúl?âq¸¡Þ#R–°Sñ®Þ6OA','',0,'?'),('®€ú‚¶˜Ðlûúü‘Þ­','wp-content/themes/twentysixteen/sidebar-content-bottom.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','+$ñVD—<ªž:tø*A2','ÏŸ¼Ï\n¸ŸãªÔI{¿cqŸZd³ñ™6¡XdÚ2','',0,'?'),('¸_ŠÓÆßBa¼²¦»PG;Ï','wp-content/themes/twentysixteen/sidebar.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','êÂ˜¯¶&·£úIë~r','CÌ÷¡©ãoCX RÐ¥ßîO`Æ»ØGÍ9ÿñÇ\n','',0,'?'),('Ôú›&U°ŒÿäÊåkü','wp-content/themes/twentysixteen/single.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',' ú>°W;o]³U£ol~P','Ý÷?x•vøÁ Þ&†W“ª=™²DçãÍíïX*\'\Zý','',0,'?'),('û:Ö;:-s¦Øç5\'’','wp-content/themes/twentysixteen/style.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','BÐü›ß4”]9ÁÊk-µ‘a','´ë6° ¡ü²EE§‰/½Ö eRÃd\ZÆ®3àéß`yµ','',0,'?'),('Ï†K	´Õ¨LŠH:dgÅ<6','wp-content/themes/twentysixteen/template-parts/biography.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','<]_×¨´€ËoƒuNB’','nó 	4Òö\rI.±)˜3hö±Žhvû&šÁ~ì–öB','',0,'?'),('4õBr8Xùs)­“‰í','wp-content/themes/twentysixteen/template-parts/content-none.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','x YB©·jŸ¸¾„yö¥','wžP~¨.;òg¹ï4%%&9Ž:G·òÅÎ&¤','',0,'?'),('CðL¯›àîãL°JÖ@×Í','wp-content/themes/twentysixteen/template-parts/content-page.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','sEÕ€EË*¸Æ×È·','¿%–ê\"4¬›ÒÓ»‹zP±\rUVJýH½8<ÞL','',0,'?'),('•¹sK—‡¦ CÂ·ô\\G/','wp-content/themes/twentysixteen/template-parts/content-search.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','}A9 ÐÎlüc\nOW','Sž‡Íâ%MòOßõDÌD]Æ8©0øè]\\k¸','',0,'?'),('ã.”ˆaZžø—èÅjø¨¾a','wp-content/themes/twentysixteen/template-parts/content-single.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ßcYžÄoèLxâíú–wF','»KÃ›wè9ý¶T1­l‚ÍJ$‹mè#XWî©óÊým','',0,'?'),('ØVÈð²ñÛœéø‘}A','wp-content/themes/twentysixteen/template-parts/content.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','‚‹$çŽó/s=N°œž°æ','‘«Ÿ¶Bt¡‹ßäºT)š»aüHþ©s®þvªx}úŒ>','',0,'?'),('YyØÒU‰²˜Ù¢Íû{à','wp-content/themes/watch-hill-2017/functions.php',0,'ÍU‘b5ÍTq©?¼…Vá\Z','ÍU‘b5ÍTq©?¼…Vá\Z','g”UÉ¾é5-Ñø	ü^imQ¸ð uG*Çtùj¹5\0','',0,'?'),('‚aÃ©ªdGöß@•\r','wp-content/themes/watch-hill-2017/js/jquery.matchHeight.min.js',0,'“®Ý™˜g5:(±ï;~©aK','“®Ý™˜g5:(±ï;~©aK','#{éNë*Óúq\Z˜ý¥Ü5Î}­¿\n“$ƒ?tüÞÀÌ','',0,'?'),('[ó’IØ\\šVÕ?!Þ','wp-content/themes/watch-hill-2017/js/jquery.sticky-kit.min.js',0,'W/ûÄ’=‚?‰³Î3=Š','W/ûÄ’=‚?‰³Î3=Š','t~DD¦ñû†wÍÄU+Ý¸¼+ôåbøY†í6ç„SXL','',0,'?'),('][òµ1G_œg˜î}{÷*	','wp-content/themes/watch-hill-2017/js/responsive-menus.js',0,'6HB&;¸ÇyÌÚû¥õt!ž','6HB&;¸ÇyÌÚû¥õt!ž','•Xª’ß£õ]/«þåzlUÍ‹×àÒ7aÖúT¹„!','',0,'?'),('ò¬Áßž\'xV™×=_š)³¹','wp-content/themes/watch-hill-2017/js/responsive-menus.min.js',0,'ŸßTè¾ä\'ÉøRfz‘Ù','ŸßTè¾ä\'ÉøRfz‘Ù','¶>‚6^ç¶HÛZCÞÉƒ7HU¬$•Ê—„¾têDµºB','',0,'?'),('¤z€Õ®¼Ï‚ÑUÕÈµ\rßÓ','wp-content/themes/watch-hill-2017/lib/customize.php',0,'Œ¦«Áät•í	½ÍÖ„ÿÓ','Œ¦«Áät•í	½ÍÖ„ÿÓ','µ\'U_üjGrXm%NØ‘2½“?’tŠDd8jgX`ŸÅ','',0,'?'),('5¹õiKv><Ph+˜°jã!','wp-content/themes/watch-hill-2017/lib/helper-functions.php',0,'ùëÜ¢ïf/ŽNK¦X€>','ùëÜ¢ïf/ŽNK¦X€>','>M™ŠUæI¡6Gâd¢¹OžÙ³¨ÀA \\á\r|ú¬','',0,'?'),('‰	‘ô³\n|jãÿM¾ß±q¹','wp-content/themes/watch-hill-2017/lib/output.php',0,'ºHñ·AîôºÖ6îkŒ÷L','ºHñ·AîôºÖ6îkŒ÷L','õ¬»–¬¸ïŠà¶€š+^ðåµ9*\"Ðš(>ÙŒV¬\n3','',0,'?'),('ö7bówi(cŒˆ¶˜T','wp-content/themes/watch-hill-2017/lib/theme-defaults.php',0,'^Y¤ŽsÕ¼Ø†å=ê˜','^Y¤ŽsÕ¼Ø†å=ê˜','¿Ý+‚f›?ïýJÙùµ¯P;QêË-B½(f’Æ¢g‘','',0,'?'),('#ßªI—‚¨gJÆ[VCï','wp-content/themes/watch-hill-2017/lib/woocommerce/js/notice-update.js',0,'¹®ŒÔòÕ!ŠÀvß9{','¹®ŒÔòÕ!ŠÀvß9{','8rËt÷(Ãè…Ë™€Ï‹¡rý’›„½k\'´Y†>ïø','',0,'?'),('ê\\}Þ$³P.Ñà¶léG','wp-content/themes/watch-hill-2017/lib/woocommerce/woocommerce-notice.php',0,'š2Í–Ù.R5<ÛãŸöæE','š2Í–Ù.R5<ÛãŸöæE','}‰˜7«iúZ¢E¼Ê)4 èÆE€ò;ßÒÇŸA®s','',0,'?'),('f=sëÃÏ.:~Ìk®KpÝ','wp-content/themes/watch-hill-2017/lib/woocommerce/woocommerce-output.php',0,'íM³f]bkñóùJÀÐ\'Ü','íM³f]bkñóùJÀÐ\'Ü','½žâw$\"¹ÃÿÁ©OÖkºƒ¿-&J‡pÍÞ\0HMz»{','',0,'?'),('=òÞ–«=èÈC 4\0sA','wp-content/themes/watch-hill-2017/lib/woocommerce/woocommerce-setup.php',0,'ï¼`sñ/àà`d8ç»\r','ï¼`sñ/àà`d8ç»\r','ë´OP8\rQ«“8sã=>Ï[ÍñÅKdYu>WÚ¾','',0,'?'),('Ù75ÃÔír&:øÙJ','wp-content/themes/watch-hill-2017/page_landing.php',0,'ÞË»0ÕžV+çÓ¥‰—­','ÞË»0ÕžV+çÓ¥‰—­','¸Þ|s¾¸¢5/±Wžè\\rÔ¿èhnOiú ¦õŸ','',0,'?'),('&Éßë	PðshcusS','wp-content/wflogs/attack-data.php',0,'#Ø­\n¾îÅyIb½\rÛ\r','#Ø­\n¾îÅyIb½\rÛ\r','l‡Ž4Eq®{¶®‘  ¶ï×Ÿ\'wg×31 c®w:³','',0,'?'),('ÓU÷€nÐ/|r@Úªò×Á','wp-content/wflogs/config.php',0,'+X@KÈøvNÐf†$€|v ','+X@KÈøvNÐf†$€|v ','k)êÌÏ;‡4T_AÏO8ä»áèÝå‰úˆ§Möpnm','',0,'?'),('ÌAÂoÚ!ÌVáêÅ³`v','wp-content/wflogs/ips.php',0,'lC¤dbï.§Ë´ëƒv','lC¤dbï.§Ë´ëƒv','Z][W‹Pš}Ã,ûþ¿–žƒ7*öqäá\nãæÆ‘¡á','',0,'?'),('‡ž!¿ÞEª©S7x–ƒÈæ','wp-content/wflogs/rules.php',0,'ÈÉ÷\\úD¹qdÏl§q¶','ÈÉ÷\\úD¹qdÏl§q¶','8:Z;ã…8‚,ç=®’Ò,ðåü¡‹É©ïZ8+Ë','',0,'?'),('ãaÝOj\'÷Å»D*ÖV4','wp-cron.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','×WÐênâ+d~jËÞ¿\0h?','kT3ùÍ¦žÐ—’«ôˆô3šœ­9F æøìT÷ã','',0,'?'),('Ž„ƒùvü´ŠÏŒéŒY9Ó','wp-includes/ID3/getid3.lib.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','øf1`8cwÛ\0Ìï:','€ÍšB.Öt¾†m£øžÙ“/ÓgÑÉbïGDdÈZX“','',0,'?'),('dõå:w¤îÐOÍÐ†','wp-includes/ID3/getid3.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','}Œ\r±ä·w\">ÖXû+o','ÃŠ?à‚IÍ½*÷/ê‚(Yf–8…ß&¬lÂÈ°w','',0,'?'),('9ÕÒ¢Õì9ñëd\rëŠY','wp-includes/ID3/license.commercial.txt',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\n;g–üJ€g­²ÆÙxAŽ','»t_2¿xÊ<±ì-Œ£íËœwqÝI¿g™Éó','',0,'?'),('}ïÈæŠ\\Lü¯`Š§äi)','wp-includes/ID3/license.txt',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','5ÙŠ­ø÷ÌhQ3fQ÷¦k˜','?\ngÍ=Ì2ð.ßU[zi¼ÀèÍKý°†à¡ó§','',0,'?'),('D.÷îˆö:•\0¾¥SÔR8','wp-includes/ID3/module.audio-video.asf.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\n%\r„¤8†úƒ;eÖ}yó','8Ç}|@ÀsÌÐÛŒ\\}X»†ÑÿÌã\n==ŽéH','',0,'?'),('x	G!Nä·$¥.šdŽTbï','wp-includes/ID3/module.audio-video.flv.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','%d™ŠD©‚±óAziÄ3',':´R`>:œŒí±Î,?hdC ˜kft!ãÆ2á','',0,'?'),('ÖoÒ¨*Kîêo˜7{ƒ <','wp-includes/ID3/module.audio-video.matroska.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','k“ô·+8¶Ñç¸t,A^ø','ÝŠYx÷ûòô)¶tÞt¤ƒ—Üat08J>s‘H','',0,'?'),('TŒŠ³vm?,³aÞéãT4ê','wp-includes/ID3/module.audio-video.quicktime.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¥†cSe	t{n×æ›‘¹š','¸ÏZð’…Ë¤•²IÝLZã~b±|à{‡	«‰','',0,'?'),('ØÀ\ZvŒI:wmä²\'~K-','wp-includes/ID3/module.audio-video.riff.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÝTwþÎÜ÷`Øã<„º›','â1çhþ\0©‘©E•ú¹ *Ç=á«Ö¦ÚxÍÐ','',0,'?'),('”±¦®LØâ6	ØÀè×³','wp-includes/ID3/module.audio.ac3.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','®TÉtKì„€¹1	³Û#t','î‡~ï‚ùT\'aHlü°Ñ>\0|cêA´`Ð','',0,'?'),('Ç³\\ªÝ_L-Y€ÅŒ%$','wp-includes/ID3/module.audio.dts.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','óêV`ÉL7.¶ôl] ','<y\nK–?¼ÑõPër6á¹²Ëv#ò….H7/ò”','',0,'?'),('@ø‘+âTÎ„\'··¥Ù¤','wp-includes/ID3/module.audio.flac.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Pê|ˆýsqÓí;Ã','ò€«‚ŽÕRÔU¸¢è oÓÇHö»„~ríœ¢É•±ñ','',0,'?'),('¾ƒ—ñNéÄõþ@½(º3—','wp-includes/ID3/module.audio.mp3.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Gâ÷‰©Í¿èq´Å\0†¹','xÀ¸EŽÒ€õZÒ%LþÎ·¼Ý‹K´·¯p­¼½7öï','',0,'?'),(':®|LûH6(Îßcµg‚Ö','wp-includes/ID3/module.audio.ogg.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Y„=ÀôZžVRê¶‘„','jÞˆuÖ˜ ´Éû >…—Ì°Ïéú\0µák–ø²ØKÐ','',0,'?'),('Î_)-ª]íËŒkO	Ã÷Ã','wp-includes/ID3/module.tag.apetag.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ˆâ€bgV;êptÞ\'Š„Ô½','á\"¶<{ÐQ`ì¸¤¯~DôJ»RÙâpÿåLU½ù†','',0,'?'),('ÁùÁ2zsñŽú4xÎEB','wp-includes/ID3/module.tag.id3v1.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','èJzB%”Ó[gìX#€½','júlGbÿ²W1ÓªcXÉå­`£Ü#ÌIaã*jŠ','',0,'?'),(',†áÔ@µšhjäqrÞ’ÿ','wp-includes/ID3/module.tag.id3v2.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','zaÇ¬/_óœž\ZÊó','-6¬ž,ÂÈ7ÊŽ¹Ž*ÎfÓËaÃ¬òÒŽFSíz_ï','',0,'?'),('‰? 8”÷˜ÑÉZÏÐNÁ','wp-includes/ID3/module.tag.lyrics3.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','‰¿ŠSàV8“\Z¥gU¼:','”ß†\Zãñ\rÅ7Ÿ9$EŽ63ä\r\rßz„Â>‹¯%B','',0,'?'),('(~6vqVì0ô{†\"','wp-includes/ID3/readme.txt',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','“–ßáÆœ“Ž±VLN[«','öƒ>žþ¾/fq®¤«˜S¢3#SŒ¡þUO·','',0,'?'),('i¢™;Ùõ&™¾oâ®?','wp-includes/IXR/class-IXR-base64.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','î*6ÖÕ¯D¶Tæe™»','?F]Lª2}‡Ùë\rSþ@bÑ2÷O­oÇuU\'O„ª','',0,'?'),('®û	ýÓ­gÈ±!n‘P‡','wp-includes/IXR/class-IXR-client.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','QÄ£KÎAÏ²]ÚŽu…YQ','¼‚UÆF™Ó\"GòM|L&©8K::DßÓÜo¡t','',0,'?'),('¶Ádx¹ÍÖeBÀÝ™ÏŸ5','wp-includes/IXR/class-IXR-clientmulticall.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¯3@¸ëÃS¥\n_¬é','ñ€ÍÔÒõ–!™YüMxªåômëñÕ’é©Oó°Åù»','',0,'?'),('ZéÎ=Ó§Årc\"²”y®','wp-includes/IXR/class-IXR-date.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ŠÊ=ÿ\'=c.Ø§†¡ig','¾`í™H¾ÿÕ_É+Ú¦bgá“DƒjïŒd¡%Î/','',0,'?'),('^H\0õB|ÛØ4Û@zÁ÷','wp-includes/IXR/class-IXR-error.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','g6\"¬•íu\\\'3¼²­œbŠ','*?ÍÛ§U=Ž?¨,]¤Ú0=CÊø““ Z-†6Dq.˜G','',0,'?'),('$óÏ«/ñþ¥­!¯²Cæ','wp-includes/IXR/class-IXR-introspectionserver.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','2Ua¾wä<øIw‘p†O7-','ƒí\n¾àÃûCþýžPEQ%×D\rÑk*žXéÆÆo','',0,'?'),('ÿ—~%B—\0ƒz˜îõ?o','wp-includes/IXR/class-IXR-message.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','C8öåPt±FÑAnÿUÛpx','Ì‰œº‹øb7üƒI¿˜¤ a”¦ÓO¦\0xw^ïK','',0,'?'),('Šwì\ZÞdÏ¢óü\ruD\"','wp-includes/IXR/class-IXR-request.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','%p.<SÇ¡ê™Ôz1Ï¢','Qãµ*kË_}’á2ƒ¬é>Tûq<Ê_Sß:ïQh´','',0,'?'),('—ÿµalòVš?Žfý\ZÑ‘Œ','wp-includes/IXR/class-IXR-server.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','‘ów¯\\xT˜>ŸÊ:§ÿ','™ïTE¿©UÈš©5$Yªò¯ÿ¸áž¾µÞ`q³²','',0,'?'),('3ï£ng\0¤¿\\\0	ñW','wp-includes/IXR/class-IXR-value.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','’fû>¨5lÍøj\0fè','¾?hœåø¬²Í‡ X¯ØUPËO|H$‰1¿¸ž','',0,'?'),('¿¸÷ò\\èM¼MøF/±I','wp-includes/Requests/Auth/Basic.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','gýØxÌ„ß	4UÖ	k!C','.ÞÐ¹hÜdBiHÉ€àn“s·‚ˆ¢á—‹\\±ÞñöO','',0,'?'),('J¢>×æï£Åø\"Íä/','wp-includes/Requests/Auth.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','1—ÒRÙW²¬Ã”O[üÖJ','bOÚQâwÃ¹ìLÑ Ã¢þ©¬–™›ƒ9QÀÔlrl','',0,'?'),('i1üžE~N¬IâAÍ”àÆ','wp-includes/Requests/Cookie/Jar.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','é0_±õ&p µ\"4Ù\\•','c÷ä!Â#B§i*+\"ö\r¹nš÷çIÆˆ¼XÃ‰úÊwÙ','',0,'?'),('Sç^ù7jK5I6Kæ2!','wp-includes/Requests/Cookie.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÑC¯é›Å(2+’y`¤Ó','T<Ý!‹MÑë,Åzì[†~>VÝ2ù…#}‘ÍE)÷˜','',0,'?'),('µÁOÂ­\n	„UÉí —Rb','wp-includes/Requests/Exception/HTTP/304.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ó;F4ÎAÛIïÝí÷T«','v¦ÓC‡	aÎ\'FÞ;€øò±zÚ»”(eJí±L','',0,'?'),(' <@¾s”†î\rÃÅF¨Œ/','wp-includes/Requests/Exception/HTTP/305.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Xø÷\0Këæ/`¡,û«&','HÄÆŽù—ÝË+@µIë·Üb‡š^=¶QvM6_iL','',0,'?'),('8PÖ§ê\Z¼HGE}8Ú','wp-includes/Requests/Exception/HTTP/306.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Wsz¡uNPÛjÜÉòXu','4U¾§Q\r1#_fº­¼¢¢°H¦û’*IÑdl¿Ÿ','',0,'?'),('HñýYfUHèu„pd','wp-includes/Requests/Exception/HTTP/400.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Qån‡Œ»VJ¸RÉxû5üÐ','³d«>Ä÷†¼º	¢iìH®º¬ßb$ª&žnèàê6—p\Z','',0,'?'),('/²þ}ã¦¿Lú;?Êw\\','wp-includes/Requests/Exception/HTTP/401.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',';*¸¹Ëý‡º¢?ÁdŽ™@','YV$‰óÄÿ/ï¥Ÿ@=²÷…Ãî»V-½Ødc°','',0,'?'),('*\\TÒ)%]óªyiD+','wp-includes/Requests/Exception/HTTP/402.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','`øYÕQPÚ\nz•šÉóGÖ','¥g˜©NQ	µ ¯”Š‹ð/æØØ	·y5“¯‘¯êÎ¸c','',0,'?'),('œŸlÛÀ3.	XN‚','wp-includes/Requests/Exception/HTTP/403.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¼Ñ`è÷\rÇoû¿k3·þ1ß','‡Iìö©léE†Kà°Ñ¦ø¦?Z£0JT¬Úò‡âáU™','',0,'?'),(';#¿	n©åÜ%\"õù','wp-includes/Requests/Exception/HTTP/404.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÔÌcƒY\0…ysø’<M','ÂÕ-!V°»>d¦*jPŒFÝ	È;QÆµ±šN1aGœ(','',0,'?'),('Y›´¶ŠbÚ§,Åý÷J','wp-includes/Requests/Exception/HTTP/405.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ý8Ñ‚Þm!²Ò¬³­ù','jòbé±íš„Ìð^U¨sv8ÑÂ$b´„Má3y’','',0,'?'),('ŒòFj]pÛ ÒíÜAc\rp','wp-includes/Requests/Exception/HTTP/406.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','KÈËlïhŒržÜ9\"\0¬',',aYÓà}PR6ƒêã`½)Kíüfžism ¸¹è','',0,'?'),('”×èÿNt»Kô£Uò…ï','wp-includes/Requests/Exception/HTTP/407.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÂÈéõØv‹½äÖj&æÆµ','>\ZÔ×Û]Æš–BÌXv’Ø°c¯šñ¹Ó.N2ÂNÒ¹Ð¯','',0,'?'),('º¿‡\0n:T‹q}K ø@','wp-includes/Requests/Exception/HTTP/408.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','@>1d„IXÅO˜ìÈ·v‰','éq¬™ò*ÖlmKÒ£kÄ\"ÐMÿQ?Êp§’aØ‚ç¦4','',0,'?'),('Xš¤¾v–\ZÆ’¯Š\"ë$','wp-includes/Requests/Exception/HTTP/409.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','™ZÄiæ~*=›ëþ©¶','‘÷Ç_MÔá8Uü¼«.pF«÷ùÂwŽ:E`ðMBâü§','',0,'?'),('…ý›T×ì–‘µ:t[¦ß','wp-includes/Requests/Exception/HTTP/410.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','q¾O47ßºÝ¥/8X!„á›','—¥9†f/3MM;#GÚªWO&’tSûO\Z±­ÀÆ˜ò','',0,'?'),(')ø”|ü{4æ+]ÂX(','wp-includes/Requests/Exception/HTTP/411.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\'¥R¡äMö.ÊZ`G–','ö…èU‰^¾¬ª‹9pÝô&ÙîÍ`önM{¬ n¾L','',0,'?'),('†)ÀÒâYh¨.ò;¼èÅ¡','wp-includes/Requests/Exception/HTTP/412.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','%¸„IÜ·¡¨=Ù7Š¥VÇ','S÷A•4c\\DÒ56-ŠÍ#¼¾d*³ŸÒÒ½Ó¾Rýþ†','',0,'?'),('	˜.¦Ù5uaÎWkJø˜','wp-includes/Requests/Exception/HTTP/413.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','é–<Á]ÉY·ÙÿXL¿Ø','\r…Š}ÀäŸ¹-V±Ûß°Þ\'eCCÊ…ãe-2,0','',0,'?'),('[ÅYÁÐ44óOr¶•l0Í','wp-includes/Requests/Exception/HTTP/414.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¼¦]Uâ@žö¥)Øæ¡#h','¥HàÁ»ÔÌÆÚižàíc÷!§™I).ehˆµ‘¯·‰','',0,'?'),('Œß}¥^72Â‚„ˆ·®','wp-includes/Requests/Exception/HTTP/415.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','XÌ°TbêÌ®£JUÃ','v%Ê_Ä\0Ðb$m‘&`ëó–Å(û=™m<Ðb\Zo0p','',0,'?'),('žg”Kë;ûqF»VI}þQí','wp-includes/Requests/Exception/HTTP/416.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ù1‚N9ã–ÉªÆa€Dxø','Ú(àÝmybVõaIÅjWp™Œ¯(!AéðëÞ<(±X','',0,'?'),('P&_#Ï\'ÜzTâ†Žs','wp-includes/Requests/Exception/HTTP/417.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','BpjŽhO^Àc\\G #','€˜€LáT˜²Ò˜$xDsš^ùh_!kC»\"1\'ü™_Ô','',0,'?'),('ÅD€¬CèèÔÃF}±Ë','wp-includes/Requests/Exception/HTTP/418.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','J!ºâ˜ñÉþÚ[“þ4Šó','4 ¬6éŽ¬½ìM&ð$!2d<žª\\	|\\—?gü\n','',0,'?'),('Þ]PªJQÆ€6oÖ¢÷•;','wp-includes/Requests/Exception/HTTP/428.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','š—»i÷Bäå}§^®t*','CêO¸W%“®¤tßÞY×|ÂÕ&‹0VÂŒÐ\\Ì','',0,'?'),('¿O/´Ã¬î`|g¨_\0','wp-includes/Requests/Exception/HTTP/429.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','SðÝ%|F.Ã Zd…³Ì','ô‹!óT“ºuwm¡t5Éo\nÌ2A\"k”ßšz­','',0,'?'),('ŒÊš¼{€(ú‹Ð\\iŸ7.','wp-includes/Requests/Exception/HTTP/431.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','àãs|b$ÊÕÑ“<‰Ù','ëê…±¬/Y6_ ì ÑwÊpk²wöÁ´0ÿÿ§','',0,'?'),('¨\r²f æhÏ8°!','wp-includes/Requests/Exception/HTTP/500.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','À¯©Ækmƒ\n	HòMÿÚ','FO—¡ÿV3\"øªõœïÔ¼£ª!kÐPò','',0,'?'),('Ùl;aoò´˜â¹~ûGÖá','wp-includes/Requests/Exception/HTTP/501.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','eÚ¸04ò-?èõ×‘¨5','“k¥Gå¯²ä\nÎƒCD#¾6Èu\ZëÖ„EÚ£@K1','',0,'?'),('çâbm€%²‡ŠÛÚ­Ö«','wp-includes/Requests/Exception/HTTP/502.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','|È:l€ÏzùÕ!{ûGÿi','ñ/’ˆ¿~UJO¤.Å€#µòEá‹ÿú5´*Š\'CÅq','',0,'?'),('nÅ¢¨)á®cˆ›Þq^\"','wp-includes/Requests/Exception/HTTP/503.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','9÷RaÃŸCô`\0ÔUT´','¾}¶¬=3xûA9¼ªñËl«p\0‚Æ°Ó9e.O','',0,'?'),('Oy™}MaÍˆ_Öú“I','wp-includes/Requests/Exception/HTTP/504.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','×mŒÌªDb“ Š*¥','ù<¯˜£“!B¬|$k¨®¼Ýˆ # Œe¬i%0','',0,'?'),(' Ì\r$	QŠ^C(ØÀíäõ','wp-includes/Requests/Exception/HTTP/505.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ž]A	3æ[/CdÁ¬Þ','Ëâ­›Åû ië{ÈPAÄÍ†kÎûñúd©¤‡M\n©Œ','',0,'?'),('ÕuG#ü)¹|Ã^´¬¸6','wp-includes/Requests/Exception/HTTP/511.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','unšN<KwøÐ›¹‘Ñ@','úóIø¨}7+Æ•¤A÷Üàlæ¬¿B÷õtÛ\'s÷ðt','',0,'?'),('‡Ÿ‰û¦¯>2\\o†)¬·×','wp-includes/Requests/Exception/HTTP/Unknown.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Údlá«¶2¯AûÏ\nW¬','@¨ëþâ3Ù#\ZÐ¶/*t\rÎÛ6<Xïû\rˆIF','',0,'?'),('ÊÄüƒWå>ÄÒŸ¢ÏïþÈ[','wp-includes/Requests/Exception/HTTP.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','èÕüh³ÆúäRlrÚå','oýEÂ²tQQbo\n®þºïrî¡QqÚá\"/±‚Ž…','',0,'?'),('ˆ¯Iy-‚\n·Å„‘','wp-includes/Requests/Exception/Transport/cURL.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','…6TÍg*\Z›:	¯x7ßá','Å]ÐýÇÂ0Ö™8ü‘Êp#ü~†õ\\o±Ó=1³Õ','',0,'?'),('ïrI‚åíê–É€5 ÁF','wp-includes/Requests/Exception/Transport.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','«»løÚzèê J«^Ñ','¦ºûîÄº¶ÌŒ»ã&Œù¶Ö³–†Ý4@78áíôp','',0,'?'),('TšÄ˜5VH«¬üP{Öô','wp-includes/Requests/Exception.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','‡›¬žú\0…«3é\ZÌRI','-@Ž‚g %ˆü§†ŒuON\\}@là°Ì¥f\'»ãó¼','',0,'?'),('àùÔ.Q}3ÒÙT‰','wp-includes/Requests/Hooker.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Å@%©a[Ñž/4¥á','t\r{Ökƒ?iÎkä•C\nLãðƒ‘bïÌ‡ÝWy','',0,'?'),('X–êM¾·šÃxÚ³üJð¹ö','wp-includes/Requests/Hooks.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',', ¥ ¹¨—gx¡iÎëÙ','ªÕšü¾”è Qûæ†D¼P•ÎØ‚_?yÑ`Œ£¡ø«','',0,'?'),('¥Ô í\\¹ÞÂ…”Tn€‘]','wp-includes/Requests/IDNAEncoder.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','×}­¢2ð›àÐP´Ø±','ÜM?ý~\"ÈÍu%Å[þ,l¤‹‰ú+?F-}±M)Œ','',0,'?'),('éTáB3º›GöÞ{','wp-includes/Requests/IPv6.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¥ßKˆNŠèñ¬knT±','þ=Øíln&ÎÑø¾„çÄƒæJÇÓ—µ‰£~ÄÄÞ÷…él','',0,'?'),('ªˆ}z²šî¤#¸€™‚\Z','wp-includes/Requests/IRI.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','52]ƒœ{ò}µù	`X','ÉI?~Ê4÷»ß]4¯ûÇ‡ŸK‚­Fªý\"v«I(','',0,'?'),('w´\'œPe¾úFÃ+õV\0','wp-includes/Requests/Proxy/HTTP.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÿÐæ/2Û½½¦¼¤×ð)','JÐ6d¢ãA—Ël{ÁÐ™\0¶Ÿ›ƒßJí¯÷îh','',0,'?'),('#y÷Ÿñt(‘$NTüt¥','wp-includes/Requests/Proxy.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','µ@k7µ\0×Ót¸\\*‡™G','¤w<PBñ®èZC÷kºSI¾Q!Ú\n}i','',0,'?'),('G Xeô·xïÅw0\\Éo8','wp-includes/Requests/Response/Headers.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\Z×Ã‚Ò¶A-§ô>c©`','ìE‰\nÃF		äõ²M«Ãß%{Åßa‘ðÚ`,à±','',0,'?'),('ÎYµf/÷pw™ÍŒ§','wp-includes/Requests/Response.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Îp†»·®Ræ«·Äý\'G','®õùÄWwYKL\nÅì	-*ýèÉ^e\"eÆ(_,g','',0,'?'),('U† $A=©HeØ|îzÈ–(','wp-includes/Requests/SSL.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','&Pgë\'A6¬(¾07TO','\nïQèóÀ4Hw@«³8<Sn-G¢aMÄRAÓ¯ƒ','',0,'?'),('c42j›§ÎxåcìÄd','wp-includes/Requests/Session.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','7øÊÝ†ü¿Î–µ¼ö}lŽ','e`Ý†à.÷Îƒ:Ž”jEó\Z³Ò° åè‚5ß\Z¨)','',0,'?'),('`Ø@‡¯ðü×ÚYEî!','wp-includes/Requests/Transport/cURL.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ä€Ú87a`CZàÑ','hI¯·© x<‡®þ¨ƒ%•Ûji°ÕÂ¦˜$','',0,'?'),('f¿¸ÙÌBœDêFr\r\rž','wp-includes/Requests/Transport/fsockopen.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','!îJO`­\ZüHñH?·?','Û?l;Œ˜]ÖË)O=b”¹•Šñ×Ö¹’\n™»','',0,'?'),('•Ò.ÉIOI¢P²³%)','wp-includes/Requests/Transport.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','œ™;Îkí‹¯K\\VlÆ','É¯O3e–ÍF»Ôã›†·Öv+¨ãÀð.r/Ü>Ÿ,','',0,'?'),('~A‹H„gç™éþ¦KT€é','wp-includes/Requests/Utility/CaseInsensitiveDictionary.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','µð:ÈÇR³KžroÕH2z','9yÔ†&/AX‹Hòi{b»Ó÷†7f‘¥ýrw’Ñã=m','',0,'?'),('ÐÖ/¨?Ÿà–ÚÛUñ‡ê','wp-includes/Requests/Utility/FilteredIterator.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ù¢ÙaŽÖx·%AªžyÓ','LÌC¨°UÁÉäØhU;4æn}Rm«¤x;è¨ÄŒÜß','',0,'?'),('œý—k’5SHåÐçÐ«','wp-includes/SimplePie/Author.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','4€qí_ðA‹%–Nw£1','n#¹O/ËjbáðwP&i‘Ñ#°ž_`ßÔðYÐžÃÁ','',0,'?'),('Uð\\p{Jþ˜OÃQË&','wp-includes/SimplePie/Cache/Base.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','”Cí¡‰»Ù2]œ]#|j','ÏoƒoÝÓÞàkj´\\0‘¼Ý[-¦d8¯Á;\Z3','',0,'?'),(',ŠhÉƒs?4B[Ë^Õ','wp-includes/SimplePie/Cache/DB.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Y¿OU£õ’.Üb¼ûö','ÂûÐdÕ*Y×Â®£¾s§å<!)Üƒ«…JØÂ¬','',0,'?'),('éÖçÙöV,E@†X‚šy','wp-includes/SimplePie/Cache/File.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','£=»@ìÂœÆB[	SÑ','‘9Ú!+†YüûÑæŠ6L$-„•fq&±è¶‡‡kh','',0,'?'),('ù‡†óI™:4PúUÒÙÀ','wp-includes/SimplePie/Cache/Memcache.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','öJU²¡…1SQ«„?¶','¹}kñöŸüäÒJ?é°÷dAú<a«C• ¤3:[','',0,'?'),('<)8T*.SuSÒÄºŸ','wp-includes/SimplePie/Cache/MySQL.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','è‘ÎßBÊC™\ZHÕxV‡','t¼‰ÙAž“BÙ ãB=)ÜÞRhO™“\" Çg©;','',0,'?'),('YÖ»Uª€ÕÏ}Ãr/','wp-includes/SimplePie/Cache.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','yü¢:ƒoMh÷vL§4','w!øÛ’¾?ÎìŸÜERÄÌS^R’L¡‡÷K—º”«Aæ','',0,'?'),('­ÌÝ\"Ü’³÷ÓÃnzD','wp-includes/SimplePie/Caption.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','½º¼ÜÊBjM­ög[ÄÄëé','×Ab\'¤L?Q°“LrtÙ\"½»¸í’2”Î«úË','',0,'?'),('µ±ã·q†KÑUÔjí¤','wp-includes/SimplePie/Category.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','º~ÈÌ?Ôò.\nÜ¯d»*',';ö³Ðµ”™=§SÃ@dc]rRÖ¼n˜Ü ×<¡Í6','',0,'?'),('µl&ö*‡©õñßõÈ&','wp-includes/SimplePie/Content/Type/Sniffer.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','|rÃói…UbÙlwìáÇÛ3','6%\"ï\\\\4ÚNÊ*F°´áŠ`ÙÎ“å\rL*=Ç','',0,'?'),('•ÒanµöV=Ty Xä','wp-includes/SimplePie/Copyright.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','½¿h¹T©Õ	UÌ€·Ëj','Áëb_$4…_Ãm2´ðÂB²åJ¢\\Ó5æß\"%	N','',0,'?'),('ØoÅÇ£ž	×£áŸf0¿Y','wp-includes/SimplePie/Core.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¤®©#¸òÜ÷âÔý\ZÒ','…ü»½µK 5(µœÚÐ‡Ï»\n-\"}x$f]. b','',0,'?'),('Í½3Âè=£¡OÁGÄ|~§','wp-includes/SimplePie/Credit.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','…ä¡MçŒ‹*>\nê|','©„N3ïïý$ãZƒ,!ðÇ<íñë°‚!9î\"Ý','',0,'?'),('¸š…P¿Of;ö™Í/ó×','wp-includes/SimplePie/Decode/HTML/Entities.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','E—^/Ï\rB†‘¥Z#”%/a','\0+½ù0…ß¨P;µPO†\' ‰^p|Ns¦N6’d´×ï','',0,'?'),('2ðì^(ÁúÊ­à-^x½¯','wp-includes/SimplePie/Enclosure.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','.†BënÎKûs]','Mâ®HâÚ‹Æ÷TYÇQ“µ6ÿ“càÈfÆ|hƒ','',0,'?'),('·\nfv 8¦÷á1·“™-I','wp-includes/SimplePie/Exception.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','	Kýv&œŸÌ<\\ÚÐS5','úwâ\'äŠÆTüËOE£[¸q:éSk!©¤ ËŽó\\','',0,'?'),('ƒ¶4rèˆ%ÞãÓÉj¸ž—','wp-includes/SimplePie/File.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','®º­kU‡6ê\n¯+ë)%·','’‘a.é%eý5ß+àpûô3‹d^bŠÝLL÷´T','',0,'?'),('ìPØ·úŒæ‚‡ÌºÆ´$@Ø','wp-includes/SimplePie/HTTP/Parser.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','W%ÇÐû4ß6¥6	','E@€àåð»Ì£ãBnÂ…bƒ8ªÏœNW¦è¥%Èá‘È','',0,'?'),('oZ0†š÷ùÑØÔ<cÍ0','wp-includes/SimplePie/IRI.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','nÿ Óæ†’Ï;a{‡_6õ','á±`VCS5IÙ®\Z;&>­x·$¯¶Þí-á&z+','',0,'?'),('fÎä ÙýÂe«ªR¹)Ú','wp-includes/SimplePie/Item.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Eâ!úCzì\0Žc<Ü§','1K‰Õ6]æáL™ŠÝ²ÿê]`rÔS{·¹Ul','',0,'?'),('ÂTB›¤O>ßv2íî}Ea','wp-includes/SimplePie/Locator.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','€s¤ÆÚ³;‡uvf^õêµ','<¹ÎŒ÷:9©/(\\ÖŽtlƒ]×Ç³^82æ÷','',0,'?'),('FFvŒ‘V;vð8/ž\rµ','wp-includes/SimplePie/Misc.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÎÍæyÆ-ÕØÒ^Î\ZK‰','ì[æ€J«úŠ‹KÇº—”¶Án3ã`ñ,\0»dß,m','',0,'?'),('ŠMj÷AÕM™ñOÞ\"If','wp-includes/SimplePie/Net/IPv6.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¥Fy!j½Ù€•”Ÿ¶´','·iÝé*8÷Çþ.yýÑŠìPªBÌæí\Z´Yˆeº°Þ','',0,'?'),('‚BÒóÙ‡Èv<Svç¨³','wp-includes/SimplePie/Parse/Date.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','î‚Òç\rÈ¯Æ¹eÒ¹Ïô^','âœF%6+E{#ìI\\•Þ‘‚a/äjqÅ¦¸X’','',0,'?'),('³tfF	Ör{™Ü‡ _I²x','wp-includes/SimplePie/Parser.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','R».äbçä§~ýÇëõ+Ì','×Jä2ù2<cŒÞ8ezdK§Û^Ä‘rè<T{ô#Êw','',0,'?'),('dâºhÄ§{q4‡2÷K\"ß','wp-includes/SimplePie/Rating.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','=p¤m	ÇKãØ¯atû','—\r[¹j²jÕ‚à¥rV…h`æFrESˆ´ÝÖ{b‘','',0,'?'),('}Á7 Þ˜æDHDÚPl','wp-includes/SimplePie/Registry.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','È¢æÀµÝ1v9d\0ðÙ¸','ÌÙ˜ý¾§Ç+Ôæ‚Ô+’NðÞíTœbRßÒõsãì','',0,'?'),('\0`Y±Ï­rG¦¦”„','wp-includes/SimplePie/Restriction.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','*qhdsˆ;Õy','û¾ÒuâÒ\\××Ô‰Qiçªg»œ‡DH	;\0ÇÌ','',0,'?'),('[±€à1¶YAdkö,','wp-includes/SimplePie/Sanitize.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','BØ¸ÀÏFµØ¥à®H¸u','ÉD„Õ>×Î™+ËN¹\ZœF˜Ç|#4“m=Öúóõ9cu','',0,'?'),('¤Ê0l±ÝjÆ0+%ò','wp-includes/SimplePie/Source.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Žƒ»ãàðS{³*Œ–ÿ','®¨ïµ4•†7Mj9…Šé|\0iŠÿ&Ä¨žªLu!¥J´','',0,'?'),('Þé\'g!Ž:–H™î),¾','wp-includes/SimplePie/XML/Declaration/Parser.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','±Úp(Ã…»BÉös#b','v‚Œ½Îã_¿ýØÖ6+qŽ‘æ£)Åº(1ª)§æè±,','',0,'?'),('ZÒŒ£[¼ø\nvâËâ	F','wp-includes/SimplePie/gzdecode.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Å8â¼†a—Ûal„4Ô','\Z93ÒÓEu™f\0–ä/Ü\\T‚k&˜Òo”ßH','',0,'?'),('Oþhu²G¯ýá²&\0ïLÿ','wp-includes/Text/Diff/Engine/native.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¯SöÕ„\r“ž$ÔT','SÏê\04â¡v@ÝÅ±`›DG VÏuÀeËRý’Bç«‡3Œ','',0,'?'),('Ç‚-i)ö.ø\\Îèæz„^a','wp-includes/Text/Diff/Engine/shell.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ZÞµÒ¶_œÓÑOÈoªUC','uNŠ/©Iª½µ¨$öËÕíÆëƒ>gÿÖgÄIAü˜Á$','',0,'?'),('÷ @ï;€ú*ÏÁ|¨°','wp-includes/Text/Diff/Engine/string.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',':±“=üM©Ã\0¬ïi)','Á¤áÆd™¾[«%ê‡nZR¹×`ó”²…éÐ','',0,'?'),('e½^#|Û¢TÐ©’ˆz','wp-includes/Text/Diff/Engine/xdiff.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ö¹ÈbŠt­X8šGX','ú[<¡0°Ä…—¿aD)tJûhí¿(C›[uH}sÒ˜i„','',0,'?'),('&¬‘•Rw?~„j­hJ¤D','wp-includes/Text/Diff/Renderer/inline.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ˆ\nån5±P´²ÇéÙB\'è','XèU.kâ»ºæ@-(•¶5¡N½‹ãîñV','',0,'?'),('3âÉfQ3àhð5[À£W¹<','wp-includes/Text/Diff/Renderer.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ü‡ ßC0µY7OÜ@ÙGS','EWjá+åãµ\\âÝ=Ñð’É}.÷Á1\r´ö|','',0,'?'),(']B#Í2èzÚìúbUœÉ/','wp-includes/Text/Diff.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','lpÕžžšn›Ñ7q“ã*','Ü7Æå	¼iëHê—“çåM2Üü33}¯ E€ÒˆŽö','',0,'?'),('-kdÏ¯‘ªXßw\\7ŸÀ¯','wp-includes/admin-bar.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\'c¬®O(Yô®E Re.Å','é°ê‹îbì¿Ú¥ÈÒžãÜZÒ!ªÉùå','',0,'?'),('Guµ^¨/1ÆÔÕSñŽ7','wp-includes/atomlib.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','bJ3Ö”å®ek•eÖ\'[','Û{Ê)ù­NÕRKÎß¬î<ÙÊšÐEYGŠÍÑÉ×','',0,'?'),('&‡Sì§¿o¸$æ÷0øn','wp-includes/author-template.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',',¥ð%ã!áSÆ^÷Ò','1KŽ˜¦zjõ»’o¤ÿjFã±#ús.×¯ûÓ•Or','',0,'?'),('Ð>›sËl›WD7õM°','wp-includes/bookmark-template.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','´g[lgP	‹ Œ55\"ê','¦d¸¾ÞÉNd=•3›§­ÖªHƒ!–  ™À','',0,'?'),('†Ÿ\0¦>#ŠÑ›á­z(','wp-includes/bookmark.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¯‘2‚ ðßµŠ£I­º;','%ã$0dâ‚74\0\Zu½¯R7ž	7@þ¤&]½:-©&óñ','',0,'?'),('Ç…ú9 Ù9: ÷¤\Zþ','wp-includes/cache.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','÷\0)Ïx:¦‚‹2¡¡`]j','FëwÑc\03 ^\\åàÅX–“€»,l[ÐôêC','',0,'?'),('Ü2Gý?¦_æü\\èÆú-B','wp-includes/canonical.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','t0>Þ€>©É¤5Tÿ›S','¹®ß#\r˜î¢]Â YÑý|µì²0n[D0˜#','',0,'?'),('ëãYCàÞoƒoRÔäºž”','wp-includes/capabilities.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','d½°ÓÇ†æÆÒv»9TJ','“|~íPæ ˆÚÙŒž¢Ò!grä ãù;$”Å©ÜÄ','',0,'?'),('‰j®ÃIîÔÓ<êŸŸ³†iU','wp-includes/category-template.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Íãï°GL¿´þ2\"ñè','±\"’u¨DÜ­Ö8hßž„µzÿ‰Ý¡{òý°úùÓ7E','',0,'?'),('Dï²Ö5\n\'å\\¥Ã~W“‰','wp-includes/category.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','“b÷¬ráº+Ã¨—óx','žS†b¯eù++?®&˜R¾Ø\Z’Ç.·©#¬¼Ÿ‹ð•','',0,'?'),('mD’ÆTŽms‘·òA©}','wp-includes/certificates/ca-bundle.crt',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ý{Þ½üA¸£6ã×Xi,','L#VÍOŒã„ \\Hî½È¨å\0)KË8þ)I','',0,'?'),('èJ‰Ùåy”ž0mì`ä¨/','wp-includes/class-IXR.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','2¬v¾¢0p\"…+/zbÆ+','€O0vØWµâW.N%êLøð£®`ÚXp0tj\\\r»Æ','',0,'?'),(':<·$ŽÍ0,w\"&e({','wp-includes/class-feed.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ì)$k¦¿3\\ ¢³÷2E¶','Îî«H Ì¼_%%€:YÞ¤¯3jüM8\n·WoÑ!ù','',0,'?'),('!›”È@|˜4«°n­ô','wp-includes/class-http.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','~…irçºYÝôZlÔ¾','ÞóãL/6?Ð}¶?VŽyîfÈ˜ÈªËÖJLŠ<?ù-Â','',0,'?'),('Ø&ãZhÍ$›Ã‰o‚','wp-includes/class-json.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','€ŠB{ vCÔÞ¯MýÏAŽm','ˆ2<W€WO¹kw»åØ~Ão”öúrB• + ','',0,'?'),('£í‘Eââí•ÀQ?èÞ	(Ä','wp-includes/class-oembed.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','³Á—[wV¾6´2ØB','{,m|²<#ù¹D’!ÏÇíMKÓ¯Õt­kÏÄ>Žý:','',0,'?'),('	QW¯ïŒˆ~-Ê\0dÅ','wp-includes/class-phpass.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\Z!ËêTËÞßí·ÌB','ZÃêá’GŸdü/§	ÑÂñ\'°ûœ*¬Uy¡ô”(Y','',0,'?'),('ì8·Ú§™ºs}ï÷Õ¶àNi','wp-includes/class-phpmailer.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','>ÿžÔ¶Êß™O#ŽÙZÞ','}^~‡o\Z£bÕîìe˜U·ƒÜ&Br_@~cÅ¦±Gµ','',0,'?'),('\"µòÉàÉu>1Ð7þŽŸ','wp-includes/class-pop3.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','KTQÈ©:O!§@T¾–y','ãh9œ4ás“ŒÖ¤š§L“¢š~$`”-‰‚!','',0,'?'),('öÞ*Ê7\rçæ?á¶ý','wp-includes/class-requests.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','9e¬¡/¶ìuaz´Ô\"<','(vÈŠòF0ç˜ÇYoË9	5‹cž÷gAU+fV ','',0,'?'),('¸è«\\ ¯”IÑ»Á»è,','wp-includes/class-simplepie.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\r¾ó”©\'ðh¬ÝX}H•','g2QÆ¶Z6óüÃíûé*õTõT±Ð¢ ”_ÄS8î°','',0,'?'),('¿àÎš,ÌQ˜a»gl·Ä\Z¯','wp-includes/class-smtp.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Æ+\"Z<KtëÈ«:˜Ò•','ñçŒ¡…`¸#×àº(Tä‘dØe§.s¤8xt6','',0,'?'),('e®ä__ó%÷è®xˆÀÛ','wp-includes/class-snoopy.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','s°\\ÞÅ…ŸöíÏ¼Ò.½	`','€–ó4	*ò\0Ñâ‰þèü¨\nþ†à;0r£ûµúÉ·w','',0,'?'),('„)Å©¶ê…2[¤	Ó4¨_a','wp-includes/class-walker-category-dropdown.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','…ûÐp&´…g}U% ¼(\r','ÊBþdøŽ)ºëŽ3Ü\ZnB‰ïrÿd¼K íK','',0,'?'),('•c­ÛnxÀÔº|È','wp-includes/class-walker-category.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','i\ná¯è­çËŸ:–y”W\"','/¢ùô»ÈoÉmZžDƒ·eÍ%@èåîêT‡¸N','',0,'?'),('KýK+ì†À2¤	aeZ“e','wp-includes/class-walker-comment.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',' Â¼²KÓ;\\Á©éÕyðÁ','Š#EV1CG4ÌîÏi£lâ¼Æ~#×tW?ÔZDqö9{&','',0,'?'),('¯ÜÏæå(è§¨:pRß/','wp-includes/class-walker-nav-menu.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','½<vµ?qòùú™í—Ð»','Øä`H )·¬w<¹2<\0ÖA·ó—ÌäÄþ¾¢','',0,'?'),('Jó\rÓ·G>û‚„õ','wp-includes/class-walker-page-dropdown.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','d/\nO|„6®ŸhÄ\0ky>d',')®Û?¢¡µ¸\"ßO}óÍ F6LÇ[;mÁL,Ùn• ','',0,'?'),('5S{ïTÆ–®Îe½/Ë','wp-includes/class-walker-page.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','/ë‡«äs|ïØ¡','?\rþ¯à`\ZØ«±­…Ñ(nõq]£ù†ÿÀµ','',0,'?'),('Ö¶Ëå9Øžføpo3t','wp-includes/class-wp-admin-bar.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¦¦~·hÏÞŸîÈ{:¬V‰','\\àÔÒOýÌ×ŸBùO+(w\ZKÓg×§‚ˆ)¿mpø','',0,'?'),('Ö»E\n»<¥B„[ì,','wp-includes/class-wp-ajax-response.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','4Æ‡o_‘áºi–ÝÃ,','_=Æ‘|¿§:ÈÖ\"7Ðˆq¨>?©ÛÒYð4€C.•¥tè','',0,'?'),('¿·\n…Ó›IQED	æüê‰','wp-includes/class-wp-comment-query.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ðbµŠÔ\0÷ÌQ’mƒW k','¶•cc†ßDýBEDzG ùï¤ñâIbP\r\nôl$rW†^','',0,'?'),('TÑrñÂå~ÏW]ï','wp-includes/class-wp-comment.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','9x…ÑÂÞvµ&ñCB}','½\"1ñhÙ\0CBµ}/b×¢&\n.smc6;GTŒ~)','',0,'?'),('ÈPžÃ é3ÄïÑ€\n”Í','wp-includes/class-wp-customize-control.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','äÏ¬Ýq1s4]\'yÚÍé','L’ÚM”eèÅ2U[Ñ4P7r¸ú`ŽàŽ—Zž¨V','',0,'?'),('h\ZOhløç_øÍLm/å·','wp-includes/class-wp-customize-manager.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',' cµÌë»KˆHœ·','vå¨eÎ¨k*ì3ëL¡†ÊÜ4Q}ò{/!ÐÅ','',0,'?'),('`þU®2‘šmdW','wp-includes/class-wp-customize-nav-menus.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','²O·¬ñ\r+pjt¡','Ïîü$y~²j•?Ï &›\\x³ŸÝÏ¼2TÑØ×Vð»','',0,'?'),('\r˜Ò§xOzäâ†÷z‚¾h','wp-includes/class-wp-customize-panel.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','hØ*ËØQ’ÀÉ;@òüO¨]','Û—Ý>æí}H¢¤xé{¨‹€@µjmK‹8ÌH°|¡©ƒu','',0,'?'),('ìÀ-xÇ(ÅE¶oI„=Ý','wp-includes/class-wp-customize-section.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\n1oeu_eLó{æÉr¹','¶ÝÝ‹5mz&yµ\nÿfì:;}y[Á’˜,vgÕ','',0,'?'),('f…u3\n¸M\\Á}6*0íž','wp-includes/class-wp-customize-setting.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Vë{’þ»“%*É¬','6®£íÇïX‹à0Ðc61V¼‰ÐHÚfÃ€‰W_Æ&','',0,'?'),('ç”Jú¡Ñ‘e÷\rXd”Ô$Ý','wp-includes/class-wp-customize-widgets.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','U`¤¿;†\"òX-IV±“','²œ+Š°b‰íÆ®ÕÄ«µï– ‹ô’ŒÜ£ãÅërµè','',0,'?'),('j´gsÍ66Î$€¤8*¨EÙ','wp-includes/class-wp-dependency.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ðÅPCb’’±BïƒÁæ','²ÿ¤ÕŽâ Á= ùkqS’(½åt_Ö™ÈŸÐòÊÿZ','',0,'?'),('ù„É±%›¹a{Z¼j	%¿','wp-includes/class-wp-editor.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','DÚ«Vj¡‚“H~“É‰Ã¤','ï\ns,¬ù\" þŽ¦*gÑf¤þ¤ÅÊ„lÍ%;©','',0,'?'),('5`à]\\Í­i\0¥ßí\ZJT','wp-includes/class-wp-embed.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÜX[õSA½!åsin§a’','F¡aS¥æ™í†vU¥­­‰]Öÿ/€©üþ•Q+','',0,'?'),('ºÍk{šä&òó»x\n¶ø','wp-includes/class-wp-error.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','…Ñ>žÁtÂ\\Š’°áF|','$)È›ªÆ,¸ó1}Íƒ²í¦ƒ»õå4TÂ½cƒô÷','',0,'?'),('O =(:ËÄ<á	Þ1F¿','wp-includes/class-wp-feed-cache-transient.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','„£ºò\"µ@aíLW(@Ü',':˜Ì;hÓ!xEÔzû¯P+¦dV¤0—Žù¹Dµ','',0,'?'),('ÖŒ·ñqæÃ³ýX°[ÈÒÇ','wp-includes/class-wp-feed-cache.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',':Ñ@„¬KßþƒŽLö÷ßø¯','ó/˜ Þ×ÝÒÈj¸Á€öZ’»­U7fnœÔÁYÌ[','',0,'?'),('#D®Å„ƒý÷Ÿ5%»Ä','wp-includes/class-wp-hook.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','«|¬ŸJ¯f>Ì~‘V-','íR!hîy¿ñ¬|¾Lßº­lÙ*5çpVÌ·`ü5Ïâ','',0,'?'),('²ü&B°5VëAUU,“ì','wp-includes/class-wp-http-cookie.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ùÄ*w ßC5!Jrõ¥q','ÄQ\Z¶}°·Àéæ³5Oú1\0KÙ[¬…Ssº1ÑyœäE','',0,'?'),('äÑç#ÿiJå®H·?ö@¸','wp-includes/class-wp-http-curl.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ùª\\°fŒyjdÃkÄÈ³','Õßavñ©/×É!.Ÿ¹x¥\n4Mg,GgZÖ´‚sW>N','',0,'?'),('•èMO,ÌãsæÒÔ\rçâ','wp-includes/class-wp-http-encoding.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','kÖk—æbê7åhÚ^#<À','\0f|±AÏ¾^C-ÑXÔ§s}Ë>@ ZaùÖ\nì¹ë','',0,'?'),('ÃåuÿXÛÝ¼#‚-ÆÂøª','wp-includes/class-wp-http-ixr-client.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÁÕÆ?oaZØ;lþ–½ì','53ˆSð2¸g†K€K\'ŸB¸VòÖHÍÍcoøƒÔ%','',0,'?'),('g±fö1ûÛ¶òyä;´_','wp-includes/class-wp-http-proxy.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','À=‰šºçM\Z{£8)v»','Ý`.1€Ò\'Gì\"Ž\'0T2gCEOþ\\@|!UFÎp©','',0,'?'),('á@†‹M]\"° …iNJ','wp-includes/class-wp-http-requests-hooks.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ª2rÐGÂ`~1ÀnÃ¿','?§ýÐ.£zÌƒUDÝ‹ÔÃŽÁùÅa.¯êv\0íÿÌ‰—','',0,'?'),('‡B yÖw†+³àÖ|t«Ë','wp-includes/class-wp-http-requests-response.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ˆK­‡‡]‰·c{óƒ¤z','TØÕý\0±±‹5Ø›Ã×ÉÉC!0i»ºëã›õ:Ùi\Z¥','',0,'?'),('©ÊÚ·tìg—Z·gEò','wp-includes/class-wp-http-response.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','.T‰·4,[JÎÜÑ†©@Ú','ëV§&\\		‚¸CN˜‹Ý›…“u3ÎˆM¢÷å@J','',0,'?'),('ß°S‚³ˆ±h[üÛ³Ì','wp-includes/class-wp-http-streams.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¹$—0ª°oó“þÀó','Ïñ —‰–„ûN\"Yôn#£|d>‡¢¼09mç °ýÜ','',0,'?'),('>©ÆX¹\rýbõßÚŸ®$W','wp-includes/class-wp-image-editor-gd.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','o”èpœ/šÀ™ûþÉÄ\r','Ç;¹ñ™sø1N‚É-¤¶P˜ýT”õúv¢Ž5Ì-','',0,'?'),('á©^ºûbR–åSIá!Ó?','wp-includes/class-wp-image-editor-imagick.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','oˆ¯(¨‘>T=ˆÖDˆ§¿E','%+	Áóo<x‚\nL|­Øç+Œê‚µØáv–å“÷#NC;','',0,'?'),('ú³¬»T\nšˆô­e.(¼±','wp-includes/class-wp-image-editor.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Zž†ÞùçÑ”Èp¯¿¬ÆÆ','ÎºÊÚJÇ»Á—H0 ÉóÒëD½\"˜°ºâ`®','',0,'?'),('ý`SkåÅ7Ttàv¹ X½','wp-includes/class-wp-list-util.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','»G6¹ÈŠ),Œk˜KüF','¬W—ÅÒåŸ u¾Ä_C;U¹}óVWÄy…i­`¶ÂV','',0,'?'),('LzùÐïZÑüø#<','wp-includes/class-wp-locale-switcher.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','W þÅÛ·•1K¶ ','¼±ÀÅÇP	\n„Ñêï®X·E­1Ëq ºoÃ{\0U\'$Ÿ£','',0,'?'),('ž1l<œ t~LŸUwó','wp-includes/class-wp-locale.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ZhñÕbBe\\yjÖ»?ê¿','oýÒå’¡‡:€\'šZÃ¡ÐõžT›>Á §½d)\Z','',0,'?'),('ö\"ÅqUy„„£9ì%Q¦','wp-includes/class-wp-matchesmapregex.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','%[¿ó.¹^ã¡‡My','”ç”¾ùÇe\'¶âa]¼„á‚¯ÞZ×v\\Þ˜nj_\rÛ','',0,'?'),('Gu¹¢ØèþÒÒÒÊ­ò','wp-includes/class-wp-meta-query.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','”¹U?héßõæ35›^Z¨','‰V¸>¼Â’ý\nBÄiÓ+¿\r²ä­V‰wN<ÖuÀ¢','',0,'?'),('\ZúÃ\Z:\\®RfùPÛ~3','wp-includes/class-wp-metadata-lazyloader.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','~%›.·yX:Ùô®Ve','=Ôo¹~t“<i«cŽÕþ\"Ï°öÂÉ¬sìv¾2','',0,'?'),('×wŒh] Ã¡Ë&“wM³Ä','wp-includes/class-wp-network-query.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','·Äþ¯Åsx@,ìf','â‰5°cÀõËs€(/ê‘qXXƒ-ª\'.ÁKÜÇ','',0,'?'),('8ÜžtÆî»\Zw„Nxa°ä©','wp-includes/class-wp-network.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¶‡CÌ)5òíö°k´µEÎ','$V²$»*IÉ.zÇ~pÞÿÊ´A&×ôÛ3Ú¥`9\Z(–m','',0,'?'),('PÃÿ@¡„É;b<\n¸cá','wp-includes/class-wp-oembed-controller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ª4|%Y¹„‹8Th','44ÏjÛð\\B3l“êæ\Zyç¼yïT¾á¶‡¡+°s=–','',0,'?'),('~V©ÜXa]‹7p“|R','wp-includes/class-wp-post-type.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÛÜ.ý$WøÒþ6ef«Ÿ','›>‡2±Ã‡ŸLs«g UƒxÏeÒùMoªCÝWÁe\"[¦Ô','',0,'?'),('~‘¡ReOX‡f2”ñ`€','wp-includes/class-wp-post.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','/0]a1JÕ‡nÕã\\×æ','wSß‰R¶öÝÐžHæŽV}màÿŽm\'º€Ðw…¿ 2‚‰','',0,'?'),('Ù-h\n\r`–éÃ½Û•C/s','wp-includes/class-wp-query.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','~-ÿ*£¨Ž_¥FÓ·8','ÓÉßHÃ²fÇiíb£¤òaÊ¤ìeN³;¨AIÃ5±','',0,'?'),('ëM\Z¥Õü—H³?Í²Z','wp-includes/class-wp-rewrite.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¡ù?¼üå¸¾ò”Üp?','@ñ±w@Ò¤î¸°ãüëê=†=½h¬ó¼Ø£Ð3o8²','',0,'?'),('\nŠÌófÉÓ…;{»tõ‡','wp-includes/class-wp-role.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','+ñtq$ï­2@%ND»','\"ßû¾\nVI‰w‘>4lœ¶</­4íÌ€×øˆ\0Š','',0,'?'),('•Ç€3å‹<¬²&³ªYÄ†','wp-includes/class-wp-roles.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','YpëræZßb¢\näp1','Ú–šçcwä¾¦ÿ†%e““:[Ö?\'8LL„é–#j^','',0,'?'),('Ñx(›Å¥Üº„.’õÆÕ‡','wp-includes/class-wp-session-tokens.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','áÝÙ;!ëµfn7ÞóiVK','Óô\rUŽ0ºøíŠó»k’´ýMEé“ãô…›¬¶Ù','',0,'?'),('«˜¸÷Þ¸qãic¼=’','wp-includes/class-wp-simplepie-file.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','xÑ0Ö‚‚>oŠìõª2?â','îÒâ(J:\'³R4Ï±<«eeÀì­‹<ÄúŽæQÎ-O;','',0,'?'),('<.¦Ø4v·äc™\"`¦t','wp-includes/class-wp-simplepie-sanitize-kses.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','áx!þF#ñÖ`±”Ø—','îÎá—y¶²ÙÜr¦Ñ‚ë‘Ì\'-%\n0($Ÿ-‚ø','',0,'?'),('ÎÂWÚè÷=¶Ô˜Hdûz','wp-includes/class-wp-site-query.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¿²Kñyœý˜ÙíËÕ Ü','žâ¸¸cnf:÷àlôš¥ÌQ±é,Ïú©‰«ÞnÇ','',0,'?'),('‡b~5Ãaùš I@)*ñ','wp-includes/class-wp-site.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Äå[éDö¼£ÒÅŽ»N¼ž','È’Ç»àO~[Å—Ýž³ÜJ<l%ÛÐ•k~Ê]t°ÿ','',0,'?'),('í\\áSƒÕ‡–€8¸–;2','wp-includes/class-wp-tax-query.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ù÷Ðg->\n¢žÑÖêh)',',ÑN¨Ì¯=æªeÌ¸ET/&ÂË\00÷Ìê~YáE‹','',0,'?'),('Á~Q”ÔÅ´FpìÛÍ','wp-includes/class-wp-taxonomy.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','},RIA<ºÇ$´\0å\0ò«d','F\'î‡o12yñFÍÒ€žRN/×Î0 F‹ld6n`','',0,'?'),('íˆÒãI0“±B,óhÊ›p','wp-includes/class-wp-term-query.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¡g\ZÐ‰Ö&›…€¼Q›','xp‚AO3\n3aÂ\"¨ÏºC9s¿àõ˜bÁh¼ì­³iÔ','',0,'?'),('Ý–¼\'Ö\"|3â_™t|©ö','wp-includes/class-wp-term.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Oªþ£Û¸²dÜ˜ÓYõ©Ö','R¿˜¦;²or[1;ä5?:~À˜û] ’Ô}Ô‹ž','',0,'?'),('øèÇ¢½BÕ´(Ö\\½0J','wp-includes/class-wp-text-diff-renderer-inline.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','™D†©’Uµ±ÙU¿v?Ç','¶ò×¤meôý,–ÍV„„ëÎ9ó˜}ƒÑæó	y”»ív—','',0,'?'),('JÎ%.¬ó~œÂ—qál¼','wp-includes/class-wp-text-diff-renderer-table.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','T’›•üðŸ%ug˜|m|ƒ','@ãª$˜ÑŸ—Kº~«=\\É¶¹¡Iñ*°ëÐ¸[¿','',0,'?'),('¨#×?€™ïGc	Â¯l1e','wp-includes/class-wp-theme.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¦¾„K$¼\\=u\'ø»vìû','1ëóüØÅËåòË¯lIªð,Að]¹HôDhœ!‚´ð','',0,'?'),('ñïª¯¾zy´ÕÈ>_+”t','wp-includes/class-wp-user-meta-session-tokens.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','­ÕžG=c¬.ßÃZ}:¨','{ôŠYTr®ÝdOzõgŽê‰¶¢v«ºM™}¨Ã\rx½','',0,'?'),('¡9ÔlÂ×Ÿ? ríèqÀ','wp-includes/class-wp-user-query.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Tjíã3fÜ˜R@yðß5','zðÊ²gÓ±“>E#ãð_¨Š“ÆË«¦xv‡Sdhõ','',0,'?'),('Rñˆ\\µ&ˆ†T	À|`','wp-includes/class-wp-user.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','E›^ÔxìÎédÉÒä_','ÂÈPÀ7ˆ zßÑ‹°l>âðÞ`ð¹Zâ.Þo£','',0,'?'),('\0õª]Àaðv•”¾CY','wp-includes/class-wp-walker.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ñ%H[ú|NÑŽš¯\0ö','[½qòÚµ r_+§&5Úñ©íòX÷Žç¢ƒ»Ä8Ú–','',0,'?'),('¿{‰1ðú\"¸¦^ëÒÈ.','wp-includes/class-wp-widget-factory.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','L¹×ÝßysžPÉŠ¢P•','3\"´Ó;+ÝQ—Žh;SQrŸ‡÷!tO=2Þ³Ýš¶Î17/','',0,'?'),('çDj×žå8]fÐ”_Ú','wp-includes/class-wp-widget.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ØY+0¤ø¼éfr)','Œ¹ÎóúÉÛ1ycÅ·->_“™\0Çö•3¥¶Ìd w\0','',0,'?'),('jä±‹¹¿áð%ˆÝÃ]€','wp-includes/class-wp-xmlrpc-server.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¹u,vg2ÔâW­ða¯','Ô~þ)z*uª!o©áÍÚ1““L^îøÈý‡ÀöÝ7À','',0,'?'),('$¹Á¼CÁ®Àó/¼9¹¸','wp-includes/class-wp.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¦âÔŽFãù(ÿ»\Z<Òè','W{ç×¿´>Ý´4¡%§%\nµûÝDè3z2¥+Ôz','',0,'?'),('y´íÝEaÌó:[\0','wp-includes/class.wp-dependencies.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Õ{j‡ý‘Û$”Çþ¯3/\"','«‹O¸É.qÍÒL9zÖyô2Aý\'`ÅTø—Uoy^ê','',0,'?'),('¥Ùëñ§;~Ó·R·>ž£','wp-includes/class.wp-scripts.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','qû‰Ú_ª\r(ìèšÿž6',';K?ÇëÆ®>qGÞ?°QR˜¨îØÎf‘¦­+ÎjI','',0,'?'),('9Ïˆ[Ÿ1d{Äôî@','wp-includes/class.wp-styles.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¬BzK¿P\r>\råòÜÈ','¿@ÇN6QçiÖ¥‡(a\Z&ˆàã1Q‰Gb€œøçž','',0,'?'),('=°Šk˜[4œ“¢ ¼=Î','wp-includes/comment-template.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÑÞ_Á:“tLnÒQó—','UUÁé/LjÓ¸/x.¯`þÀ%ûŒ†ùÞ„W5OH3Ü=-','',0,'?'),('‘S–Æ÷ŠKK2iÉˆ','wp-includes/comment.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','TƒÝ$þ\r+×I”/	£º[','òd¿½XÔËa†×¼NÊ8¨tqK\râHˆåpp*_–á','',0,'?'),('Ñ_\\c9mLŠvéè£1‰Ñü','wp-includes/compat.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','a9\rwŽ8‹[ò™÷Å5Qì','ó’·º^PØ€¢EG&ÒHž¬ÐnÃôÁó\0ò»þ•zN','',0,'?'),('õ-\"DíÊÊ¹D²5aÐ/','wp-includes/cron.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','aáøBá[C}÷„õƒýU','ßì²¶<Ð+°xv€F\Z·³\"Í6ÆÄ“ª‡ÏvÐî“D','',0,'?'),('šÄþÚ=Ö¬H–@-i˜ï','wp-includes/css/admin-bar-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÂÂ’³7#4!%¼tˆ³‹Ì','!¬alñëlËúò‚jz!Bu¯î\ZÜ÷x^¡uR}','',0,'?'),('Ó{Ú­d3TúXy½‘ñÐ7;','wp-includes/css/admin-bar-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Q4‹¯a\ró7†yê¸b­^U','voQÑVŸüÇya5âòz^É(…ƒ€·^¬ðCñâë%~é','',0,'?'),('ÔÈ†pŸþÑ]4ÌÐLñÄq¦','wp-includes/css/admin-bar.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ž£ë¨\0Lðýo¥O?Âë','î+!šZ_g}0{?ê!ªû	ZïÁÈ‚×§0øÄ‰qóÍg','',0,'?'),('þI\"íp¢ÐtÊQ¹É[Z6x','wp-includes/css/admin-bar.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','íW)G‘ÒZÝõ>ÊUÚ','4oŒKFææÄS3¹+€5ÄjNˆGËÎüröÎ·H3','',0,'?'),('t8ŒÀÐïp¯Ì‹Õz{jDp','wp-includes/css/buttons-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','NÀ,¨>!5»¯—ûNÒ 7','çÈéfŸð»øÒ	eè¹	|Üd¡+Š‰êûýÓ‡¡&‡','',0,'?'),('¶î¤Ul1ÀÈ•Dübmgñ¯','wp-includes/css/buttons-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','C[V“­v)É1&Üö>(å','/_pÝ,Ì¡rMÞ+N˜‚66^åð5K(>5x¿h–','',0,'?'),('ô‚Ž;ê¢^ð©¸´8c„','wp-includes/css/buttons.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','®àôÓú%_ÞˆßG#…	î','í¯w;˜]Ë‰tj¢Îsx1µ…ãÎB®ÿN·H¾6i¯èe','',0,'?'),('ðÐ·&§LÛ½Â¨ãVNŠ','wp-includes/css/buttons.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','$û®\"ùÒ•]G´[Ui5','mg7…@>ßÀW¿t=\"Ý”í§I„¢á$¡ÓÅ)','',0,'?'),('F­\\ºC?ÌZÖúöÖý','wp-includes/css/customize-preview-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\\„P¡˜îe[Hdgw','äÛélû.%Áµe^%”r±Ï#º8Å\\³*K_Fÿ','',0,'?'),('ìý¥Æ¯Ãæ0~\rjA4u','wp-includes/css/customize-preview-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','òÀZa=œj¨Ôº½HS{','@˜ûBkÊ®Únäœö,Ã¾ã’Å	~ÇúD¤8º©[LŽý','',0,'?'),('þgVÜàÖHIwžÓ!µ’À','wp-includes/css/customize-preview.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','˜ÂÃ¥ˆÚ÷Íä\"jÆ-Û','ç7ÀT€ÂZ»ü¾®Ø¦ba‘ÈùÁñÔ?ÿíø‹ro™','',0,'?'),('æ¿y§lš€só§U>Â<òá','wp-includes/css/customize-preview.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','‡tW›Ö¹HxBM3‹°{t=','cv¨ŽÉèB=ýá0™tp€\")Ðåw•¤ålƒØ2‹œ™','',0,'?'),('ÔÊpÿýS•š`ß]T]DÈ','wp-includes/css/dashicons.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',']kPqm½>Š÷Tö º','bN£jx§4Ò¹o‡$ÝÊ»,9$g…\0ä<+ÄãÈ','',0,'?'),('±Lƒ’…yEõ{¦øf“','wp-includes/css/dashicons.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','6Nw|Ò¸têlð‘\0†l','ÄI¢d4\0…OPð¦™#kŸL[nÔr.¯ÂáþZ¦7î','',0,'?'),('òpo‚´X0%÷¢ÇíÏë','wp-includes/css/editor-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','L\Z`(U¥€¤~Äª','cn¥Ÿ\ZƒcÆòJÄ¶S]×$\rÞNÒS^1 À¤Ä¹','',0,'?'),('ê¥²«2jEbgØˆW²xÛ','wp-includes/css/editor-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','æ°=Tm¥f›¿â\n{¿',']FJn…$à#} ÏåŸU)C»S\'Æ^¾®Ÿ”\'','',0,'?'),('LsÐ‡Å›\n²c}>ÿK—‡','wp-includes/css/editor.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','†uš¢€à¹* ùÉ¸N¯','õ½IŸxóXzs›\\#´sNdHvÂøy)ø‡I*&5M','',0,'?'),('_Ö|œ¯T¢M^î½õÄJ','wp-includes/css/editor.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ù?–„¦ˆæ³3s/ÉjsÌÓ','…Ð½Þr³¾Õ)I<\ZTHŸäýÌ¿~>m›q§','',0,'?'),(' àôcÌ«)IŒ\np,Í‘«ƒ','wp-includes/css/jquery-ui-dialog-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','’{§’ùö`?_‰öMP¦','§Á,­õ§ˆ\"}ô1)¿ž0n¢ÓÚýÜ´§§¬Q','',0,'?'),('~F£Ìã«Ž>dyìÐj‹','wp-includes/css/jquery-ui-dialog-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Î…¢[lLœ0aoüÆ<1','Q\Zƒ•T¦¾kf\\_¬Ã]¦L¹tÎ¨z,ÌåÆÙrŽË','',0,'?'),('iô¢PÃ™û–ld\0ú‘','wp-includes/css/jquery-ui-dialog.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÕôÝij]Û¨,®Ä\"¼','Mý‘*B¦Òô‰¶Ñ#ãÈxx‚ÇÈV\'wµ¬zô5Où','',0,'?'),('@Vó$õKÆçò<Þ1*à¬À','wp-includes/css/jquery-ui-dialog.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','v‰ÂˆÒ¡ü¡•ë±Ëà\Z','þh,€^\Z«ƒ=©Îeç›\ZÉ4(¹âš\n;\nDq°Z;Ö','',0,'?'),('\05gÀËÏê«”c‹0‰\"D','wp-includes/css/media-views-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','7k6|[M Ï‹KÅ˜™','-yé½4N7WW«b½^ÌÏ\"qþXÑãÜ\'±$','',0,'?'),('_õ´ïýá8}Ìßœ?åŽ','wp-includes/css/media-views-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','CÛ¥l(˜à0£ëWÑ=}','ŸRîv`­1~3Ô¼>‰ðSÙò—}°:Sy ßD(‚ÿáÁ','',0,'?'),('ë²ÔSÚ°p—GMÇ¯¨lí','wp-includes/css/media-views.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','I€ ²:¾²	`sÒÆ\r','/¦Çù€ëFãŒDQK ’ÐyœËFÒ¢\r(îS ÎÙ@','',0,'?'),('4%·IHÄO‘‹Ê°ÒL','wp-includes/css/media-views.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ø_úÚVù[´ñ§EL*zU','ÀÛB)2§Ê›Mw\"À½þ&pjTFýF7Â+Š’žñ','',0,'?'),('Ç¤>z±Ô„Ÿ!J]>','wp-includes/css/wp-auth-check-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','|´#VÚY‘zïc9£öä','Šœµw<8C®áÓDÐQF°n­4çk¿7¼…­','',0,'?'),('ÈY$\'«»¾šo‘ãì','wp-includes/css/wp-auth-check-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','®¿Þafx”¨á?ìn4…½ë','î©—§3ú±»‚Òì\0¯3™5:ÝMªf÷\"ßÔ:†','',0,'?'),('…,CUUîèœú9i-','wp-includes/css/wp-auth-check.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÓÙØŽè N£z¼ŽŒù¸','õµa·aë_Õè˜°~YÍH	–Wüc«\Z²/Ägt','',0,'?'),('Y 68ÔH;%,¹_c\n€','wp-includes/css/wp-auth-check.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','·Ë¹šMË´¶N½<pb&','_FÊ}\0NˆZ}ù¶“ý?\n’V>l¡Í9@±@ÈL','',0,'?'),('‚w€·5»ÿïÁ¡)ºûž','wp-includes/css/wp-embed-template-ie.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','î·)6žó	ØžÐ¼q ªÊß',' o•±+8]ÅSuçüH.éCøgôÞR9ê&¶+ý¢“\\W›','',0,'?'),('ynmÀ;˜/ÐUsK	»¿','wp-includes/css/wp-embed-template-ie.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','7{WPÛLó{H—Ù©Iç','\\aWq1Šº+ÿéÐ¯Ùo•LöY\0ÏÂ„Kàî%<','',0,'?'),('’/»É˜ü]ô^¤W\\ƒq','wp-includes/css/wp-embed-template.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ar>,&Ãi’\'4t$','úð–7YÆ)•^‡›K³f§ÃžXœ*õ©ÑX³™C','',0,'?'),('z¨¯Q<’˜\'š€U~ÔR\\','wp-includes/css/wp-embed-template.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','J¡VXtIOSGçöÚ','5…³ëž[N9UÞ\'6Çäo»ÁAKCéáØ†73¦(3','',0,'?'),('\\[æíi%Í°<ú˜e“>©','wp-includes/css/wp-pointer-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','×«¶Ó£\'òüeYfen','Æ	Ì	%”3gö\rã¨¦åo“ûë?5zbÍ²jØ	ÇÐ','',0,'?'),('jQûõ—e÷Šø;âe','wp-includes/css/wp-pointer-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','sÉ½¹\'~Ço\rhB6Ýö','•4©FiUW©Ä¨#¼	‚0)‹lþ2p/Îbl…0','',0,'?'),('sÿC4M¾*µ¾*B«)µ','wp-includes/css/wp-pointer.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ÿ†WD+ët³Îj°šIÛ',')­¿7Ü˜j¢ÜùáÉ¯À£´¨“\"F™¹,Ýäl>ºî¥2','',0,'?'),('-œçŸè—‚ ‡Y{]nsƒ','wp-includes/css/wp-pointer.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','˜i¹ÿD2¿‚À€ÏÇÇ','¦Q&Å`Ì×‚÷RêÏ#^çDæiÓôu\ZÁú','',0,'?'),('®xˆWº‰2eöuvÔL','wp-includes/customize/class-wp-customize-background-image-control.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','pÏ‡úÑt|Î3','RÚv3úŸ¼¾~ÄÐ×ÞðÀÝ|.OôLŸtÐN`Ñ®Æ','',0,'?'),('šVŸ^æ‚3±çm6‡._P','wp-includes/customize/class-wp-customize-background-image-setting.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',')Ù@‡t”þj23´ãW','á4¦ƒØ0^+Üu*°:Þ“4q[#ÊÓO²m´&È','',0,'?'),('õ·D°µª6íSÿ/ÈcQ‚?','wp-includes/customize/class-wp-customize-background-position-control.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Äa¸Â­/r6ÍÆ5So','ÝTWß[ý À»\ZþvÜ^µBD°_á?€µ\'.ÝËN@A','',0,'?'),('í£‘–îú‡™è³®]','wp-includes/customize/class-wp-customize-code-editor-control.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Í—+_šóÃ–FX(µë','‘¤ºÃ\nA%ˆÍà,MQ!%£X-d²\ri¿ˆz.]','',0,'?'),('MYŒñGˆ°\\tXû„’/','wp-includes/customize/class-wp-customize-color-control.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','sØX¢oI–´ë§`¼8N','CóUº]sMuÁf—-zÞI\0ê=ù;p†ðÃrðÌŽÚ','',0,'?'),('þ\'TúŸåôÌ­éY²Ç™','wp-includes/customize/class-wp-customize-cropped-image-control.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Gáp[äq}yýª1‡','Žx\r:šœó‚öÍ}¯šgR)ê`Ÿš‚×k’M%','',0,'?'),('ó½³Nò³Ëô„ü«óÏsÂù','wp-includes/customize/class-wp-customize-custom-css-setting.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','u`†È3äa!‡ f(m','µ¿lŠrúK!¶ZÔµêd7Ñ:Ýá%‹ñ<ó}ëÛÓ','',0,'?'),('\Z“êlm·ð‹”@øø','wp-includes/customize/class-wp-customize-date-time-control.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\\>’gŒlÇ*4+‰	FK«Š','³£\'!ÌŒç\0‘U¿{1€1 —d7\'Mb8·P§á','',0,'?'),('¤üY¤\0)\r/jñ©)ôAr','wp-includes/customize/class-wp-customize-filter-setting.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','MÝÚ`f¯ì\0ì©iuû','´\0<\nôj:§ÜY£F¼Â¿dÉûwÊ±	ÉýÀ¬','',0,'?'),('Zxˆÿ1¡2KÓZ¤,¸ì','wp-includes/customize/class-wp-customize-header-image-control.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Û·k#À®üXé¬\"Nš%(','¨àŒa¤,»È\'´jy>çª­Ú«Ërêùùm¼o8è¨','',0,'?'),('¨°ÌœÀ\'K…zŽfŒå','wp-includes/customize/class-wp-customize-header-image-setting.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','3§¦Ïpü¬GÉs’0¤','yp\\,øº¿Ë¶%¥ÞuØ5Üa(ÃˆV®S%','',0,'?'),('á™>Â“êÆÌ\nô5´ëäZ','wp-includes/customize/class-wp-customize-image-control.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','å1ÎË»@ðàŠÂ¿]éDz','a\n\r»$Û±Œy…œqø*åÁœÿ$q¿«{ÒÚ','',0,'?'),('*úOÄ‘Ìâê·åi','wp-includes/customize/class-wp-customize-media-control.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','`)œ²üµh#·	fSa˜Ã','û]«µ¯<5êÞl€cù‰-(åÉF,X~êŒ€È8w“ã','',0,'?'),('ŸhSÑÀ:°öÓ`','wp-includes/customize/class-wp-customize-nav-menu-auto-add-control.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','N²+C#+|ófZ¦™]å','kn\Zyé&æ†_©Ø[ƒ¯Iglƒ(ãg\'î^¹G','',0,'?'),('ø3Æ¹Ü•jçbišÎ¥î¶','wp-includes/customize/class-wp-customize-nav-menu-control.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¿—?3®ÃîÕ.šôf>Ø','Òîªmõáƒ\\W¥\\ÉöR—ŸeqÆÚ&ßGHøôÓŒ]}','',0,'?'),('C²ØšÖT¼Rª!vF{','wp-includes/customize/class-wp-customize-nav-menu-item-control.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','•sF´aëtK×j¥ÌD¢Ê','¤\03èË:åž5¹C ¯ŠY8ÀÒÇªûþ*‚B’[','',0,'?'),('ý­{ 	\n|p£Ù¤','wp-includes/customize/class-wp-customize-nav-menu-item-setting.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','@VW¶\0öø¹ÂÍCj Xjç','þO˜VªPS¹„Z¢ÿQr*µCœ8Æv–Ð¬Ái¥','',0,'?'),('bâ÷+Æ´ÝŸó´3ï†','wp-includes/customize/class-wp-customize-nav-menu-location-control.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','f­á¿ 3/~àpÒ˜CØ9»','6p¼ü›[x\ZÛˆLIûÄûµ¹ËÁ:4ž&×Pøc/','',0,'?'),('ÙÜñt”DX¿m\0#Ê(‚','wp-includes/customize/class-wp-customize-nav-menu-locations-control.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','A˜]VÙ*uÓŽ«¸\\Ì/','€I‚.¶\nñµü%èt9àÔÂóTŠ›ÇQ=eÖ¥°','',0,'?'),('íºG® “Ø~ªÐÿô`ø','wp-includes/customize/class-wp-customize-nav-menu-name-control.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÚÞ7ìfõW·Õš7Á´†','pûÜvàw °ÝÜª9ù¶Ÿ©?¡°aÝÿÉ€zŒ','',0,'?'),('¥-ƒèBññ|tS^¼','wp-includes/customize/class-wp-customize-nav-menu-section.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÅqCtF	d cxš®F','°ËlõÝ	ó–@ÈXû§ªÄn0f…þ^˜W¶¦ôqõ','',0,'?'),('Ík0Bßâa÷î¬`Ë','wp-includes/customize/class-wp-customize-nav-menu-setting.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ŽÊd>˜D?èÌìçžp','!TGQ¢KÝ;ú2µ¹›¹“@^~ \0ÚÍïRÙ¡\ne','',0,'?'),('xàó‘mü€¥\0Þ~¶Â','wp-includes/customize/class-wp-customize-nav-menus-panel.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','íViT?å“ñ—ò5ˆ8—','¢|5~ÙV¸”¬¶AW³o*Q/iX=“ï¢‘¬åAS','',0,'?'),('ï@}&£J~ÏÂ¾&óè\0','wp-includes/customize/class-wp-customize-new-menu-control.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','òJÕ`LÆ´ÒY³]†','ÜœIS\'°ñµúà½ºOËLšË†)|8pÏ´ô¯¾','',0,'?'),('2¯åãº¨a|F–l3]ö','wp-includes/customize/class-wp-customize-new-menu-section.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','wûà…ºôÑìvËDš£‹b','âß¿¨Ý.ÚüÀeH§°qêÄ\"8=Ë¹¹ê­A$ÎP','',0,'?'),('ýÃÞäYÆîðëqï„','wp-includes/customize/class-wp-customize-partial.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','îè•ûlût3Xf…tè','{¬>ÊÈx¿÷«ŸH¦’Ö\n¡|AEÜ|ScOs/','',0,'?'),('y×\n–,\nCç|[i','wp-includes/customize/class-wp-customize-selective-refresh.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ù)l½ÌCF\'\n·‘,f—','Tcé1hû€UN’Zu˜›‰/ZÇ»»JØ×Ç¨$','',0,'?'),('T6K?†”´sÓ ‚7(ù','wp-includes/customize/class-wp-customize-sidebar-section.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÅN7Äˆä£ðÈø?ù','›š{#Ôi«` ÷\0Ìÿ«âj£ÁÃ` pÇ+öfFñ','',0,'?'),(' û,eO¢šËz‚Ã‘•','wp-includes/customize/class-wp-customize-site-icon-control.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ø‘ûzßò­öý—È»q™','Ä˜wÃPr¯UitW¥	á2Gí×·*BÕ¢ì‚€2SqE‚n','',0,'?'),('ö?Ç„£ù€ë:\nÞÖX','wp-includes/customize/class-wp-customize-theme-control.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','öÐi,[€bøÔÌY™¾','…$¥5šUzø I7•*z]tIT9ä°>‡ÍT%°','',0,'?'),('´<Øì€gã=±C£×´qD','wp-includes/customize/class-wp-customize-themes-panel.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Sv¶…üåÂ¬FDð”Ö','l`P«QDÊê¦ý÷ü©å¾vîJ¸›Ü”†j–Ê(zE','',0,'?'),('ùXQûád9r×Ú¼–Û','wp-includes/customize/class-wp-customize-themes-section.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Äé[qõþ^ßœé°œË\\â','Úþb25ÛË„4«E9s¸kHz$n¹ÉK¼±\'ìÊâŽÌ','',0,'?'),('ã eÆ\\ÛkîcçßXf','wp-includes/customize/class-wp-customize-upload-control.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Jë§ØÃF÷yÅ¾©r@“{','EÔN½Åè{ô§tMj°X¦IÄA¸Ç§_“ò¼Ñ}n¯oY9','',0,'?'),('[5ùš×YÙNh¦«ŠKˆMè','wp-includes/customize/class-wp-widget-area-customize-control.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','“uçÍ¹—7sûq™¬²°','<ðv áD~%–çº™§ÅèÎïØX<ÿÊÔ','',0,'?'),('\nT•¦/\\9$Y¤U\nÛÊÍŒ','wp-includes/customize/class-wp-widget-form-customize-control.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','®ú· >—ldÿ¸èpg',' ˆê°Ë˜H¿³°ZýAh¶_œ¹lÂ+­«ƒ³?}Ê','',0,'?'),('™\0£ùµè Ò.}¥fwA','wp-includes/date.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','iŠ.\\Ìû`ùVYÛžŽõð¢','ª~÷¥¢æ|ÿ„1¶¦Õ¸,XbÄ	šz‰0Y¿','',0,'?'),('}ýÖË{RÒ¢Ôà¢\"','wp-includes/default-constants.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','a×?ŠªxePsðü˜†~','6Ï«ò{fb«»ÕÆ–»=¹ÕŠ@•QMÁí','',0,'?'),('úèRŠ,žA§Àý\ZñGJ\'-','wp-includes/default-filters.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ø“ëžèÆ´#$5Øì¶?#N','Ñ’}_lÛ.¿ïº»\"	Œî%=r±“WÖÀ>óhý&','',0,'?'),('VL6Ý7G^l%D5z3Èè','wp-includes/default-widgets.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\Z¤à4kpÞwè?*€ÃÆ',',Aü×(Í&aNëäáÌ¶rcGFÇ„Ðu¥sØ:ŽLC¤','',0,'?'),('p•ð´.Ð°”ó[ÃD¡','wp-includes/deprecated.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ä±Y¦Zß#nãV›‡\n','˜ù•¦´ù£\Z¨å®ê™ëÞ~³³AdAP·pcš»ý‹R','',0,'?'),(')ÝÛø]ïÝÕZ$ÙP%','wp-includes/embed-template.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ˆ>½ïEVJ{;6ÿ!*','»ûáOX[	Ë©…\r§ÛNmÐ-“Œ\\Uþ•cöG@@ü¼e','',0,'?'),('æ9eºòÐkköRÊo—†þS','wp-includes/embed.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','%0¯\0ªþcÅ2N/®©Î;','yœR/\0ËàØ1ê­tÜŠ3Cwzÿ,`ÕÃ>§‹™T','',0,'?'),('¡¢ºRÖÉd£øqÀU±ª','wp-includes/error_log',0,'oC$eI‡†ý‹Z\0ã\Z','oC$eI‡†ý‹Z\0ã\Z','Òë\'ÄŒøåPÎq$:¾¡qmæ²ð¢þ‚RÎñzÌ“','',0,'?'),('\"¡žŽ¾b9®‹eÑ|®_Ë','wp-includes/feed-atom-comments.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','o1ÿCâ\'ç¨EÎî\'š','bn²ç|ûâ/y«‚\'ÄñèEc+É¹g;\ZÇ¥çÆlq','',0,'?'),('šª™‘2@ïkä¬w>K”2','wp-includes/feed-atom.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ð³Å@1p¼Y ÌÚPU4ú','@ÞŠ>•Û9“]×^J6+\'åP«\ng@ãÆcöŠÕ','',0,'?'),('ÜÈ¼‘ØŸÜ\'\r`ùôÊÎ','wp-includes/feed-rdf.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','|—ddþ˜ša6¾®Ý\'Þš','±áÃ 7R²¥è¬ _0‹Ö:†8i¯81','',0,'?'),('ü])éé	¹ƒó{—?R}','wp-includes/feed-rss.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','MÇ3×?ÙëÈ gÁ.B\r','i—bg½­ºžF+›06„»\'pVêè/›WU	È','',0,'?'),('´µß²;ø›0ÿ‚ÙË','wp-includes/feed-rss2-comments.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','XÔæÙHÏ›µØ‘KÆE%','›³_Ò€g<]¢Zq7 bº²c’ßkñP\nšñcÚ‰','',0,'?'),('_*Äâ½žLÿ0â>\r','wp-includes/feed-rss2.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ñ\",˜=Ô\0Ódì{7','LPˆl&&nÝßý“æà-UÈœÏ ÈÚNK=Ÿ','',0,'?'),('{ïRC¼Ú\Z.*\"¢Q','wp-includes/feed.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','E¿@ü€Ó¿ƒÇÅZ~è','dîù%iaÿÊ^¨å®©(¨2tq6¸ù‘@©…B‡','',0,'?'),('–Ž\Z5oÖÝ#R\'/¤¬l','wp-includes/fonts/dashicons.eot',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','0äÇÆ!_§ú¡Éy¶H','Òã_å=éõšLÎê”P­i¹„\Zb–)Ÿ*¤5/','',0,'?'),('Î¢ƒSËªÄ\n´–BáV\"','wp-includes/fonts/dashicons.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','xihÍ7‹w#ØŸ¥šµ','\nÁà™÷ý®È¾G@kJ	è\';Š6²<\"—®','',0,'?'),('ãìó<kUJv%ò1‚‡','wp-includes/fonts/dashicons.ttf',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','êÎFºþF›¢ñýÅƒâ',' ^bÑ3ìÇ4¢‚\n¶¢tDækkœ*«€­™&lîû¤{','',0,'?'),('•Ìf0ÙËÍ­¡Ú~·)','wp-includes/fonts/dashicons.woff',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\ZÔ_rY+Ê‚;ì','§yU½]fôî8ÈÆðtâð§½’ÙÿÃlÕL.','',0,'?'),('çÅ‰û	iàö¿/Ð­','wp-includes/formatting.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','hœÏkëÕì5Ô|åÙN6%','ùNÝ¸þ¨dŽ§%Í‘+-¥]YÉd>ÁÅ¥BF±b‡a','',0,'?'),('\ZëãèÁ¡•)qtsCI9','wp-includes/functions.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','K¶·#¯Á‹\nFž´¸;','4§}¬ƒßQ©ñX†>ªö?:cD˜!ˆl','',0,'?'),('çb`K¬\'×Šì»œçâK','wp-includes/functions.wp-scripts.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','úØ‡X=‰|}Ü³%…U','.(×¬†*ÖÌBô¤M‡]Ï\r£m_Âhw%C\\m\rêe‰','',0,'?'),('h dÑ’ê»…2öÃ_Àr','wp-includes/functions.wp-styles.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','æeâJ’8âZ€WÛ2û˜','lv]y1ÛÛÑt?Sù’§¡údéBT¥Rß1','',0,'?'),('ë0žŠRðJ³{yíË£÷ï','wp-includes/general-template.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ã!sØõv¨¾ó-yp5Xh','Ì[+X®è]ÍtŸ	ÁKAãÆbvfh','',0,'?'),('¹/&¼ŽÖûá2®Ñ¡\rgDs','wp-includes/http.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','jj7f¹9úÒëaJØ¤ôA','qé†9¦Ž\"bÆKñ3MØ‰uAAÀT¶\nNÜZä%\0Wt','',0,'?'),('.IhUœŽâ3Ž¿+B\Z„¼','wp-includes/images/admin-bar-sprite-2x.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ëQ¬ë›Æ8þôo€Ê','*E°ãÀTsüÙå£alä‰^Çp¸ÜX‰¯æ¡Z\0ù','',0,'?'),('§UÌ›	\'CÔ»ñºÏÚ«\Z','wp-includes/images/admin-bar-sprite.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','SÏ¤—:€WÊÅÓþ^','®ôrN!ú`VO´c«ãK”ÄviÕ€{Fn\Z£Ále','',0,'?'),('ré_è/™ÍHG=Í%—<º','wp-includes/images/arrow-pointer-blue-2x.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','%mârÞŒ]4¸9cÏ','Á°{&DOÀz›ÓA…fó/ÉÏgÃ¡­†íÏÄA]~À(ç','',0,'?'),('@€žÌ˜9Š#¯LÃy(ÐÚ','wp-includes/images/arrow-pointer-blue.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','wŸübãÎ‡*L«²Ã[»ù','ÝÂÊåfbÏZD1.üºþVìæawÆ4l?ÎñpäµG^Ç{','',0,'?'),('æGÄÅ5Ø@æèÙÚ07•Ç','wp-includes/images/blank.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','H»+ªô51	÷Âf]–ª9','Ó¡ë:™,ð;}&ZÄNø¡îYKM¨\'ñKF!¨[VÂú','',0,'?'),('Í>ÿMÒ8¸ Ùµ­Ñ|','wp-includes/images/crystal/archive.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','–SÊúðŽœÌI0Anë','LƒÖ%X°ó£ÐOè+ÄÞAa®!×SÁ\\Ü‰ô&—¨®','',0,'?'),('ôJ\'#‰‚rN„0a\rÈ','wp-includes/images/crystal/audio.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','™nVñ:ÉÏ‰óGØÔ-#k','¢~B\Z-×¼of|W¢x\\þª|¨Më)åß‰Ë¢','',0,'?'),('w£¤ïLýê£0œïð]r.','wp-includes/images/crystal/code.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','`ï1²Ïúï°õ1®9',';ê©67˜¤ƒ”\rØ!ŠíÛçx\Z_@H×Ã&C”Ð-×ã','',0,'?'),('”ô¨–!Þ¬©Äß³ÂÁ«p','wp-includes/images/crystal/default.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Aò>)*/¾Ü!ì®-ò›º','€ˆˆn$‹¨ƒ_­u	†$Q3Í–E»×r¡|Jm—','',0,'?'),('Dm·\n»½z—H‚ÃS”ïï','wp-includes/images/crystal/document.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','‰\'^cšsÀùÄD‹ù3T\\','gætê»( ÅŽçˆk`5Í’¡ûJ·ÌM5®ÂÂ:jä','',0,'?'),('j—£Éÿ5F+¸¯ío','wp-includes/images/crystal/interactive.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¯RÏm`òíº`™9§æ','$­Áöë©˜<x1²éÕ“»íIRï›V-VZ\\jg.‡þˆ','',0,'?'),('ÌÇŠ·EÁv–c,îØµyS^','wp-includes/images/crystal/license.txt',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ð]µLcãiG›fQ“\rÏç','vèÚpm„Êcëø6ßY~\",!V¹ØEXlülã\"zÞ','',0,'?'),('^åƒÃ¯ðˆ¯+…y|Ð','wp-includes/images/crystal/spreadsheet.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','5†9øÐ¢1€TËÇn¤ê','e\rC¬ˆi0ã×[¯êR¬8@æ÷ðÍG’¥ðaJNÍ','',0,'?'),('¼¬ðàÄÍï\"¦RÑÅœ','wp-includes/images/crystal/text.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ì Ñ²ªü#¾dÿ%ã[µ','n1ôÂ0µé©<;ý\n”ÍIp¢ö~Üf™Åâ ¸ÏÇz','',0,'?'),('UÃåà$i\"uÂÊ&Ëô¸9','wp-includes/images/crystal/video.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','”ÛýŽl¥‰Ú¤¸;õ=','ú™S\rI¾°U›Œ9_<â÷µf`…ì&HYwÂuˆ','',0,'?'),('*®ä-3öu¬EÂ[ÕO#','wp-includes/images/down_arrow-2x.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',' s¸¡î›$‚6(Ú@¨a','žL°\nþùAå·}]Ø²‚CÆ\\ i¯»•”j†è÷Mí^','',0,'?'),('\nœßO‚_˜«;]/^™ç','wp-includes/images/down_arrow.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','eÜÈ]:uÿWvûãß\"·â','ü×Ç˜RíeO¬:n‘«{ø·•{x7âhñŽ‹Podì','',0,'?'),('Òž³åúìÇŸö	KsÍ×Ð','wp-includes/images/icon-pointer-flag-2x.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','©åá¦2ñ³¹bäÄ&ÕZÌr','4ö”BÈ¥Äª\'x+cÒh¹Ò VnŸ5®IÚ>ƒjÞË','',0,'?'),('ÖZ×ö	r!ÞfÕÑ¾	Þ','wp-includes/images/icon-pointer-flag.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','°Ó,‡ò­‹ÂE^¿j`\'','oq·Ú9”Áa{)h}=#¾½üëçTû×§ÉÂ','',0,'?'),('Yˆ,eêAõ¼wÀ`áÄ','wp-includes/images/media/archive.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','9Òîßòhû\0ÚÓÃ¬‘u','\0ýBb¼3˜»\'ÏÔ\'°„)JG –À](GÅ9Pr2 s','',0,'?'),(':ùnÌ£RMëti#šõ=','wp-includes/images/media/audio.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','†taCAñ¾Åþ².·çZßÀ',' Lä>¢‘$¨Á\n²oixoj-\nLÏÓõÀá]G;q','',0,'?'),('À±3\"ü(zÙa€4î8Œ','wp-includes/images/media/code.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','-o–­UÊ“îÕU©U_','\'eM a[R#q2š×kz­+*<üÄü÷Ñ7\0ÞÊj','',0,'?'),('(?ËÜ×>¹ôS©Næšœ&','wp-includes/images/media/default.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','-¶©æÍIÒB–hÎ@àÞçb',':ë¦oLóJDjòþ$->»iºé\'Ã6nÖ î›Ui','',0,'?'),('/<Ø§^É¼f}–\"×øû$¸','wp-includes/images/media/document.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','vå4™8öÎ‘y“6Þd£','¦íÃ¸`™Ùû³çá±íf	I$ _ZªX—\"0\r´ß,','',0,'?'),('ÖrYŸS¯xwDYËšJ™[','wp-includes/images/media/interactive.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','R×¬Ë‚®ñÂÃ´Å‰hÜH','{óô‡ [Kêà\0!ƒê¸½²/á\\¹lw.Á¨êÝ','',0,'?'),('œ«HVÕ¥½dà³pÕVp','wp-includes/images/media/spreadsheet.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ñÀ 4äñÖ\0TüÞÌ‡?²','¶ýÌ¶v²¶)ï\nº6Zl«¶2¹õêÐ’1Ù!+	Ù','',0,'?'),('9í‰æs´3ÙSZ,pé8g','wp-includes/images/media/text.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','z¹‡sæä0÷ÈŸQ€K','g®Ê?[õŸD*ßp”8€qòžâ¸VÑ“æ‘>ŽõN','',0,'?'),('\n%f[!aE«rÒtg€i','wp-includes/images/media/video.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','àéñuêh›ÝÛq ÷','DBU‹†¥ÑMiOÊb‰,‹Ããe•ô=ËÒWÀ{¿ðæ','',0,'?'),('ÙkïÛ/yž³©ý›&‰ŸG','wp-includes/images/rss-2x.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÇYa[ QÁæõ—ýrj','yS0üc`\n7ùäas®Ð#Ânìú¨YßüØ©','',0,'?'),('ÛÈrš¼ÁµØ=ÔÔ’é','wp-includes/images/rss.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¥°[¿(ò”°.ý”*NZ¸','jþ(-9¿§_ÇïE-#êweÆ$Ø]oÿ01©Ïu','',0,'?'),('{ñ\rÞ-äÜ} ^éÆ','wp-includes/images/smilies/frownie.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Q›óÐ„°Äôƒí','rô~×DzoÑ÷hß±—ÒÓ¾þØ»\">E„+”Ke…','',0,'?'),('Ð¢’íŽ¹‚|áŽÑäØ@','wp-includes/images/smilies/icon_arrow.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¿Êµ	€»ä•ÛêÔÒ(','áòÖJÓ³Í_K`àbÁš´‡‡f2\0Ÿv¨ê<Üÿ','',0,'?'),('ïã¯©è	\'¯æ¶Þ¨‹÷V','wp-includes/images/smilies/icon_biggrin.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÇYpRþ+Û0}kÑN{Œk','ÇXq÷W×ùž·dˆŸ%Â±‚Å6ÀëU•âh','',0,'?'),('°$åÍ“™bHn®€,\0-','wp-includes/images/smilies/icon_confused.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ï¤sYFPZ6¹ã,š‘','0Žû]\0r‘Ó$†áO¾t£€u<ˆà*äg®‚!‡g','',0,'?'),('X,çEõCj$_ƒ¬8I§‚0','wp-includes/images/smilies/icon_cool.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','–F~µ®ß¢.¡Àú>t8','Y}Ýc\rÖ\rô¡|&L›(I¶ÂË”âž±wZã¤–Ñÿÿ','',0,'?'),('Ä”Ô¼üÝÕpPˆZ	H´','wp-includes/images/smilies/icon_cry.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','E>z?‹»ApðmWlAÐ`','Mm/Uúm9ÓÙ=ÜðéÛØ¹Ò.â‚…¤öÑ?@™º','',0,'?'),('!_Ÿè¼µp3p™n×ÓL','wp-includes/images/smilies/icon_eek.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¦Æ_¦ÿsŽöÄjN€¦_z ','ó¿Æ*°¾M-rŽý£èú…mÆèÂïÅ7ºÙtÇ\Z]','',0,'?'),('ÂObc®³\" ÎÇÛ|J(','wp-includes/images/smilies/icon_evil.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','c¿ÓÔ÷VM<ó\"!.','³©½êÝ6âÐwBû@¹©÷¿4#áêÕ˜ü ÀÃ','',0,'?'),('šJž‹B¾GT²;,l£ÀT','wp-includes/images/smilies/icon_exclaim.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\\ãqEŒ\Z!HY__=¯{_È','|‘è}r·h(X±GUŽÔ¼]\\F^WçMRŸ£Øï‚à','',0,'?'),('È\"u@ž³T¬…S›ñ5ò','wp-includes/images/smilies/icon_idea.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','½³\"m%h¸ÁíøôS±èræ','ŒAW€è“ßìY(¬÷•U…)J1Î”r¢e$šçuÜ*','',0,'?'),('ž Án€$›‡qˆï^qf´§','wp-includes/images/smilies/icon_lol.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÔðMÆZ8|©¸Àò,¨ÀìŒ','Ãoúí2v•z{¸‘Õø˜6>ç~íFð6ØŸü ªÊ','',0,'?'),('Ž(¢û×”ïWåh@=a','wp-includes/images/smilies/icon_mad.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','×¾¶ie\Zcþ{Ó0',';{gÈÒ½º*w|ì&~áN:¦ƒëz>êWª3\rCç#','',0,'?'),('\ZýUEäs(î±÷ž#Eöp','wp-includes/images/smilies/icon_mrgreen.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ýéäJŠ®‰½Rw’´wšÊ','Ø^ú×m~\0¡Áàâë¡kìOí[\Z™ôûëÄ:ú`','',0,'?'),('ÿÄêkµËiîÐ.¼¥¸\\¥“','wp-includes/images/smilies/icon_neutral.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Š•Ûú©˜	°‡®´Zí','v¼™,(¯_Ë˜s¬ûøæªµ÷ÎO®Ïú‘','',0,'?'),('š¥7¸M3Âšã$ËôŒ','wp-includes/images/smilies/icon_question.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ò\'u²ã&EqA÷ˆÃmN','ÌÄÈfÔ3œ1a´	Yr¾@P¨G³êŠèÍÀÚÙUëò}','',0,'?'),('¦’¯üž:[&bú[®hY©¸','wp-includes/images/smilies/icon_razz.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ËåË­â´ì=…¾JÉ@šÝ','¡Xà,¸~ØG¶àm¹l)wŒYÃD¤sÆ& J$ Z7Ê','',0,'?'),('$’„õ³0S\r˜rþ®©','wp-includes/images/smilies/icon_redface.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','m‹‚AùƒR!4a','/ ],fDôNÎ,	§w®˜a¼bñ¯?Lú‡Âéƒ=','',0,'?'),('‰¼B]nÈ„¨8Ú7g˜ó','wp-includes/images/smilies/icon_rolleyes.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¯È»Æ_ËÒ¸*>,\Z´\Z!j','q_ìÝ·^Ý÷e}†µŒ	†HuªD‰è¥ž\n¤iY¬\ZFf','',0,'?'),('¨HŠ£õÁœPwàð%8–À','wp-includes/images/smilies/icon_sad.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\Z\'=³ÃOjû?íuA|¥ç¶','¬KÝ„X¤dòoþ&)\n¤4‹SX3.äì††ßŽÀ','',0,'?'),('€÷êÿeØæ97ãaJS','wp-includes/images/smilies/icon_smile.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','²˜G)Ã¶ÍÀu¸‹\\\nM','°ƒI+x½É#Ãi†“ËT;WÍ—÷1¨Exß±','',0,'?'),(';ñWctÔÓç*+÷¬BrÊ','wp-includes/images/smilies/icon_surprised.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',')™rµÍÑñài\rÙ^@8½‡','‡6¨M€jš2O8õ8¬Ž.æÝV}ô*ò±‹¯á«','',0,'?'),('‡Ž\\:âÃÚˆÕê)g,\\','wp-includes/images/smilies/icon_twisted.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','b«Õ©.²8\Z|`ãQöLF','°†€t/\rHì®FóÉéœTÐ‰ceNúDêÀ×äKAQ','',0,'?'),('œ8ƒ©Ž…¦¬ãP5aÄ¨	','wp-includes/images/smilies/icon_wink.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ð\ZO‡ZÀüè¦g9Ø4º','Ô[ÅmHM²Rš\ZíŠ6Jb…Küär¨­ª¢mÙKÜÞòM','',0,'?'),('g|y_“o4\"‰©X†Nšù','wp-includes/images/smilies/mrgreen.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','-5Áà^±”‘ÓJÝjÚ','ÁæÐMƒñg¨$·æ¥+;¿²\0Ç5ÑÉÊíH&\\E6%w','',0,'?'),('˜{…éYÂ\\ÀzéŒ¿°}c','wp-includes/images/smilies/rolleyes.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',' ¾¾ðO…2ßOfÝ£i','fKÉ)¾\nêdù¦!]\r)÷ï¶\\}æãâ×–lÎõ^’ã','',0,'?'),('ÜéÕ»Zml•î4ôË®U','wp-includes/images/smilies/simple-smile.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','éK²Ï{Â…Ž±f²w—h','ô´?Y©ag\\<yƒÃÁ³€0\01äƒÂ8½3‡¾H¤g','',0,'?'),('}`ÆÒg\"PÉ2®ÂV½‡','wp-includes/images/spinner-2x.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\\q¼´9)hdxR©Éß]l','Zä\\J¬Ï)Ï“­q1CØçÒâç¤ç9—Í~&{','',0,'?'),(':ïXqÝ¯J\\¦5Pò¶4','wp-includes/images/spinner.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','°£Ýã1c~\'ªdvÔvHq','éIÜÁ9%ûŽ-7C­Œª¹PÏ<„rï\\cª\"x×{','',0,'?'),('}Ä‰=•t©­ò‘»¤¹','wp-includes/images/toggle-arrow-2x.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','FÊáÊ\\øƒôÉCDrï','-ï¼×N‘¨°ÝÅê½7~@Ë}‚_É=ö¤‹V’_@AÕ','',0,'?'),('”Üµ[Ò²m%‰6òS8:D','wp-includes/images/toggle-arrow.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÜßÎ‡—aýæ;ëdÎÏ*ò','[b\Z©ŽÅ;ë]¬fÉ0 ²æs|:¿¬†Ôó%','',0,'?'),('/é¹ ìÄïÎ°1Êiw‡§','wp-includes/images/uploader-icons-2x.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','­Áç°&-€äO¢‡Ã•Ë~','”†¤rë\0‡·Îè\'_>…ñ6çÆQW¼Œ4Ú R®‰','',0,'?'),('_Öà4ä3“ÍË=Ž“','wp-includes/images/uploader-icons.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','´“\\MÏÿÀùm–€','ÌpÈ×úËúü+/ÑÜÍíÇîi÷Þ!Z®Å£6úm†','',0,'?'),('x9@^6œÅß‘¬óŸo·è','wp-includes/images/w-logo-blue.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ý[N°W¢ð_pàw®0','Þ£^Qtä3ôHunUâ»Éà~²\'»T2','',0,'?'),('•h—‰§‘FuQeñª î','wp-includes/images/wlw/wp-comments.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','LÂ6]PÞÞÃì.s¨¡Ô','®zl\ZµÓC¹ÚDà¨Ã#‚aöNµç3\'XZ“','',0,'?'),('öýåÀPq-³tó¹@lÊ','wp-includes/images/wlw/wp-icon.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','1	ŽÊš‰7w3K™*','5 ·¡}ìx(ÚÓrÜ:a,zmKƒH1|/ã†Ñ+ò©ñ','',0,'?'),('§èáú°6‘bg·>_ª','wp-includes/images/wlw/wp-watermark.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',';š‡uMmÜ­D|‰wŽ“ÅD','½SýËnRÀ\'÷¢X§^¤ÿäkhûº·ÕÉ‘Ðiæ7´','',0,'?'),('³~£š¹­U÷\"Ð&Ð','wp-includes/images/wpicons-2x.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ãçn×VÄo©$š”Of~7','Ý]Ú©A=µÑ’¿%Îq¢%aMÁÀ‰ùàB­Uæp','',0,'?'),('g”$G\\¾ë±;©rÄÄÏ1X','wp-includes/images/wpicons.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','dSüøuq‘V_®Üãaô','¶¥ÞcZ_”Ä?n_ŸçK‹6ëîŽ1\\}r','',0,'?'),('®\rEöÈUÏœøÍ„ÞÙ','wp-includes/images/wpspin-2x.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','}ï3ªÙYÍ(IÝò¤m','9N¹øî*òôµ8)ÊqÆXè-Ê´oo±y…T–É','',0,'?'),('R–x®4Mp@°9u\nÖŠ p','wp-includes/images/wpspin.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÝNmÒh§äÁÅ;\Z@’Ý','m5¢ªˆ^Ã­%Ånø4<E\"kø€XzÑÓ§Õ=ö','',0,'?'),('ÞNÄ\\ü|ó`*·,)@4','wp-includes/images/xit-2x.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','°rœT½Ä`Ÿ¯?JÐ/Ç','-P½fy÷¼$»qÍ\\_x’…¾²b‰c«³æX.Ñ4','',0,'?'),('úýÊ\n\\ÔûÉ¶.5úŽš','wp-includes/images/xit.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','å)£Xû¹`1¬ÜðH×Ê','~ëvšÝæf‡Þ|e¥]Ø¼ç\0ÈÉT\ZÌUl(¡\0','',0,'?'),('|/Ú’ë\0[*4“ÿxüã','wp-includes/js/admin-bar.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ùz™§öAæ“’ZGÃ=ä','5( oÔþK£Eº\nå{E{¼CöÜÎÊŸ<ÕÄîJÎå²','',0,'?'),('MÐ \0šAŸª»9QÞ+ Í','wp-includes/js/admin-bar.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','²ç3ðÁã\nÈ—MÌi«Ø','Ã“ðsFU*‚I«öŒüSAkk÷Xúó2´6á{Õ©','',0,'?'),('-úìc©<Èî@ÕVsZ‚','wp-includes/js/api-request.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','‹«nywÓtöw3•òõp','èT—Påy´ïbë@?î«ŒrÅõƒá!‡Ð0™÷Šgy.','',0,'?'),('e\r÷šZf‹‰ÅÞžÊÉ|ï','wp-includes/js/api-request.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ë[ˆ”‹U¤»`|3ö<\0–','UÆ\rÎÂB	Ù ‚ßéµb\0öEi¨mU6 †kö´*i','',0,'?'),('R3ð¸Usë3ÃÈ}TêœÛÁ','wp-includes/js/autosave.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','›uM\'¦W¢K‚hØzJ–­',' ý8â÷Jü{â¾i6²ô\0>ô¬ÒM‰qõºú÷Å','',0,'?'),('wuèšl|åõp˜ÊQ','wp-includes/js/autosave.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Â6k}ç}	fÍÞ%','ª:Áâ jjŽ{I÷hy1¢>+7@›qCÓ2c','',0,'?'),('PEÛ«½7r|oI±6ÿð>','wp-includes/js/backbone.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','’cÝ¾Rø^{á3¬&ˆœŽ','Íœª¿QIµ©{·x!_¾+®¡\0Ïf–d*÷Ôï\"Öž','',0,'?'),('ø‹¢DÚÍ=Kô49œ’Ð','wp-includes/js/codemirror/codemirror.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¦23j·í1À(DÄúóµ','á¹ÎŒá,aÂÀuäíÀ@ºsñY%Ký–Ë-o¼Çn\r¦','',0,'?'),('Ó}³ïªe¨éCÓË!Ž*','wp-includes/js/codemirror/codemirror.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','òÒ	üf‚‚hˆ;f¯qì','¨uŽ*ÃQß6öÆ„ÛdªvdÈ‡_¹û“\0·Ôû¢´™','',0,'?'),('é\nÄØUN~½½‰\0mÐÄ','wp-includes/js/codemirror/csslint.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','á·;.éùKÐðÊÎ_	ý‚Q',']¶ih4F„õÃ²ò\rìöU»ÖîßWEK(ÚP¸d','',0,'?'),('ÃT¬µÇ!Ø©7l°É<','wp-includes/js/codemirror/htmlhint-kses.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','îýò[®¶k[ó#cLf{','Nà©&ÜV\Z…A«Ó/ÅÙR#~Õ¢¸á×_J*â—Ð‡','',0,'?'),('¢Æž×…\ZXªX]ÁYÉF','wp-includes/js/codemirror/htmlhint.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','µ2ì|ÑŸ¯GŒMtP5§ê','\0U[\0÷M\'mCÕ¼5þÐ5k`ùªñé5ñÑ‘','',0,'?'),(';g,WÒî¢é\Zˆ','wp-includes/js/codemirror/jshint.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','„öûPú!ìRqcÍÊ','ýgìi\nÁB±_Èê[•\0‹Ý7¢Ù4òw5×ØÌqáë‚','',0,'?'),('z.[ÇýD8RÔ','wp-includes/js/codemirror/jsonlint.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','I)fyÞãkTŒ+Êí<ÕŸ','“$D;;¯€´ž0ÅÖÿFø~p’øGÒ“F¹Ë¦…','',0,'?'),('Ûß\np¡ñÓGnu:¢¸Ó','wp-includes/js/colorpicker.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ðÊV gô„²¶ùŸ-¯','…V‘wäç%©%È: 3CQ#+gÖô›	•–e¹}×','',0,'?'),('0¤ç€ÅE\00Œ‚XÏH','wp-includes/js/colorpicker.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','á† Ä\ZYòûb|$æ@q-','#,˜(UoÞ‹QßÏr\rLF­“M;¼ÖÒ”˜Êˆ¤±','',0,'?'),('pUyüa	êb¯àva„;¡8','wp-includes/js/comment-reply.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','8SÏú¼üw‡ärpY','m®¼R	ü¹*Ãµbu4ã3^ÉPuUóþšzw','',0,'?'),('1ùÎXŠ/²t60^Ò€!Ü7','wp-includes/js/comment-reply.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','V¼\'&Ø) {ú€/•z¬‘','Z9\Z¼§„äd«ÌYñÖ†¿ð^…?\' ÍKgÀ¥‡','',0,'?'),('bYÆ,¥°Ï¥YªrÛÑ;¾','wp-includes/js/crop/cropper.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ky5ôni*M(í™','ôÙ¸¸T†äÞO“³ÙwL¦y=}ÎgTlÀº±¤½÷','',0,'?'),('\rÃ%ÛáãÏ%¼ySý`ð','wp-includes/js/crop/cropper.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','—²–ÙH.sÅo¿ö¨â','»pyÖëÛÐ,B·ùòúÌÐGÏÔö-Étœé«ÜÖ=ás','',0,'?'),('¦(¼|nä•Á´sARFä+','wp-includes/js/crop/marqueeHoriz.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ŒÌ®œºý¸;æäÔLo\n','|ÞÛÍSâùe©“|.Ù‘/éQ¹YˆàWª}(','',0,'?'),('Z±\0ƒœYˆ³’³ Ã¦fg','wp-includes/js/crop/marqueeVert.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','®šÌñ\0¤¹“9­ÿRÔÜÇ','Kªcg$£eÁ²Š2\\pÈ$à1z¥Ž™œ`CkJÆ','',0,'?'),('¶r\\Ùj”´¨òáA$','wp-includes/js/customize-base.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','DÉÎ^õáQj‹Ìô)1¢','¡ckb&?S.)iOdäcÿžÕd¸Ä©—…R¼ùåñ','',0,'?'),('V\nÕÉU`½_š5ú˜­8','wp-includes/js/customize-base.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ì6Ú¤âàìî$ˆ¨˜','ÊB˜G/,Ô¨\0ªn™õÀž_vµ³ò‚l®öæ¼pÀæ3','',0,'?'),('“V}»P”œ±m•/¯|I*Ù','wp-includes/js/customize-loader.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¢È¶$åú×ÕJë‡Gf°','u8Ž–¡IùÌ¸ø²DËfx1¡™\\½..á(«>X­µm’','',0,'?'),('bà”û¿”ÒŒ &é?¬{','wp-includes/js/customize-loader.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','1Ùøè(°Ž=áÃ’/Ñ!a­','}PÖ€,­ž»YÖÏvxåÝ\n÷È¹‹X†\0ìX•mš™¹','',0,'?'),('²ÿþ­xÄÐ™Ò)DC‡Ì<','wp-includes/js/customize-models.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','(©!I87ù€âŸœ','+ùÍ¬NÔ3uþ;x\"/Y^2‡å ôãv=.È]=','',0,'?'),('\n£ÜNNM¼ÔÛ‘4;úpÐ4','wp-includes/js/customize-models.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\"r`fl¾ˆ§(Ô[','N®èÎÐ·Ë¦ô[…7T	ÑT¶_ƒÞö‚2–¢','',0,'?'),('î\Z½‡å{:\ZªŠå4f','wp-includes/js/customize-preview-nav-menus.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¤uúd:Ó´ª§-Hžá	','Y…~Í\Zwž9œe´ìúÖ¼dSJÆ@D¸	pÜŽ÷','',0,'?'),('™žF~…‘Ÿyµc7v-','wp-includes/js/customize-preview-nav-menus.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','RiRç¨z3›\'o]ÏÉlQv',' ·#RQ§“L¯þ°\\¤…µD³\'êÌl$vüT³â³%','',0,'?'),('9º\r5\'XùýÆ>?’','wp-includes/js/customize-preview-widgets.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ùþ|¡ÚÝ’Ñú ³SÅ','m.ßhæ t¡g*ç‰ï2æØj$¤i\ZJ§Óƒ£','',0,'?'),('ïÿ€É9‡ÊrÀMÔ§Äè','wp-includes/js/customize-preview-widgets.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¥óµE§–à~0ÓÁå8k','/xˆÌ„8¥@…oÕþ¿¤+éümº¥û¼iÕŒ','',0,'?'),('ê4Ê×çº2‘)A.;4Ñ','wp-includes/js/customize-preview.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ŠÉò¶fê¨/pºyƒO•','”wDX6^À9¹Íñ‰ã‰?Äpvv¥s/f®#','',0,'?'),('>qlî+ªmÈ\05Ä¦\"†^','wp-includes/js/customize-preview.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ôÐÆW³‡Ý\n2ú˜×Ï[','¶¼=Ó¾´ïÿÊÛÖUn.ìëT+ßb)¬dlçJ','',0,'?'),('¢ýñçUNEAÈgït','wp-includes/js/customize-selective-refresh.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','R}	W¸ŠEØrô£èì','Îº¥ðç‡À¥«°…|ÕËÇÁ°š»e-lº$²:TSU','',0,'?'),('0jïVÆ½Éf:Š5†ç`•\\','wp-includes/js/customize-selective-refresh.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','®ÿò–+/=§‰œ¨éƒ','è€Ã“3{%aÉbJÁÒüˆÞÏô£¡#¡X?B|È\n','',0,'?'),('QY—ê1ðTl’¹Vr<','wp-includes/js/customize-views.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','a›v›ø÷˜á1â!”ž','IÇXgÌ±áeJ\Z\"‰rë¸szÆX‡ØærW£ŒqšBˆ\n','',0,'?'),('ïY^~5~‘¨pŸG-ŠŒŠ','wp-includes/js/customize-views.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\0\r‘°Þ–UnÃ?r‹)‡','$|Óæ‡_ïŠUE«SóFVË©?ô§mû\'ò;¨vR;','',0,'?'),('Úý!§(t”ò‰<Ô¹','wp-includes/js/heartbeat.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','8³<”ðsžPk8ì»œb¾·','¬RÏôz-€\'_cOIYfô…gÎ_‰Rª¸3ˆŒ>—','',0,'?'),('‹n97I.OúÒÞ¿ð°','wp-includes/js/heartbeat.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','6L+gßAè\'¦\'ë°K','ØùÔ¯6ZUFêVš]ËÖ«ñV«bbúõ’žª]','',0,'?'),('‘yßg‹ízaU\"ƒ	XKG','wp-includes/js/hoverIntent.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ê³Y‹CŠžc˜On×›','…¤¢ú3\Z÷±á8ÏÕíïè	#Î¿YŸè!Ð¾¨©Z','',0,'?'),('S.FÈ«A¾j®ÿä( :','wp-includes/js/hoverIntent.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÊP\nÞ…L1A¯Wbã\0','’\\ùT8þif«ž‰QÐ0\ZiðÒò³¶`ïÜM˜÷xê¨','',0,'?'),('^ïù^\\QóÃ=(w²î†','wp-includes/js/imagesloaded.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÐÂÀ×ãvRæfWÈÈÖ7dB','vxe€Õ­rµ©)LÚzò³™/@U±-@ó\")×›}\\','',0,'?'),('“—¬%bQñ£“bM<Öx','wp-includes/js/imgareaselect/border-anim-h.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ZÃÄ,ÈntZ^6¶{Lp¡4','qsßc©ÌõhšÍàm-ú%êx¨\ZB™ìxß\'êã…E:','',0,'?'),('‹ºFè\"÷èvhâ¡$LbŽ','wp-includes/js/imgareaselect/border-anim-v.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',' Éz!™<ñ7êÙý¾ËÄ*¨','‹á>úªÂödà•:Ûý¹j1í<î!4Û6“gæä','',0,'?'),('<FéëïPzÌ22£‡~','wp-includes/js/imgareaselect/imgareaselect.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','}(ÊÙ()³Ö3 ‡µóµ•¯','žqó!Ý¿JÓ‡—öi\nÁEá­5så!\r—…%ƒ','',0,'?'),('Ø8/B±$8ˆÏ`mœ','wp-includes/js/imgareaselect/jquery.imgareaselect.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','cìJeäQßÕÈ^ˆü˜¤,','&¢ß²zÏ=R—ØT€¼Ágà—bÐ0$çÚŸ3})B','',0,'?'),('Õö¼úÍ¤6é\0/ý“kúÀô','wp-includes/js/imgareaselect/jquery.imgareaselect.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','•›IÕ./ó«×¹ä„@gÿ','n\Zân¨ÏÍÒØØÊÅM\\D.g?PÈÕl 	Š<€ã','',0,'?'),('SX+7Êû1?ÅõÏî-','wp-includes/js/jcrop/Jcrop.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Z‹ý7e½¯¼òÍQ°%K','!ˆŸ@¤X—7JÅƒÀäþ¼p›3KÒ;S*!¸õ°L','',0,'?'),('üg\"š}_¿7¸½¦ÜJ5','wp-includes/js/jcrop/jquery.Jcrop.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','VÌž¢Ü/K‘x¿¬¬’','Ý2¬SŸ[±6Dv‰5bsôÙ=‹ÓÇNL¥wõ¾‘·','',0,'?'),('T‡.o@Î¨2ÿwõvŽŸX¹','wp-includes/js/jcrop/jquery.Jcrop.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','/a«˜LruÇ4ÿ\ZÁ','»ú·Ï·Ûåydýix—{­p+ÁÖnÜeÚª©f¥','',0,'?'),('v¡–Þ£ãûRï','wp-includes/js/jquery/jquery-migrate.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','lW·bXŸê[5yÊ^l6›','OÍ­z…ç%(Ës!?,ÆežŸ´³¬\nƒø´\'\ZÉ€¥+','',0,'?'),('ºaÉ@o›ÿ\'¿Ékbíþù','wp-includes/js/jquery/jquery-migrate.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','q!™NìS ûæXdc¿–QÂ','Þ|Öåã\0»ï¢2è‹+šëAuóÉðdmã5„Ç‰','',0,'?'),('ÄàÊ™\0}ôßç” K›ö.ÿ','wp-includes/js/jquery/jquery.color.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÿ-¸ÛñEÎGóîó>vJ','e!ˆ¹qp2Å ÔjU*W	ç¹ø5}DÉœ\r&_õ','',0,'?'),('vúÒ¸);D°~J\"àq','wp-includes/js/jquery/jquery.form.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÐŠn=iÿáf®ƒâ5]','þ5\\°\'=\'¤*m%,¨kC!<¸÷…2ƒm=ë','',0,'?'),('&=\Z½+tí’\"¢/k\'\n','wp-includes/js/jquery/jquery.form.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','E4úGú¸nð¬¥4^0Ýõ	','2ç—; ,Öºk˜Ž?Lpî93LÊÝœGæDk_','',0,'?'),('œþP\ZÅ/é¢¯l%¡','wp-includes/js/jquery/jquery.hotkeys.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','â”ƒ¨Ê& Ý‹\rFÆ°¦é',']§Á!G»3¸œé[#È:L¢\r: œvµC>','',0,'?'),('ÅÍ-†p“lEÆóØk†/ö','wp-includes/js/jquery/jquery.hotkeys.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ãS!}EU«\\b³g¾h‰=','\ZJ·û]Ýx Õ®Tî¾ÄcÁ0n˜9  +Vékâ','',0,'?'),('g#é,vM‘ÿŽ‹—ß:õä','wp-includes/js/jquery/jquery.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','†ð?çv@ÞèÄÌ’N','Ÿü¿ý¿/ÿË…\Zðà”\rªµï*1N(S™ö\Z	Ï™¿','',0,'?'),('c,½…°[xÞ«ô3¥\nù@','wp-includes/js/jquery/jquery.masonry.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Í³@`–ÿ€&n|}A‘†','ö\\Û™§¿áŠã	}M’gß ¿$ý0± [äÝåB','',0,'?'),('{Ÿ)×4e4p:±fW‡','wp-includes/js/jquery/jquery.query.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',';ÌXzòÇ°ÆûÉÀwC','ôuÈg^ˆåäˆ+ÿ›i¹«m°ÈêG\rF¨x•iðX”','',0,'?'),('(ˆÔg%\0ÏÃ4ÝÛl>œ','wp-includes/js/jquery/jquery.schedule.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','&³—TªkÇfØž¤Ä½','¤Ü?ïÆvEÊ”ªwjÇ¦¡CåPÕ¯ì_µ£','',0,'?'),('qhÿ665—y|ò=ï?S	','wp-includes/js/jquery/jquery.serialize-object.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ñ\\)¡Ÿú‹›Jèl<ú\"','îïD{zp¼\r]µÿ<æ°ÑÀ§‰Ë@7>0(™¿h','',0,'?'),('ü0<PsÉñ×žH—ÑÁ22','wp-includes/js/jquery/jquery.table-hotkeys.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','§êÖ”#týgP±g€¥',':‘ÎA–æñf®x×‚ººåó²ÜËê­ídƒ7#','',0,'?'),('ò± ­ü²BÉRÔz‡‡Y','wp-includes/js/jquery/jquery.table-hotkeys.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','åogo·¿“~i¦I	ú','„<²Š=¸¤;’:Át_,w«ÄƒI·ÊÁ,Š,™œ','',0,'?'),('mY·Á“š}É½ë…?','wp-includes/js/jquery/jquery.ui.touch-punch.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','LÈmÄQ4Öƒãˆ]±','k>jT@©—ŽzÌÃÈ¯êÕœ.OB×ÀjÉ0\'ôêt','',0,'?'),('Æ¬+\Z–¼ÊIód^i <\0','wp-includes/js/jquery/suggest.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',':$tV‘EÕÊ¿Äû‰‚','rç,KËpÅ—rq^b¢\\‘¸=rZÐ]ƒÉ6+','',0,'?'),('‚3¤–Æ‡eÇ(Ãº9ù','wp-includes/js/jquery/suggest.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','s\\+A)œ”ãn.;«‰','I<¿{\04¯`œ<!j’±Z8ë²è»D”HWÿ•','',0,'?'),('6Ù¨	Îÿ:{”^Dá‰','wp-includes/js/jquery/ui/accordion.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','3L/ûoüo.¡ óÂ','rŒ0JJÚy;š\nó8Îìªõ(“Puõ£\'6Nq','',0,'?'),('gþEdÉã1¢ÒD}ÂÂü‘Š','wp-includes/js/jquery/ui/autocomplete.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ðÿ>ºbXesÃ¥Ìžýæ','šnžô„}|pïÔ9j˜ÆåBý?+*W÷!‰‹F%R‰','',0,'?'),('Üå]/~ÿøÕq¡¥XÅŽE','wp-includes/js/jquery/ui/button.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',',éžÐóQæ¥Ž´¶¼¿©','iöÙOˆÏž)+úêýbÕýÃxŽó˜›À!•¼Ñä¸5æŽ','',0,'?'),('è%y>}HÃoÚæú(6','wp-includes/js/jquery/ui/core.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','œäáWD„‡ÔïàÊSejq','=}*VF]î…O7wÿ€ÌÞÀ7$jêT½ˆí‰^K3','',0,'?'),('@k/ Á¡ŒæI‰?T,','wp-includes/js/jquery/ui/datepicker.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ï¶=ÁÞSþôÔýÁßÜÖ','RøP7ÈšMQÔÓÔŠö«\\—Äpí!ê^ÿŽe,R','',0,'?'),('F«ÒeÀûÖ}í(·å¿','wp-includes/js/jquery/ui/dialog.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','>Í•ªÇxQONi—^Ù\Zb','Ð8m1JÓtj}ƒ# ìÆzÇÔ’AÆødùv\Zd-','',0,'?'),('pôô7uÌLÍ_{2Ã›–','wp-includes/js/jquery/ui/draggable.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','D<\'w‰ºöœI\0Õœ6í','¸PRA`5¬;¦ð[×Cb))‰*“ kM·¦Lež“z ','',0,'?'),('ïzúÀœØö×ò|”zûxv','wp-includes/js/jquery/ui/droppable.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Þ¿R$Ä(‡Ñ¦ãŽÙSØ','WýÝ(çÏE]Fn¿Gr÷/…¥²ì˜ò}J‹¦','',0,'?'),('&cµYDØ#èP{+¢','wp-includes/js/jquery/ui/effect-blind.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','­ÛàŸ<OØmA¬_;OL','¶Œ†9S‹üÔ\n‡^ˆn¾TŒúIÍY«ZdB#U´}~','',0,'?'),('ÿ¨a5[4ü5¼MepC','wp-includes/js/jquery/ui/effect-bounce.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','KÄÉy$¾¤¿{×´oôöL','ÝÚú:¶J=/ƒÀÚÝm¿{qÉÍ†2ü[à\0©N','',0,'?'),('œåU‰±ó$ì\\*Ý1^œSý','wp-includes/js/jquery/ui/effect-clip.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ç“”Wè«#•GZas','CÕ5¤ý¢‡r–C‚Á÷[ú5Ñ\0_þm­Ó•—÷·','',0,'?'),('ìD\rh}¼è¯¶‚!\n','wp-includes/js/jquery/ui/effect-drop.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','WþV‡ÊÇ¥²YˆF2è','¥ÃjªÌEÛÀé:Ke½>\rÐPEÿµÂ{=Ó²','',0,'?'),('ÏŠ=÷ÆX®¬÷bBz\' Œ','wp-includes/js/jquery/ui/effect-explode.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Àßb\\ÊAŒý€:QJ=Ñæ','þ#ålÝdd<­ÔP»ª‰Åb»Ú%š4°ž9uÉ-','',0,'?'),('´ÇAóG,‡Ã<Œ¸¸','wp-includes/js/jquery/ui/effect-fade.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ŸoÖOO_õ‰;{r¢5$m','•\nvˆO›IæˆFK´C<¾\"Ë¬j?Çp²ýï6Õÿ z','',0,'?'),('·P\0\'Ø0l§Ÿ¯vÈ#J<','wp-includes/js/jquery/ui/effect-fold.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','6^Á³§î‚ù<šýDEl','e¾ªC6HT™À‘î8õÞÒœƒ_üŒôë','',0,'?'),('{çMŒ“i»i2n•Ã6Ü','wp-includes/js/jquery/ui/effect-highlight.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','•èëæ*ß´Ã¸Nµ¾ø!','µ›y²ë‚W²Ä7ýL‘¦öf¶/rèü&Ø§ðl‡JÛ','',0,'?'),('¦ü­ó8`9ù×?Bb“Ð‘','wp-includes/js/jquery/ui/effect-puff.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','þImlc¼G…@„È³ü Ö','Düºè	1b‡0Ø$™n´ÈÁnmäM (z*×Y','',0,'?'),('˜‹µï†8(\Z¹jèZ]}','wp-includes/js/jquery/ui/effect-pulsate.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¿ƒo S@Z*„‡Êp!Å','ëm	Ï!áæÈ½ž¨ÔS¹QF_ÿÇP‹†”q\"!','',0,'?'),('4;VÏô\'Œ/¶òæ¨fº','wp-includes/js/jquery/ui/effect-scale.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Õ}0e,)Ãàã°+m·T','–ŽÄ‚jèhv‘¦çðrÃ&ý¨¸¦a§Ú\0\rÑy£³dàz','',0,'?'),('“¢þNVÔ±³æˆzÃZ','wp-includes/js/jquery/ui/effect-shake.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','&ºü¼íÂ3H£qË€1','âœH#X±{$‚ûTç8§exB˜òQ:è÷Ç9º‡\nó','',0,'?'),('¨‘~¸w`²5;Fã®®','wp-includes/js/jquery/ui/effect-size.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','°=ýnëÌÕêšë2“ØZ%','Šù	ú0õŠ[¿È”sÄªjåö\'oÚ9ò6þ¤±®Šxþ','',0,'?'),('YÔäÖí]¦®ÅžI†•¨','wp-includes/js/jquery/ui/effect-slide.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ú#G_°MVÚ˜Êyµ','ÒˆgRpf=îú¡ñ)A&©šþÂ­Qò]jA=œÃVf','',0,'?'),('Œ­l«.H|S„³Ö{°†','wp-includes/js/jquery/ui/effect-transfer.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','å°Þ¨\0w}Ò‡ˆµnù','©†µôUT…Õ$ÎFótÝuu‘…î“oOœÎ„','',0,'?'),('ÏÝ™ªP(™ƒÉO\'E‘ùe','wp-includes/js/jquery/ui/effect.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','?qaÏZ,^m4áÀo','ü›w_¯|+\"â’Õ2»5¡N]^Kr=×ù#ýîø','',0,'?'),('7ÀcîÂ¢)ÜæSóebµ','wp-includes/js/jquery/ui/menu.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÉÿõD•þtc»]8”','ðQÉ…rnËYunÌ.kˆ_ÚNx|²!æ©¦Ë«‘å','',0,'?'),('¡²¨æ€Ë:xÙý=á}ˆ','wp-includes/js/jquery/ui/mouse.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','‚ƒZ‰`Ý×0 8¿¤\\9 ','éãüÀ[½:ÚJªUm½×5<à•f¨LKI÷öµTZ…ç”','',0,'?'),('nef¾³°A@´ÿ¹R‡?¤ý','wp-includes/js/jquery/ui/position.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','JíìX~ƒC:ê¤/b','[B¥ÿ©ÝÉû<»s™©*Ëù;ÑÕ¹CÆ]+áƒÆÌSŽs','',0,'?'),('=féuñ¥A><Th–ÉÏ@','wp-includes/js/jquery/ui/progressbar.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¹MqÚTÙ´A?úL}y\"iÅ','œü\'xÑÅ¬Jô,~êÎó%\Zè6a=µ“ÿm','',0,'?'),('ÿ´-¹†i>bsŒ›1é','wp-includes/js/jquery/ui/resizable.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¥\02|I,ðÿ|†¼Ÿ','È3\0{iè2%™E¶µÅ€-ã4Á²€›æ¨¢jÖ€’M','',0,'?'),('ØvõýãÆ\rêû´&X‰','wp-includes/js/jquery/ui/selectable.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¶2­Ñ‘ì®’æ§¶¹r¦@','Y›h\'<vÀŒo9~\0\'ìúl*ÂÐs:íYM¦v6','',0,'?'),('S0ôÖ¾â×K/17uüŽì”','wp-includes/js/jquery/ui/selectmenu.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ë}´Ëª2Ž9Zhxi\"6ð','í1ºVú^º„F7J<\0M»íßf¬¦XÓRnªÏœ¡5','',0,'?'),('\\Üàã”·ðAV*ç±¿','wp-includes/js/jquery/ui/slider.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','”ïâÎZkCdóL½ /K','\'feê)&BýoÅ·„óÌi‡öŽ#]&˜JÚ§¤Ç','',0,'?'),('mˆº-\Zm1½¥Èû£wÇï','wp-includes/js/jquery/ui/sortable.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','(–éÁ~š¼Ùk¸kã','õïiï/UÕœ£“jK\ns‰>¶zTaÁs°ÕüUu^ñv','',0,'?'),('mEš¯ñö¾º\\ç)ÞØoÔ','wp-includes/js/jquery/ui/spinner.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',':Ï2Úa+óR!À“”…e‘Ü','IÑ)`ß¹*äN«ŽVõjù¦dÌ²‚Ê„ðc†Zæœ¸S','',0,'?'),('¯ð‹(5ìaH­yo,Xþ','wp-includes/js/jquery/ui/tabs.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','S0È4%«gÎc÷ABzÛ','58E¹hxá%I=¨ËÌ`uùâÜñ˜û,ÓŒµyŸD2à','',0,'?'),('-Š_º×+ÍÔYn¨ÙS','wp-includes/js/jquery/ui/tooltip.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','D?hi\r„îä,óq40','«ÄÀ„¾^‰«xò­ôt`ƒ0hå×îóKX­ãï+]b,','',0,'?'),('Ê!&øiÆ)^þW­²ôRœ','wp-includes/js/jquery/ui/widget.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Œ÷ók½y¼d¶?zx7þ',':’ùÛuù#£†`Ì·O¼Ã“z,ö£ûÐn_­©','',0,'?'),('*ç\Z07Ñ¥1OÓÓÙŽ8','wp-includes/js/json2.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','s¡×{N‚|EO«0©','q3Ÿ..Šj G\\RÓnÝ¼I/T¶‰-í','',0,'?'),('ý´ö×øõ)Ý(¤Ð<ÙÝ','wp-includes/js/json2.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','5Ø™¨†?Dù»æ†ÌX<','eùB@õMÎ¥%@$}tÐ¶“É[\nõ¹~Ý˜UËq','',0,'?'),('ªªõÙ†˜|† ²½','wp-includes/js/masonry.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','T ¶Ql$[PNr@¨1,','\'´ÑÏD¿\rãÊ<Ä©šîòähÀ‚=Þtô—ü)—Â','',0,'?'),('réör‡(J¯g÷(¨y­t','wp-includes/js/mce-view.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','òå\ZlÃ¨ê?m–d[Ë‘','ZÌï‘IeøèºD¼0ŸÜe°…­®øŸ*ù~ØópF*‹','',0,'?'),('î‰•fÙ%ußPûÊñ„','wp-includes/js/mce-view.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','(cËàceWƒ˜ÈÔlÈ','÷ß0%?¯\"oÅûkZSÉÇB›Úˆ@3<!zÀ','',0,'?'),('¬{ß0l(Æ²u9,wSØu','wp-includes/js/media-audiovideo.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','œë»\"¹<STQžé¢›`é',':;Ÿ¼±ÄæHÿÜ·oM×Þjœ¤EZ[þÚù‘7.','',0,'?'),('µGV\\z²…#°ÿƒ!;¢Ä','wp-includes/js/media-audiovideo.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','HšJ&gOBÜ`~w¢Âö','«Ðqj·è/\0UÃÒ¶˜Æ¾µ„¬IÃ·}Ä_ rÁ˜','',0,'?'),('õuôNâƒ.A_Ù_Ï','wp-includes/js/media-editor.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¯l>°êD\0Ô§ò¬L|N','\Z	QtÌVbY	yÍ	„c4¬eîYoñ“m°','',0,'?'),('	,¹©/Õ•‹!ç›gyþd','wp-includes/js/media-editor.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','yÏQºâY;zÂ{sxžCdm','t)ü¶²“8Ü¿*á iÚ¼¤‡ç…çMP”à¸—ˆ·DM','',0,'?'),('R¯\\SC¯|juÓ9µ¿A','wp-includes/js/media-grid.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','éÒ5­‘ðú\"²SÒ²ƒ','ŠÞ‚+“žæ7PŠÔšËï{ÿ¨â€DçJg š”_î8É','',0,'?'),('ôY´ªR‰Yi/µ·l@HXÓ','wp-includes/js/media-grid.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¡½A9ÿÅæS2îËNÞ','[ß\nÀŸÚ˜lê4\\·AÓPÐÎì*g_Š(\0¾Ý2â8fôi','',0,'?'),(')Ÿ_æö’J¯‡×™Ô','wp-includes/js/media-models.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ðûõ¶Ã\"Áëã¹rî¦.È”','›jiƒ	àYEG´ó¯Ö@ž7œ&±ôwÓ•“G]êF:VEô','',0,'?'),('‚F‰ åGJÎÖBìˆs7µ','wp-includes/js/media-models.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Y>|ˆ‚ôeê%\Z£pp–š','˜:…„ü`»™ù·l•ÿ*Ì\0PÞ•àŸVªªp·”^ü','',0,'?'),('È‰V?	ÝÞ]Æ)A','wp-includes/js/media-views.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','½:½òB	¦5^	`;†j','õ=±T7ªÊ›úyD,U4Âoqe,D.ÛLº[Qh¿(i','',0,'?'),('–Á¼™E˜?ÆŒÐ®á¾ ','wp-includes/js/media-views.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Õ=ì]ñ´Ò‘ÊÊÿV\ZTÉ','Óim“’›¯¯‰½‹Ý4âq5³EÔòWÉ^<¹«','',0,'?'),('.x¾ŒÏ®ßú7…×üú_Î','wp-includes/js/mediaelement/mediaelement-and-player.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¿¦§…x³ä6 Ý÷T Fš','Â\0<‚&\0ðê<\ZJ!6×õq‹QÉÅm­¯ö8ãïI','',0,'?'),('§y´ÝÚ!¡\0pZèˆ[A','wp-includes/js/mediaelement/mediaelement-and-player.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\'šMáÊ„‰ùh’åƒEÒ','žI\0¢ew7T.$‚	¤aZS·–\0ïô¯1}v¾\".','',0,'?'),('‹|BlôŠIHÒ¼ÝOSÆ±','wp-includes/js/mediaelement/mediaelement-migrate.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','<¶C’_hzÓ3„í<7',',b#0 !a­OVc,úØ•SÔI˜Ð»%®Ûp)“ý','',0,'?'),(']L0ºòìeE“\"uÀ ­‹','wp-includes/js/mediaelement/mediaelement-migrate.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','?ïÍë(\"\n1¦£¯0pù','8+‡Iš¦ö¡o ÈOðœó:ú^±j–Ø8gÉQŽ','',0,'?'),('ô¥zZ»fÅÌèip^‰2×Ž','wp-includes/js/mediaelement/mediaelement.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ó°â7—ä®mt¦Ü¡','\0jRÌigG‡4ƒ£=I›½5\"R²}÷´Ñ}oÇE','',0,'?'),('¢OOwTàM\rÒÁY˜!d','wp-includes/js/mediaelement/mediaelement.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÞÈü‡\'8š{\"W–f=ÿ','™ÉÑ—WkB«é2¥(IÂàømM‘Ä]\Z·•','',0,'?'),('^Uðœ.i¾ÖypGÂ¶™','wp-includes/js/mediaelement/mediaelementplayer-legacy.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÄëOsÆJ76†âåÓ1N','{RDoëù]ÛÚ!9¶˜Û\'G\\6Ò&ëŠöÎ~í9¯Ëp','',0,'?'),('nQ¸ÊÊ’\'”kÃÞ\"%ã','wp-includes/js/mediaelement/mediaelementplayer-legacy.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','§ó0™!¤‡d\n˜Vœº','2Ði3ÿg%šRN´$·„¤G£œÃ±#“övÄ€Ùí','',0,'?'),('Ws™$8Õ~œ‚NÈ-œ@','wp-includes/js/mediaelement/mediaelementplayer.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','•}¤¹\"rr\\¶6œÉò‰W','b­0‰!ŽOÈŒa¹éî2ž¹!Þ©dšîE×õ62Ø†','',0,'?'),('	?±Ïä†æÛ™q™uM','wp-includes/js/mediaelement/mediaelementplayer.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','2ï‹¦>§gHÙ799gé','^ŠIëRb¢Åhi«6îÉ´,áÚpuóô~Ç©ðzS','',0,'?'),('dèˆ@!íÆd§J€Åû','wp-includes/js/mediaelement/mejs-controls.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','‡.Û·Z#e0¿< l–¿','›Xã*áî\Z»ŽXÛ(ÞZ!ë·È½¨ñD2aB','',0,'?'),('ßbz“/›ƒTº7aHy','wp-includes/js/mediaelement/mejs-controls.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ð„š^yq+áS%ãí¸y','‹½®ÒÓÏhó…©¯A3Lš:¾î\'1÷ê Â\\è','',0,'?'),('ÌÅÎêÕ\";+Â\rxu´äÊw','wp-includes/js/mediaelement/renderers/vimeo.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\\ÜËymü›ï—E–\\õ•','¸ÿ}#Ã4ÝYö¡QŸÙcá²´ž7k$\n	´Ó_-\0y¢\'','',0,'?'),('TÜŒŠ7`\0ôý®Öï(','wp-includes/js/mediaelement/renderers/vimeo.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','N>öD©6/~§F¸y”','|>ìÌ\r«<ÀV/ƒ-B›É}ƒzéézíÔ†6Íƒ	ä?','',0,'?'),('­š•SÇhÞëáSÐ%Tzø','wp-includes/js/mediaelement/wp-mediaelement.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','j5V…L¡±…Í.C','{ád^Ü/E3¿YÃ Gë\'ûD\0GOäÌ£ûkd:5ˆ','',0,'?'),('ûDÏáê]æŸ|ß¼ª$™','wp-includes/js/mediaelement/wp-mediaelement.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ç³ásƒkhÙÉÑn$þf¬','!Û«¶ü_ãÏÃ—þ\Z`íCm¼‹ì\0	’gË5ðS','',0,'?'),('³èMŸé~\nÏT|·','wp-includes/js/mediaelement/wp-mediaelement.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','­DÄu¢mT9ˆ¨¢t','…çœe­ÃMÐ…“ÍóàqbÓqOè´±v’0ù­Ë³','',0,'?'),('þêÆöÕNº·9¥{®;','wp-includes/js/mediaelement/wp-mediaelement.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',']G\nÂ~Çz\ZcRðUŽ5',']xÕÖG“«»|A&\nØËõJ\r…™‰j\Z¯¿‡¦å','',0,'?'),('6ÛÚß¨X/€¿HL','wp-includes/js/mediaelement/wp-playlist.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','±5~}Â™Ê›}`Uôí','†&¯MïêÔ+Ö,îÃã‰šÀâB[ûu¿A9[º{Â','',0,'?'),('Ë¤Ô’{%kò¥Ž#¶fÛ','wp-includes/js/mediaelement/wp-playlist.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','_·Iø­Î3Ÿ016‚ß_','j†!±ûU®ÕþZË”ØœÌ¹ï\rhŸ\0\rºbÊ\n¤','',0,'?'),('Jþ‰E[¥7UÒÓ\Zï~','wp-includes/js/plupload/handlers.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','z„”öñ6Õ¿’ uúaßà','^õÁŒ <K×Ú+‰s	e©•l{¾;2	\'æa{)È×','',0,'?'),('Ü;(Xp`Ò™Öì‘pÝ·','wp-includes/js/plupload/handlers.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',' Bˆ);ûÍ\rz£í¦','\" ¬Ô1‘ˆ¾z”´Ÿä3é†Sã79Åþxrc›Œ','',0,'?'),('ÌVÚ®™œÆêM¯éjÓ','wp-includes/js/plupload/license.txt',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','u&\n©TIŸzº«ªˆ+¾','¼ÿ\0v1£êsÔNí>cIDÙ¦¾Ö„Ié­0ÿ-','',0,'?'),('aäü)6çï¢À‚ÑŽã','wp-includes/js/plupload/moxie.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','‰#C\r¡š5Ç±ïÇ’¶üš','¿èóÃIÒ9_/xÔt5šå¤à(¿.gâtT\Z}&¾°›','',0,'?'),('ý©L…òVÿY’àÿ*','wp-includes/js/plupload/moxie.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','hÞÆ[€²¶i”ôpb¶\\','Ñà­ªîP´‚d\0÷%ò0îöxT@ý36m™ºQÙ','',0,'?'),('ß”¿ÏËŠ‹œH‰uÔ&á','wp-includes/js/plupload/plupload.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ý ª$pZRÑ>\'Œ|÷','à\"³Íº–8[J%ª.ºËš¤c¯V\r\rE½¾)\'','',0,'?'),('ñŠ¢vŒ:¹D¸YìG','wp-includes/js/plupload/plupload.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','GÓF-_¨‚©-½+TÕ×G','Vò$_ä=—ýþ8>3SO»‚¸ÎpÍÀ÷Nÿ¼','',0,'?'),('5C‚)\nWu¾ê½/FÒcK','wp-includes/js/plupload/wp-plupload.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','r:or1]¦æˆù•½HÔ¯^','°ÕTËÒBþ¿|ª\0\rº4ØÈCÓŽA½PÜj3â','',0,'?'),('ÿLÙóêóe5x?e=æˆ&','wp-includes/js/plupload/wp-plupload.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','|t øfÅßÑÜšEGFQöï',',+~Hö¼ß,ÝBJº^60ï2ë&¸Ø&@Ò[dÞÊœ','',0,'?'),('ì?ØÔÞý·h›±ÒÎ;','wp-includes/js/quicktags.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','»6ÅøýžÌ]·Pù,Á®','«ïf}/™oVC@¼ÏÖ\r?-ÝˆÏ‚©¨æ’u±n','',0,'?'),('ßŒò‘(ƒ©©‰ÕÛ2áè','wp-includes/js/quicktags.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','óqñØ®ùÃËËß©|÷½/','«>«Gâ6v\'wÜlŸþýKì-Iê!Þq±¤ælw¥\"','',0,'?'),('ËåGä¯€oe·ÿïoœ','wp-includes/js/shortcode.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','n8HÆêhfš”+ô','Ÿ§QM‰„pg3É×]+5âý£Uó,Ük$H2','',0,'?'),('gõä]bR%ˆ ZÛEº','wp-includes/js/shortcode.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','“:#”n€ÜQµáÉ8','MÒ„ææÔã¤‡ÂGî-â›äá¶ÛW,{áÊº','',0,'?'),('µO—r#½ÔýTºG‡¿!','wp-includes/js/swfobject.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ÿýº,ÿI}p„e~2˜qõ','?”Lw‚žÏ.ç4MîÕ’F…JÒø>fI†é´†œ','',0,'?'),('ò°–üMÂÙ¦MÆ/`¼','wp-includes/js/swfupload/handlers.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÂÁì*Ã#Í0‹-ÆÕƒpõ','H³#ý¯¥Ÿa:š‡1ú‰ÀÕöðí—ß¯orrjìuzàzV','',0,'?'),('Å`#ãØG–b¯CÐåÖŠÎ','wp-includes/js/swfupload/handlers.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','j¼Ú™Ká~q	õˆüØc=','ÙTòŒ¿‘ôõdñT¯y~#ïïjI\"£++3ÁÉ‰','',0,'?'),('š\Z-®”x7Ãù(AÄ4ù»ç','wp-includes/js/swfupload/license.txt',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ëà[°`È^ˆ-Ào÷QWz','©Ñ:)²›6Ÿa\"3r…Ü\rP\rN™4‘yJ‹Ö·“Uéq','',0,'?'),('ŠÁ$¡ÖxM1>è²_8P\0','wp-includes/js/swfupload/swfupload.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ì×#™˜‹ù9Üá>&YRg','Úò„Ý™ª¯åR€YY-ÃÒ•˜&qW1(…Kà¾ñª','',0,'?'),('Âý	1ªõÐã€…S:(','wp-includes/js/thickbox/loadingAnimation.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Î\"h\rÒcÍôÿÂö&º','BÿFúåœ`¼F-›Ël®Ú›±RT6ÏéºåüþÕ…ýÛ','',0,'?'),('éÔÞât“þ˜ZÑO\'ƒ \n','wp-includes/js/thickbox/macFFBgHack.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','’È°gï†­×W’,/u´','RwË/à¿h×í&qèÞ]Z¢½_óÄÖNgyô•ˆ¹Û','',0,'?'),('’v{LöJlÅ€YzÕ`°(','wp-includes/js/thickbox/thickbox.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','iÖª[¯ÀÐ-¢ÔG–ê','Û1õá\r£ÔcE™¯^eA»”B4ºxz«•[','',0,'?'),('AE¶ûô[€`Œ·•','wp-includes/js/thickbox/thickbox.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÕÒH¨sTX{B$ÂÙ­6Ç',';–@ÒÛÿ³û„0(¥{›oŸifKõÏ¤‘EQ÷â™','',0,'?'),('9:ù—d¯o\n‘ðp`Ry¨¢','wp-includes/js/tinymce/langs/wp-langs-en.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','øfŸtS±uc¦.k»7a7','¾{hÂ@îû·Dš0øKÙåÒcx,TMHd?¦A-«','',0,'?'),('—	v¾O.„|ß¤Òµ‚','wp-includes/js/tinymce/license.txt',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','o•‰àÈßx:Í`Òºÿú','Yáâ§#wOÞg^\'åbºì‘:…^ë	=è·¨|ô¼È','',0,'?'),('œ\n$zßX£`Î1Bw','wp-includes/js/tinymce/plugins/charmap/plugin.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','˜—”<Ñ|ÚyBáÜ”\ZÊ','~J£Œ×Ý\nÆe—û«¾1„ï0oóý<ï-HÞ<Qüa','',0,'?'),('k‚ˆ¸$6O³Ò-N…x ','wp-includes/js/tinymce/plugins/charmap/plugin.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','âXs¾Z¨@rf7r%¶|&','/ßX®ÜE®Êúü[3sò‹´L”`´§ý¨[0öÔB','',0,'?'),('Aa÷@J§÷óñÂ×Å·','wp-includes/js/tinymce/plugins/colorpicker/plugin.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','T?W¶°ÌÇ#@Òàº','O]±‡Á¯ˆ)/ã„øVR±nöàÉüüâhÒ¶$n','',0,'?'),(',<“ª ß?C]á0AŒ','wp-includes/js/tinymce/plugins/colorpicker/plugin.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\\Pž¡PÄ«ÿZ(ç)œA','Ñ¥\n-î$Ó£u\'\"ùùxj‰nÂÆŽ+™©ÿº','',0,'?'),('HCƒìÜ!ó«ª\"(ˆ','wp-includes/js/tinymce/plugins/compat3x/css/dialog.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','å11hû+ezKÒõàk“\Z\"','*3ÆUû#\n]›]uho\rœŠÎ²á\r;5j¯á','',0,'?'),('go¬sœVã£;íÇÿ…\n$','wp-includes/js/tinymce/plugins/compat3x/plugin.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\')}×=çk$¨îîh=','¶ÎM¬ÀôqA÷mg˜Z’•«Þ¬ÂHÆJ%\"uÅ','',0,'?'),('0]qK\'ûf˜xÁ»Ïã¨','wp-includes/js/tinymce/plugins/compat3x/plugin.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','E@\Z/aœ-}ÔÖÐ˜','˜,Ê|ÃÉ{J‹±3x\\Ù%ÒMÅ÷ÌÃ\'+‚!Cxm','',0,'?'),('Ë!¢#ò°ÕI|‚ÛFé','wp-includes/js/tinymce/plugins/directionality/plugin.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Àîüå7¬-õ¾Ù,ºß+','ž§APùÙëp¡n5\'²z~mcA{ïßê¡–¸ø½','',0,'?'),('&¼‹]0Wñì\n)ÿ=’¿','wp-includes/js/tinymce/plugins/directionality/plugin.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','nH]—HÊùóð\rÏcøV','w()D~ôÒ±¹2ÙÜbG4G:VÂÊ$Â˜Æ_$','',0,'?'),('‡òP“wª©0âhÿ9','wp-includes/js/tinymce/plugins/fullscreen/plugin.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','p±ü4ç|v»’¾²)´g','âû¦ïøaSÉbÜ\\~24Yv&S§C#]”<ù','',0,'?'),('sÞÅU\'÷ìÀe@¡d‹','wp-includes/js/tinymce/plugins/fullscreen/plugin.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','i“pêx–“ÖÈóCdÉœ','Ø±rSHòÍf„‘\ZÐ^_û\\pq¬Ú+‹BuˆÀëŒí','',0,'?'),('áñ\\9Ã£>œŸ„Iz4“c','wp-includes/js/tinymce/plugins/hr/plugin.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','£±°´h‚\rtêÿO4÷—ø','z¦p;éÐ„Ó+=6,Æ„fÉ/\\A»þž‹ƒj.•«','',0,'?'),(' ¾Žv†’\\Qœ¥À-¼Ê','wp-includes/js/tinymce/plugins/hr/plugin.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',' ¥fa*ÎièT¿%Y³','òÈ¨§þîƒ‚VÜb”-\ZUD“îq„3êüì®éûÎ¦','',0,'?'),('Ï€tGÈ©ÈÀ‹¤D','wp-includes/js/tinymce/plugins/image/plugin.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','DÄQZ{Dèß¯ ','Øø(ý>ùµmF¹¾€õ$\'ŽmÓ2”™ƒ[)æ>éq','',0,'?'),('»	æããEm[¥¬³ÇØlÅ<','wp-includes/js/tinymce/plugins/image/plugin.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','`0VÑÌQT»€dWÐ´õÔÓ','¬ö«6(™N ìRÏ…+~S%ˆ©?8)¬ƒ‹K¶‚¯6','',0,'?'),('ƒEbl8yÀöÃ}†¡—','wp-includes/js/tinymce/plugins/link/plugin.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','9½1\'ÝÓ% ~¼‡Ä¸X','ÁD(µÆ{£÷@®Y„+‡­S!Ï_@ú˜Ÿ\'¿ 4-','',0,'?'),('ÖXÚ‰|î8ÑõÁì}ÂBÝ','wp-includes/js/tinymce/plugins/link/plugin.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¥*ñIÆàR®²$V¦H','É+­P°™áã‘>¸~uÉÉcË—“‹–ûd á¥f¯','',0,'?'),('!ÕR•á›pûnLÑwâm7','wp-includes/js/tinymce/plugins/lists/plugin.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','NuHv&Ypûî¯>','°YU+Žë€ÿTêù(Ž×Hù@p…âîˆ³Çh*g6','',0,'?'),('ÝJ0Ïõ§Éj YgÚh£','wp-includes/js/tinymce/plugins/lists/plugin.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','œ{\\NáP\\%oªªæKMý','ýüŸÁ`¨ñ¾¬²‰-\0üŽè`\nzHÌ÷è;ç—?áä','',0,'?'),('`ö¦”; \"­-¹ÿÈ+~;','wp-includes/js/tinymce/plugins/media/plugin.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¡òÄ_8¢XÂ/Aø5¡¢',' [ã\nš³,m	.«Í«Úº³rj žþŒý2¸','',0,'?'),('Æ…Ž‹‡|_Ëi/y¡Ò	','wp-includes/js/tinymce/plugins/media/plugin.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','°hÙDX(œÏÊR!þuAU','ÿr¸0µðh!,ú£á\"éîú²/ëÏc\'Ô{ÿ‰	','',0,'?'),('ü˜•ŒµÆªq¥æ‚³‹Ð','wp-includes/js/tinymce/plugins/paste/plugin.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ðÕó}>ñÖRÂ¥eïgìñ','j»pªìÈ,7×|U¿íg@±K9ê×9>Ò=]','',0,'?'),('Ù,(¡i7:^Ì^ç‰#','wp-includes/js/tinymce/plugins/paste/plugin.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','9†Þ±‡]hÒÝÂÊ”€Ä4g','£:Óè$†¥%Šéy“Ö©áä £´´çP†µ$3[ûÏ','',0,'?'),('xë‚‚Ÿ@}YÇŒiË+','wp-includes/js/tinymce/plugins/tabfocus/plugin.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','d¸’¾ñ\'újEÖ´|\n5U','„‹Z‘®%™\0G´L{y1»&¢oX>ÙÈX«yJ¼','',0,'?'),('“ð«vî­ùÃ|ß-ðÉ','wp-includes/js/tinymce/plugins/tabfocus/plugin.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ü1»=u·c\\¨$–\0©ˆB6','cŽ¯yˆ“\Zqm1°¥i.ZX/Ÿ\ZðµÄ•I[JN®','',0,'?'),('?]ýPû.£˜1ÿ´ƒÌ2b','wp-includes/js/tinymce/plugins/textcolor/plugin.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','HI“ë8Û¡™ˆp,|€!¦','ÇÓì0KÎDŸœ“³èæº\'+t\n–3†ÏãùÜhíÛ','',0,'?'),('Í“ßYá36¾élç€Y«°','wp-includes/js/tinymce/plugins/textcolor/plugin.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¸ktHÌJ tL¦ÅèŽLA','¼!ó“¶‹ô2Ézl¬rÁ£r³?ÄK…)ô\rÇt{¤Û','',0,'?'),('ýGþ²!#hÔ9	„ò&','wp-includes/js/tinymce/plugins/wordpress/plugin.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','½Áy°G1¤ñd®-¢°','Dò€©ÇSZ\0ªþ‰¥C‹ H sQvb¨co>§I','',0,'?'),('uÞÇs¶›y6\'v,ªÞ=','wp-includes/js/tinymce/plugins/wordpress/plugin.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','?lëwêŒu·H’QžÅ','»ÏpXì*Ú½¿»ç*“÷ì# @œ¬Ô„Öà«Àèà','',0,'?'),('. Ó\0_oEÿ]Aµ_Ô0PJ','wp-includes/js/tinymce/plugins/wpautoresize/plugin.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','d¼\0XcŒO°@pÛÏ%£','ÐoL”Nê¼¨åO”·©(¡S¸Ì“Ïw-ŒQi”¦ò','',0,'?'),('úâ}‡Ûá³PÃ›™P\\©\Z','wp-includes/js/tinymce/plugins/wpautoresize/plugin.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','†è}Ë³QÐgÑ¥D…è£W','°Ü\rIÓzŽübàoš\'iv¨hhÆdTr\Z0ÃU<œ','',0,'?'),('	P=N>Œ¨b\"j:~[Q{á','wp-includes/js/tinymce/plugins/wpdialogs/plugin.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','÷®Ë[ß¢‡9î ¤˜ÑZ','$’\'‹èvª¡ µD7Ç7HÌï¤Äl_Ác”d«N','',0,'?'),('3ÛÕé\'º°ÁRKšBfý','wp-includes/js/tinymce/plugins/wpdialogs/plugin.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','êû±G‰ã7˜(ttâ@¸','ÛŽ‘»/ÔŠµkÓO«bÎÇ<¬òŸ8µ×Oß÷gmöW','',0,'?'),('<ïÎuê¿–\ZÜœµÇYÔ^','wp-includes/js/tinymce/plugins/wpeditimage/plugin.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Q	\0½,Uº£€yÙúÅvÅ','ÈôbÔ*£L‰ý8—l†…|¨½ƒÖ¼ÅôŒs™çô¹','',0,'?'),('Ë6 <¥ÊCêï®¿¹V:(r','wp-includes/js/tinymce/plugins/wpeditimage/plugin.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÀHÏlMº¯/¼­P»¹Ú','×‚þÑH>Ó7Ñ»5öÑçå†Z´SöV£èG–ƒc%Ð','',0,'?'),('òÒ%¯\0úÊz”fÀNÈpS','wp-includes/js/tinymce/plugins/wpemoji/plugin.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','÷za1ÁPe=ß¡zVŠbÐ','y´¦’$¤]wÏð#Ü”ä*„ò²#UµâÉ}cä','',0,'?'),('¿@êÉ,Ðn\\–€+k·','wp-includes/js/tinymce/plugins/wpemoji/plugin.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÆÌ,ä„,óD”²UAŽÇî','¸üž-&àHÜ}L\"D-7&sôœ+.ÂÆKsóÜKÛ','',0,'?'),('u¿Ü3!pA³f…)R¯MÛ','wp-includes/js/tinymce/plugins/wpgallery/plugin.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','H4PDæ¾¹ÒûDM\\I','›#lä–ñ»üÝ×LxÎ)î$3±xRÑº*\\9-ž','',0,'?'),('ëOÓ¿ú;¤=\\J¼zy','wp-includes/js/tinymce/plugins/wpgallery/plugin.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','û7`ŽùOšty²ù‹OÎ','?X˜ÿ2ŽcŸÔ^ÝüGó,6Øç¡ô©Zšä><,ï2ˆ','',0,'?'),('k˜‘²Ðb…ÉgSˆ','wp-includes/js/tinymce/plugins/wplink/plugin.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','§°î+ÁÇElT?9KT','_)38³bÛIUR>üN$ú?Æ²±ðÁe­‡:÷‡g','',0,'?'),('L÷…)ÑÙa$­D-ïÓ®ªJ','wp-includes/js/tinymce/plugins/wplink/plugin.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¢™]\ZN¿fáÐ£kkD”$','¼ï~æ6Ù¿©<”­`©V+#ˆ¬_2×¦´{¾±','',0,'?'),('\"EtÉyˆsŸÃíÞ\Z|g','wp-includes/js/tinymce/plugins/wptextpattern/plugin.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','»ã	»J)U¬sÀ°¬Œ','“2sF‡ïõÏ|‡:Uñ•4{jÚ(þ#4oH.jø±','',0,'?'),('3+zÀÿ.†±‚6Q~]y[','wp-includes/js/tinymce/plugins/wptextpattern/plugin.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','©.Eié$Pwoà»mÚá±','ú`¸7_j×„²\nl¯vƒ‚+fUë·í}‡ïç¸+¦ŒX','',0,'?'),('ãáqÕ82½úvÂ&#M','wp-includes/js/tinymce/plugins/wpview/plugin.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','t»Õœä_Kaô“ò[­û…','Ÿ¥&FR¯u½å¼&µñ˜þKE§ÄÑ3Œ-Cxó','',0,'?'),('Wl…Øy:Ï\0Vn`„d\0–','wp-includes/js/tinymce/plugins/wpview/plugin.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Þâ\ZTMG¾ÎU¶£Lè','VSìV¢-÷Áþ/çq‡Ú—a†DÉ™7»ft/CFW','',0,'?'),('áZ±Ž®(>(ª1bÞ«”Zê','wp-includes/js/tinymce/skins/lightgray/content.inline.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','œ–d3˜FSìœ] …CJ-','™‰§y4ÃÌUÈvÐŽòÆDU_¶³Â˜*âÇ#Ó·Ç','',0,'?'),('Þ”ä¥ê7™&‡òÈ€','wp-includes/js/tinymce/skins/lightgray/content.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','›}ø&ÎteªÇñžÊŒý;','¬´¿å˜½¹“®b–Öw2ön¹îÏfb`Â','',0,'?'),('û³>Ù/á¡‡_ó³éÃÀ','wp-includes/js/tinymce/skins/lightgray/fonts/tinymce-small.eot',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Òl([q×ô°ÉD#ï™','\\sÙ¶Òhb¢2.;Øm`F£Ðr^&óH-w	—yVµ~','',0,'?'),(':²Xæ2ìMÓþÖ~ûÈ','wp-includes/js/tinymce/skins/lightgray/fonts/tinymce-small.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¢¡÷2Ì4vLhNÕ!Æó2|','¯ÂË3iA(Ö­æpíç–GDŽÿÚ”îð´÷£ïÁ','',0,'?'),('`ÎþÇS”`NI‹^Gï','wp-includes/js/tinymce/skins/lightgray/fonts/tinymce-small.ttf',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','(€i@ÆGÏgëô®0åp','Gç½ù<š/÷14Å…ÕLëÒ5Ÿ»¸¹£œ¸!','',0,'?'),('ût÷0Ãgñ»a†/Åýž','wp-includes/js/tinymce/skins/lightgray/fonts/tinymce-small.woff',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','~ˆð-Êò÷Œ´Üx\'·	','Š™{Ú‹þÂNìoÜ×#XÁ+Xe\'¢£Œ†Ï_…ÞåÇ>\Z','',0,'?'),('vÚ´¡åÇÖV¹½ØKµúP','wp-includes/js/tinymce/skins/lightgray/fonts/tinymce.eot',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','a–¶ë%µ*È»ä©Nm¨®\'','móËunD¥e‚:s[E\Z²US%Þ—ñ0‡!à†LÃù','',0,'?'),('Q ²ÁÌÔï2Š7uí L','wp-includes/js/tinymce/skins/lightgray/fonts/tinymce.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','rbÙñT4ì|:âkÈsP',':\rÑk—:úyZ{¥“¸óÂÈ»ß‹$Û*z]¥','',0,'?'),('Pã…ñ0¹a‹¼RÓz= ','wp-includes/js/tinymce/skins/lightgray/fonts/tinymce.ttf',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','®ûü°/=;=>Gÿ=èï±','…òL¼¶©jç£—ue*S+ tÀl&I,TÅÃš€Ã]','',0,'?'),('¸\Zä¡¯lîÎÞù3ÈŠÂ','wp-includes/js/tinymce/skins/lightgray/fonts/tinymce.woff',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','§¤©5‹eŽÅ>#4Á¨','\"‰ë0ŒC#f@oü½<îaâÊãAû;¶Ä9b','',0,'?'),('õ¥†ÂØÞ>+ÜžL[îm','wp-includes/js/tinymce/skins/lightgray/img/anchor.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','«Óa5q€ÜÈ‘_4ø@','(afoÑÒxÔD™paQ6Ðmtké»,ùÈóV^','',0,'?'),('L<#³ó†\ZÒá¼ÓÜ}','wp-includes/js/tinymce/skins/lightgray/img/loader.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','9K¯ÃÌMû:äŒTf•9','öñ;‘´ÀT‹¥O`(6ÌØ,Àsk†Z‹ûcØRÅ˜+','',0,'?'),('oPðûc™‡ìo©.är','wp-includes/js/tinymce/skins/lightgray/img/object.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','órdP×E}u\n/M”AÇî ','† #;!äáI§ˆ.À>çuÊòSVŽÝm{|ñe-','',0,'?'),('˜X¸ÔÍìg5ûôŸ¼(=c','wp-includes/js/tinymce/skins/lightgray/img/trans.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¿ž7I Þ1F¦Guôj^','œð ×Ã»§õ«Í¥J«ï“OmOš:Ï™éçÜl˜W–5','',0,'?'),('Ùþ>Ï~ä!ðªgÅq‹˜','wp-includes/js/tinymce/skins/lightgray/skin.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\rÜåÚ¢­òÜÆ‘O','2Ò×Î1Ái!þ~jJK‰Cö\Z~Ô\0	£De¬–nÒ/','',0,'?'),('Äˆ^Aõš+l†®¬oød‰Ò','wp-includes/js/tinymce/skins/wordpress/images/audio.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','7~!æßà\0Ž÷ÆÔý\"w','çgÖÂzÂÙÏ.g‰Vû:«ƒ[‘¥ÌÓÐ™¡H)Èžì','',0,'?'),('FHŒŽ¼30m:½¸s›¶','wp-includes/js/tinymce/skins/wordpress/images/dashicon-edit.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','xRÞ	¬YµXžÔÛÝ¤äÞæ','m¦Á¿\Zc¼§—Ä­Íó¶½]ðïìŠ[ˆÔ^ÞP…·w','',0,'?'),('ì¡çcÚÆ.DÂr¿ |öî','wp-includes/js/tinymce/skins/wordpress/images/dashicon-no.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','RÐÀäZÊ?f.Ç8õâ	','ÂäŠÀ.c%´c°*G~£Õ¢>€Ydƒ¢:7×j','',0,'?'),('È„”ÎÓxy¨åõ‹Ö','wp-includes/js/tinymce/skins/wordpress/images/embedded.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','õª pÝN¢Öy~Ãn\"','¿{ó¹uÕxÓ\'‹ÀÂ¡J¦Âº@i\"H;ò]6h','',0,'?'),('FÁô¬Ãƒ\\ŸOç¡fgî','wp-includes/js/tinymce/skins/wordpress/images/gallery-2x.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Êî1ìíõv•ŠR','N3GÑ\'²`Î÷+R>¢P]EëúÎ³g/ÿb?¬¨UX','',0,'?'),('²_fôç²;wÐaËÙÚ±','wp-includes/js/tinymce/skins/wordpress/images/gallery.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¡_±ŸŒPwù´PUÛ4','<W~…îáØ¶¡Ç+ÑhNŒé„9ç×ú1Ì_°3Õw‹s','',0,'?'),('F–HÈlëe“É#Ý','wp-includes/js/tinymce/skins/wordpress/images/more-2x.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','l,×‰rÏ%¸^x¥%','þêÃY=Ñ_®b°»|Ê§&f,¬‰<¼Ã£¶¤¨','',0,'?'),('N3Ýj@pu5“«¶¿^›†','wp-includes/js/tinymce/skins/wordpress/images/more.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ü·¼Ô\n¼\nm\0;üË«æz','$³vçÚo^„²ØU› ¿A\0ëô:ò\\C¨u¿½','',0,'?'),('úŠ­~…‹a%¡ë!»P','wp-includes/js/tinymce/skins/wordpress/images/pagebreak-2x.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','{Î6¿#UQ:÷‘|>#ëÖ','Ò(Ýî[\n×Ì»â‰oŸRAo‘3¤¼^æ¡Æý','',0,'?'),('½½“#­ùÛ	>û7','wp-includes/js/tinymce/skins/wordpress/images/pagebreak.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','äIãÚmÅ…üLWyÝ“H','\rflôÕ¤/å;l\\äâ\\.6‚ŽrÇ#Pœ[ÓÁÙ','',0,'?'),('”˜@†»{÷J¤á«5ä·´X','wp-includes/js/tinymce/skins/wordpress/images/playlist-audio.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','U,û:)¬ Ø‹\"ÅQqY','\"äOoûÛˆ‰áÅ<ö€oES-MOÃ·å—YN€!‰¼','',0,'?'),('7«%Wy~×¹P?«xòç','wp-includes/js/tinymce/skins/wordpress/images/playlist-video.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¥lzV6`wmZBsÏÖ','\r ¡8óþ¯&øJä¦34°Ð±¥ÚÇ½¿»Á½þ','',0,'?'),('Þ3^ëËPMŸY˜æíHˆDØ','wp-includes/js/tinymce/skins/wordpress/images/video.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÐÂ¶÷ B©=\rz»ƒ3jÁ','¡ˆÁi‚ÍÄI/=´M¾MXž:MæAÕpvÜ\rÅ','',0,'?'),('Ûªòê÷	.æÕ¸ß\\¾ò¯','wp-includes/js/tinymce/skins/wordpress/wp-content.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','?%g!íSH35À~aŸT','s¼ý‚?XÓ\'OÆzî×½³\0íŒ£:ÄFyò!.šÚ	›Ù','',0,'?'),('€‘ah¤#Ôí8ícñœÂƒ','wp-includes/js/tinymce/themes/inlite/theme.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¾jÒ8ø\nýÒ€','Š+	Ã¬ü»Ê»¯@ŽyÃÒaàÅÛû&@tªŠä','',0,'?'),('Æ	™·#A©\n#b#ü =','wp-includes/js/tinymce/themes/inlite/theme.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','l3I6ä¤)õ8„ýÂ!','áösÀïSÕÍ¯·kâxMûÇÐcò©lËÓ}yÂ','',0,'?'),('r+zk;» 4¯æWI','wp-includes/js/tinymce/themes/modern/theme.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ê¬ýÙ²mºâîõ8u>ê','iñaÊåžm\"S½Ú!\ns:Ç\"[åÓ?(érV…Ð‚','',0,'?'),('n#©t=•\'…’ÁÞõb]{ñ','wp-includes/js/tinymce/themes/modern/theme.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','uÉy#ë”N`³e–3öü','“swÅ¤»¡Gj\'¸s??6ñ‰Xì+†×rg²ÐF','',0,'?'),('‚(tTlDÎ¬7&‡³MP.À','wp-includes/js/tinymce/tiny_mce_popup.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','B7¯I1º0Žµ¹ƒdÇ','ûº¤\'Ð—¯³/!\ZÛa!Ž~³)µÁ1Dä¡','',0,'?'),('	Ö9„ƒfÞˆUœfòþæœ','wp-includes/js/tinymce/tinymce.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ì3JíåÕ»Uø^Ìn','–d(\\ÆŸ)~YÒ~mP‘Ó¥™{¸œ>mÒ’T','',0,'?'),('Gm¹™:†MÄ¾VÀ‘LÐ‰','wp-includes/js/tinymce/utils/editable_selects.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¡J“‰q2¤¢I\'ÆJ—9ÿE','¿và¡ÑGjsßÝf™Ÿ	eªdÉ&ä¥g·ÿ+¡öË','',0,'?'),('*ÑþLím&&2ýÕ\nb','wp-includes/js/tinymce/utils/form_utils.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¿ˆül¢U‚‚T“„ŸúLi','vLú¢âus<*r¹WÒªµ‰£Û.\0|õRgŸÊå´æ','',0,'?'),('ì¸ƒúvÈÛ6àš;˜~','wp-includes/js/tinymce/utils/mctabs.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ë¡ì\"Yù±´“>xUå­£','%—Y}Ú¿ƒ&)û¢øMaYg‚¿ÐÉÜí*¦l','',0,'?'),('4AIŽn09ˆ†7c`','wp-includes/js/tinymce/utils/validate.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','#¨y¦ùµfÝ³(£¼½\0å','weÞæFQ@À8ƒñ	‰!…üˆrQ‚øÀ•ˆ20ƒ','',0,'?'),('ü\'ñú™ƒæ³×}µ0','wp-includes/js/tinymce/wp-tinymce.js.gz',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','·¯k~lqÚ´0Aî²¨«','ðô^>¥6\\½¾ãâV¿6 Eé‘iÇ*ÙX,¤/²6','',0,'?'),('ÏÂÈ­ÁHÔ¹òÜfëká','wp-includes/js/tinymce/wp-tinymce.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Šb\n¸Ç0pr±Ó’Hv','Œ·ÇàÙ¿XT/FÌðÐô™QÄ¯\'¬!miy…Ê¯\0ÏK','',0,'?'),('pÛžÔ2N<:Z¥7»r‚','wp-includes/js/tw-sack.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¹‰¥½„öëËÁ9>Àæé‘','{¢n]Ö\0Öˆ˜Ýn»\rÏµôÉ<§wË·X)ƒàÚ:','',0,'?'),('‹º°Åh+¹«BÌÆòÐ','wp-includes/js/tw-sack.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¼D‡NˆkŠP\nÔ~h‰','\'!,rˆ“ˆ!qÜºÎûp]^k,.äAÃ\rM—¡–_ø','',0,'?'),('Ïé‹­¡‚{^ªMU*ô_','wp-includes/js/twemoji.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','$%÷ÿÿe–òÑœíQ;','\\“@­¼ñ²³wBƒ†v\\Šsíq“÷ûºïÚ%J\núTš','',0,'?'),('Må;CåÌÏÕÕ8Yyï²','wp-includes/js/twemoji.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¡IïÎâþ©KqÔf','	9]ŠZYê¤Á\'\r#R{¢7Ä{tê˜š_ñxá','',0,'?'),('²uæØ<eçx›®@ÖˆÂˆ>','wp-includes/js/underscore.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','j:CJ`ÌtCAé}é{Æ','ÀwqÅùÊ å+kÖQ•)õiÝF}„sv‹K²','',0,'?'),('<æhjØ	Ž4½»˜4aÐ2ö','wp-includes/js/utils.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','²4Ä‹Zºªª0õp','¨²F¨âeIl(x“,Ïô!1Xó¨Ø_Õ&{01D','',0,'?'),('ü&UX\rèL4{šâÑÔ','wp-includes/js/utils.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','öãÕrÞAú2C3UE+±','Ã¼3§[Mœä€mÝ{Š»µ eóÜ7:†D™BœÁf ','',0,'?'),('Ü0æ½å5Ì·mkäí','wp-includes/js/wp-a11y.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','qI¢í\0SZ¨ª?Ç¯\n$ ','Âu¹Ý_¨÷H\"È®¤ïßV~	0‡“Š0Îj','',0,'?'),('Ñ/¸‡0€Þ\n*7¸f(›¶','wp-includes/js/wp-a11y.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','µñ u{OÇšÇÅ±’Ž','gàÓ•W–…šíÑ¦ðÆ\n[Tù\nuA[z­âƒGza','',0,'?'),('](Rª&!âÆ1;™3˜ê','wp-includes/js/wp-ajax-response.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','A4¯¬VJÍÐñl×îwY','_0¶9qˆ\\[xø_Ý«ÉAâ-k.\'y¶Üÿß\Zzêcr','',0,'?'),('uŒ)8FG9¡C°(¶š','wp-includes/js/wp-ajax-response.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',' ÓÙB!ód/ãJnWŒC]Ë','¸ÊÌœÿë8`Ë™Rkàe¿Ô¡°Ðx3éXghÿ','',0,'?'),('!|(ßyËW˜*1Oo2Cu','wp-includes/js/wp-api.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','$?ÜŽÀÍ³M6ÓË’Üº','Ûè˜?ÌÖuŽá\Z5öÁŒpõ ¬˜f´=šùDìê=Å','',0,'?'),('ÓŸîñÇmy¬+\nfé:','wp-includes/js/wp-api.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ïæ¿:ì)cÛÜÝ²Ú§íœ','®âÏ&…QÝ@*<$TŸž)HkGß¹D¦*ckÂˆœ','',0,'?'),('“ˆ.™v8-rJÅ•íqQ','wp-includes/js/wp-auth-check.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','™P\rÕJÜvvž\ZyŠ—%×e','{Zè¸£‰ÃÇbzNT\\Ög,ý§‰ŸYŠÓïÆ±øNå','',0,'?'),('tUÒ/Ds¤IÚ¤Üstã','wp-includes/js/wp-auth-check.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','™Éz}jÙáº»×o)ìªÖ','õµ	¸4ÿ_Õ]Ë±ÃjÆá6ŽM.æå1Éäq7†','',0,'?'),('ô­jå8úœÈÄÃ\Z¬±ó','wp-includes/js/wp-backbone.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','eZ\0Hïí	0¶\ZÑŒÉ','ÿ²Ü²B…™ÅŽ<~f\n½÷ýKý¸=Q—ô>uNJÉ','',0,'?'),('0<’ÎÅÈÿlÚ¿þöJ­â','wp-includes/js/wp-backbone.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¹xÓÂ\n%Ê6ÁhŒ)Œ‚9','·™Cvô=ÜØ6Vzkõ§.Šj§ÔŸUaZØJ`(','',0,'?'),('Ô’×ã¾AŸ•×Ùùr«Ž^','wp-includes/js/wp-custom-header.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','>-Uå1¥(!öˆåƒ#','_M «Â:k^=Z²»ûÃÙ\\ýºÄ]ÄÊÔ*BÈO	¥Y','',0,'?'),('Z˜_\"Œê~´JÏÀÉää','wp-includes/js/wp-custom-header.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','€+î_`ƒà$Y³³)´','ÒH*¸`Kˆ©zPðY¸‡gV²}£SWå[q€EŠ€Ž','',0,'?'),('±‹=·-XÔn{]·pf','wp-includes/js/wp-embed-template.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÖÃûŸey(êÂÍœ~ïi%','ôòË®A@Íó‰›·ó´@váVï¨/Eˆ‘)¨','',0,'?'),('½Z øOg\nW‹W’2','wp-includes/js/wp-embed-template.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','À]gŠ—§,JD¿T\0\'Š','E¿_V€Mî¡¥6–žôyÑ&™RRª=$Éã–·6àÊ','',0,'?'),('€ÖsSkÜi«<4\'cì-6','wp-includes/js/wp-embed.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ýòO9ò¹§$Æ?¾ï','´…½ãc	ØzI@öžk;–¢Üœ;q:dÇ>F¡Ñã¦','',0,'?'),('æJ~_o¸f™k³¨öóºÏ','wp-includes/js/wp-embed.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Zù|Äy¹õ×ïÚÌì1¼','ÚsËrÏ~ ¿a.‡ƒOX@D$f?áñmk“ÆÙofp','',0,'?'),('ætr³ÎµF_î ÃÇ×','wp-includes/js/wp-emoji-loader.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','+ LÉA¤g\rbTé)=)','¼3ý¾²=ˆˆÿ=X˜N¥gE˜\rr$ëÐ¬uï~y·','',0,'?'),(';üíÙâ*1\Zn½Ã4Ó','wp-includes/js/wp-emoji-loader.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',' î¥~FCXáå4F&t','\"dÚÃ&*(Àt©)Ýx¥\ræÃöâYyß&ò£ÚØ','',0,'?'),('ÊÝ	b¢·–8Î[¿¶¥y','wp-includes/js/wp-emoji-release.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','§ÂY¬g³´\0-È¬J	v[','õÞEQÇ`«¨`±’Ø¬ƒ]žéç§j69€\ZÙ\n','',0,'?'),('\0Œþæ;fóúQî=*Ç•Ã','wp-includes/js/wp-emoji.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÝÄšÐä±FÌ÷=—o˜»',':+™¸/nLÖoË³ìÄ¥I·&Þb>Y6¥mEóÐR','',0,'?'),('[’>•x‚;òwn/tH','wp-includes/js/wp-emoji.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\ZÍÐÍR6•½’ÌA‹xÉ','!DOõÿ_­ßmûâÞ‰‡€	0+g\ZöŒâWÄ—–ç@ó','',0,'?'),('¿™¸=V;¢‹ííÂN.K','wp-includes/js/wp-list-revisions.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','GQ\ru`Ò*—LŒìn$¼½','n2·HqãA¹ÀŽ6—pz=_\n7¥í	+1?ÉÆB','',0,'?'),('E4í×fu\r#R:k!jgh','wp-includes/js/wp-list-revisions.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÒRô1Ô\0¶–â\\©þÉ¡>','Gç”}ž¶nÐÙ–ê\\Oõ=k	>Ãƒ35kÓîSn<','',0,'?'),('Ÿbv¾ÉE’ì´HÕÇãÎ„','wp-includes/js/wp-lists.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','£­OÖ¢¹òù93Ñ','Þw­¦bìäk\nn=µÍš¯ò(IðQò^~n»êªÆ–C','',0,'?'),('–9µeÝEø€bÝ¾l´3¢','wp-includes/js/wp-lists.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','}ñ‹BËÕËªPgÀoWª‡k','ö]³qçEŒ–Pÿ~¨g‡W%bìÌ˜­r\\-ßÛ','',0,'?'),('¿#²AuI.Fªù/ö Ç','wp-includes/js/wp-pointer.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','58:¯yâ±IÄŠjËÆÈ8	','Ûï^¬/p›íÿ©¤MŸ\ZZ|F\"ž_ØF\rW¡|','',0,'?'),('ê¯Ç‡¾ÆÛ4Ë“T`¡k','wp-includes/js/wp-pointer.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','6˜|dMpX\0—ä€fÉ‚','\"!‡ï!1u#½ÜØ•©ªŒ%Ó½÷ÚYZ:‡Xºµ=','',0,'?'),('›íª]j¼l±\'²ô–»/x5','wp-includes/js/wp-sanitize.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','È-Û4	ºf¯÷Ñ\"‘ç_!','vÑ3£ˆ]?ÈçËÚÀCùrÎitî!bH]¢ùB\"','',0,'?'),('‰ŠŒ&ö†é}?â\Zs`¾','wp-includes/js/wp-sanitize.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','`´ïêÅoÐ{¤ðôŽ‘]®','zÖjlj¤”­Úx,ÎØÆ­«LcfmjD$Ï…','',0,'?'),('¤??n¿ëæåýå_2g·j','wp-includes/js/wp-util.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','>Á|ð…rÖ!6zs5Aª','ßá$ÛÊ¬ª•uB2=œë6¤ÊÛ¾4OY‚©Ï´å”','',0,'?'),('H+€E~™}§1QÛð½®Ù','wp-includes/js/wp-util.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ƒŠ©9µƒ-ÔáÊØ±†,','‚’sfV?b éÂL.ž”†O¡ÁoàB†â[­¡`4§','',0,'?'),('õA4eøêÇ{¹^š†ÒZ','wp-includes/js/wpdialog.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','rè9_ÔM@9\0œS–ˆ¦º','Ó°ú0nòµ¾Ñ©›•Ÿo,*Ó•S³‡¬Ò¹zaÙ$d','',0,'?'),('ß—ÏQµ¦uâ!Ù¶x•[','wp-includes/js/wpdialog.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ò-Ÿ¥»\0ºg\r¨FÄ¡¾','ÞÜ–71¡J 7BA7|mLî’§uxó3}¡Ä\n^','',0,'?'),('š°wtòH©ëá-s“\0Ân','wp-includes/js/wplink.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ec Æµ\n6«rI‹ßê','EÝUþ È“MTZ@Æ1ðò&|´‰OV¼H½ÂÒp5¯£','',0,'?'),('ßàÒÁ\"‰»–¾Íc)jÛ\"','wp-includes/js/wplink.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\\ŒçÉüf#N`t+øÓÏ/û','´Ô;ÏZ¼>@s{gÊ¹ƒ\'SË³x¼oäóË	/‡¹´','',0,'?'),('ý©Õ\'æ€BâŠ­7SÂ','wp-includes/js/zxcvbn-async.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','—§ž–¨²\0“V]u#3','eÕ˜gŸþ=£,¸„1¥¢¨&L!ÐÑí›','',0,'?'),('L(Êý¢nø9[2ÀC6åš','wp-includes/js/zxcvbn-async.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','1–é¶p9	á9Î~šý','DMäÈV!‰zlµ¹Û–š\\Ì‰¸ù ßj‹‰ÐU‚','',0,'?'),('Jò¾¬´ÊOhÓýÐsDØ¾','wp-includes/js/zxcvbn.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',' º/,ŠÒYBäô[P³','KšuPó¾• •K\Z†Å\0ÕÌYA,Q×©Ô£ð[Ûu','',0,'?'),(' àÑ–ÝqÝäSGKy(þ','wp-includes/kses.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','[‰c¸9ý¶cGþ\ZYß³.','¯–èŸÁJ®Íµl\n¶´ÙO£z¦J²NŠ¥)Ä­ë]','',0,'?'),('Éèë:m¡°[Ý¢¯:#','wp-includes/l10n.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','0ÑV¼IàÉÉE‚ÒlGd{','s•‘nuÖöäè>òc?þ¹t6Úõ(Û±¬‡óŽ','',0,'?'),('ËïvíE,¿-Oä{Ïº–','wp-includes/link-template.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','zY(í]±-Rf˜ó%ú-Çz','ûOâ<»þ·ïâšñjÃFàš¯•ÓúÒ‹TÕºØf	Ò(ý','',0,'?'),('_jõð‡_±¨/ÔÌÖyÓ±','wp-includes/load.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','QæLÌa&äí >ÒÞø','æÛ½<ë=ï\Z0Oµ~Íã„É/>‚\Z[?-yÌ¡*†%','',0,'?'),('D6mËeŽr{pKèO’','wp-includes/locale.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','_¬?>nYâºxFàâ‡ñ®','ö@ge;—6\0ò…³üP„u.xFŒ\rSßÖ¼±¬ÖÄ','',0,'?'),('aÆÅƒÉû(màEBýlÉ','wp-includes/media-template.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','=ñ»üí™+ïQ\'ê','97ÉŠõq-Å1å<*à›Å$óH`ú¦·îe„dÓ·8Š\\','',0,'?'),('){ôjW-_€Q=?íGlÒ¢','wp-includes/media.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','°(î¶.eòù8/û‘m','ß§\Zq”ƒzÄ¨QÂt)¬—Dìò]†/u™ -Y 2','',0,'?'),('ÛKûQð}U&;&˜ïØQ','wp-includes/meta.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','†ÒZÌÈ=0t·U<¬¸â','Ü»ÿ}}ñyÒ+äèH{xÛ—ÍL¥@N b\0gXj*°8W','',0,'?'),('Óg¹›I†!Ù­ÑÇÖ_Æ','wp-includes/ms-blogs.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¿þÜÝ2ù$É¸lÁ4é×','ë7íc³Bë\Z±í² ‹–fçYË˜–w€GÁ\"[0×','',0,'?'),('mAçðY·àÊÀ®Rb|ÞSŽ','wp-includes/ms-default-constants.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','UúØ¸ôÍƒHA¬Nž¤','OÅÄÃ­&ª´¥63´8„ú\Z.õÅ ëçé¢v,ƒÐok','',0,'?'),('¤.ÝB¾ÀxK‘YŒ','wp-includes/ms-default-filters.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','qf·âs~ ‚2Up~',',›Ù¹ÊÊÅ/×ròa%bBvp”£[Í°lí0o','',0,'?'),('¨[ÂnÅG{Ãù\'¾¢q:›','wp-includes/ms-deprecated.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¸U¶ºKÑSu\00Dî²´','À2P9Ùç›ˆ±«åGA—¬—£Ý–Ó8|ˆ{BØŽ','',0,'?'),('ë­·\rç!z}MLKE','wp-includes/ms-files.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','nQ’éã¿¾¾ÜÆ-±ù ','0€œÍVÀ²	ô2…üä;[³G‚0ŠþX1”|?X,qã','',0,'?'),('¼v%Ÿ”ŒS´[¿Ìª£Ñ¾','wp-includes/ms-functions.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','4u˜ìeÓ/@L2e:','£æ…h³B»÷u\'Gh©ôlRc9ˆZÑö`ß2Þª','',0,'?'),('Ã_´—§jSXà2ÎQQ=','wp-includes/ms-load.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','à¨›?BâÇ÷Lvïuâ','ÝœÌ®JøK¶q›2U=ŠtëŠÞbêÛcŠZâ-1','',0,'?'),('j&†Â^ûÌøŒb³ôŒ˜','wp-includes/ms-settings.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','p7ØzQÁ›GKXþ¡Ô£','®‰¿òXÇ	\rHÇØk±’ÑOÜÊðaÀà¢4)ï}­•','',0,'?'),('Åª{A¸êmmùß*K','wp-includes/nav-menu-template.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ó3^¯úÄ®¡óÙÐ–\\ž','\rêðGv•þ8IG8Öää Úø`ïÏˆë—ÐàNW2','',0,'?'),('¡[öHn[PÖ.~½ðßFU|','wp-includes/nav-menu.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\\ÚÊ	+„‘gæúœæ£ßE',' È.SH¬E²‹H`6—\Zš§À¢g6¶êÂþU³','',0,'?'),('¶MR²ælÄBœF¥u','wp-includes/option.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','úÜ?Bà\\Â0tÍÃkâßvC','bð`ó|¤¦C¼YfIÃKŒ;Êc¾Ãœ©LüÅ´B','',0,'?'),('N|þÂ‡JÐ²ªzn×ösw','wp-includes/pluggable-deprecated.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','äc±‡dù©\0Ìþ~·5jÃ','ëyJœ Â\n#xtßTì/zÿWÅýkíÕÕžaæb','',0,'?'),('h0X-Èiÿ»Õá^ÌG`8','wp-includes/pluggable.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','„ûÉ2\ZÙßÚsz“\nû‹»','\rW¤OÚUÊ	œ÷…\"¿lôSBE{\ZžÑÊ*%\"‹\nn','',0,'?'),('äö\00‡ùqŸÄŠNy)”Ô','wp-includes/plugin.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','6p²Œ;‚ÂPÑ^ÙR&e','qð‹×“\rfø©•Ýž×KêËÈ\\‚C‚C&M:','',0,'?'),('Ì ‡ì¡CªY–Žñ','wp-includes/pomo/entry.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','íðË½Àú`¸1La','÷·î²‚”“º{ð¢vUû™¼âõég`5]^S0½o','',0,'?'),('48²VtÔºš+^Xô','wp-includes/pomo/mo.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\ZéyLéÊ„U.^z3/e','ÂÅ¯÷7í‰NGã§ôQ¤/ÍünA–M‹*C¸','',0,'?'),('ú¶AŒ‹ÍË)Í¹D4Í','wp-includes/pomo/plural-forms.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ö#5F A\"áW©f+¦','G¢«¤“²¶@v‡bÚuK‚L˜<`:4ÆeðÃ9¾Í\rjW','',0,'?'),('ªæ[KºîæbŽÄÚ28·','wp-includes/pomo/po.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','PŒ5÷íwB³=D_ÆÛ\r','Ff\\ÀäædSS¢’­ÀV>Z9 ’¨½û|\ZÜ·‡2','',0,'?'),('š1W;cŸ¶š¸°NñÀ\"ïu','wp-includes/pomo/streams.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¾¬s¡|Ä-<iñ–p€','Ò~O‹%ÎœÎll$_]ÑŸ{<B¢œ˜[ˆQr˜yædd','',0,'?'),('§Ó’?ÚŸ£E¿Î¶$PF','wp-includes/pomo/translations.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','‡äcÊ\ZØª7ÜŽØèmz','Œ¿ÏÙ?‰!‚ÊÛÅÌ.Mw\'é}î&p?œI…_','',0,'?'),('”a±tUÚq¶^!ä0Æ£l','wp-includes/post-formats.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','2Ôôä{vã¾q©5]ü','¼Åž_\nÇ;ÚÍªöÝÌ“9<×¼k2Ý«$Å','',0,'?'),('MüÁI‚MÔïüÀrDõ-','wp-includes/post-template.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¦egòŒ‚Ì½\"ód¢±Œ','vše¹„Ž	à?iÍNÆG»-z€I\Z@ÿlâÖÐs³Ò§','',0,'?'),('ÃáiY–†…\0\nR)–„','wp-includes/post-thumbnail-template.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','^¡ëûô-µÕè3™–',')Ü+žÏ÷LìÕ´eëÙÍêAY_i|óaæx¬Æ?MW','',0,'?'),('«ˆ°0jˆlµSÓýKò','wp-includes/post.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÙüÂÃš>…4Çú|A°´Ë','éPN\"·ªD­­C`õ¡í˜óÈ(XW‚u7ò±C/ÈÀù','',0,'?'),('Ž éA$Û¤fCNö™37','wp-includes/query.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','‘ðtÈu\r­Ù”C‰»+','•ªoõSßZt¼J×aoF¥à§1ÕÛÒë¼\ZË˜?ôG','',0,'?'),('öKF\nOòiñ},íö‘wÇ','wp-includes/random_compat/byte_safe_strings.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','üuÁŒ•Ùt©ý±±öoyi','Þñ\\UÓ·HYQ¸\'¥\0¤h³¼$z¯É%ûÎ¹Ÿà|qóº','',0,'?'),('‡ÂÙoÔw¬ÛåÐŽ×696I','wp-includes/random_compat/cast_to_int.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ú_vtZÂÖ;”fñ0Ó\\±','Þ‘T¡xÞ{æÏ\\7ë€õRáÁAg¥ÊÒÌ[:ëÙ	c','',0,'?'),('¨‘¢v9…bÔ$‘L','wp-includes/random_compat/error_polyfill.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÂYTå~\Zã\'\"úl„\nUeŒ','\n#\\˜é,Á-ö-ª*N	VŠÓ»+äÒ:Fç Ó¸‹','',0,'?'),('öjØæ²Z·;\nlÐ“¼','wp-includes/random_compat/random.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','‡…•éñG|Œ1[_s1š','eåþóçNí÷×±Å?$ 5e°Š%¹éŸÍç »i3ÿœ','',0,'?'),('t¨€û‘.¨Ã••81½','wp-includes/random_compat/random_bytes_com_dotnet.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','RÓ$\r5IäÀÍxZbóF=','¬Û@Ø‚€º»I÷D^Tºï@¼@ŸêVœp@TUÛrÚO','',0,'?'),('?2yT!s|À¨t°æˆ÷u}','wp-includes/random_compat/random_bytes_dev_urandom.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','f!×§æÓ—¯î‡A&‡°','Ožuì\\\rû\r$Å-…×k}’3§ã`É\\®kxïù','',0,'?'),('šž”óß[‰ôD?_…[Ÿ','wp-includes/random_compat/random_bytes_libsodium.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\\/Ê\ZgºÀààžÀòã$\r','*è½X—ÐNã¢{åßâDÕñ–ÝnËé§$p¸žF•','',0,'?'),('ð¡N ¶¢ûiiÚ­ù','wp-includes/random_compat/random_bytes_libsodium_legacy.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','‹ó-ä¼òFÒÈ]1xý6á','Qí™\nZcÛÈ4Ø…	ðgieû-±\'©í¬äk','',0,'?'),('¹Ô%I…‰ç}ŒPözW­É','wp-includes/random_compat/random_bytes_mcrypt.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','‡!»>°¾Š#œþÆy7¦Ü','ã1F=ƒ¾†\r»\"¢8ðýÓ˜¦dšÏ0{öÀ0Z†Sï','',0,'?'),('ü^Öºãñ“S^±cÓüÊ','wp-includes/random_compat/random_bytes_openssl.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','»8°.ÄŠÍØAîC´Ã','¢Qòix—Œ–÷¾WD2oÙF·¤0ýÄ+—åvBJàþ¯','',0,'?'),('ÙÖ3›ÏIê98\\ÙÖ›Ì[t','wp-includes/random_compat/random_int.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','OÂOÈôÝa%9ãG²êŒp','+ƒúˆ¬u‹ i‡–¯\rn×Q\\24eÐK9tM,ðOí\Z','',0,'?'),('žE-jàÊ1jì£Ê\rÏE“','wp-includes/registration-functions.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','KiÊLÙ¸S‡²H=Y•','ý\r¯0\Z=ÙTc0æ»¦²ÍŽJý­Ãœ–ÎÍ0¤îÛœ','',0,'?'),('5\\h>óÎw	—‡NË','wp-includes/registration.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ôóž˜3fê\\?ÔdK®','çøÔj$- “hš»•$Ä¸¡”†ph:·ý„#‰øÖG´','',0,'?'),('ùÑÿšôßÐ3ø>#¼.û','wp-includes/rest-api/class-wp-rest-request.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','-r±&™pùà|-âÝÚÇ{ò','tqÙhGö£Ï[d$)2?ºj„ u7ŠîÑaÂ#Ë¯X¤g»','',0,'?'),('‡V+@ÿ0ñüp¸Éhi','wp-includes/rest-api/class-wp-rest-response.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\'€¨‘ŒÊàéà´RÎ1i','¿o$G•ú‚½ó–\\¶¦ðôªP^×–éCVR\0ši','',0,'?'),(':ë­²cà‡×RPe(','wp-includes/rest-api/class-wp-rest-server.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','µ\n(ÁÅáûÈžQeUê2ü™','Ð¨EÖF•>o!·¦šÐ7ˆiµ~:“zýÎà®])','',0,'?'),('aæaiçGö¬ˆ}ïÞ\Z ¹','wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','3|â?â)à¡±ÀÊK’','0>[—\rØsÉ5”EÝ2Âyuh˜.5RœIØGÃ','',0,'?'),('k\0\ZÁšá{ Ý›6ñ','wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','m[ç,pÚíÛÙÍï','4rï!ýËºÄÞ‡l>yz1l|E\n\n5‘HÅ»ÔD¢','',0,'?'),('‰.¤”xÖöQ}ét\npó','wp-includes/rest-api/endpoints/class-wp-rest-controller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','1zý[ö²õ)óüâÅQ','>L³AÀBP%_ÍÙÎv,DŸº’*ÍG^*{øò','',0,'?'),('Ë}Ua&glÃäi¸)ºëÂ!','wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','É[\"Dð›`1þÐ&«WÂ','á‚Zsd½éc?ùF×ûñ/	·YšOê%=j¿“Êœ?_:Ÿ','',0,'?'),('q”sß„´ÆžàÃ¹åÖ','wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','`æ`\\¡ö–.­›<ksrØ','_SÆùš\"::¿FÝ!@¬arMÃKºøGa›†uþ÷œg','',0,'?'),('3z\'‚Oï“á§vþJ&ÿó ','wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','äk‰ôÙž¾Yï] $.','lÞeõDîmÕ³GÄ-Q’œ0bæÓÔID¿©5†þ0','',0,'?'),('ßL#¦¹àâa³‰W ñ','wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',';õË*.(Pry…YL¡û','çÃø„’@·^Šô¿Ÿ@Ò¥’Dåo	ˆD>%ÞJ$/ò','',0,'?'),('CcèˆiF›×hè.n7”','wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','é’Uûì˜›mZ<17¤¶¿ò','×vÅ8“Ôù©âéÀ.Ñe~ŠòS¥²\'tŒrrŒiöG','',0,'?'),('q¨ˆã_\"ñ1ÉF','wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÐF8\ry3‹£\\ØÇãÊ©','aiþ 6yô~Êsj/Ò—¬·[àD¯a»ö³\"›rþ','',0,'?'),('ŽÁ\Z,zóÕ§Ò”U’','wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\r“Ž˜G\\ÉÏ%}a','M˜ßýé–&º¿\ZvÒÌ:\0ãÇôAsÁÌÁùéP	Ø`','',0,'?'),('ßÈ¦0á $¢7O>é¿à','wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Îq3âOR!•+;¨¹ä8œ{','út¦þ¯R†±;oÉíè‹Û5Øæ©©Ÿ£¹kÐ¾]Ë','',0,'?'),('ÐôÒÏÍ,Ùáñfë×','wp-includes/rest-api/fields/class-wp-rest-comment-meta-fields.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','FYÐ¢;ªs\'%¼óÊw','M}èˆP²Ÿû*ç†?’sœÁ8òÎ7³Ûä\"ˆ1ê>.ÝQ','',0,'?'),('Íªu¹owsFC¹G[cƒï«','wp-includes/rest-api/fields/class-wp-rest-meta-fields.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','9×Ê¹*âôÆênHõ','Îé7¥czÒžœ@÷°UäY›g5NÖ\"œj\Z$ØÏ†ñz','',0,'?'),('ë\njÝea!è\ZWdq','wp-includes/rest-api/fields/class-wp-rest-post-meta-fields.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','S]xG¹yê2dƒÚ8z','y`_oLq|Íâ©%})»+´,{N$¶”îï’r€ãjî','',0,'?'),('àãWÐMF`3ÌÜ$÷æ','wp-includes/rest-api/fields/class-wp-rest-term-meta-fields.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Â^Ê\'E ;ã\'|1äá','kãº\"µ=aMB*ÀRQK“¿%~OT\"|ÑC¾F$','',0,'?'),('I6.:\n(ÍÀùi\0BøÏ','wp-includes/rest-api/fields/class-wp-rest-user-meta-fields.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','öpÐ‡©¹cÈßŸšlÂK','h#—Ï7pšñ°b„ôaƒßV˜BŠ±;gsý¿Wr~–q','',0,'?'),('°Ãš2â±ûdÍ=','wp-includes/rest-api.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','X—¼€ôÉVÿ»Ãøµº©','ænDÐvXo>ºßû’žûG1MÒ\0Ëu…œÊó­’','',0,'?'),('_°\0ßÅd •MP~ÛëD','wp-includes/revision.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¦J¬WXVÍã/ïuOºò','Í{„P¸¬.ÉÙËhºâ~µ¨ž_ÜÅ‹böŸÒwÌÿ','',0,'?'),(')¾Oz=œu©‡î£ÄË·','wp-includes/rewrite.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','˜}¸Yíý*®“*={Ú','(CÙê¬Æç™5Øí˜Ò¢+LÛ‘÷[™5\"É¥Û‚‹','',0,'?'),('þà¢¿w›ñ\'¢6)','wp-includes/rss-functions.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÿ®1ý-8Ç`ËK¯X','‰)Áé[ß²Fû ‚¥\'¢¥¦7ùÃ8ÿ$ñ<(«a','',0,'?'),('‚§¬ãíA¼ÎòŒ1\Z…;¤','wp-includes/rss.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Âm†ç[ï\0úlJÅáÊ;','°ç^“º]û\"ðËŒ|a©>|ÙÄª¶.€­pNX','',0,'?'),('9—} B^¿²?	ë\"ë','wp-includes/script-loader.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','HÌ÷¨j.„½ôT;y#E','uýÎˆ\'‹¿ê¿ö@™¥`¼dw^PõÚ&','',0,'?'),('Ehû¡°Ëýí¹ìÐ@aq»Œ','wp-includes/session.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÙEaÎ ÅÁ:`›œÞZv5Ô','ÀGon^p¤~Œ!w¹»k+›×9KA«˜µ¦áûÒ€¬','',0,'?'),('Vne!Êz0u1?¬¿','wp-includes/shortcodes.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ô_ÂV1ýðÉÿãéN','†k¡õóÜéP¡‹\n†RÐ0ùGqƒ×aÚÑ0ºO','',0,'?'),('Xê=Ó2h4÷/{ +','wp-includes/spl-autoload-compat.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','_ îL§pZ&Û¥—‹ïhéu','T.%Ò&é¶»DcíS•KÂ“5b!ýY]ãRXtšæWk\0f','',0,'?'),('ïÑX=U¡pfp¾€ÁZ','wp-includes/taxonomy.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','éÜ®OîrX­C q`‘','B=›cé½”ÉóÉ‹‹ÑÂÆöyÔìœ›Aƒ$‰\Z§v’','',0,'?'),('„:+[õ¹g¾¦CZÝØó’','wp-includes/template-loader.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','§EOEðty½ÏUõ›','yV*T*gÁÔâ/÷‹Ï`·iª±îùøHí¼\\Ó\r','',0,'?'),('ˆ:=%ÆÌâ¾ù MÔÛµ','wp-includes/template.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','#‡\"d`Ûô˜Ä¿1”','Å¤sëÍf‹Ó\\”¹óÙ`÷\ZŠ1¨×G!s0\'ýÂô','',0,'?'),('>hÐ©ìXX*ÿv1•©¹','wp-includes/theme-compat/comments.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\"ºŸbä¿=Q\n~Cæ}K','œÖx‘¼R2S™zõ\nžÏ>™Ëþ p;ÒN…Zú×^Æ³','',0,'?'),('\"8A\n=ò®á‡¼fp5','wp-includes/theme-compat/embed-404.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','«%\0¯îiŸ´çhqíô','^=G_—z•Úb\ríRd2.JI¤í!ÈèùFÇädÆë','',0,'?'),('fÖˆó½ù¦¼VíÔ¹)ä9','wp-includes/theme-compat/embed-content.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','_½!x}~»4l\0ž¢˜ðs','ÀEK¨á_¼žTþ“ ID^\\×ò.ÏúµþÖ³i½','',0,'?'),('ý+q^e·•éãguÏF6\n','wp-includes/theme-compat/embed.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','r¶L‰¿Eòva3÷£Ý6I','WõÜô5T¦pÁª;-¥n¬ˆ0»a‹•º©O\nÓô¦’','',0,'?'),('Ím¥L0N\"ÈT~ìbÜ','wp-includes/theme-compat/footer-embed.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','„õZÜ«„ò.“+–j','ƒi§ÉDÿAJöÏˆ;v,gcÌ%‘çˆÑ	^#','',0,'?'),('þQÖ¿6“Èyqä¢88','wp-includes/theme-compat/footer.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Œ_øsÜ0˜¥älË¿œ7~','¢¯ù¹˜yü3›·YØývÞWð­Äå¬	#(·Úš	ü?','',0,'?'),('&ÎvA¹öQÍôc‰Úqw8,','wp-includes/theme-compat/header-embed.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','g–+¢Èx‚&wfÒXÜÀ','ÁÙe¨é¿ŽiÃ—ï×ñ#¨=á4£wáNrbQ','',0,'?'),('LäåbPÞ-I×­1f€','wp-includes/theme-compat/header.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','0L@»¡Ý%‡\nÎÿïÂP$','K^\ræ-o§?ä¹ Z©‡f°7&¢¹f¤€Sù˜›³ŒŸÏ','',0,'?'),('ã0—;ê-,ÓAÞEyæ','wp-includes/theme-compat/sidebar.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','€‡ós­†ÿH´Dlš,\n','N¡FŠ?g×ÜþøAÙk›ap>¸p+Ü;‘1è	%','',0,'?'),('“XèV×˜O|8}š€‚','wp-includes/theme.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','c½ãñ’ÄmÞS…U¿¢ù×ˆ','#ý1æ´(sDÌ‡µ´ô÷xÝ¥pƒÙÚ*èíd','',0,'?'),('öÊí†+¢šÇqÉpW£Ã','wp-includes/update.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','è¼¬Óð<ºz®Äß$','æúB4E\">F\'°¥áÌœë«rñŽK/ \nÂ£½ç','',0,'?'),('k½úBËžãb=y†Ú','wp-includes/user.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ZbJß½°A¥»öºá˜','þvª¥º›¦*Ó‰ø32vÂsÐ1Õ\n¦B ‚K[¢07þ','',0,'?'),('g+yr‰äÐq„€ö€D©´/','wp-includes/vars.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','÷Œô­ª?\näyéo7”õ','«QjÑN‡*#IoX5ÂW%‹Üp®hÙÉÓF','',0,'?'),('5Z¬ÌäàSÎ¼ãvÙ`6—9','wp-includes/version.php',0,'[³ú­ÐY#9Ø½²ó','[³ú­ÐY#9Ø½²ó','°\r»ož°»Ê‚–7ñVèéTÞF\Z˜y>Û{','',0,'?'),('Y,Qpêgmu#—eŸ±¼~','wp-includes/widgets/class-wp-nav-menu-widget.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÿz§†Ç^Ð3UÏÇ÷üdI',',#³>Ð<ÖXËž+b+î\rBc9+2Ódð«¼åÿt','',0,'?'),('ñ±TYÛPpEñw†“','wp-includes/widgets/class-wp-widget-archives.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','·?ís.ñx4M3[.Æ©','_,MÊRÃödlC¾ö¥Œ;Yé<cÇ‚zÃI·Qêp>û','',0,'?'),('I0Åó¹Sþ$2£TÐüB*','wp-includes/widgets/class-wp-widget-calendar.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','à¨êß~\\RþæQA\rÿŸ†','0]V…ža,ÅHydEô(6mÓ]tkÈEÛ~#=y€','',0,'?'),('RãH\r0ü!„d‘?c&','wp-includes/widgets/class-wp-widget-categories.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','CZJôÜ 1ÁKŸ8£ÉÃs','el&†ÖÆ×³Ìí®CåëÊvÜ¢‘Ö‡Q•³HU²	ßp','',0,'?'),('¡jðò—\\ïÉÄ¦<yãpƒ','wp-includes/widgets/class-wp-widget-custom-html.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','’ä•ÚBzö}EB\nmæ\nå','12¡)}õéGW¢|šô´W$Do©D„p‚”n®YÚÏ','',0,'?'),('&é¥±†˜ñòW‘³Ø€Ó|¡','wp-includes/widgets/class-wp-widget-links.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¦,j5µG_bo¥-Ä!','Ð)§D5¨ºÎ1\'ñ\'\n»’vÒb*ÒjÅ˜³xè9','',0,'?'),('¦á½ˆËÛŽØ5f?žhk','wp-includes/widgets/class-wp-widget-media-audio.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ýý…Ü|œzç‰Ýš$¨','bÌ™áY®…V$¥\n[Qÿw\0høX¶°Q½ÕšÖ­','',0,'?'),('°Ùv\'j@Ô-Ìÿ²*','wp-includes/widgets/class-wp-widget-media-gallery.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ý2A|\"pþ–³w\r%G','\Z}þM®Ý(;Éò\\Âš›“…ø°”ÃÇkl ÑOîHŠ','',0,'?'),('PJ’~]øú; ž‹`y','wp-includes/widgets/class-wp-widget-media-image.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','a‘yÇãàŠ‡>ãGÁ!+','ˆ´¿›¾8¸\Z¶ól¶œ”]\'f15­jøaÄ†Òà?','',0,'?'),('÷Æ_wïÆŒè›ßžÐ','wp-includes/widgets/class-wp-widget-media-video.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','8âiçÄ–îeÃŸµjÈ©·','@ü›$ä‘ÚB-\'X,Ó¯·ôxcäv‰ÏÑ\nR¾ÔÍ','',0,'?'),(']ƒŠÔNÎ×JjÓŽe½£‚','wp-includes/widgets/class-wp-widget-media.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ù À8nHtA¿†áØcÄ','sòÙž©GE\\œ¾Va\'`;š¤_m&Ï„Á\ZióI','',0,'?'),('«nÖ¢¡ù\r’V5‘‹,Ù','wp-includes/widgets/class-wp-widget-meta.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','›Ðüþ{Úç™váÈDe','€ñì–2.AîKaöUÕ½µXŽ+óHÉê{%\"µFŸ>³','',0,'?'),('K¯cŽŠ#2s’/(…\"Ž','wp-includes/widgets/class-wp-widget-pages.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ž»3Ž¥ñ¢¢®žÂÍs','úžÀ\nJ÷ïºÁjŠåêYP-Ÿûò6ªCÏ„','',0,'?'),('¤Ì6†èó~eª{Ð\".w','wp-includes/widgets/class-wp-widget-recent-comments.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','oŽ#õÄÓ-.î+SÇ\rY$','¿u=ÃûÙø¢¦‘€ƒ¬$Xï‰qå–SÐéï}k-','',0,'?'),('l/\nÑÔ€°WÁÍ±-cÏ','wp-includes/widgets/class-wp-widget-recent-posts.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','vµ˜®…€ª¨\njqU‰X]','zúyÉÔŽ\ZA*aCÏ)eg•÷œ‚VxRäË¿úßØ=õ','',0,'?'),('y7¯ÐMAä@ š…','wp-includes/widgets/class-wp-widget-rss.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ŽˆÄY@ ÆÂ>P¯*ð','ÎŠŒêT:‡V	6zY¹•5¯¬¸°«Ä8g&-Xn±Å','',0,'?'),('F\rºxÓw~Û\rÜ±´ç\n¦','wp-includes/widgets/class-wp-widget-search.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','£âŠ 5ã¯e6d©)É','õdØõ“‰Ê½Üxc‹Æ&Þ¹˜8»N¨ºö€[ø–`','',0,'?'),('¢-‰[ipùœ\\^˜ØóÁ]','wp-includes/widgets/class-wp-widget-tag-cloud.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','7ûyF¶rÎXÎªÏõŽú','	¢·(Ëcz¦¯Ã@|\0Á³{ÝØŸœF¢—*çŠ»8','',0,'?'),('\0É ‰Ÿk~‚£U5T','wp-includes/widgets/class-wp-widget-text.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','‰´NÐ¨V-&&\rAË¬Ø','_è!K7Ç3°\rg± ˜xß©DX€¯\0}Ä·Pm~g','',0,'?'),('SÛÊ&ëaz8öJØ¶9§','wp-includes/widgets.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','M%I †à3Éªó´','4]%x­f6ÐÉ#U¼îÛ×ÐÕÏäè¯ô’—Ã®ðZÔ','',0,'?'),('ø@¨ÒêsB0<€{l¶3ŸÑ','wp-includes/wlwmanifest.xml',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ßÔ¶óƒê¢ið^ˆ–','ÕÆ¤JÄ¾**X|i» Ïcy-‡u6pèÀC-æ$*\n¼','',0,'?'),('LÂŠe¡t\"pc(	’eÇ','wp-includes/wp-db.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','uÔ² ™8S.ë.¦=‚²®','üîKœ¿(ÐÿþA&g”Ì\n‘ìT† mWKóûý7éû','',0,'?'),('(ï^¦3N½š©“‘¢3','wp-includes/wp-diff.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¸Ò¢òóIC¶„·à%\r4,.','X´²t“G‡^ÔË0za’\0S½[¡À¨¯cæf‹Å‰','',0,'?'),('šÿ™^\'½qˆÂî0…ê','wp-links-opml.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','UõîÚOd\'\"ÒIÁF…Áb','N~8}:õ!ÿÊºZ…ÎŸ*œ¢ï¡£’Ú03Ö','',0,'?'),('$»Àªj¶Xž])D:','wp-load.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ŽÛËÌQÞ˜C/•®áZVc','%°PNÏ®T°iy·EV+m¢KVvN_![¸2¶`­áo','',0,'?'),('Ýº\r\0FJÈä–BáÞeç','wp-login.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ô@Qj\"`	^•e)íž\0Ô','&•+Îãœ`èIØã¼ÎÒÿ´¸ÑŠÝõƒû\nû›ÞÂJÁ','',0,'?'),('´ƒ3 T.^Æ™<Þ÷ø','wp-mail.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','lžM«v— D¢*–Íxph','»ÁpK<4¼šlë(A0Ztsú|n	x¢Í¼i„ô','',0,'?'),(';1Ñ‹#ÁY_N„¥t÷','wp-settings.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','•ÔT–gÏ¤]ŸÞ§8€','Ÿ¾AÝñR%cÌ0¤b+.Ø€\"ß;~oÍHxÍñëKÇÛ','',0,'?'),('Œ,4#¢…(ç#','wp-signup.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','6˜¸V\r~ o¨ãÏlÝÃ','äösÚÜ<8ý¯½n\\Ÿä_$U“žûF#ì$S\"ÚL','',0,'?'),('oã®š-×;?X:ûpÒ¡','wp-trackback.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Á.0‰öÌå¿Çì ','¦<ÅÒTœs²Ü	õ”aÛ8ƒx^œë«¨;œ¤','',0,'?'),('4Ú‚œÙL$¼,K[œuÌâ„','xmlrpc.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','lSâÿb€ÅÏÄ£Æ2Ç…','EÊ\'è«oS¦Y?­ž/OxH©mü¹7GãÎ&¯c>\0J','',0,'?');
/*!40000 ALTER TABLE `wh_wfFileMods` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wh_wfHits`
--

DROP TABLE IF EXISTS `wh_wfHits`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wh_wfHits` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `attackLogTime` double(17,6) unsigned NOT NULL,
  `ctime` double(17,6) unsigned NOT NULL,
  `IP` binary(16) DEFAULT NULL,
  `jsRun` tinyint(4) DEFAULT '0',
  `statusCode` int(11) NOT NULL DEFAULT '200',
  `isGoogle` tinyint(4) NOT NULL,
  `userID` int(10) unsigned NOT NULL,
  `newVisit` tinyint(3) unsigned NOT NULL,
  `URL` text,
  `referer` text,
  `UA` text,
  `action` varchar(64) NOT NULL DEFAULT '',
  `actionDescription` text,
  `actionData` text,
  PRIMARY KEY (`id`),
  KEY `k1` (`ctime`),
  KEY `k2` (`IP`,`ctime`),
  KEY `attackLogTime` (`attackLogTime`)
) ENGINE=MyISAM AUTO_INCREMENT=110880 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wh_wfHits`
--

LOCK TABLES `wh_wfHits` WRITE;
/*!40000 ALTER TABLE `wh_wfHits` DISABLE KEYS */;
INSERT INTO `wh_wfHits` VALUES (109892,0.000000,1525219956.281143,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://www.watchhill.ca/','https://www.google.ca/','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_5) AppleWebKit/601.7.8 (KHTML, like Gecko) Version/9.1.3 Safari/537.86.7','',NULL,NULL),(109890,0.000000,1525219956.279518,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://www.watchhill.ca/','https://www.google.ca/','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_5) AppleWebKit/601.7.8 (KHTML, like Gecko) Version/9.1.3 Safari/537.86.7','',NULL,NULL),(109891,0.000000,1525219957.013552,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/','https://www.google.ca/','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_5) AppleWebKit/601.7.8 (KHTML, like Gecko) Version/9.1.3 Safari/537.86.7','',NULL,NULL),(109893,0.000000,1525219970.601709,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/rates-policies/','https://www.watchhill.ca/','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_5) AppleWebKit/601.7.8 (KHTML, like Gecko) Version/9.1.3 Safari/537.86.7','',NULL,NULL),(109894,0.000000,1525219992.023924,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/','https://www.google.ca/','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_5) AppleWebKit/601.7.8 (KHTML, like Gecko) Version/9.1.3 Safari/537.86.7','',NULL,NULL),(109895,0.000000,1525220014.078566,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/','https://www.watchhill.ca/','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_5) AppleWebKit/601.7.8 (KHTML, like Gecko) Version/9.1.3 Safari/537.86.7','',NULL,NULL),(109896,0.000000,1525220016.456644,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/the-huron/','https://www.watchhill.ca/','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_5) AppleWebKit/601.7.8 (KHTML, like Gecko) Version/9.1.3 Safari/537.86.7','',NULL,NULL),(109897,0.000000,1525220653.577514,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/','https://www.google.ca/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.139 Safari/537.36','',NULL,NULL),(109898,0.000000,1525220662.146652,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/','https://www.watchhill.ca/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.139 Safari/537.36','',NULL,NULL),(109899,0.000000,1525220674.579688,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/the-huron/','https://www.watchhill.ca/accommodations/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.139 Safari/537.36','',NULL,NULL),(109900,0.000000,1525223583.035180,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://www.watchhill.ca/','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(109901,0.000000,1525225482.636596,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,1,0,0,'https://www.watchhill.ca/','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(109902,0.000000,1525226732.495464,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'http://watchhill.ca/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(109903,0.000000,1525226734.814353,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://watchhill.ca/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(109904,0.000000,1525226736.724662,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://www.watchhill.ca/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(109905,0.000000,1525226736.926443,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'http://www.watchhill.ca/robots.txt','','Mozilla/5.0 (Windows NT 5.1; rv:6.0.2) Gecko/20100101 Firefox/6.0.2','',NULL,NULL),(109906,0.000000,1525227443.463917,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/','https://www.google.com/','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/603.3.8 (KHTML, like Gecko) Version/10.1.2 Safari/603.3.8','',NULL,NULL),(109907,0.000000,1525229988.139634,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://www.watchhill.ca/robots.txt','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(109908,0.000000,1525229990.424776,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://www.watchhill.ca/robots.txt','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(109909,0.000000,1525229990.626577,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://www.watchhill.ca/rooms-button/','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(109910,0.000000,1525230106.945594,'\0\0\0\0\0\0\0\0\0\0ÿÿBùSŸ',0,200,0,0,0,'https://www.watchhill.ca/','','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2623.75 Safari/537.36 Google Favicon','',NULL,NULL),(109911,0.000000,1525238558.074521,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'http://www.watchhill.ca/robots.txt','','Mozilla/5.0 (compatible; ScoutJet; +http://www.scoutjet.com/)','',NULL,NULL),(109912,0.000000,1525238570.043408,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://www.watchhill.ca/robots.txt','','Mozilla/5.0 (compatible; ScoutJet; +http://www.scoutjet.com/)','',NULL,NULL),(109913,0.000000,1525238581.161084,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://www.watchhill.ca/testimonials/','','Mozilla/5.0 (compatible; ScoutJet; +http://www.scoutjet.com/)','',NULL,NULL),(109914,0.000000,1525242363.851424,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://www.watchhill.ca/robots.txt','','Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)','',NULL,NULL),(109915,0.000000,1525243356.089056,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://www.watchhill.ca/wp-json/oembed/1.0/embed?url=https%3A%2F%2Fwww.watchhill.ca%2Faccommodations%2Fthe-huron%2F','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(109916,0.000000,1525245356.014356,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://www.watchhill.ca/wp-json/oembed/1.0/embed?url=https%3A%2F%2Fwww.watchhill.ca%2Fabout%2Fgallery%2F','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(109917,0.000000,1525247356.135607,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://www.watchhill.ca/about/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(109918,0.000000,1525267442.741913,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://www.watchhill.ca/robots.txt','','Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)','',NULL,NULL),(109919,0.000000,1525272884.441461,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,1,0,0,'http://watchhill.ca/robots.txt','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(109920,0.000000,1525272889.032213,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,1,0,0,'https://watchhill.ca/robots.txt','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(109921,0.000000,1525272890.010709,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,1,0,0,'http://watchhill.ca/','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(109922,0.000000,1525272891.147480,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,1,0,0,'https://watchhill.ca/','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(109923,0.000000,1525272892.665155,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,1,0,0,'https://www.watchhill.ca/','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(109924,0.000000,1525273042.685884,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,1,0,0,'https://www.watchhill.ca/','','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2272.96 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(109925,0.000000,1525277271.675957,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,1,0,0,'http://www.watchhill.ca/robots.txt','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(109926,0.000000,1525277273.970811,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,1,0,0,'https://www.watchhill.ca/robots.txt','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(109927,0.000000,1525277274.940889,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,1,0,0,'http://www.watchhill.ca/','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(109928,0.000000,1525277276.281426,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,1,0,0,'https://www.watchhill.ca/','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(109929,0.000000,1525277430.119305,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,1,0,0,'http://watchhill.ca/','','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2272.96 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(109930,0.000000,1525277431.255816,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,1,0,0,'https://watchhill.ca/','','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2272.96 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(109931,0.000000,1525277432.382174,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,1,0,0,'https://www.watchhill.ca/','','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2272.96 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(109932,0.000000,1525278948.824315,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,1,0,0,'http://www.watchhill.ca/','','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2272.96 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(109933,0.000000,1525278950.800834,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,1,0,0,'https://www.watchhill.ca/','','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2272.96 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(109934,0.000000,1525280814.230941,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/','https://www.google.ca/','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.162 Safari/537.36','',NULL,NULL),(109935,0.000000,1525280822.094623,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/','https://www.watchhill.ca/','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.162 Safari/537.36','',NULL,NULL),(109936,0.000000,1525280826.555855,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/the-huron/','https://www.watchhill.ca/accommodations/','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.162 Safari/537.36','',NULL,NULL),(109937,0.000000,1525280838.945392,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/the-chantry/','https://www.watchhill.ca/accommodations/the-huron/','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.162 Safari/537.36','',NULL,NULL),(109938,0.000000,1525280847.196557,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/the-saugeen/','https://www.watchhill.ca/accommodations/the-chantry/','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.162 Safari/537.36','',NULL,NULL),(109939,0.000000,1525280887.533378,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/harbour-suite/','https://www.watchhill.ca/accommodations/the-saugeen/','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.162 Safari/537.36','',NULL,NULL),(109940,0.000000,1525281817.851621,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,1,0,0,'https://watchhill.ca/','','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2272.96 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(109941,0.000000,1525281820.129251,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,1,0,0,'https://www.watchhill.ca/robots.txt','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(109942,0.000000,1525281945.315288,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/','https://www.google.ca/','Mozilla/5.0 (Linux; Android 7.0; LG-H831 Build/NRD90U) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.126 Mobile Safari/537.36','',NULL,NULL),(109943,0.000000,1525281994.324418,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/rates-policies/','https://www.watchhill.ca/','Mozilla/5.0 (Linux; Android 7.0; LG-H831 Build/NRD90U) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.126 Mobile Safari/537.36','',NULL,NULL),(109944,0.000000,1525282090.544244,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/the-saugeen/','https://www.watchhill.ca/rates-policies/','Mozilla/5.0 (Linux; Android 7.0; LG-H831 Build/NRD90U) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.126 Mobile Safari/537.36','',NULL,NULL),(109945,0.000000,1525282141.858020,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/the-huron/','https://www.watchhill.ca/rates-policies/','Mozilla/5.0 (Linux; Android 7.0; LG-H831 Build/NRD90U) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.126 Mobile Safari/537.36','',NULL,NULL),(109946,0.000000,1525282201.267908,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/the-chantry/','https://www.watchhill.ca/rates-policies/','Mozilla/5.0 (Linux; Android 7.0; LG-H831 Build/NRD90U) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.126 Mobile Safari/537.36','',NULL,NULL),(109947,0.000000,1525282251.103300,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/','https://www.watchhill.ca/accommodations/the-chantry/','Mozilla/5.0 (Linux; Android 7.0; LG-H831 Build/NRD90U) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.126 Mobile Safari/537.36','',NULL,NULL),(109948,0.000000,1525282318.679756,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/harbour-suite/','https://www.watchhill.ca/accommodations/','Mozilla/5.0 (Linux; Android 7.0; LG-H831 Build/NRD90U) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.126 Mobile Safari/537.36','',NULL,NULL),(109949,0.000000,1525282331.528583,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/','https://www.watchhill.ca/accommodations/the-chantry/','Mozilla/5.0 (Linux; Android 7.0; LG-H831 Build/NRD90U) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.126 Mobile Safari/537.36','',NULL,NULL),(109950,0.000000,1525282341.845117,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/harbour-suite/','https://www.watchhill.ca/accommodations/','Mozilla/5.0 (Linux; Android 7.0; LG-H831 Build/NRD90U) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.126 Mobile Safari/537.36','',NULL,NULL),(109951,0.000000,1525282393.773093,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/the-saugeen/','https://www.watchhill.ca/accommodations/','Mozilla/5.0 (Linux; Android 7.0; LG-H831 Build/NRD90U) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.126 Mobile Safari/537.36','',NULL,NULL),(109952,0.000000,1525283597.572628,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://www.watchhill.ca/testimonials/','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(109953,0.000000,1525283618.317171,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'http://www.watchhill.ca/robots.txt','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(109954,0.000000,1525283620.858979,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://www.watchhill.ca/robots.txt','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(109955,0.000000,1525283801.150258,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'http://watchhill.ca/','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/45.0.2454.101 Safari/537.36','',NULL,NULL),(109956,0.000000,1525283804.350392,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://watchhill.ca/','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/45.0.2454.101 Safari/537.36','',NULL,NULL),(109957,0.000000,1525283807.927646,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://www.watchhill.ca/','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/45.0.2454.101 Safari/537.36','',NULL,NULL),(109958,0.000000,1525285399.893109,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://www.watchhill.ca/robots.txt','','Mozilla/5.0 (compatible; AhrefsBot/5.2; +http://ahrefs.com/robot/)','',NULL,NULL),(109959,0.000000,1525287409.064331,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/','https://www.google.ca/','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.139 Safari/537.36','',NULL,NULL),(109960,0.000000,1525287892.716590,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,1,0,0,'https://www.watchhill.ca/','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(109961,0.000000,1525288476.874023,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://www.watchhill.ca/','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/603.3.8 (KHTML, like Gecko) Version/10.1.2 Safari/603.3.8','',NULL,NULL),(109962,0.000000,1525288523.190263,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://www.watchhill.ca/1m1a1120/','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(109963,0.000000,1525288532.622737,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'http://www.watchhill.ca/robots.txt','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(109964,0.000000,1525288535.236629,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://www.watchhill.ca/robots.txt','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(109965,0.000000,1525288536.671862,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'http://www.watchhill.ca/robots.txt','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(109966,0.000000,1525288539.206943,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://www.watchhill.ca/robots.txt','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(109967,0.000000,1525288881.263927,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://www.watchhill.ca/robots.txt','','Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)','',NULL,NULL),(109968,0.000000,1525288881.456985,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'http://www.watchhill.ca/robots.txt','','Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)','',NULL,NULL),(109969,0.000000,1525288881.783094,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://watchhill.ca/robots.txt','','Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)','',NULL,NULL),(109970,0.000000,1525288880.994874,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'http://watchhill.ca/robots.txt','','Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)','',NULL,NULL),(109971,0.000000,1525288885.346848,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'http://www.watchhill.ca/','','Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)','',NULL,NULL),(109972,0.000000,1525288886.136878,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'http://watchhill.ca/','','Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)','',NULL,NULL),(109973,0.000000,1525288886.183855,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://www.watchhill.ca/','','Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)','',NULL,NULL),(109974,0.000000,1525288886.620882,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://watchhill.ca/','','Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)','',NULL,NULL),(109975,0.000000,1525289749.072770,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,1,0,0,'https://www.watchhill.ca/about/gallery/','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(109976,0.000000,1525290266.818859,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'http://watchhill.ca/','','Mozilla/5.0 (iPad; CPU OS 11_2_6 like Mac OS X) AppleWebKit/604.5.6 (KHTML, like Gecko) Version/11.0 Mobile/15D100 Safari/604.1','',NULL,NULL),(109977,0.000000,1525290268.923477,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://watchhill.ca/','','Mozilla/5.0 (iPad; CPU OS 11_2_6 like Mac OS X) AppleWebKit/604.5.6 (KHTML, like Gecko) Version/11.0 Mobile/15D100 Safari/604.1','',NULL,NULL),(109978,0.000000,1525290270.312616,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/','','Mozilla/5.0 (iPad; CPU OS 11_2_6 like Mac OS X) AppleWebKit/604.5.6 (KHTML, like Gecko) Version/11.0 Mobile/15D100 Safari/604.1','',NULL,NULL),(109979,0.000000,1525290296.846075,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/rates-policies/','https://www.watchhill.ca/','Mozilla/5.0 (iPad; CPU OS 11_2_6 like Mac OS X) AppleWebKit/604.5.6 (KHTML, like Gecko) Version/11.0 Mobile/15D100 Safari/604.1','',NULL,NULL),(109980,0.000000,1525297421.670629,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://www.watchhill.ca/','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_6) AppleWebKit/605.1.15 (KHTML, like Gecko)','',NULL,NULL),(109981,0.000000,1525300390.181687,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/','','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.139 Safari/537.36','',NULL,NULL),(109982,0.000000,1525304533.771045,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://www.watchhill.ca/xmlrpc.php?rsd','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(109983,0.000000,1525306533.435404,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'http://www.watchhill.ca/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(109984,0.000000,1525306535.921331,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://www.watchhill.ca/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(109985,0.000000,1525307513.788823,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://www.watchhill.ca/','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(109986,0.000000,1525308186.152040,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'http://www.watchhill.ca/','http://metallo-konstruktsii.ru/','Mozilla/4.0 (compatible; MSIE 6.0; MSIE 5.5; Windows NT 4.0) Opera 7.0 [en]','',NULL,NULL),(109987,0.000000,1525308187.864751,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'http://www.watchhill.ca/','http://metallo-konstruktsii.ru/','Mozilla/4.0 (compatible; MSIE 6.0; MSIE 5.5; Windows NT 4.0) Opera 7.0 [en]','',NULL,NULL),(109988,0.000000,1525308189.066620,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'http://www.watchhill.ca/','http://metallo-konstruktsii.ru/','Mozilla/4.0 (compatible; MSIE 6.0; MSIE 5.5; Windows NT 4.0) Opera 7.0 [en]','',NULL,NULL),(109989,0.000000,1525308435.948265,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://www.watchhill.ca/robots.txt','','Mozilla/5.0 (compatible; SeznamBot/3.2; +http://napoveda.seznam.cz/en/seznambot-intro/)','',NULL,NULL),(109990,0.000000,1525308533.483868,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'http://www.watchhill.ca/a','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(109991,0.000000,1525308535.907625,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://www.watchhill.ca/a','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(109992,0.000000,1525308537.470564,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://www.watchhill.ca/about/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(109993,0.000000,1525309050.125611,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'http://watchhill.ca/','','Symfony BrowserKit','',NULL,NULL),(109994,0.000000,1525309052.769434,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://watchhill.ca/','http://watchhill.ca','Symfony BrowserKit','',NULL,NULL),(109995,0.000000,1525309055.812103,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://www.watchhill.ca/','https://watchhill.ca/','Symfony BrowserKit','',NULL,NULL),(109996,0.000000,1525309058.236573,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'http://watchhill.ca/about','','Symfony BrowserKit','',NULL,NULL),(109997,0.000000,1525309059.768051,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://watchhill.ca/about','http://watchhill.ca/about','Symfony BrowserKit','',NULL,NULL),(109998,0.000000,1525309061.303029,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://www.watchhill.ca/about/','https://watchhill.ca/about','Symfony BrowserKit','',NULL,NULL),(109999,0.000000,1525309064.044505,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'http://watchhill.ca/about/your-hosts','','Symfony BrowserKit','',NULL,NULL),(110000,0.000000,1525309065.572243,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://watchhill.ca/about/your-hosts','http://watchhill.ca/about/your-hosts','Symfony BrowserKit','',NULL,NULL),(110001,0.000000,1525309067.110215,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://www.watchhill.ca/about/your-hosts/','https://watchhill.ca/about/your-hosts','Symfony BrowserKit','',NULL,NULL),(110002,0.000000,1525309069.544367,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'http://watchhill.ca/about/the-area','','Symfony BrowserKit','',NULL,NULL),(110003,0.000000,1525309071.080322,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://watchhill.ca/about/the-area','http://watchhill.ca/about/the-area','Symfony BrowserKit','',NULL,NULL),(110004,0.000000,1525309072.610471,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://www.watchhill.ca/about/the-area/','https://watchhill.ca/about/the-area','Symfony BrowserKit','',NULL,NULL),(110005,0.000000,1525309093.719223,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'http://watchhill.ca/about/history-of-watch-hill','','Symfony BrowserKit','',NULL,NULL),(110006,0.000000,1525309096.152596,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://watchhill.ca/about/history-of-watch-hill','http://watchhill.ca/about/history-of-watch-hill','Symfony BrowserKit','',NULL,NULL),(110007,0.000000,1525309097.703011,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://www.watchhill.ca/about/history-of-watch-hill/','https://watchhill.ca/about/history-of-watch-hill','Symfony BrowserKit','',NULL,NULL),(110008,0.000000,1525309100.129668,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'http://watchhill.ca/accommodations','','Symfony BrowserKit','',NULL,NULL),(110009,0.000000,1525309101.667116,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://watchhill.ca/accommodations','http://watchhill.ca/accommodations','Symfony BrowserKit','',NULL,NULL),(110010,0.000000,1525309103.210528,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://www.watchhill.ca/accommodations/','https://watchhill.ca/accommodations','Symfony BrowserKit','',NULL,NULL),(110011,0.000000,1525309105.695789,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'http://watchhill.ca/accommodations/the-huron','','Symfony BrowserKit','',NULL,NULL),(110012,0.000000,1525309107.229050,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://watchhill.ca/accommodations/the-huron','http://watchhill.ca/accommodations/the-huron','Symfony BrowserKit','',NULL,NULL),(110013,0.000000,1525309108.767995,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://www.watchhill.ca/accommodations/the-huron/','https://watchhill.ca/accommodations/the-huron','Symfony BrowserKit','',NULL,NULL),(110014,0.000000,1525309111.588613,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'http://watchhill.ca/accommodations/the-chantry','','Symfony BrowserKit','',NULL,NULL),(110015,0.000000,1525309113.124160,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://watchhill.ca/accommodations/the-chantry','http://watchhill.ca/accommodations/the-chantry','Symfony BrowserKit','',NULL,NULL),(110016,0.000000,1525309114.668258,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://www.watchhill.ca/accommodations/the-chantry/','https://watchhill.ca/accommodations/the-chantry','Symfony BrowserKit','',NULL,NULL),(110017,0.000000,1525309117.320657,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'http://watchhill.ca/accommodations/the-saugeen','','Symfony BrowserKit','',NULL,NULL),(110018,0.000000,1525309118.882613,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://watchhill.ca/accommodations/the-saugeen','http://watchhill.ca/accommodations/the-saugeen','Symfony BrowserKit','',NULL,NULL),(110019,0.000000,1525309120.415825,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://www.watchhill.ca/accommodations/the-saugeen/','https://watchhill.ca/accommodations/the-saugeen','Symfony BrowserKit','',NULL,NULL),(110020,0.000000,1525309123.243667,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'http://watchhill.ca/accommodations/harbour-suite','','Symfony BrowserKit','',NULL,NULL),(110021,0.000000,1525309124.780255,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://watchhill.ca/accommodations/harbour-suite','http://watchhill.ca/accommodations/harbour-suite','Symfony BrowserKit','',NULL,NULL),(110022,0.000000,1525309126.312992,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://www.watchhill.ca/accommodations/harbour-suite/','https://watchhill.ca/accommodations/harbour-suite','Symfony BrowserKit','',NULL,NULL),(110023,0.000000,1525312385.663094,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://www.watchhill.ca/img_2181/','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(110024,0.000000,1525312907.443176,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'http://watchhill.ca/','','Mozilla/5.0 (iPad; CPU OS 9_3_5 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) GSA/42.0.183854831 Mobile/13G36 Safari/601.1','',NULL,NULL),(110025,0.000000,1525312909.679235,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://watchhill.ca/','','Mozilla/5.0 (iPad; CPU OS 9_3_5 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) GSA/42.0.183854831 Mobile/13G36 Safari/601.1','',NULL,NULL),(110026,0.000000,1525312911.539508,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/','','Mozilla/5.0 (iPad; CPU OS 9_3_5 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) GSA/42.0.183854831 Mobile/13G36 Safari/601.1','',NULL,NULL),(110027,0.000000,1525312945.382308,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/rates-policies/','https://www.watchhill.ca/','Mozilla/5.0 (iPad; CPU OS 9_3_5 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) GSA/42.0.183854831 Mobile/13G36 Safari/601.1','',NULL,NULL),(110028,0.000000,1525312959.549647,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/rates-policies/','https://www.watchhill.ca/','Mozilla/5.0 (iPad; CPU OS 9_3_5 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) GSA/42.0.183854831 Mobile/13G36 Safari/601.1','',NULL,NULL),(110029,0.000000,1525312973.051850,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/','https://www.watchhill.ca/rates-policies/','Mozilla/5.0 (iPad; CPU OS 9_3_5 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) GSA/42.0.183854831 Mobile/13G36 Safari/601.1','',NULL,NULL),(110030,0.000000,1525313006.812282,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/the-saugeen/','https://www.watchhill.ca/accommodations/','Mozilla/5.0 (iPad; CPU OS 9_3_5 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) GSA/42.0.183854831 Mobile/13G36 Safari/601.1','',NULL,NULL),(110031,0.000000,1525313396.876061,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'http://www.watchhill.ca/robots.txt','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(110032,0.000000,1525313398.673996,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'http://www.watchhill.ca/robots.txt','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(110033,0.000000,1525313399.522614,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://www.watchhill.ca/robots.txt','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(110034,0.000000,1525313400.385763,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://www.watchhill.ca/robots.txt','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(110035,0.000000,1525313402.891331,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'http://www.watchhill.ca/robots.txt','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(110036,0.000000,1525313405.389851,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://www.watchhill.ca/robots.txt','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(110037,0.000000,1525316094.076409,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/','https://www.google.ca/','Mozilla/5.0 (iPad; CPU OS 9_3_5 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13G36 Safari/601.1','',NULL,NULL),(110038,0.000000,1525316156.043876,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/','https://www.watchhill.ca/','Mozilla/5.0 (iPad; CPU OS 9_3_5 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13G36 Safari/601.1','',NULL,NULL),(110039,0.000000,1525316323.085821,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/harbour-suite/','https://www.watchhill.ca/accommodations/','Mozilla/5.0 (iPad; CPU OS 9_3_5 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13G36 Safari/601.1','',NULL,NULL),(110040,0.000000,1525316382.672609,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/rates-policies/','https://www.watchhill.ca/accommodations/harbour-suite/','Mozilla/5.0 (iPad; CPU OS 9_3_5 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13G36 Safari/601.1','',NULL,NULL),(110041,0.000000,1525319631.143106,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://www.watchhill.ca/','https://www.google.ca/','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.117 Safari/537.36','',NULL,NULL),(110042,0.000000,1525321811.695052,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,404,1,0,0,'https://www.watchhill.ca/.well-known/assetlinks.json','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(110043,0.000000,1525323208.099299,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'http://www.watchhill.ca/robots.txt','','Mozilla/5.0 (compatible; SemrushBot/1.2~bl; +http://www.semrush.com/bot.html)','',NULL,NULL),(110044,0.000000,1525323210.394076,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://www.watchhill.ca/robots.txt','','Mozilla/5.0 (compatible; SemrushBot/1.2~bl; +http://www.semrush.com/bot.html)','',NULL,NULL),(110045,0.000000,1525331597.906806,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://www.watchhill.ca/robots.txt','','Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)','',NULL,NULL),(110046,0.000000,1525331601.665495,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://www.watchhill.ca/cropped-watch-hill-favicon-1-png/','','Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)','',NULL,NULL),(110047,0.000000,1525334950.403651,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'http://watchhill.ca/robots.txt','','Mozilla/5.0 (compatible; SemrushBot/1.2~bl; +http://www.semrush.com/bot.html)','',NULL,NULL),(110048,0.000000,1525334953.166029,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://watchhill.ca/robots.txt','','Mozilla/5.0 (compatible; SemrushBot/1.2~bl; +http://www.semrush.com/bot.html)','',NULL,NULL),(110049,0.000000,1525349768.377573,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://www.watchhill.ca/robots.txt','','Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)','',NULL,NULL),(110050,0.000000,1525351649.047775,'\0\0\0\0\0\0\0\0\0\0ÿÿBfh',0,200,0,0,0,'https://www.watchhill.ca/','','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2623.75 Safari/537.36 Google Favicon','',NULL,NULL),(110051,0.000000,1525354668.234392,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://www.watchhill.ca/','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_5) AppleWebKit/601.7.8 (KHTML, like Gecko) Version/9.1.3 Safari/537.86.7','',NULL,NULL),(110052,0.000000,1525354685.033009,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'http://watchhill.ca/','','Mozilla/5.0 (Linux; U; Android 4.2; en-us; sdk Build/MR1) AppleWebKit/535.19 (KHTML, like Gecko) Version/4.2 Safari/535.19','',NULL,NULL),(110053,0.000000,1525354687.697224,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://watchhill.ca/','http://watchhill.ca','Mozilla/5.0 (Linux; U; Android 4.2; en-us; sdk Build/MR1) AppleWebKit/535.19 (KHTML, like Gecko) Version/4.2 Safari/535.19','',NULL,NULL),(110054,0.000000,1525354690.847852,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://www.watchhill.ca/','https://watchhill.ca/','Mozilla/5.0 (Linux; U; Android 4.2; en-us; sdk Build/MR1) AppleWebKit/535.19 (KHTML, like Gecko) Version/4.2 Safari/535.19','',NULL,NULL),(110055,0.000000,1525355266.433835,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://www.watchhill.ca/','https://www.google.com/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.139 Safari/537.36','',NULL,NULL),(110056,0.000000,1525355716.104902,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://www.watchhill.ca/','https://www.google.com/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.139 Safari/537.36','',NULL,NULL),(110057,0.000000,1525356796.570120,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'http://www.watchhill.ca/','','','',NULL,NULL),(110058,0.000000,1525356796.567644,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://www.watchhill.ca/','','OpenSSL','',NULL,NULL),(110059,0.000000,1525357310.792481,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/','https://www.google.com/url?sa=t&rct=j&q=&esrc=s&source=web&cd=12&ved=0ahUKEwihuL3f3unaAhXmw1kKHW-eCxsQ_BcIhwEwCw&url=https%3A%2F%2Fwww.watchhill.ca%2F&usg=AOvVaw1CgizKn2gegr0v6hs4nBL0','Mozilla/5.0 (Windows NT 6.1; Trident/7.0; rv:11.0) like Gecko','',NULL,NULL),(110060,0.000000,1525357342.229278,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/rates-policies/','https://www.watchhill.ca/','Mozilla/5.0 (Windows NT 6.1; Trident/7.0; rv:11.0) like Gecko','',NULL,NULL),(110061,0.000000,1525357343.165850,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/rates-policies/','https://www.watchhill.ca/','Mozilla/5.0 (Windows NT 6.1; Trident/7.0; rv:11.0) like Gecko','',NULL,NULL),(110062,0.000000,1525357361.658720,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/contact/','https://www.watchhill.ca/rates-policies/','Mozilla/5.0 (Windows NT 6.1; Trident/7.0; rv:11.0) like Gecko','',NULL,NULL),(110063,0.000000,1525357374.189179,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/','https://www.watchhill.ca/contact/','Mozilla/5.0 (Windows NT 6.1; Trident/7.0; rv:11.0) like Gecko','',NULL,NULL),(110064,0.000000,1525357388.386157,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/about/','https://www.watchhill.ca/','Mozilla/5.0 (Windows NT 6.1; Trident/7.0; rv:11.0) like Gecko','',NULL,NULL),(110065,0.000000,1525357406.390513,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/','https://www.watchhill.ca/about/','Mozilla/5.0 (Windows NT 6.1; Trident/7.0; rv:11.0) like Gecko','',NULL,NULL),(110066,0.000000,1525357413.301005,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/rates-policies/','https://www.watchhill.ca/accommodations/','Mozilla/5.0 (Windows NT 6.1; Trident/7.0; rv:11.0) like Gecko','',NULL,NULL),(110067,0.000000,1525357417.924784,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,1,0,0,'https://www.watchhill.ca/','','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2272.96 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(110068,0.000000,1525357438.262751,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/the-saugeen/','https://www.watchhill.ca/rates-policies/','Mozilla/5.0 (Windows NT 6.1; Trident/7.0; rv:11.0) like Gecko','',NULL,NULL),(110069,0.000000,1525357462.727014,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/the-huron/','https://www.watchhill.ca/accommodations/the-saugeen/','Mozilla/5.0 (Windows NT 6.1; Trident/7.0; rv:11.0) like Gecko','',NULL,NULL),(110070,0.000000,1525357493.690189,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/the-chantry/','https://www.watchhill.ca/accommodations/the-huron/','Mozilla/5.0 (Windows NT 6.1; Trident/7.0; rv:11.0) like Gecko','',NULL,NULL),(110071,0.000000,1525357597.960266,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,1,0,0,'http://watchhill.ca/','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(110072,0.000000,1525357599.062114,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,1,0,0,'https://watchhill.ca/','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(110073,0.000000,1525357600.150939,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,1,0,0,'https://www.watchhill.ca/','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(110074,0.000000,1525360118.089382,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,1,0,0,'http://watchhill.ca/robots.txt','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(110075,0.000000,1525360120.147451,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,1,0,0,'https://watchhill.ca/robots.txt','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(110076,0.000000,1525360121.053202,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,1,0,0,'http://watchhill.ca/','','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2272.96 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(110077,0.000000,1525360122.192183,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,1,0,0,'https://watchhill.ca/','','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2272.96 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(110078,0.000000,1525360297.575105,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,1,0,0,'http://www.watchhill.ca/','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(110079,0.000000,1525360477.562592,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,1,0,0,'http://www.watchhill.ca/','','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2272.96 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(110080,0.000000,1525364918.792637,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'http://www.watchhill.ca/','','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.139 Safari/537.36','',NULL,NULL),(110081,0.000000,1525364921.477655,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/','','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.139 Safari/537.36','',NULL,NULL),(110082,0.000000,1525364931.290931,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/','https://www.watchhill.ca/','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.139 Safari/537.36','',NULL,NULL),(110083,0.000000,1525364998.103419,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/harbour-suite/','https://www.watchhill.ca/accommodations/','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.139 Safari/537.36','',NULL,NULL),(110084,0.000000,1525365013.040435,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/the-huron/','https://www.watchhill.ca/accommodations/','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.139 Safari/537.36','',NULL,NULL),(110085,0.000000,1525365048.221474,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/the-chantry/','https://www.watchhill.ca/accommodations/','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.139 Safari/537.36','',NULL,NULL),(110086,0.000000,1525365075.659110,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/the-saugeen/','https://www.watchhill.ca/accommodations/','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.139 Safari/537.36','',NULL,NULL),(110087,0.000000,1525365098.014456,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/the-chantry/','https://www.watchhill.ca/accommodations/','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.139 Safari/537.36','',NULL,NULL),(110088,0.000000,1525365122.219727,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/contact/','https://www.watchhill.ca/accommodations/the-chantry/','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.139 Safari/537.36','',NULL,NULL),(110089,0.000000,1525365130.276857,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/','https://www.watchhill.ca/contact/','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.139 Safari/537.36','',NULL,NULL),(110090,0.000000,1525365142.595772,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/','https://www.watchhill.ca/','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.139 Safari/537.36','',NULL,NULL),(110091,0.000000,1525365145.181406,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/testimonials/','https://www.watchhill.ca/accommodations/','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.139 Safari/537.36','',NULL,NULL),(110092,0.000000,1525365156.139827,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/','https://www.watchhill.ca/testimonials/','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.139 Safari/537.36','',NULL,NULL),(110093,0.000000,1525365177.879611,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/','https://www.watchhill.ca/accommodations/','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.139 Safari/537.36','',NULL,NULL),(110094,0.000000,1525366270.461869,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://www.watchhill.ca/','https://www.google.ca/','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/63.0.3239.132 Safari/537.36','',NULL,NULL),(110095,0.000000,1525366632.364766,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://www.watchhill.ca/','https://www.google.ca/','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/63.0.3239.132 Safari/537.36','',NULL,NULL),(110096,0.000000,1525366864.357185,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,1,0,0,'https://www.watchhill.ca/','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(110097,0.000000,1525367539.611182,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://watchhill.ca/privacy-policy','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:59.0) Gecko/20100101 Firefox/59.0','',NULL,NULL),(110098,0.000000,1525367542.690408,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://www.watchhill.ca/privacy-policy/','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:59.0) Gecko/20100101 Firefox/59.0','',NULL,NULL),(110099,0.000000,1525368471.677202,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://www.watchhill.ca/','https://www.google.ca/','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/63.0.3239.132 Safari/537.36','',NULL,NULL),(110100,0.000000,1525369901.800962,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://www.watchhill.ca/','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(110101,0.000000,1525370225.985892,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://www.watchhill.ca/accommodations/','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(110102,0.000000,1525371228.103981,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,1,0,0,'https://www.watchhill.ca/robots.txt','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(110103,0.000000,1525371979.415427,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,404,1,0,0,'https://www.watchhill.ca/cropped-watch-hill-favicon-1-png/cropped-watch-hill-favicon-1.png','','Googlebot-Image/1.0','',NULL,NULL),(110104,0.000000,1525373326.998544,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'http://watchhill.ca/','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2743.116 Safari/537.36 Edge/15.15063','',NULL,NULL),(110105,0.000000,1525373330.091444,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://watchhill.ca/','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2743.116 Safari/537.36 Edge/15.15063','',NULL,NULL),(110106,0.000000,1525373331.633567,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2743.116 Safari/537.36 Edge/15.15063','',NULL,NULL),(110107,0.000000,1525373342.000194,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/','https://www.watchhill.ca/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2743.116 Safari/537.36 Edge/15.15063','',NULL,NULL),(110108,0.000000,1525373352.851697,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/rates-policies/','https://www.watchhill.ca/accommodations/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2743.116 Safari/537.36 Edge/15.15063','',NULL,NULL),(110109,0.000000,1525373353.556611,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/rates-policies/','https://www.watchhill.ca/accommodations/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2743.116 Safari/537.36 Edge/15.15063','',NULL,NULL),(110110,0.000000,1525373429.335077,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/harbour-suite/','https://www.watchhill.ca/rates-policies/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2743.116 Safari/537.36 Edge/15.15063','',NULL,NULL),(110111,0.000000,1525373491.065060,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://www.watchhill.ca/robots.txt','','Mozilla/5.0 (compatible; AhrefsBot/5.2; +http://ahrefs.com/robot/)','',NULL,NULL),(110112,0.000000,1525375864.665080,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,1,0,0,'https://www.watchhill.ca/','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(110113,0.000000,1525376280.479399,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/','https://www.google.ca/','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.36','',NULL,NULL),(110114,0.000000,1525376307.332822,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/','https://www.watchhill.ca/','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.36','',NULL,NULL),(110115,0.000000,1525380788.978407,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/','http://www.google.com/','Mozilla/5.0 (Linux; Android 7.0; SM-G903W Build/NRD90M) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.126 Mobile Safari/537.36','',NULL,NULL),(110116,0.000000,1525390517.589354,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/','https://www.google.ca/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.139 Safari/537.36','',NULL,NULL),(110117,0.000000,1525390528.100371,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/','https://www.watchhill.ca/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.139 Safari/537.36','',NULL,NULL),(110118,0.000000,1525390546.477523,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/the-huron/','https://www.watchhill.ca/accommodations/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.139 Safari/537.36','',NULL,NULL),(110119,0.000000,1525390563.528256,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/rates-policies/','https://www.watchhill.ca/accommodations/the-huron/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.139 Safari/537.36','',NULL,NULL),(109641,0.000000,1525037078.149103,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,1,0,0,'http://watchhill.ca/','','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2272.96 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(109642,0.000000,1525037080.252677,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,1,0,0,'https://watchhill.ca/','','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2272.96 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(109643,0.000000,1525037081.443468,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,1,0,0,'https://www.watchhill.ca/','','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2272.96 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(109644,0.000000,1525037219.902646,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,1,0,0,'https://watchhill.ca/','','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2272.96 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(109645,0.000000,1525037221.326587,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,1,0,0,'https://www.watchhill.ca/','','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2272.96 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(109646,0.000000,1525038285.291653,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'http://www.watchhill.ca/','','Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; WOW64; Trident/5.0)','',NULL,NULL),(109647,0.000000,1525038313.486268,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://www.watchhill.ca/','','Mozilla/5.0 (Linux; Android 7.0; SM-G903W Build/NRD90M) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.126 Mobile Safari/537.36','',NULL,NULL),(109648,0.000000,1525038412.797222,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://www.watchhill.ca/wp-login.php?redirect_to=https%3A%2F%2Fwww.watchhill.ca%2Fwp-admin%2Fadmin.php%3Fpage%3Dwp-simple-booking-calendar-premium&reauth=1','','Mozilla/5.0 (Linux; Android 7.0; SM-G903W Build/NRD90M) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.126 Mobile Safari/537.36','',NULL,NULL),(109649,0.000000,1525038480.963182,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'http://www.watchhill.ca/','','','',NULL,NULL),(109650,0.000000,1525038498.850228,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'http://www.watchhill.ca/','','','',NULL,NULL),(109651,0.000000,1525038543.083556,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'http://www.watchhill.ca/','','','',NULL,NULL),(109652,0.000000,1525038639.055980,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://www.watchhill.ca/','','OpenSSL','',NULL,NULL),(109653,0.000000,1525038684.864167,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'http://www.watchhill.ca/','','','',NULL,NULL),(109654,0.000000,1525038695.684145,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://www.watchhill.ca/','','OpenSSL','',NULL,NULL),(109655,0.000000,1525038712.017520,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/','','Mozilla/5.0 (Linux; Android 7.0; SM-G903W Build/NRD90M) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.126 Mobile Safari/537.36','',NULL,NULL),(109656,0.000000,1525039246.023187,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://www.watchhill.ca/','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_4) AppleWebKit/605.1.15 (KHTML, like Gecko)','',NULL,NULL),(109657,0.000000,1525039363.611689,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'http://www.watchhill.ca/','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_4) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/11.1 Safari/605.1.15','',NULL,NULL),(109658,0.000000,1525039364.700128,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_4) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/11.1 Safari/605.1.15','',NULL,NULL),(109659,0.000000,1525039777.877304,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,1,0,0,'https://www.watchhill.ca/','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(109660,0.000000,1525040307.587162,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'http://www.watchhill.ca/','','Mozilla/5.0 (iPhone; CPU iPhone OS 10_0 like Mac OS X) AppleWebKit/602.1.38 (KHTML, like Gecko) Version/10.0 Mobile/14A5297c Safari/602.1','',NULL,NULL),(109661,0.000000,1525040310.003878,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://www.watchhill.ca/','http://www.watchhill.ca','Mozilla/5.0 (iPhone; CPU iPhone OS 10_0 like Mac OS X) AppleWebKit/602.1.38 (KHTML, like Gecko) Version/10.0 Mobile/14A5297c Safari/602.1','',NULL,NULL),(109662,0.000000,1525040312.268066,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,404,0,0,0,'https://www.watchhill.ca/apple-touch-icon-precomposed.png','','Mozilla/5.0 (iPhone; CPU iPhone OS 10_0 like Mac OS X) AppleWebKit/602.1.38 (KHTML, like Gecko) Version/10.0 Mobile/14A5297c Safari/602.1','',NULL,NULL),(109663,0.000000,1525040312.266344,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,404,0,0,0,'https://www.watchhill.ca/apple-touch-icon.png','','Mozilla/5.0 (iPhone; CPU iPhone OS 10_0 like Mac OS X) AppleWebKit/602.1.38 (KHTML, like Gecko) Version/10.0 Mobile/14A5297c Safari/602.1','',NULL,NULL),(109664,0.000000,1525040468.283182,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/','https://www.google.ca/','Mozilla/5.0 (iPad; CPU OS 11_2_6 like Mac OS X) AppleWebKit/604.5.6 (KHTML, like Gecko) Version/11.0 Mobile/15D100 Safari/604.1','',NULL,NULL),(109665,0.000000,1525040552.645151,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/','https://www.google.ca/','Mozilla/5.0 (iPad; CPU OS 11_2_6 like Mac OS X) AppleWebKit/604.5.6 (KHTML, like Gecko) Version/11.0 Mobile/15D100 Safari/604.1','',NULL,NULL),(109666,0.000000,1525040569.281451,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/harbour-suite/','https://www.watchhill.ca/','Mozilla/5.0 (iPad; CPU OS 11_2_6 like Mac OS X) AppleWebKit/604.5.6 (KHTML, like Gecko) Version/11.0 Mobile/15D100 Safari/604.1','',NULL,NULL),(110579,0.000000,1525736462.570039,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://www.watchhill.ca/robots.txt','','Mozilla/5.0 (compatible; Daum/4.1; +http://cs.daum.net/faq/15/4118.html?faqId=28966)','',NULL,NULL),(110580,0.000000,1525736464.281698,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'http://www.watchhill.ca/','','Mozilla/5.0 (Unknown; Linux x86_64) AppleWebKit/538.1 (KHTML, like Gecko) Safari/538.1 Daum/4.1','',NULL,NULL),(110581,0.000000,1525736465.748727,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://www.watchhill.ca/','','Mozilla/5.0 (Unknown; Linux x86_64) AppleWebKit/538.1 (KHTML, like Gecko) Safari/538.1 Daum/4.1','',NULL,NULL),(110582,0.000000,1525736468.340509,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/the-huron/','https://www.watchhill.ca/accommodations/the-chantry/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.36 Edge/16.16299','',NULL,NULL),(110583,0.000000,1525736469.585260,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'http://www.watchhill.ca/','','Mozilla/5.0 (compatible; Daum/4.1; +http://cs.daum.net/faq/15/4118.html?faqId=28966)','',NULL,NULL),(110584,0.000000,1525736478.099445,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://www.watchhill.ca/','','Mozilla/5.0 (Unknown; Linux x86_64) AppleWebKit/538.1 (KHTML, like Gecko) Safari/538.1 Daum/4.1','',NULL,NULL),(110585,0.000000,1525736481.950024,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://www.watchhill.ca/','','Mozilla/5.0 (compatible; Daum/4.1; +http://cs.daum.net/faq/15/4118.html?faqId=28966)','',NULL,NULL),(110586,0.000000,1525736484.890124,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/the-chantry/','https://www.watchhill.ca/accommodations/the-huron/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.36 Edge/16.16299','',NULL,NULL),(110587,0.000000,1525736488.837982,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://www.watchhill.ca/','','Mozilla/5.0 (compatible; Daum/4.1; +http://cs.daum.net/faq/15/4118.html?faqId=28966)','',NULL,NULL),(110588,0.000000,1525736495.740545,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://www.watchhill.ca/','','Mozilla/5.0 (Unknown; Linux x86_64) AppleWebKit/538.1 (KHTML, like Gecko) Safari/538.1 Daum/4.1','',NULL,NULL),(110589,0.000000,1525736499.321072,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://www.watchhill.ca/','','Mozilla/5.0 (Unknown; Linux x86_64) AppleWebKit/538.1 (KHTML, like Gecko) Safari/538.1 Daum/4.1','',NULL,NULL),(110590,0.000000,1525736509.680678,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://www.watchhill.ca/','','Mozilla/5.0 (Unknown; Linux x86_64) AppleWebKit/538.1 (KHTML, like Gecko) Safari/538.1 Daum/4.1','',NULL,NULL),(110591,0.000000,1525736513.207082,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://www.watchhill.ca/','','Mozilla/5.0 (Unknown; Linux x86_64) AppleWebKit/538.1 (KHTML, like Gecko) Safari/538.1 Daum/4.1','',NULL,NULL),(110592,0.000000,1525736523.572230,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://www.watchhill.ca/','','Mozilla/5.0 (Unknown; Linux x86_64) AppleWebKit/538.1 (KHTML, like Gecko) Safari/538.1 Daum/4.1','',NULL,NULL),(109301,0.000000,1524696582.727706,'\0\0\0\0\0\0\0\0\0\0ÿÿÀ\0p”',0,200,0,0,0,'https://www.watchhill.ca/xmlrpc.php?for=jetpack&token=qCiLj6bZIDoYvuv%21l0Lc%24lM7%26cJ%24kk58%3A1%3A1&timestamp=1524696581&nonce=dHqlJZ81Xr&body-hash=nXaRqVKrd%2BjLsuN1d4MDcA9by%2BI%3D&signature=pAM8I%2BmKJh6ZZIFStV4aY7BrufY%3D','https://www.watchhill.ca/xmlrpc.php?for=jetpack&token=qCiLj6bZIDoYvuv%21l0Lc%24lM7%26cJ%24kk58%3A1%3A1&timestamp=1524696581&nonce=dHqlJZ81Xr&body-hash=nXaRqVKrd%2BjLsuN1d4MDcA9by%2BI%3D&signature=pAM8I%2BmKJh6ZZIFStV4aY7BrufY%3D','Jetpack by WordPress.com','',NULL,NULL),(109300,0.000000,1524696580.770394,'\0\0\0\0\0\0\0\0\0\0ÿÿÀ\0p”',0,200,0,0,0,'https://www.watchhill.ca/xmlrpc.php?for=jetpack&token=qCiLj6bZIDoYvuv%21l0Lc%24lM7%26cJ%24kk58%3A1%3A1&timestamp=1524696580&nonce=BQMQwb51Fr&body-hash=CXi7zs9Kr6EGyqEDpEniiBieimc%3D&signature=jxbZsF6P4U33eqT%2BBbzVKlori74%3D','https://www.watchhill.ca/xmlrpc.php?for=jetpack&token=qCiLj6bZIDoYvuv%21l0Lc%24lM7%26cJ%24kk58%3A1%3A1&timestamp=1524696580&nonce=BQMQwb51Fr&body-hash=CXi7zs9Kr6EGyqEDpEniiBieimc%3D&signature=jxbZsF6P4U33eqT%2BBbzVKlori74%3D','Jetpack by WordPress.com','',NULL,NULL),(109299,0.000000,1524696578.659195,'\0\0\0\0\0\0\0\0\0\0ÿÿÀ\0p”',0,200,0,0,0,'https://www.watchhill.ca/xmlrpc.php?for=jetpack&token=qCiLj6bZIDoYvuv%21l0Lc%24lM7%26cJ%24kk58%3A1%3A1&timestamp=1524696577&nonce=ZhCT2M1PeJ&body-hash=%2By%2B47XqIcaTkqePTvJVh1co9y%2Fc%3D&signature=JQJZ0%2B5q2dSKyx6tHEua8vrWSeY%3D','https://www.watchhill.ca/xmlrpc.php?for=jetpack&token=qCiLj6bZIDoYvuv%21l0Lc%24lM7%26cJ%24kk58%3A1%3A1&timestamp=1524696577&nonce=ZhCT2M1PeJ&body-hash=%2By%2B47XqIcaTkqePTvJVh1co9y%2Fc%3D&signature=JQJZ0%2B5q2dSKyx6tHEua8vrWSeY%3D','Jetpack by WordPress.com','',NULL,NULL),(109298,0.000000,1524696576.541669,'\0\0\0\0\0\0\0\0\0\0ÿÿÀ\0p”',0,200,0,0,0,'https://www.watchhill.ca/xmlrpc.php','https://www.watchhill.ca/xmlrpc.php','WordPress.com; https://www.watchhill.ca','',NULL,NULL),(109297,0.000000,1524696574.943117,'\0\0\0\0\0\0\0\0\0\0ÿÿÀ\0p”',0,200,0,0,0,'https://www.watchhill.ca/xmlrpc.php','https://www.watchhill.ca/xmlrpc.php','WordPress.com; https://www.watchhill.ca','',NULL,NULL),(109296,0.000000,1524696573.632583,'\0\0\0\0\0\0\0\0\0\0ÿÿÀ\0p”',0,200,0,0,0,'https://www.watchhill.ca/xmlrpc.php?for=jetpack&token=qCiLj6bZIDoYvuv%21l0Lc%24lM7%26cJ%24kk58%3A1%3A1&timestamp=1524696572&nonce=rHxfz9U357&body-hash=pdst%2B%2B8gjpsEsdzTGdS19%2BYN3g4%3D&signature=Rz%2Br2s52frnXdjh2lUucJAMHOGk%3D','https://www.watchhill.ca/xmlrpc.php?for=jetpack&token=qCiLj6bZIDoYvuv%21l0Lc%24lM7%26cJ%24kk58%3A1%3A1&timestamp=1524696572&nonce=rHxfz9U357&body-hash=pdst%2B%2B8gjpsEsdzTGdS19%2BYN3g4%3D&signature=Rz%2Br2s52frnXdjh2lUucJAMHOGk%3D','Jetpack by WordPress.com','',NULL,NULL),(109295,0.000000,1524696571.953185,'\0\0\0\0\0\0\0\0\0\0ÿÿÀ\0p”',0,200,0,0,0,'https://www.watchhill.ca/','https://www.watchhill.ca/','WordPress.com; https://www.watchhill.ca','',NULL,NULL),(109293,0.000000,1524689782.716965,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://www.watchhill.ca/1m1a1500/','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(109294,0.000000,1524695508.594622,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,1,0,0,'https://www.watchhill.ca/','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(109292,0.000000,1524687865.669715,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,1,0,0,'https://www.watchhill.ca/','','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2272.96 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(109291,0.000000,1524687863.558436,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,1,0,0,'https://watchhill.ca/','','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2272.96 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(109290,0.000000,1524686345.794786,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://www.watchhill.ca/robots.txt','','Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)','',NULL,NULL),(109289,0.000000,1524685679.168009,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,1,0,0,'https://www.watchhill.ca/','','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2272.96 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(109288,0.000000,1524684104.705149,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,1,0,0,'https://www.watchhill.ca/','','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2272.96 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(109287,0.000000,1524684103.525386,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,1,0,0,'https://watchhill.ca/','','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2272.96 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(109286,0.000000,1524684102.035533,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,1,0,0,'http://watchhill.ca/','','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2272.96 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(109285,0.000000,1524683902.237635,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://www.watchhill.ca/accommodations/the-huron/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(109283,0.000000,1524682888.313088,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,1,0,0,'http://www.watchhill.ca/','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(109284,0.000000,1524682891.098796,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,1,0,0,'https://www.watchhill.ca/','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(109282,0.000000,1524680185.011664,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,1,0,0,'https://www.watchhill.ca/','','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2272.96 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(109281,0.000000,1524680183.880755,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,1,0,0,'http://www.watchhill.ca/','','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2272.96 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(109280,0.000000,1524680090.850984,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://www.watchhill.ca/robots.txt','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(109279,0.000000,1524680087.597220,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'http://www.watchhill.ca/robots.txt','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(109278,0.000000,1524680078.876712,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://www.watchhill.ca/1m1a1580/','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(109277,0.000000,1524679774.829602,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/the-huron/','https://www.watchhill.ca/accommodations/','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.36','',NULL,NULL),(109276,0.000000,1524679741.694488,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/the-chantry/','https://www.watchhill.ca/accommodations/','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.36','',NULL,NULL),(109275,0.000000,1524679734.278789,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/the-huron/','https://www.watchhill.ca/accommodations/','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.36','',NULL,NULL),(109274,0.000000,1524679727.141437,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/the-chantry/','https://www.watchhill.ca/accommodations/','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.36','',NULL,NULL),(109273,0.000000,1524679682.695396,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/the-saugeen/','https://www.watchhill.ca/accommodations/','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.36','',NULL,NULL),(109272,0.000000,1524679655.168744,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/harbour-suite/','https://www.watchhill.ca/accommodations/','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.36','',NULL,NULL),(109271,0.000000,1524679460.862100,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/the-chantry/','https://www.watchhill.ca/accommodations/','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.36','',NULL,NULL),(109270,0.000000,1524679450.749645,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://www.watchhill.ca/','','CCBot/2.0 (http://commoncrawl.org/faq/)','',NULL,NULL),(109268,0.000000,1524679448.778630,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://www.watchhill.ca/robots.txt','','CCBot/2.0 (http://commoncrawl.org/faq/)','',NULL,NULL),(109269,0.000000,1524679449.537324,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/','https://www.watchhill.ca/','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.36','',NULL,NULL),(109266,0.000000,1524679445.706414,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://watchhill.ca/robots.txt','','CCBot/2.0 (http://commoncrawl.org/faq/)','',NULL,NULL),(109267,0.000000,1524679446.994193,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://watchhill.ca/','','CCBot/2.0 (http://commoncrawl.org/faq/)','',NULL,NULL),(109264,0.000000,1524679443.392897,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://watchhill.ca/robots.txt','','CCBot/2.0 (http://commoncrawl.org/faq/)','',NULL,NULL),(109265,0.000000,1524679444.432115,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'http://watchhill.ca/','','CCBot/2.0 (http://commoncrawl.org/faq/)','',NULL,NULL),(109263,0.000000,1524679440.733213,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'http://watchhill.ca/robots.txt','','CCBot/2.0 (http://commoncrawl.org/faq/)','',NULL,NULL),(109262,0.000000,1524679440.939531,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/','','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.36','',NULL,NULL),(109261,0.000000,1524678426.428684,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/rates-policies/','https://www.watchhill.ca/','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.36','',NULL,NULL),(109260,0.000000,1524678406.956589,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/','https://www.google.ca/','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.36','',NULL,NULL),(109259,0.000000,1524678360.217589,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/','https://www.watchhill.ca/','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.36','',NULL,NULL),(109258,0.000000,1524678205.501885,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/about/your-hosts/','https://www.watchhill.ca/','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.36','',NULL,NULL),(109257,0.000000,1524678199.706976,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/about/','https://www.watchhill.ca/','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.36','',NULL,NULL),(109256,0.000000,1524678185.637010,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/','https://www.google.ca/','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.36','',NULL,NULL),(109255,0.000000,1524675690.645956,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/the-huron/','https://www.watchhill.ca/accommodations/the-chantry/','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.36','',NULL,NULL),(109254,0.000000,1524675648.046604,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/the-chantry/','https://www.watchhill.ca/accommodations/','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.36','',NULL,NULL),(109252,0.000000,1524675481.641996,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/rates-policies/','https://www.watchhill.ca/contact/','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.36','',NULL,NULL),(109253,0.000000,1524675510.001647,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/','https://www.watchhill.ca/rates-policies/','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.36','',NULL,NULL),(109251,0.000000,1524675364.141396,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/contact/','https://www.watchhill.ca/accommodations/the-huron/','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.36','',NULL,NULL),(109250,0.000000,1524675292.199460,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://www.watchhill.ca/','','Mozilla/5.0 zgrab/0.x (compatible; Researchscan/t12sns; +http://researchscan.comsys.rwth-aachen.de)','',NULL,NULL),(109248,0.000000,1524675168.033182,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/the-saugeen/','https://www.watchhill.ca/accommodations/the-huron/','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.36','',NULL,NULL),(109249,0.000000,1524675191.991003,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/the-huron/','https://www.watchhill.ca/accommodations/the-saugeen/','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.36','',NULL,NULL),(109247,0.000000,1524674963.016861,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/the-huron/','https://www.watchhill.ca/about/','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.36','',NULL,NULL),(109246,0.000000,1524674961.068484,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/','https://www.watchhill.ca/about/','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.36','',NULL,NULL),(109245,0.000000,1524674818.852381,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/about/','https://www.watchhill.ca/accommodations/the-saugeen/','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.36','',NULL,NULL),(109244,0.000000,1524674797.978505,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/the-saugeen/','https://www.watchhill.ca/contact/','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.36','',NULL,NULL),(109243,0.000000,1524674796.969932,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/','https://www.watchhill.ca/contact/','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.36','',NULL,NULL),(109242,0.000000,1524674784.600099,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/contact/','https://www.watchhill.ca/accommodations/the-saugeen/','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.36','',NULL,NULL),(109241,0.000000,1524674587.392380,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://www.watchhill.ca/robots.txt','','Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)','',NULL,NULL),(109240,0.000000,1524674365.934730,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/contact/','https://www.watchhill.ca/','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.36','',NULL,NULL),(109239,0.000000,1524674353.371563,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/','https://www.google.ca/','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.36','',NULL,NULL),(109238,0.000000,1524671212.679833,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/the-saugeen/','https://www.watchhill.ca/accommodations/','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.36','',NULL,NULL),(109237,0.000000,1524671206.438287,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/','','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.36','',NULL,NULL),(109236,0.000000,1524669942.198178,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/about/','https://www.watchhill.ca/','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.36','',NULL,NULL),(109235,0.000000,1524669781.520930,'\0\0\0\0\0\0\0\0\0\0ÿÿ­üyt',0,200,0,0,0,'https://www.watchhill.ca/accommodations/the-saugeen','','facebookexternalhit/1.1','',NULL,NULL),(109234,0.000000,1524669543.459299,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/the-saugeen/','http://m.facebook.com','Mozilla/5.0 (iPhone; CPU iPhone OS 11_1_2 like Mac OS X) AppleWebKit/604.3.5 (KHTML, like Gecko) Mobile/15B202 [FBAN/MessengerForiOS;FBAV/162.0.0.50.90;FBBV/103471857;FBDV/iPhone9,3;FBMD/iPhone;FBSN/iOS;FBSV/11.1.2;FBSS/2;FBCR/TELUS;FBID/phone;FBLC/en_US;FBOP/5;FBRV/0]','',NULL,NULL),(109233,0.000000,1524669518.978556,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/the-saugeen/','https://www.watchhill.ca/accommodations/harbour-suite/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.162 Safari/537.36','',NULL,NULL),(109232,0.000000,1524669496.996305,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/harbour-suite/','https://www.watchhill.ca/accommodations/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.162 Safari/537.36','',NULL,NULL),(109231,0.000000,1524669490.662719,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/','https://www.watchhill.ca/accommodations/the-saugeen/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.162 Safari/537.36','',NULL,NULL),(109230,0.000000,1524669478.560512,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/the-saugeen/','https://www.watchhill.ca/accommodations/','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.36','',NULL,NULL),(109229,0.000000,1524669474.446866,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/','','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.36','',NULL,NULL),(109228,0.000000,1524669420.982598,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/the-saugeen/','https://www.watchhill.ca/accommodations/the-chantry/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.162 Safari/537.36','',NULL,NULL),(109227,0.000000,1524669405.447730,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/the-chantry/','https://www.watchhill.ca/accommodations/the-huron/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.162 Safari/537.36','',NULL,NULL),(109226,0.000000,1524669361.048788,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/the-huron/','https://www.watchhill.ca/accommodations/the-saugeen/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.162 Safari/537.36','',NULL,NULL),(109225,0.000000,1524669333.605114,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/contact/','https://www.watchhill.ca/accommodations/the-saugeen/','Mozilla/5.0 (iPhone; CPU iPhone OS 11_1_2 like Mac OS X) AppleWebKit/604.3.5 (KHTML, like Gecko) Mobile/15B202 [FBAN/MessengerForiOS;FBAV/162.0.0.50.90;FBBV/103471857;FBDV/iPhone9,3;FBMD/iPhone;FBSN/iOS;FBSV/11.1.2;FBSS/2;FBCR/TELUS;FBID/phone;FBLC/en_US;FBOP/5;FBRV/0]','',NULL,NULL),(109224,0.000000,1524669326.589094,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/the-saugeen/','https://l.facebook.com/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.162 Safari/537.36','',NULL,NULL),(109223,0.000000,1524669310.249978,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/the-saugeen/','http://m.facebook.com','Mozilla/5.0 (iPhone; CPU iPhone OS 11_1_2 like Mac OS X) AppleWebKit/604.3.5 (KHTML, like Gecko) Mobile/15B202 [FBAN/MessengerForiOS;FBAV/162.0.0.50.90;FBBV/103471857;FBDV/iPhone9,3;FBMD/iPhone;FBSN/iOS;FBSV/11.1.2;FBSS/2;FBCR/TELUS;FBID/phone;FBLC/en_US;FBOP/5;FBRV/0]','',NULL,NULL),(109222,0.000000,1524669248.216313,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/the-saugeen/','https://www.watchhill.ca/accommodations/','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.36','',NULL,NULL),(109221,0.000000,1524669237.280395,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/harbour-suite/','https://www.watchhill.ca/accommodations/','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.36','',NULL,NULL),(109220,0.000000,1524669220.265023,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/the-huron/','https://www.watchhill.ca/accommodations/','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.36','',NULL,NULL),(109219,0.000000,1524669203.323672,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/rates-policies/','https://www.watchhill.ca/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.162 Safari/537.36','',NULL,NULL),(109218,0.000000,1524669194.335538,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/the-chantry/','https://www.watchhill.ca/accommodations/','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.36','',NULL,NULL),(109217,0.000000,1524669186.048543,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/','https://www.watchhill.ca/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.162 Safari/537.36','',NULL,NULL),(109216,0.000000,1524669181.320893,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/','https://www.watchhill.ca/accommodations/the-saugeen/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.162 Safari/537.36','',NULL,NULL),(109215,0.000000,1524669179.379353,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/the-saugeen/','https://www.watchhill.ca/accommodations/','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.36','',NULL,NULL),(109214,0.000000,1524669164.003659,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/harbour-suite/','https://www.watchhill.ca/accommodations/','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.36','',NULL,NULL),(109213,0.000000,1524669156.471063,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/the-saugeen/','https://l.facebook.com/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.162 Safari/537.36','',NULL,NULL),(109212,0.000000,1524669142.455184,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/','https://www.watchhill.ca/','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.36','',NULL,NULL),(109211,0.000000,1524669079.305369,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/','https://www.google.ca/','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.36','',NULL,NULL),(109210,0.000000,1524668996.113611,'\0\0\0\0\0\0\0\0\0\0ÿÿBÜœ',0,200,0,0,0,'https://www.watchhill.ca/accommodations/the-saugeen/','','facebookexternalhit/1.1 (+http://www.facebook.com/externalhit_uatext.php)','',NULL,NULL),(109209,0.000000,1524668995.114420,'\0\0\0\0\0\0\0\0\0\0ÿÿ­üzŒ',0,200,0,0,0,'https://www.watchhill.ca/accommodations/the-saugeen/','','facebookexternalhit/1.1 (+http://www.facebook.com/externalhit_uatext.php)','',NULL,NULL),(109208,0.000000,1524668987.965310,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/the-saugeen/','https://www.watchhill.ca/rates-policies/','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.36','',NULL,NULL),(109207,0.000000,1524668986.926146,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/','https://www.watchhill.ca/rates-policies/','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.36','',NULL,NULL),(109206,0.000000,1524668887.254001,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,1,0,0,'https://www.watchhill.ca/?foogallery=activities','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(109205,0.000000,1524668015.618551,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/rates-policies/','https://www.watchhill.ca/accommodations/the-saugeen/','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.36','',NULL,NULL),(109203,0.000000,1524667741.926592,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://www.watchhill.ca/chantry-suite/','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(109204,0.000000,1524667757.586408,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/the-saugeen/','https://www.watchhill.ca/accommodations/','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.36','',NULL,NULL),(109202,0.000000,1524667645.689668,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/','','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.36','',NULL,NULL),(109201,0.000000,1524666562.946567,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/harbour-suite/','https://www.watchhill.ca/accommodations/','Mozilla/5.0 (Windows NT 10.0; WOW64; rv:58.0) Gecko/20100101 Firefox/58.0 IceDragon/58.0.1','',NULL,NULL),(109200,0.000000,1524666537.389608,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/','https://www.watchhill.ca/accommodations/the-chantry/','Mozilla/5.0 (Windows NT 10.0; WOW64; rv:58.0) Gecko/20100101 Firefox/58.0 IceDragon/58.0.1','',NULL,NULL),(109199,0.000000,1524666527.570602,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/the-chantry/','https://www.watchhill.ca/accommodations/the-huron/','Mozilla/5.0 (Windows NT 10.0; WOW64; rv:58.0) Gecko/20100101 Firefox/58.0 IceDragon/58.0.1','',NULL,NULL),(109198,0.000000,1524666526.508512,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/','https://www.watchhill.ca/accommodations/the-huron/','Mozilla/5.0 (Windows NT 10.0; WOW64; rv:58.0) Gecko/20100101 Firefox/58.0 IceDragon/58.0.1','',NULL,NULL),(109197,0.000000,1524666500.654005,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/the-huron/','https://www.watchhill.ca/rates-policies/','Mozilla/5.0 (Windows NT 10.0; WOW64; rv:58.0) Gecko/20100101 Firefox/58.0 IceDragon/58.0.1','',NULL,NULL),(109196,0.000000,1524666449.363457,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/rates-policies/','https://www.watchhill.ca/','Mozilla/5.0 (Windows NT 10.0; WOW64; rv:58.0) Gecko/20100101 Firefox/58.0 IceDragon/58.0.1','',NULL,NULL),(109195,0.000000,1524666406.100742,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/','','Mozilla/5.0 (Windows NT 10.0; WOW64; rv:58.0) Gecko/20100101 Firefox/58.0 IceDragon/58.0.1','',NULL,NULL),(109194,0.000000,1524665586.028796,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://www.watchhill.ca/sitemap.xml','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(109192,0.000000,1524662623.072040,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,1,0,0,'https://www.watchhill.ca/','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(109193,0.000000,1524664934.638492,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://www.watchhill.ca/accommodations/the-huron/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(109191,0.000000,1524653855.799890,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://www.watchhill.ca/robots.txt','','Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)','',NULL,NULL),(109189,0.000000,1524641559.481843,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://www.watchhill.ca/robots.txt','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(109190,0.000000,1524650735.095143,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://watchhill.ca/','https://watchhill.ca/','Mozilla/5.0 (Windows NT 5.1; rv:30.0) Gecko/20100101 Firefox/30.0','',NULL,NULL),(109188,0.000000,1524641556.788617,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'http://www.watchhill.ca/robots.txt','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(109186,0.000000,1524632075.727647,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://www.watchhill.ca/','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_4) AppleWebKit/605.1.15 (KHTML, like Gecko)','',NULL,NULL),(109187,0.000000,1524641547.262371,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://www.watchhill.ca/1m1a1554/','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(109184,0.000000,1524631474.253061,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://www.watchhill.ca/robots.txt','','Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)','',NULL,NULL),(109185,0.000000,1524631861.192194,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,1,0,0,'https://www.watchhill.ca/','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(109183,0.000000,1524626058.578508,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,1,0,0,'https://www.watchhill.ca/','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(109182,0.000000,1524626057.509722,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,1,0,0,'https://www.watchhill.ca/robots.txt','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(109181,0.000000,1524626056.185073,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,1,0,0,'https://watchhill.ca/','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(109180,0.000000,1524626054.206380,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,1,0,0,'http://watchhill.ca/','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(109179,0.000000,1524623297.694392,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/','https://www.watchhill.ca/accommodations/the-huron/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.36','',NULL,NULL),(109178,0.000000,1524623147.242432,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/the-huron/','https://www.watchhill.ca/accommodations/the-chantry/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.36','',NULL,NULL),(109177,0.000000,1524623141.868693,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/the-chantry/','https://www.watchhill.ca/accommodations/the-chantry/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.36','',NULL,NULL),(109176,0.000000,1524623036.028742,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/the-chantry/','https://www.watchhill.ca/accommodations/the-huron/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.36','',NULL,NULL),(109175,0.000000,1524622944.701544,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/the-huron/','https://www.watchhill.ca/accommodations/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.36','',NULL,NULL),(109174,0.000000,1524622779.291985,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/','https://www.watchhill.ca/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.36','',NULL,NULL),(109173,0.000000,1524622745.200967,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/','https://www.watchhill.ca/about/history-of-watch-hill/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.36','',NULL,NULL),(109172,0.000000,1524622692.143614,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/about/history-of-watch-hill/','https://www.watchhill.ca/accommodations/the-chantry/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.36','',NULL,NULL),(109171,0.000000,1524622613.937728,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/the-chantry/','https://www.watchhill.ca/accommodations/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.36','',NULL,NULL),(109170,0.000000,1524622587.894687,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/','https://www.watchhill.ca/accommodations/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.36','',NULL,NULL),(109169,0.000000,1524622582.423695,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/','https://www.watchhill.ca/accommodations/the-huron/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.36','',NULL,NULL),(109168,0.000000,1524622534.104805,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/the-huron/','https://www.watchhill.ca/rates-policies/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.36','',NULL,NULL),(109167,0.000000,1524622461.284164,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/the-saugeen/','https://www.watchhill.ca/rates-policies/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.36','',NULL,NULL),(109166,0.000000,1524622395.872508,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/rates-policies/','https://www.watchhill.ca/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.36','',NULL,NULL),(109165,0.000000,1524622380.901298,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.36','',NULL,NULL),(109164,0.000000,1524622146.688730,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://www.watchhill.ca/about/the-area/','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(109163,0.000000,1524620773.729701,'\0\0\0\0\0\0\0\0\0\0ÿÿBfl',0,200,0,0,0,'https://www.watchhill.ca/','','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2623.75 Safari/537.36 Google Favicon','',NULL,NULL),(109162,0.000000,1524620107.405157,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,404,0,0,0,'https://www.watchhill.ca/Iicense.php?wso','','check1.exe','',NULL,NULL),(109161,0.000000,1524620105.667453,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://watchhill.ca/Iicense.php?wso','','check1.exe','',NULL,NULL),(109160,0.000000,1524620103.055542,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'http://watchhill.ca/Iicense.php?wso','https://watchhill.ca/Iicense.php?wso','Mozilla/5.0 (Windows NT 7.1; WOW64; rv:36.0) Gecko/20100101 Firefox/36.0','',NULL,NULL),(109159,0.000000,1524619849.544071,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://www.watchhill.ca/robots.txt','','Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)','',NULL,NULL),(109158,0.000000,1524619100.166429,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,1,0,0,'https://www.watchhill.ca/','','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2272.96 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(109157,0.000000,1524619097.596601,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,1,0,0,'https://watchhill.ca/','','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2272.96 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(109156,0.000000,1524616110.433747,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/the-saugeen/','https://www.watchhill.ca/accommodations/','Mozilla/5.0 (Linux; Android 7.1.1; Nexus 9 Build/N9F27M) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.109 Safari/537.36','',NULL,NULL),(109155,0.000000,1524616101.340714,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/the-huron/','https://www.watchhill.ca/accommodations/','Mozilla/5.0 (Linux; Android 7.1.1; Nexus 9 Build/N9F27M) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.109 Safari/537.36','',NULL,NULL),(109154,0.000000,1524616077.862653,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/harbour-suite/','https://www.watchhill.ca/accommodations/','Mozilla/5.0 (Linux; Android 7.1.1; Nexus 9 Build/N9F27M) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.109 Safari/537.36','',NULL,NULL),(109153,0.000000,1524616069.078804,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/the-chantry/','https://www.watchhill.ca/accommodations/','Mozilla/5.0 (Linux; Android 7.1.1; Nexus 9 Build/N9F27M) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.109 Safari/537.36','',NULL,NULL),(109152,0.000000,1524615962.012051,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/the-saugeen/','https://www.watchhill.ca/accommodations/','Mozilla/5.0 (Linux; Android 7.1.1; Nexus 9 Build/N9F27M) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.109 Safari/537.36','',NULL,NULL),(109150,0.000000,1524615869.608707,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/','','Mozilla/5.0 (Linux; Android 7.1.1; Nexus 9 Build/N9F27M) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.109 Safari/537.36','',NULL,NULL),(109151,0.000000,1524615899.500170,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/','https://www.watchhill.ca/','Mozilla/5.0 (Linux; Android 7.1.1; Nexus 9 Build/N9F27M) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.109 Safari/537.36','',NULL,NULL),(109149,0.000000,1524615868.044852,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://watchhill.ca/','','Mozilla/5.0 (Linux; Android 7.1.1; Nexus 9 Build/N9F27M) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.109 Safari/537.36','',NULL,NULL),(109147,0.000000,1524614532.787841,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,404,0,0,0,'https://www.watchhill.ca/wp-content/uploads/config.php','','check1.exe','',NULL,NULL),(109148,0.000000,1524615865.531961,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'http://watchhill.ca/','','Mozilla/5.0 (Linux; Android 7.1.1; Nexus 9 Build/N9F27M) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.109 Safari/537.36','',NULL,NULL),(110746,0.000000,1525800246.189586,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/','https://www.watchhill.ca/','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.139 Safari/537.36','',NULL,NULL),(109146,0.000000,1524614530.668623,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://watchhill.ca/wp-content/uploads/config.php','','check1.exe','',NULL,NULL),(110747,0.000000,1525800344.635743,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/the-huron/','https://www.watchhill.ca/accommodations/','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.139 Safari/537.36','',NULL,NULL),(110748,0.000000,1525800446.544478,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/the-chantry/','https://www.watchhill.ca/accommodations/','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.139 Safari/537.36','',NULL,NULL),(110749,0.000000,1525800511.920914,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/the-huron/','https://www.watchhill.ca/accommodations/the-huron/?_sm_nck=1','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.139 Safari/537.36','',NULL,NULL),(110750,0.000000,1525800522.932578,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/rates-policies/','https://www.watchhill.ca/accommodations/the-huron/','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.139 Safari/537.36','',NULL,NULL),(110751,0.000000,1525800603.169839,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/the-chantry/','https://www.watchhill.ca/rates-policies/','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.139 Safari/537.36','',NULL,NULL),(110752,0.000000,1525800610.329564,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/the-huron/','https://www.watchhill.ca/accommodations/the-chantry/','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.139 Safari/537.36','',NULL,NULL),(110753,0.000000,1525800625.006400,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/the-chantry/','https://www.watchhill.ca/accommodations/the-huron/','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.139 Safari/537.36','',NULL,NULL),(110754,0.000000,1525800697.482060,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/testimonials/','https://www.watchhill.ca/accommodations/the-chantry/','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.139 Safari/537.36','',NULL,NULL),(110755,0.000000,1525800756.665007,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/the-huron/','https://www.watchhill.ca/testimonials/','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.139 Safari/537.36','',NULL,NULL),(110756,0.000000,1525801355.176376,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'http://www.watchhill.ca/robots.txt','','Mozilla/5.0 (compatible; SemrushBot/1.2~bl; +http://www.semrush.com/bot.html)','',NULL,NULL),(110757,0.000000,1525801357.476866,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://www.watchhill.ca/robots.txt','','Mozilla/5.0 (compatible; SemrushBot/1.2~bl; +http://www.semrush.com/bot.html)','',NULL,NULL),(110758,0.000000,1525803359.501566,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'http://watchhill.ca/','','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.139 Safari/537.36','',NULL,NULL),(110759,0.000000,1525803361.473611,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://watchhill.ca/','','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.139 Safari/537.36','',NULL,NULL),(110760,0.000000,1525803363.661748,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/','','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.139 Safari/537.36','',NULL,NULL),(110761,0.000000,1525803410.094996,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/','https://www.watchhill.ca/','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.139 Safari/537.36','',NULL,NULL),(110762,0.000000,1525803491.599824,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/the-huron/','https://www.watchhill.ca/accommodations/','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.139 Safari/537.36','',NULL,NULL),(110763,0.000000,1525803556.877914,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/the-chantry/','https://www.watchhill.ca/accommodations/','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.139 Safari/537.36','',NULL,NULL),(110764,0.000000,1525803668.303197,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/the-saugeen/','https://www.watchhill.ca/accommodations/','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.139 Safari/537.36','',NULL,NULL),(110765,0.000000,1525803724.138155,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/harbour-suite/','https://www.watchhill.ca/accommodations/','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.139 Safari/537.36','',NULL,NULL),(110766,0.000000,1525804232.630877,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,1,0,0,'https://www.watchhill.ca/','','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2272.96 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(110767,0.000000,1525804707.150927,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'http://watchhill.ca/','','Lynx/2.8.9dev.8 libwww-FM/2.14 SSL-MM/1.4.1 GNUTLS/3.4.9','',NULL,NULL),(110768,0.000000,1525804709.687256,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://watchhill.ca/','','Lynx/2.8.9dev.8 libwww-FM/2.14 SSL-MM/1.4.1 GNUTLS/3.4.9','',NULL,NULL),(110769,0.000000,1525804711.772057,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://www.watchhill.ca/','','Lynx/2.8.9dev.8 libwww-FM/2.14 SSL-MM/1.4.1 GNUTLS/3.4.9','',NULL,NULL),(110770,0.000000,1525805130.005006,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'http://watchhill.ca/','','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.106 Safari/537.36','',NULL,NULL),(110771,0.000000,1525805132.651994,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'http://www.watchhill.ca/','','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.106 Safari/537.36','',NULL,NULL),(110772,0.000000,1525805133.473807,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'http://watchhill.ca/','','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.106 Safari/537.36','',NULL,NULL),(110773,0.000000,1525805134.455008,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'http://www.watchhill.ca/','','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.106 Safari/537.36','',NULL,NULL),(110774,0.000000,1525805875.639204,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://www.watchhill.ca/robots.txt','','Mozilla/5.0 (compatible; SeznamBot/3.2; +http://napoveda.seznam.cz/en/seznambot-intro/)','',NULL,NULL),(110775,0.000000,1525805883.816301,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://www.watchhill.ca/2017/03/hello-world/','','Mozilla/5.0 (compatible; SeznamBot/3.2; +http://napoveda.seznam.cz/en/seznambot-intro/)','',NULL,NULL),(110776,0.000000,1525805889.405386,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://www.watchhill.ca/about/the-area/','','Mozilla/5.0 (compatible; SeznamBot/3.2; +http://napoveda.seznam.cz/en/seznambot-intro/)','',NULL,NULL),(110777,0.000000,1525805944.987224,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'http://watchhill.ca/','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.139 Safari/537.36','',NULL,NULL),(110778,0.000000,1525805946.162229,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://watchhill.ca/','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.139 Safari/537.36','',NULL,NULL),(110779,0.000000,1525805947.673381,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.139 Safari/537.36','',NULL,NULL),(110780,0.000000,1525805978.842473,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/rates-policies/','https://www.watchhill.ca/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.139 Safari/537.36','',NULL,NULL),(110781,0.000000,1525806044.358190,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/contact/','https://www.watchhill.ca/rates-policies/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.139 Safari/537.36','',NULL,NULL),(110782,0.000000,1525807120.914363,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'http://www.watchhill.ca/','','Mozilla/5.0 (Windows NT 6.1; Trident/7.0; rv:11.0) like Gecko','',NULL,NULL),(110783,0.000000,1525807123.039736,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/','','Mozilla/5.0 (Windows NT 6.1; Trident/7.0; rv:11.0) like Gecko','',NULL,NULL),(110784,0.000000,1525807133.669868,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/rates-policies/','https://www.watchhill.ca/','Mozilla/5.0 (Windows NT 6.1; Trident/7.0; rv:11.0) like Gecko','',NULL,NULL),(110785,0.000000,1525807152.944343,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/','https://www.watchhill.ca/rates-policies/','Mozilla/5.0 (Windows NT 6.1; Trident/7.0; rv:11.0) like Gecko','',NULL,NULL),(110786,0.000000,1525807167.470158,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/the-huron/','https://www.watchhill.ca/accommodations/','Mozilla/5.0 (Windows NT 6.1; Trident/7.0; rv:11.0) like Gecko','',NULL,NULL),(110787,0.000000,1525807195.442072,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/the-chantry/','https://www.watchhill.ca/accommodations/','Mozilla/5.0 (Windows NT 6.1; Trident/7.0; rv:11.0) like Gecko','',NULL,NULL),(110788,0.000000,1525807411.492652,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://www.watchhill.ca/','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_4) AppleWebKit/605.1.15 (KHTML, like Gecko)','',NULL,NULL),(110789,0.000000,1525807705.699322,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/','https://www.google.ca/','Mozilla/5.0 (iPad; CPU OS 11_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/11.0 Mobile/15E148 Safari/604.1','',NULL,NULL),(110790,0.000000,1525807725.438011,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/rates-policies/','https://www.watchhill.ca/','Mozilla/5.0 (iPad; CPU OS 11_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/11.0 Mobile/15E148 Safari/604.1','',NULL,NULL),(110791,0.000000,1525807738.581319,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/the-chantry/','https://www.watchhill.ca/rates-policies/','Mozilla/5.0 (iPad; CPU OS 11_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/11.0 Mobile/15E148 Safari/604.1','',NULL,NULL),(110792,0.000000,1525807768.849113,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/the-huron/','https://www.watchhill.ca/rates-policies/','Mozilla/5.0 (iPad; CPU OS 11_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/11.0 Mobile/15E148 Safari/604.1','',NULL,NULL),(110793,0.000000,1525807784.324213,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://www.watchhill.ca/accommodations/the-saugeen/','https://www.watchhill.ca/rates-policies/','Mozilla/5.0 (iPad; CPU OS 11_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/11.0 Mobile/15E148 Safari/604.1','',NULL,NULL),(110794,0.000000,1525807785.891820,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/the-saugeen/','https://www.watchhill.ca/rates-policies/','Mozilla/5.0 (iPad; CPU OS 11_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/11.0 Mobile/15E148 Safari/604.1','',NULL,NULL),(110795,0.000000,1525809508.615665,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/','https://www.technicalities.ca/portfolio/watch-hill-bed-breakfast/','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:59.0) Gecko/20100101 Firefox/59.0','',NULL,NULL),(110796,0.000000,1525809606.414179,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'http://watchhill.ca/','','Mozilla/5.0 (iPhone; CPU iPhone OS 11_2_6 like Mac OS X) AppleWebKit/604.1.34 (KHTML, like Gecko) GSA/48.0.193557427 Mobile/15D100 Safari/604.1','',NULL,NULL),(110797,0.000000,1525809607.719069,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://watchhill.ca/','','Mozilla/5.0 (iPhone; CPU iPhone OS 11_2_6 like Mac OS X) AppleWebKit/604.1.34 (KHTML, like Gecko) GSA/48.0.193557427 Mobile/15D100 Safari/604.1','',NULL,NULL),(110798,0.000000,1525809609.206930,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/','','Mozilla/5.0 (iPhone; CPU iPhone OS 11_2_6 like Mac OS X) AppleWebKit/604.1.34 (KHTML, like Gecko) GSA/48.0.193557427 Mobile/15D100 Safari/604.1','',NULL,NULL),(110799,0.000000,1525809622.201378,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/','','Mozilla/5.0 (iPhone; CPU iPhone OS 11_2_6 like Mac OS X) AppleWebKit/604.1.34 (KHTML, like Gecko) GSA/48.0.193557427 Mobile/15D100 Safari/604.1','',NULL,NULL),(110800,0.000000,1525809627.448400,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/rates-policies/','https://www.watchhill.ca/','Mozilla/5.0 (iPhone; CPU iPhone OS 11_2_6 like Mac OS X) AppleWebKit/604.1.34 (KHTML, like Gecko) GSA/48.0.193557427 Mobile/15D100 Safari/604.1','',NULL,NULL),(110801,0.000000,1525810242.996199,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/','https://www.google.ca/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.139 Safari/537.36','',NULL,NULL),(110802,0.000000,1525810259.323309,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/','https://www.watchhill.ca/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.139 Safari/537.36','',NULL,NULL),(110803,0.000000,1525810314.521179,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/the-huron/','https://www.watchhill.ca/accommodations/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.139 Safari/537.36','',NULL,NULL),(110804,0.000000,1525810414.533553,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/rates-policies/','https://www.watchhill.ca/accommodations/the-huron/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.139 Safari/537.36','',NULL,NULL),(110805,0.000000,1525810427.055076,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/the-chantry/','https://www.watchhill.ca/rates-policies/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.139 Safari/537.36','',NULL,NULL),(110806,0.000000,1525810444.877425,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/the-saugeen/','https://www.watchhill.ca/accommodations/the-chantry/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.139 Safari/537.36','',NULL,NULL),(110807,0.000000,1525810458.771642,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/harbour-suite/','https://www.watchhill.ca/accommodations/the-saugeen/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.139 Safari/537.36','',NULL,NULL),(110808,0.000000,1525810491.471850,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/the-huron/','https://www.watchhill.ca/accommodations/harbour-suite/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.139 Safari/537.36','',NULL,NULL),(110809,0.000000,1525814281.950119,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,1,0,0,'https://www.watchhill.ca/','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(110810,0.000000,1525814743.786762,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,1,0,0,'https://www.watchhill.ca/','','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2272.96 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(110811,0.000000,1525815846.052017,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'http://watchhill.ca/','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.139 Safari/537.36','',NULL,NULL),(110812,0.000000,1525815849.157337,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://watchhill.ca/','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.139 Safari/537.36','',NULL,NULL),(110813,0.000000,1525815850.600143,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.139 Safari/537.36','',NULL,NULL),(110814,0.000000,1525815867.747704,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/rates-policies/','https://www.watchhill.ca/','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.139 Safari/537.36','',NULL,NULL),(110815,0.000000,1525815945.035770,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/the-saugeen/','https://www.watchhill.ca/rates-policies/','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.139 Safari/537.36','',NULL,NULL),(110816,0.000000,1525815977.173520,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/the-huron/','https://www.watchhill.ca/accommodations/the-saugeen/','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.139 Safari/537.36','',NULL,NULL),(110817,0.000000,1525816004.103241,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/the-chantry/','https://www.watchhill.ca/accommodations/the-huron/','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.139 Safari/537.36','',NULL,NULL),(110818,0.000000,1525817386.428847,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'http://watchhill.ca/','','Mozilla/5.0 (iPhone; CPU iPhone OS 11_0 like Mac OS X) AppleWebKit/604.1.38 (KHTML, like Gecko) Mobile/15A372 [FBAN/FBIOS;FBAV/170.0.0.60.91;FBBV/105964764;FBDV/iPhone10,4;FBMD/iPhone;FBSN/iOS;FBSV/11.0;FBSS/2;FBCR/Koodo;FBID/phone;FBLC/en_US;FBOP/5;FBRV/0]','',NULL,NULL),(110819,0.000000,1525817388.740925,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://watchhill.ca/','','Mozilla/5.0 (iPhone; CPU iPhone OS 11_0 like Mac OS X) AppleWebKit/604.1.38 (KHTML, like Gecko) Mobile/15A372 [FBAN/FBIOS;FBAV/170.0.0.60.91;FBBV/105964764;FBDV/iPhone10,4;FBMD/iPhone;FBSN/iOS;FBSV/11.0;FBSS/2;FBCR/Koodo;FBID/phone;FBLC/en_US;FBOP/5;FBRV/0]','',NULL,NULL),(110820,0.000000,1525817390.200737,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/','','Mozilla/5.0 (iPhone; CPU iPhone OS 11_0 like Mac OS X) AppleWebKit/604.1.38 (KHTML, like Gecko) Mobile/15A372 [FBAN/FBIOS;FBAV/170.0.0.60.91;FBBV/105964764;FBDV/iPhone10,4;FBMD/iPhone;FBSN/iOS;FBSV/11.0;FBSS/2;FBCR/Koodo;FBID/phone;FBLC/en_US;FBOP/5;FBRV/0]','',NULL,NULL),(110821,0.000000,1525817406.202408,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/about/gallery/','https://www.watchhill.ca/','Mozilla/5.0 (iPhone; CPU iPhone OS 11_0 like Mac OS X) AppleWebKit/604.1.38 (KHTML, like Gecko) Mobile/15A372 [FBAN/FBIOS;FBAV/170.0.0.60.91;FBBV/105964764;FBDV/iPhone10,4;FBMD/iPhone;FBSN/iOS;FBSV/11.0;FBSS/2;FBCR/Koodo;FBID/phone;FBLC/en_US;FBOP/5;FBRV/0]','',NULL,NULL),(110822,0.000000,1525817415.581337,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/rates-policies/','https://www.watchhill.ca/','Mozilla/5.0 (iPhone; CPU iPhone OS 11_0 like Mac OS X) AppleWebKit/604.1.38 (KHTML, like Gecko) Mobile/15A372 [FBAN/FBIOS;FBAV/170.0.0.60.91;FBBV/105964764;FBDV/iPhone10,4;FBMD/iPhone;FBSN/iOS;FBSV/11.0;FBSS/2;FBCR/Koodo;FBID/phone;FBLC/en_US;FBOP/5;FBRV/0]','',NULL,NULL),(110823,0.000000,1525817416.799651,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/rates-policies/','https://www.watchhill.ca/','Mozilla/5.0 (iPhone; CPU iPhone OS 11_0 like Mac OS X) AppleWebKit/604.1.38 (KHTML, like Gecko) Mobile/15A372 [FBAN/FBIOS;FBAV/170.0.0.60.91;FBBV/105964764;FBDV/iPhone10,4;FBMD/iPhone;FBSN/iOS;FBSV/11.0;FBSS/2;FBCR/Koodo;FBID/phone;FBLC/en_US;FBOP/5;FBRV/0]','',NULL,NULL),(110824,0.000000,1525819016.843239,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://www.watchhill.ca/robots.txt','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/600.2.5 (KHTML, like Gecko) Version/8.0.2 Safari/600.2.5 (Applebot/0.1; +http://www.apple.com/go/applebot)','',NULL,NULL),(110825,0.000000,1525820471.005608,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'http://watchhill.ca/','','Mozilla/5.0 (iPhone; CPU iPhone OS 11_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E216 [FBAN/FBIOS;FBAV/170.1.0.80.91;FBBV/106613464;FBDV/iPhone9,3;FBMD/iPhone;FBSN/iOS;FBSV/11.3;FBSS/2;FBCR/Rogers;FBID/phone;FBLC/en_US;FBOP/5;FBRV/0]','',NULL,NULL),(110826,0.000000,1525820473.175318,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://watchhill.ca/','','Mozilla/5.0 (iPhone; CPU iPhone OS 11_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E216 [FBAN/FBIOS;FBAV/170.1.0.80.91;FBBV/106613464;FBDV/iPhone9,3;FBMD/iPhone;FBSN/iOS;FBSV/11.3;FBSS/2;FBCR/Rogers;FBID/phone;FBLC/en_US;FBOP/5;FBRV/0]','',NULL,NULL),(110827,0.000000,1525820474.548062,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/','','Mozilla/5.0 (iPhone; CPU iPhone OS 11_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E216 [FBAN/FBIOS;FBAV/170.1.0.80.91;FBBV/106613464;FBDV/iPhone9,3;FBMD/iPhone;FBSN/iOS;FBSV/11.3;FBSS/2;FBCR/Rogers;FBID/phone;FBLC/en_US;FBOP/5;FBRV/0]','',NULL,NULL),(110828,0.000000,1525820490.882693,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/about/your-hosts/','https://www.watchhill.ca/','Mozilla/5.0 (iPhone; CPU iPhone OS 11_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E216 [FBAN/FBIOS;FBAV/170.1.0.80.91;FBBV/106613464;FBDV/iPhone9,3;FBMD/iPhone;FBSN/iOS;FBSV/11.3;FBSS/2;FBCR/Rogers;FBID/phone;FBLC/en_US;FBOP/5;FBRV/0]','',NULL,NULL),(110829,0.000000,1525820502.205826,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/','https://www.watchhill.ca/','Mozilla/5.0 (iPhone; CPU iPhone OS 11_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E216 [FBAN/FBIOS;FBAV/170.1.0.80.91;FBBV/106613464;FBDV/iPhone9,3;FBMD/iPhone;FBSN/iOS;FBSV/11.3;FBSS/2;FBCR/Rogers;FBID/phone;FBLC/en_US;FBOP/5;FBRV/0]','',NULL,NULL),(110830,0.000000,1525820531.704207,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/harbour-suite/','https://www.watchhill.ca/accommodations/','Mozilla/5.0 (iPhone; CPU iPhone OS 11_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E216 [FBAN/FBIOS;FBAV/170.1.0.80.91;FBBV/106613464;FBDV/iPhone9,3;FBMD/iPhone;FBSN/iOS;FBSV/11.3;FBSS/2;FBCR/Rogers;FBID/phone;FBLC/en_US;FBOP/5;FBRV/0]','',NULL,NULL),(110831,0.000000,1525820551.151871,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/the-saugeen/','https://www.watchhill.ca/accommodations/','Mozilla/5.0 (iPhone; CPU iPhone OS 11_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E216 [FBAN/FBIOS;FBAV/170.1.0.80.91;FBBV/106613464;FBDV/iPhone9,3;FBMD/iPhone;FBSN/iOS;FBSV/11.3;FBSS/2;FBCR/Rogers;FBID/phone;FBLC/en_US;FBOP/5;FBRV/0]','',NULL,NULL),(110832,0.000000,1525821830.738599,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://www.watchhill.ca/robots.txt','','Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)','',NULL,NULL),(110833,0.000000,1525823020.871151,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'http://watchhill.ca/','','Mozilla/5.0 (iPad; CPU OS 11_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/11.0 Mobile/15E148 Safari/604.1','',NULL,NULL),(110834,0.000000,1525823023.258622,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://watchhill.ca/','','Mozilla/5.0 (iPad; CPU OS 11_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/11.0 Mobile/15E148 Safari/604.1','',NULL,NULL),(110835,0.000000,1525823024.945157,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/','','Mozilla/5.0 (iPad; CPU OS 11_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/11.0 Mobile/15E148 Safari/604.1','',NULL,NULL),(110836,0.000000,1525823084.775712,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/rates-policies/','https://www.watchhill.ca/','Mozilla/5.0 (iPad; CPU OS 11_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/11.0 Mobile/15E148 Safari/604.1','',NULL,NULL),(110837,0.000000,1525824381.274769,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,1,0,0,'https://www.watchhill.ca/','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(110838,0.000000,1525824612.176861,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,1,0,0,'https://www.watchhill.ca/','','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2272.96 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(110839,0.000000,1525825429.923148,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://www.watchhill.ca/wp-json/oembed/1.0/embed?url=https%3A%2F%2Fwww.watchhill.ca%2Faccommodations%2Fthe-chantry%2F','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(110840,0.000000,1525826437.546677,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'http://watchhill.ca/','','Mozilla/5.0 (iPhone; CPU iPhone OS 11_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E216 [FBAN/FBIOS;FBAV/155.0.0.36.93;FBBV/87992437;FBDV/iPhone8,1;FBMD/iPhone;FBSN/iOS;FBSV/11.3;FBSS/2;FBCR/TELUS;FBID/phone;FBLC/en_US;FBOP/5;FBRV/0]','',NULL,NULL),(110841,0.000000,1525826440.199476,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://watchhill.ca/','','Mozilla/5.0 (iPhone; CPU iPhone OS 11_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E216 [FBAN/FBIOS;FBAV/155.0.0.36.93;FBBV/87992437;FBDV/iPhone8,1;FBMD/iPhone;FBSN/iOS;FBSV/11.3;FBSS/2;FBCR/TELUS;FBID/phone;FBLC/en_US;FBOP/5;FBRV/0]','',NULL,NULL),(110842,0.000000,1525826441.702297,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/','','Mozilla/5.0 (iPhone; CPU iPhone OS 11_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E216 [FBAN/FBIOS;FBAV/155.0.0.36.93;FBBV/87992437;FBDV/iPhone8,1;FBMD/iPhone;FBSN/iOS;FBSV/11.3;FBSS/2;FBCR/TELUS;FBID/phone;FBLC/en_US;FBOP/5;FBRV/0]','',NULL,NULL),(110843,0.000000,1525826456.287200,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/rates-policies/','https://www.watchhill.ca/','Mozilla/5.0 (iPhone; CPU iPhone OS 11_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E216 [FBAN/FBIOS;FBAV/155.0.0.36.93;FBBV/87992437;FBDV/iPhone8,1;FBMD/iPhone;FBSN/iOS;FBSV/11.3;FBSS/2;FBCR/TELUS;FBID/phone;FBLC/en_US;FBOP/5;FBRV/0]','',NULL,NULL),(110844,0.000000,1525826484.343139,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/the-huron/','https://www.watchhill.ca/rates-policies/','Mozilla/5.0 (iPhone; CPU iPhone OS 11_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E216 [FBAN/FBIOS;FBAV/155.0.0.36.93;FBBV/87992437;FBDV/iPhone8,1;FBMD/iPhone;FBSN/iOS;FBSV/11.3;FBSS/2;FBCR/TELUS;FBID/phone;FBLC/en_US;FBOP/5;FBRV/0]','',NULL,NULL),(110845,0.000000,1525826543.007399,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/the-chantry/','https://www.watchhill.ca/rates-policies/','Mozilla/5.0 (iPhone; CPU iPhone OS 11_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E216 [FBAN/FBIOS;FBAV/155.0.0.36.93;FBBV/87992437;FBDV/iPhone8,1;FBMD/iPhone;FBSN/iOS;FBSV/11.3;FBSS/2;FBCR/TELUS;FBID/phone;FBLC/en_US;FBOP/5;FBRV/0]','',NULL,NULL),(109773,0.000000,1525126360.467310,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/','android-app://com.google.android.googlequicksearchbox','Mozilla/5.0 (Linux; Android 8.0.0; SM-G950W Build/R16NW) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.126 Mobile Safari/537.36','',NULL,NULL),(109772,0.000000,1525125086.185124,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/contact/','https://www.watchhill.ca/','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_4) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/11.1 Safari/605.1.15','',NULL,NULL),(109771,0.000000,1525125071.881649,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/','https://www.google.com/','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_4) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/11.1 Safari/605.1.15','',NULL,NULL),(109770,0.000000,1525124493.930399,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://www.watchhill.ca/robots.txt','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(109769,0.000000,1525124492.044693,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://www.watchhill.ca/robots.txt','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(109768,0.000000,1525124008.260933,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://www.watchhill.ca/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(109767,0.000000,1525124005.911812,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'http://www.watchhill.ca/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(109766,0.000000,1525122941.339346,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/harbour-suite/','https://www.watchhill.ca/accommodations/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.36 Edge/16.16299','',NULL,NULL),(109765,0.000000,1525122921.902779,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/','https://www.watchhill.ca/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.36 Edge/16.16299','',NULL,NULL),(109763,0.000000,1525119125.716109,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://www.watchhill.ca/robots.txt','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(109764,0.000000,1525122899.293038,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/','https://www.bing.com/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.36 Edge/16.16299','',NULL,NULL),(109762,0.000000,1525119124.740755,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'http://www.watchhill.ca/robots.txt','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(109761,0.000000,1525119119.131038,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://www.watchhill.ca/robots.txt','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(109760,0.000000,1525119118.259182,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://www.watchhill.ca/robots.txt','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(109759,0.000000,1525119117.393407,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'http://www.watchhill.ca/robots.txt','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(109758,0.000000,1525119116.469291,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'http://www.watchhill.ca/robots.txt','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(109757,0.000000,1525119113.991926,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://www.watchhill.ca/chantry-button/','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(109756,0.000000,1525108987.777445,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/the-huron/','https://www.watchhill.ca/accommodations/the-saugeen/','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.36','',NULL,NULL),(109755,0.000000,1525108988.292365,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/the-huron/','https://www.watchhill.ca/accommodations/the-saugeen/','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.36','',NULL,NULL),(109754,0.000000,1525108969.890053,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/the-saugeen/','https://www.watchhill.ca/about/gallery/','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.36','',NULL,NULL),(109753,0.000000,1525108968.615719,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/the-saugeen/','https://www.watchhill.ca/about/gallery/','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.36','',NULL,NULL),(109752,0.000000,1525108968.052445,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/the-saugeen/','https://www.watchhill.ca/about/gallery/','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.36','',NULL,NULL),(109751,0.000000,1525108946.627197,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/the-chantry/','https://www.watchhill.ca/about/','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.36','',NULL,NULL),(109750,0.000000,1525108941.597464,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/about/','https://www.watchhill.ca/about/gallery/','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.36','',NULL,NULL),(109749,0.000000,1525108929.576124,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/about/gallery/','https://www.watchhill.ca/','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.36','',NULL,NULL),(109748,0.000000,1525108906.746926,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/','https://www.google.com/','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.36','',NULL,NULL),(109747,0.000000,1525108664.939653,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/contact/','https://www.watchhill.ca/rates-policies/','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2883.87 Safari/537.36','',NULL,NULL),(109746,0.000000,1525108648.085448,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/rates-policies/','https://www.watchhill.ca/accommodations/','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2883.87 Safari/537.36','',NULL,NULL),(109745,0.000000,1525108645.357903,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/','https://www.watchhill.ca/about/','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2883.87 Safari/537.36','',NULL,NULL),(109744,0.000000,1525108622.873507,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/about/','https://www.watchhill.ca/','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2883.87 Safari/537.36','',NULL,NULL),(109743,0.000000,1525108602.316681,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/about/your-hosts/','https://www.watchhill.ca/','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2883.87 Safari/537.36','',NULL,NULL),(109742,0.000000,1525108592.013135,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/','','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2883.87 Safari/537.36','',NULL,NULL),(110661,0.000000,1525766231.662880,'\0\0\0\0\0\0\0\0\0\0ÿÿÇG®Ì',0,200,0,0,0,'http://watchhill.ca/','','Mozilla/5.0 (iPhone; CPU iPhone OS 11_2_6 like Mac OS X) AppleWebKit/604.5.6 (KHTML, like Gecko) Mobile/15D100 [FBAN/FBIOS;FBAV/170.1.0.80.91;FBBV/106613464;FBDV/iPhone9,4;FBMD/iPhone;FBSN/iOS;FBSV/11.2.6;FBSS/3;FBCR/Rogers;FBID/phone;FBLC/en_US;FBOP/5;FBRV/0]','',NULL,NULL),(110660,0.000000,1525766229.251417,'\0\0\0\0\0\0\0\0\0\0ÿÿÇG®Ì',0,200,0,0,0,'http://watchhill.ca/','','Mozilla/5.0 (iPhone; CPU iPhone OS 11_2_6 like Mac OS X) AppleWebKit/604.5.6 (KHTML, like Gecko) Mobile/15D100 [FBAN/FBIOS;FBAV/170.1.0.80.91;FBBV/106613464;FBDV/iPhone9,4;FBMD/iPhone;FBSN/iOS;FBSV/11.2.6;FBSS/3;FBCR/Rogers;FBID/phone;FBLC/en_US;FBOP/5;FBRV/0]','',NULL,NULL),(110658,0.000000,1525762381.300879,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,1,0,0,'https://watchhill.ca/','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(110659,0.000000,1525762496.663019,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,1,0,0,'http://watchhill.ca/','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(110657,0.000000,1525762150.092153,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,1,0,0,'https://www.watchhill.ca/','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(110656,0.000000,1525762034.665190,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,1,0,0,'https://www.watchhill.ca/','','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2272.96 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(110655,0.000000,1525760189.452480,'\0\0\0\0\0\0\0\0\0\0ÿÿ­üT]',1,200,0,0,0,'https://www.watchhill.ca/','http://l.facebook.com/l.php?u=http%3A%2F%2Fwww.watchhill.ca%2F&h=ATNyMl6SSQhTem58hjV0o7hHNU99vFogWm7N2TPesIszXg198-pc1qeMyJQLc1EwqvOqDtvsINDDcqZyRO6Wfd9ulms0TYvZJTtjoLZqmKC0QJEoRgX5iyTKqr84Jw','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.139 Safari/537.36','',NULL,NULL),(110654,0.000000,1525760186.776846,'\0\0\0\0\0\0\0\0\0\0ÿÿ­üTZ',0,200,0,0,0,'http://www.watchhill.ca/','http://l.facebook.com/l.php?u=http%3A%2F%2Fwww.watchhill.ca%2F&h=ATNyMl6SSQhTem58hjV0o7hHNU99vFogWm7N2TPesIszXg198-pc1qeMyJQLc1EwqvOqDtvsINDDcqZyRO6Wfd9ulms0TYvZJTtjoLZqmKC0QJEoRgX5iyTKqr84Jw','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.139 Safari/537.36','',NULL,NULL),(110653,0.000000,1525755556.251891,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,1,0,0,'https://www.watchhill.ca/about/','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(110652,0.000000,1525754210.631058,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/rates-policies/','https://www.watchhill.ca/accommodations/','Mozilla/5.0 (Linux; Android 7.0; SM-G935W8 Build/NRD90M) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.158 Mobile Safari/537.36','',NULL,NULL),(110651,0.000000,1525754180.502851,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/','https://www.watchhill.ca/','Mozilla/5.0 (Linux; Android 7.0; SM-G935W8 Build/NRD90M) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.158 Mobile Safari/537.36','',NULL,NULL),(110650,0.000000,1525754155.130961,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/','https://www.google.ca/','Mozilla/5.0 (Linux; Android 7.0; SM-G935W8 Build/NRD90M) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.158 Mobile Safari/537.36','',NULL,NULL),(110649,0.000000,1525751523.526594,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,404,1,0,0,'https://www.watchhill.ca/.well-known/assetlinks.json','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(110648,0.000000,1525749040.766343,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/about/','https://www.watchhill.ca/','Mozilla/5.0 (Windows NT 6.3; WOW64; Trident/7.0; rv:11.0) like Gecko','',NULL,NULL),(110647,0.000000,1525749011.243378,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/','https://www.watchhill.ca/','Mozilla/5.0 (Windows NT 6.3; WOW64; Trident/7.0; rv:11.0) like Gecko','',NULL,NULL),(110646,0.000000,1525749011.241763,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/','https://www.watchhill.ca/','Mozilla/5.0 (Windows NT 6.3; WOW64; Trident/7.0; rv:11.0) like Gecko','',NULL,NULL),(110645,0.000000,1525748925.232418,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/harbour-suite/','https://www.watchhill.ca/accommodations/','Mozilla/5.0 (Windows NT 6.3; WOW64; Trident/7.0; rv:11.0) like Gecko','',NULL,NULL),(110644,0.000000,1525748913.775190,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/the-huron/','https://www.watchhill.ca/accommodations/','Mozilla/5.0 (Windows NT 6.3; WOW64; Trident/7.0; rv:11.0) like Gecko','',NULL,NULL),(110643,0.000000,1525748876.855612,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/the-chantry/','https://www.watchhill.ca/accommodations/','Mozilla/5.0 (Windows NT 6.3; WOW64; Trident/7.0; rv:11.0) like Gecko','',NULL,NULL),(110642,0.000000,1525748839.446449,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/the-saugeen/','https://www.watchhill.ca/accommodations/','Mozilla/5.0 (Windows NT 6.3; WOW64; Trident/7.0; rv:11.0) like Gecko','',NULL,NULL),(110641,0.000000,1525748836.998974,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,404,0,0,0,'https://www.watchhill.ca/browserconfig.xml','','Mozilla/5.0 (Windows NT 6.3; Win64; x64; Trident/7.0; rv:11.0) like Gecko','',NULL,NULL),(110639,0.000000,1525748742.198933,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/the-huron/','https://www.watchhill.ca/accommodations/','Mozilla/5.0 (Windows NT 6.3; WOW64; Trident/7.0; rv:11.0) like Gecko','',NULL,NULL),(110640,0.000000,1525748776.311465,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/harbour-suite/','https://www.watchhill.ca/accommodations/','Mozilla/5.0 (Windows NT 6.3; WOW64; Trident/7.0; rv:11.0) like Gecko','',NULL,NULL),(110638,0.000000,1525748733.044012,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/','https://www.watchhill.ca/','Mozilla/5.0 (Windows NT 6.3; WOW64; Trident/7.0; rv:11.0) like Gecko','',NULL,NULL),(110637,0.000000,1525748713.851232,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/','https://www.google.com/url?sa=t&rct=j&q=&esrc=s&source=web&cd=3&ved=2ahUKEwiin-jMkPXaAhWl8oMKHRt4C6QQ_UUwAnoECAEQBQ&url=https%3A%2F%2Fwww.watchhill.ca%2F&usg=AOvVaw1CgizKn2gegr0v6hs4nBL0','Mozilla/5.0 (Windows NT 6.3; WOW64; Trident/7.0; rv:11.0) like Gecko','',NULL,NULL),(110635,0.000000,1525741364.575507,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://www.watchhill.ca/about/your-hosts/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(110636,0.000000,1525747875.278289,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/rates-policies/','https://www.watchhill.ca/','Mozilla/5.0 (iPad; CPU OS 11_2_6 like Mac OS X) AppleWebKit/604.1.34 (KHTML, like Gecko) CriOS/66.0.3359.122 Mobile/15D100 Safari/604.1','',NULL,NULL),(110634,0.000000,1525740908.325240,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/the-huron/','https://www.watchhill.ca/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.36 Edge/16.16299','',NULL,NULL),(110633,0.000000,1525740907.015490,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/','https://www.watchhill.ca/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.36 Edge/16.16299','',NULL,NULL),(110632,0.000000,1525740905.768156,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/contact/','https://www.watchhill.ca/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.36 Edge/16.16299','',NULL,NULL),(110631,0.000000,1525740902.544683,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/','https://www.bing.com/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.36 Edge/16.16299','',NULL,NULL),(110630,0.000000,1525740813.638607,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/the-chantry/','https://www.watchhill.ca/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.36 Edge/16.16299','',NULL,NULL),(110629,0.000000,1525740721.786969,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/','https://www.bing.com/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.36 Edge/16.16299','',NULL,NULL),(110628,0.000000,1525740719.428225,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'http://www.watchhill.ca/','https://www.bing.com/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.36 Edge/16.16299','',NULL,NULL),(110626,0.000000,1525740090.920242,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,1,0,0,'https://watchhill.ca/','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(110627,0.000000,1525740092.099749,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,1,0,0,'https://www.watchhill.ca/','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(110625,0.000000,1525740088.176347,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,1,0,0,'http://watchhill.ca/','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(110624,0.000000,1525738355.610503,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,1,0,0,'https://www.watchhill.ca/','','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2272.96 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(110623,0.000000,1525736769.354572,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/','https://www.watchhill.ca/accommodations/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.36 Edge/16.16299','',NULL,NULL),(110621,0.000000,1525736718.301229,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://www.watchhill.ca/comments/feed/','','Mozilla/5.0 (compatible; Daum/4.1; +http://cs.daum.net/faq/15/4118.html?faqId=28966)','',NULL,NULL),(110622,0.000000,1525736724.267000,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://www.watchhill.ca/feed/','','Mozilla/5.0 (compatible; Daum/4.1; +http://cs.daum.net/faq/15/4118.html?faqId=28966)','',NULL,NULL),(110620,0.000000,1525736711.739476,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://www.watchhill.ca/wp-json/','','Mozilla/5.0 (compatible; Daum/4.1; +http://cs.daum.net/faq/15/4118.html?faqId=28966)','',NULL,NULL),(110619,0.000000,1525736705.941363,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://www.watchhill.ca/xmlrpc.php?rsd','','Mozilla/5.0 (compatible; Daum/4.1; +http://cs.daum.net/faq/15/4118.html?faqId=28966)','',NULL,NULL),(110617,0.000000,1525736693.643149,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://www.watchhill.ca/wp-json/oembed/1.0/embed?url=https%3A%2F%2Fwww.watchhill.ca%2F&format=xml','','Mozilla/5.0 (compatible; Daum/4.1; +http://cs.daum.net/faq/15/4118.html?faqId=28966)','',NULL,NULL),(110618,0.000000,1525736699.966376,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://www.watchhill.ca/wp-json/oembed/1.0/embed?url=https%3A%2F%2Fwww.watchhill.ca%2F','','Mozilla/5.0 (compatible; Daum/4.1; +http://cs.daum.net/faq/15/4118.html?faqId=28966)','',NULL,NULL),(110616,0.000000,1525736687.488734,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://www.watchhill.ca/','','Mozilla/5.0 (compatible; Daum/4.1; +http://cs.daum.net/faq/15/4118.html?faqId=28966)','',NULL,NULL),(110615,0.000000,1525736681.280366,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://www.watchhill.ca/','','Mozilla/5.0 (compatible; Daum/4.1; +http://cs.daum.net/faq/15/4118.html?faqId=28966)','',NULL,NULL),(110613,0.000000,1525736668.767060,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://www.watchhill.ca/','','Mozilla/5.0 (compatible; Daum/4.1; +http://cs.daum.net/faq/15/4118.html?faqId=28966)','',NULL,NULL),(110614,0.000000,1525736675.141673,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://www.watchhill.ca/','','Mozilla/5.0 (compatible; Daum/4.1; +http://cs.daum.net/faq/15/4118.html?faqId=28966)','',NULL,NULL),(110612,0.000000,1525736661.584472,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://www.watchhill.ca/about/','','Mozilla/5.0 (compatible; Daum/4.1; +http://cs.daum.net/faq/15/4118.html?faqId=28966)','',NULL,NULL),(110611,0.000000,1525736653.258759,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://www.watchhill.ca/about/your-hosts/','','Mozilla/5.0 (compatible; Daum/4.1; +http://cs.daum.net/faq/15/4118.html?faqId=28966)','',NULL,NULL),(110610,0.000000,1525736629.720037,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/','https://www.watchhill.ca/about/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.36 Edge/16.16299','',NULL,NULL),(110609,0.000000,1525736621.782360,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://www.watchhill.ca/about/the-area/','','Mozilla/5.0 (compatible; Daum/4.1; +http://cs.daum.net/faq/15/4118.html?faqId=28966)','',NULL,NULL),(110608,0.000000,1525736611.709040,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://www.watchhill.ca/about/history-of-watch-hill/','','Mozilla/5.0 (compatible; Daum/4.1; +http://cs.daum.net/faq/15/4118.html?faqId=28966)','',NULL,NULL),(110607,0.000000,1525736605.378233,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://www.watchhill.ca/accommodations/','','Mozilla/5.0 (compatible; Daum/4.1; +http://cs.daum.net/faq/15/4118.html?faqId=28966)','',NULL,NULL),(110606,0.000000,1525736598.341977,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://www.watchhill.ca/accommodations/the-huron/','','Mozilla/5.0 (compatible; Daum/4.1; +http://cs.daum.net/faq/15/4118.html?faqId=28966)','',NULL,NULL),(110605,0.000000,1525736591.815367,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://www.watchhill.ca/accommodations/the-chantry/','','Mozilla/5.0 (compatible; Daum/4.1; +http://cs.daum.net/faq/15/4118.html?faqId=28966)','',NULL,NULL),(110604,0.000000,1525736587.007992,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/about/','https://www.watchhill.ca/rates-policies/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.36 Edge/16.16299','',NULL,NULL),(110603,0.000000,1525736585.099000,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://www.watchhill.ca/accommodations/the-saugeen/','','Mozilla/5.0 (compatible; Daum/4.1; +http://cs.daum.net/faq/15/4118.html?faqId=28966)','',NULL,NULL),(110602,0.000000,1525736577.645270,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://www.watchhill.ca/accommodations/harbour-suite/','','Mozilla/5.0 (compatible; Daum/4.1; +http://cs.daum.net/faq/15/4118.html?faqId=28966)','',NULL,NULL),(110601,0.000000,1525736571.132432,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://www.watchhill.ca/about/gallery/','','Mozilla/5.0 (compatible; Daum/4.1; +http://cs.daum.net/faq/15/4118.html?faqId=28966)','',NULL,NULL),(110599,0.000000,1525736557.226762,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://www.watchhill.ca/rates-policies/','','Mozilla/5.0 (compatible; Daum/4.1; +http://cs.daum.net/faq/15/4118.html?faqId=28966)','',NULL,NULL),(110600,0.000000,1525736564.468203,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://www.watchhill.ca/testimonials/','','Mozilla/5.0 (compatible; Daum/4.1; +http://cs.daum.net/faq/15/4118.html?faqId=28966)','',NULL,NULL),(110598,0.000000,1525736551.235443,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://www.watchhill.ca/contact/','','Mozilla/5.0 (compatible; Daum/4.1; +http://cs.daum.net/faq/15/4118.html?faqId=28966)','',NULL,NULL),(110597,0.000000,1525736543.237430,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/rates-policies/','https://www.watchhill.ca/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.36 Edge/16.16299','',NULL,NULL),(110596,0.000000,1525736541.561605,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://www.watchhill.ca/','','Mozilla/5.0 (Unknown; Linux x86_64) AppleWebKit/538.1 (KHTML, like Gecko) Safari/538.1 Daum/4.1','',NULL,NULL),(110595,0.000000,1525736538.053442,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://www.watchhill.ca/','','Mozilla/5.0 (Unknown; Linux x86_64) AppleWebKit/538.1 (KHTML, like Gecko) Safari/538.1 Daum/4.1','',NULL,NULL),(110594,0.000000,1525736527.025479,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://www.watchhill.ca/','','Mozilla/5.0 (Unknown; Linux x86_64) AppleWebKit/538.1 (KHTML, like Gecko) Safari/538.1 Daum/4.1','',NULL,NULL),(110593,0.000000,1525736524.518281,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/','https://www.watchhill.ca/accommodations/the-chantry/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.36 Edge/16.16299','',NULL,NULL),(109383,0.000000,1524759239.469129,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/the-chantry/','https://www.watchhill.ca/accommodations/','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.117 Safari/537.36','',NULL,NULL),(109384,0.000000,1524761844.315338,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://www.watchhill.ca/rooms-button/','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(109385,0.000000,1524764876.749819,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://www.watchhill.ca/robots.txt','','Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)','',NULL,NULL),(109386,0.000000,1524765755.486192,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://www.watchhill.ca/home-slide-3/','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(109387,0.000000,1524768494.720468,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://www.watchhill.ca/accommodations/','','Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)','',NULL,NULL),(109388,0.000000,1524768728.506638,'\0\0\0\0\0\0\0\0\0\0ÿÿBùSH',0,200,0,0,0,'https://www.watchhill.ca/wp-login.php?redirect_to=https%3A%2F%2Fwww.watchhill.ca%2Fwp-admin%2Fadmin.php%3Fpage%3Dwp-simple-booking-calendar-premium&reauth=1','','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2623.75 Safari/537.36 Google Favicon','',NULL,NULL),(109381,0.000000,1524759213.275198,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/','https://www.watchhill.ca/','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.117 Safari/537.36','',NULL,NULL),(109382,0.000000,1524759227.933741,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/the-huron/','https://www.watchhill.ca/accommodations/','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.117 Safari/537.36','',NULL,NULL),(110663,0.000000,1525766236.658076,'\0\0\0\0\0\0\0\0\0\0ÿÿÇG®Ì',1,200,0,0,0,'https://www.watchhill.ca/','','Mozilla/5.0 (iPhone; CPU iPhone OS 11_2_6 like Mac OS X) AppleWebKit/604.5.6 (KHTML, like Gecko) Mobile/15D100 [FBAN/FBIOS;FBAV/170.1.0.80.91;FBBV/106613464;FBDV/iPhone9,4;FBMD/iPhone;FBSN/iOS;FBSV/11.2.6;FBSS/3;FBCR/Rogers;FBID/phone;FBLC/en_US;FBOP/5;FBRV/0]','',NULL,NULL),(110664,0.000000,1525766255.780263,'\0\0\0\0\0\0\0\0\0\0ÿÿÇG®Ì',1,200,0,0,0,'https://www.watchhill.ca/accommodations/harbour-suite/','https://www.watchhill.ca/','Mozilla/5.0 (iPhone; CPU iPhone OS 11_2_6 like Mac OS X) AppleWebKit/604.5.6 (KHTML, like Gecko) Mobile/15D100 [FBAN/FBIOS;FBAV/170.1.0.80.91;FBBV/106613464;FBDV/iPhone9,4;FBMD/iPhone;FBSN/iOS;FBSV/11.2.6;FBSS/3;FBCR/Rogers;FBID/phone;FBLC/en_US;FBOP/5;FBRV/0]','',NULL,NULL),(110665,0.000000,1525766292.737555,'\0\0\0\0\0\0\0\0\0\0ÿÿÇG®Ì',1,200,0,0,0,'https://www.watchhill.ca/rates-policies/','https://www.watchhill.ca/accommodations/harbour-suite/','Mozilla/5.0 (iPhone; CPU iPhone OS 11_2_6 like Mac OS X) AppleWebKit/604.5.6 (KHTML, like Gecko) Mobile/15D100 [FBAN/FBIOS;FBAV/170.1.0.80.91;FBBV/106613464;FBDV/iPhone9,4;FBMD/iPhone;FBSN/iOS;FBSV/11.2.6;FBSS/3;FBCR/Rogers;FBID/phone;FBLC/en_US;FBOP/5;FBRV/0]','',NULL,NULL),(110666,0.000000,1525766803.025415,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'http://www.watchhill.ca/wp-content/plugins/wpmarketplace/css/extends_page.css','','','',NULL,NULL),(110667,0.000000,1525769198.492014,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,1,0,0,'https://www.watchhill.ca/contact/','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(110668,0.000000,1525770574.302137,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://www.watchhill.ca/robots.txt','','Mozilla/5.0 (compatible; AhrefsBot/5.2; +http://ahrefs.com/robot/)','',NULL,NULL),(110669,0.000000,1525775764.389330,'\0\0\0\0\0\0\0\0\0\0ÿÿBf',0,200,0,0,0,'http://watchhill.ca/','','Mozilla/5.0 (Linux; Android 8.1.0; Pixel 2 XL Build/OPM2.171019.029) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.126 Mobile Safari/537.36','',NULL,NULL),(110670,0.000000,1525775767.390115,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://watchhill.ca/','','Mozilla/5.0 (Linux; Android 8.1.0; Pixel 2 XL Build/OPM2.171019.029) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.126 Mobile Safari/537.36','',NULL,NULL),(110671,0.000000,1525775768.658236,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/','','Mozilla/5.0 (Linux; Android 8.1.0; Pixel 2 XL Build/OPM2.171019.029) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.126 Mobile Safari/537.36','',NULL,NULL),(110672,0.000000,1525775779.051170,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/','https://www.watchhill.ca/','Mozilla/5.0 (Linux; Android 8.1.0; Pixel 2 XL Build/OPM2.171019.029) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.126 Mobile Safari/537.36','',NULL,NULL),(110673,0.000000,1525775794.981896,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/rates-policies/','https://www.watchhill.ca/accommodations/','Mozilla/5.0 (Linux; Android 8.1.0; Pixel 2 XL Build/OPM2.171019.029) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.126 Mobile Safari/537.36','',NULL,NULL),(110674,0.000000,1525777185.914503,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'http://www.watchhill.ca/robots.txt','','Mozilla/5.0 (compatible; ScoutJet; +http://www.scoutjet.com/)','',NULL,NULL),(110675,0.000000,1525777197.860728,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://www.watchhill.ca/robots.txt','','Mozilla/5.0 (compatible; ScoutJet; +http://www.scoutjet.com/)','',NULL,NULL),(110676,0.000000,1525777209.361085,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://www.watchhill.ca/img_0107/','','Mozilla/5.0 (compatible; ScoutJet; +http://www.scoutjet.com/)','',NULL,NULL),(110677,0.000000,1525777789.899487,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'http://watchhill.ca/robots.txt','','Mozilla/5.0 (compatible; eright/1.0; +bot@eright.com)','',NULL,NULL),(110678,0.000000,1525777792.893999,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://watchhill.ca/robots.txt','','Mozilla/5.0 (compatible; eright/1.0; +bot@eright.com)','',NULL,NULL),(110679,0.000000,1525777795.164103,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'http://watchhill.ca/','','Mozilla/5.0 (compatible; eright/1.0; +bot@eright.com)','',NULL,NULL),(110680,0.000000,1525778667.829265,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,1,0,0,'https://www.watchhill.ca/','','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2272.96 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(110681,0.000000,1525778783.262882,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,1,0,0,'https://www.watchhill.ca/','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(110682,0.000000,1525779712.281834,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/','https://www.google.com/url?sa=t&rct=j&q=&esrc=s&source=web&cd=1&ved=2ahUKEwiYpsSrhPbaAhVl34MKHTZ0DqUQ_BcwAHoECAEQCA&url=https%3A%2F%2Fwww.watchhill.ca%2F&usg=AOvVaw1CgizKn2gegr0v6hs4nBL0','Mozilla/5.0 (Windows NT 6.3; WOW64; Trident/7.0; rv:11.0) like Gecko','',NULL,NULL),(109889,0.000000,1525217092.087759,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://www.watchhill.ca/robots.txt','','Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)','',NULL,NULL),(109888,0.000000,1525216159.245801,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/about/','https://www.watchhill.ca/','Mozilla/5.0 (Linux; Android 5.0.2; SAMSUNG SM-T530NU Build/LRX22G) AppleWebKit/537.36 (KHTML, like Gecko) SamsungBrowser/3.3 Chrome/38.0.2125.102 Safari/537.36','',NULL,NULL),(109887,0.000000,1525216118.201425,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/about/your-hosts/','https://www.watchhill.ca/','Mozilla/5.0 (Linux; Android 5.0.2; SAMSUNG SM-T530NU Build/LRX22G) AppleWebKit/537.36 (KHTML, like Gecko) SamsungBrowser/3.3 Chrome/38.0.2125.102 Safari/537.36','',NULL,NULL),(109886,0.000000,1525216051.406423,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/','https://www.watchhill.ca/','Mozilla/5.0 (Linux; Android 5.0.2; SAMSUNG SM-T530NU Build/LRX22G) AppleWebKit/537.36 (KHTML, like Gecko) SamsungBrowser/3.3 Chrome/38.0.2125.102 Safari/537.36','',NULL,NULL),(109885,0.000000,1525215947.511333,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/rates-policies/','https://www.watchhill.ca/','Mozilla/5.0 (Linux; Android 5.0.2; SAMSUNG SM-T530NU Build/LRX22G) AppleWebKit/537.36 (KHTML, like Gecko) SamsungBrowser/3.3 Chrome/38.0.2125.102 Safari/537.36','',NULL,NULL),(109884,0.000000,1525215893.548806,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/','https://www.google.com/','Mozilla/5.0 (Linux; Android 5.0.2; SAMSUNG SM-T530NU Build/LRX22G) AppleWebKit/537.36 (KHTML, like Gecko) SamsungBrowser/3.3 Chrome/38.0.2125.102 Safari/537.36','',NULL,NULL),(109882,0.000000,1525210219.741928,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'http://www.watchhill.ca/wp-login.php','','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1','',NULL,NULL),(109883,0.000000,1525210226.261142,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'http://www.watchhill.ca/','','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1','',NULL,NULL),(109881,0.000000,1525210207.617280,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'http://www.watchhill.ca/wp-login.php','','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1','',NULL,NULL),(109880,0.000000,1525206468.050097,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://www.watchhill.ca/','https://www.google.ca/','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.139 Safari/537.36','',NULL,NULL),(109879,0.000000,1525206071.435659,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://www.watchhill.ca/','https://www.google.ca/','Mozilla/5.0 (iPad; CPU OS 11_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/11.0 Mobile/15E148 Safari/604.1','',NULL,NULL),(109878,0.000000,1525204786.299749,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/','https://www.watchhill.ca/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.36 Edge/16.16299','',NULL,NULL),(109877,0.000000,1525204770.328834,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/','https://www.bing.com/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.36 Edge/16.16299','',NULL,NULL),(109875,0.000000,1525204147.071945,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://www.watchhill.ca/robots.txt','','Mozilla/5.0 (compatible; ScoutJet; +http://www.scoutjet.com/)','',NULL,NULL),(109876,0.000000,1525204158.146375,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://www.watchhill.ca/4/','','Mozilla/5.0 (compatible; ScoutJet; +http://www.scoutjet.com/)','',NULL,NULL),(109874,0.000000,1525204134.799079,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'http://www.watchhill.ca/robots.txt','','Mozilla/5.0 (compatible; ScoutJet; +http://www.scoutjet.com/)','',NULL,NULL),(109873,0.000000,1525201660.166780,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.139 Safari/537.36','',NULL,NULL),(109872,0.000000,1525201611.119739,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://www.watchhill.ca/about/the-area/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(109871,0.000000,1525201462.088650,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/','https://www.watchhill.ca/','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.139 Safari/537.36','',NULL,NULL),(109870,0.000000,1525201443.645233,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/','https://www.watchhill.ca/accommodations/the-huron/','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.139 Safari/537.36','',NULL,NULL),(109869,0.000000,1525201429.011749,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/the-huron/','https://www.watchhill.ca/accommodations/','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.139 Safari/537.36','',NULL,NULL),(109868,0.000000,1525201418.314045,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/','https://www.watchhill.ca/','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.139 Safari/537.36','',NULL,NULL),(109867,0.000000,1525201405.898374,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/','https://www.google.com/','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.139 Safari/537.36','',NULL,NULL),(109865,0.000000,1525198630.767842,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'http://www.watchhill.ca/robots.txt','','Mozilla/5.0 (compatible; SemrushBot/1.2~bl; +http://www.semrush.com/bot.html)','',NULL,NULL),(109866,0.000000,1525198633.171351,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://www.watchhill.ca/robots.txt','','Mozilla/5.0 (compatible; SemrushBot/1.2~bl; +http://www.semrush.com/bot.html)','',NULL,NULL),(109864,0.000000,1525197540.253012,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/contact/','https://www.watchhill.ca/rates-policies/','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; Touch; rv:11.0) like Gecko','',NULL,NULL),(109862,0.000000,1525197485.081538,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/','https://www.watchhill.ca/about/','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; Touch; rv:11.0) like Gecko','',NULL,NULL),(109863,0.000000,1525197498.488063,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/rates-policies/','https://www.watchhill.ca/accommodations/','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; Touch; rv:11.0) like Gecko','',NULL,NULL),(109861,0.000000,1525197468.840996,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/about/','https://www.watchhill.ca/','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; Touch; rv:11.0) like Gecko','',NULL,NULL),(109860,0.000000,1525197465.992496,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/','https://www.watchhill.ca/','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; Touch; rv:11.0) like Gecko','',NULL,NULL),(109859,0.000000,1525197441.367827,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/','https://www.google.com/url?sa=t&rct=j&q=&esrc=s&source=web&cd=1&ved=2ahUKEwiv3-GQi-XaAhUH_mMKHaYfDZMQ_BcwAHoECAEQCA&url=https%3A%2F%2Fwww.watchhill.ca%2F&usg=AOvVaw1CgizKn2gegr0v6hs4nBL0','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; Touch; rv:11.0) like Gecko','',NULL,NULL),(109858,0.000000,1525196115.997945,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/the-huron/','https://www.watchhill.ca/testimonials/','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.36','',NULL,NULL),(109857,0.000000,1525196099.039565,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/testimonials/','https://www.watchhill.ca/about/history-of-watch-hill/','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.36','',NULL,NULL),(110714,0.000000,1525794271.063853,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'http://watchhill.ca/','','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.139 Safari/537.36','',NULL,NULL),(110713,0.000000,1525794065.362527,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/rates-policies/','https://www.watchhill.ca/','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.139 Safari/537.36','',NULL,NULL),(110712,0.000000,1525794046.246189,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/','','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.139 Safari/537.36','',NULL,NULL),(110711,0.000000,1525794044.460717,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://watchhill.ca/','','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.139 Safari/537.36','',NULL,NULL),(110709,0.000000,1525793343.695828,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/contact/','https://www.watchhill.ca/accommodations/the-chantry/','Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; rv:11.0) like Gecko','',NULL,NULL),(110710,0.000000,1525794041.763500,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'http://watchhill.ca/','','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.139 Safari/537.36','',NULL,NULL),(110708,0.000000,1525793315.773039,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/the-chantry/','https://www.watchhill.ca/accommodations/harbour-suite/','Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; rv:11.0) like Gecko','',NULL,NULL),(110707,0.000000,1525793277.942328,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/harbour-suite/','https://www.watchhill.ca/accommodations/the-saugeen/','Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; rv:11.0) like Gecko','',NULL,NULL),(110706,0.000000,1525793251.218983,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/the-saugeen/','https://www.watchhill.ca/rates-policies/','Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; rv:11.0) like Gecko','',NULL,NULL),(110704,0.000000,1525793189.287334,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/rates-policies/','https://www.watchhill.ca/','Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; rv:11.0) like Gecko','',NULL,NULL),(110705,0.000000,1525793189.607662,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/rates-policies/','https://www.watchhill.ca/','Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; rv:11.0) like Gecko','',NULL,NULL),(110683,0.000000,1525784970.657788,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/','https://www.google.ca/url?sa=t&rct=j&q=&esrc=s&source=web&cd=1&ved=0ahUKEwin3JL1l_baAhXi6oMKHV6cA_8QFggoMAA&url=https%3A%2F%2Fwww.watchhill.ca%2F&usg=AOvVaw1CgizKn2gegr0v6hs4nBL0','Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; rv:11.0) like Gecko','',NULL,NULL),(110684,0.000000,1525784996.109528,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/about/','https://www.watchhill.ca/','Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; rv:11.0) like Gecko','',NULL,NULL),(110685,0.000000,1525785034.417712,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/','https://www.watchhill.ca/','Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; rv:11.0) like Gecko','',NULL,NULL),(110686,0.000000,1525785107.514067,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/rates-policies/','https://www.watchhill.ca/','Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; rv:11.0) like Gecko','',NULL,NULL),(110687,0.000000,1525786088.999968,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://www.watchhill.ca/robots.txt','','Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)','',NULL,NULL),(110688,0.000000,1525786092.855951,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://www.watchhill.ca/about/gallery/','','Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)','',NULL,NULL),(110689,0.000000,1525786098.882215,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'http://watchhill.ca/','','Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; MAARJS; rv:11.0) like Gecko','',NULL,NULL),(110690,0.000000,1525786100.392451,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://watchhill.ca/','','Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; MAARJS; rv:11.0) like Gecko','',NULL,NULL),(110691,0.000000,1525786101.867054,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/','','Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; MAARJS; rv:11.0) like Gecko','',NULL,NULL),(110692,0.000000,1525786119.971533,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/','https://www.watchhill.ca/','Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; MAARJS; rv:11.0) like Gecko','',NULL,NULL),(110693,0.000000,1525786130.301982,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/rates-policies/','https://www.watchhill.ca/accommodations/','Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; MAARJS; rv:11.0) like Gecko','',NULL,NULL),(110694,0.000000,1525786204.091073,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/the-saugeen/','https://www.watchhill.ca/rates-policies/','Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; MAARJS; rv:11.0) like Gecko','',NULL,NULL),(110695,0.000000,1525789781.353848,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'http://watchhill.ca/','','Mozilla/5.0 (Windows NT 5.1; rv:52.0) Gecko/20100101 Firefox/52.0','',NULL,NULL),(110696,0.000000,1525789784.073844,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://watchhill.ca/','','Mozilla/5.0 (Windows NT 5.1; rv:52.0) Gecko/20100101 Firefox/52.0','',NULL,NULL),(110697,0.000000,1525789785.594691,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://www.watchhill.ca/','','Mozilla/5.0 (Windows NT 5.1; rv:52.0) Gecko/20100101 Firefox/52.0','',NULL,NULL),(110698,0.000000,1525789820.865252,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://www.watchhill.ca/accommodations/','https://www.watchhill.ca/','Mozilla/5.0 (Windows NT 5.1; rv:52.0) Gecko/20100101 Firefox/52.0','',NULL,NULL),(110699,0.000000,1525789833.240263,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://www.watchhill.ca/rates-policies/','https://www.watchhill.ca/','Mozilla/5.0 (Windows NT 5.1; rv:52.0) Gecko/20100101 Firefox/52.0','',NULL,NULL),(110700,0.000000,1525793006.982961,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://www.watchhill.ca/wp-json/oembed/1.0/embed?url=https%3A%2F%2Fwww.watchhill.ca%2Fabout%2F&format=xml','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(110701,0.000000,1525793177.872977,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'http://watchhill.ca/','','Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; rv:11.0) like Gecko','',NULL,NULL),(110702,0.000000,1525793180.134367,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://watchhill.ca/','','Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; rv:11.0) like Gecko','',NULL,NULL),(110703,0.000000,1525793182.010314,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/','','Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; rv:11.0) like Gecko','',NULL,NULL),(109389,0.000000,1524769043.148770,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'http://www.watchhill.ca/robots.txt','','Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)','',NULL,NULL),(109390,0.000000,1524769044.184754,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'http://watchhill.ca/robots.txt','','Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)','',NULL,NULL),(109391,0.000000,1524769044.742809,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://www.watchhill.ca/','','Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)','',NULL,NULL),(109392,0.000000,1524769044.980789,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://watchhill.ca/robots.txt','','Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)','',NULL,NULL),(109393,0.000000,1524769048.282785,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'http://watchhill.ca/','','Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)','',NULL,NULL),(109394,0.000000,1524769048.354804,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'http://www.watchhill.ca/','','Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)','',NULL,NULL),(109395,0.000000,1524769049.488999,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://watchhill.ca/','','Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)','',NULL,NULL),(109396,0.000000,1524780650.047788,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/','https://www.google.ca/','Mozilla/5.0 (Linux; Android 5.1.1; Nexus 7 Build/LMY47V) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.126 Safari/537.36','',NULL,NULL),(109397,0.000000,1524780703.619253,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/rates-policies/','https://www.watchhill.ca/','Mozilla/5.0 (Linux; Android 5.1.1; Nexus 7 Build/LMY47V) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.126 Safari/537.36','',NULL,NULL),(109398,0.000000,1524784419.472678,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://www.watchhill.ca/','','Mozilla/5.0 zgrab/0.x (compatible; Researchscan/t13l; +http://researchscan.comsys.rwth-aachen.de)','',NULL,NULL),(109399,0.000000,1524793509.593930,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,1,0,0,'https://www.watchhill.ca/accommodations/harbour-suite/','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(109400,0.000000,1524796522.206012,'\0\0\0\0\0\0\0\0\0\0ÿÿBfj',0,200,0,0,0,'https://www.watchhill.ca/','','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2623.75 Safari/537.36 Google Favicon','',NULL,NULL),(109401,0.000000,1524799336.872661,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'http://www.watchhill.ca/','','','',NULL,NULL),(109402,0.000000,1524799341.120153,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://www.watchhill.ca/','','','',NULL,NULL),(109403,0.000000,1524799930.474512,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/','https://www.google.com/','Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:59.0) Gecko/20100101 Firefox/59.0','',NULL,NULL),(109404,0.000000,1524799949.565859,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/rates-policies/','https://www.watchhill.ca/','Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:59.0) Gecko/20100101 Firefox/59.0','',NULL,NULL),(109405,0.000000,1524800015.441911,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/about/','https://www.watchhill.ca/rates-policies/','Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:59.0) Gecko/20100101 Firefox/59.0','',NULL,NULL),(109406,0.000000,1524800017.387196,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/about/your-hosts/','https://www.watchhill.ca/rates-policies/','Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:59.0) Gecko/20100101 Firefox/59.0','',NULL,NULL),(109407,0.000000,1524800040.682063,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/','https://www.watchhill.ca/about/your-hosts/','Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:59.0) Gecko/20100101 Firefox/59.0','',NULL,NULL),(109408,0.000000,1524800041.724560,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/','https://www.watchhill.ca/about/your-hosts/','Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:59.0) Gecko/20100101 Firefox/59.0','',NULL,NULL),(109409,0.000000,1524800042.702383,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/the-huron/','https://www.watchhill.ca/about/your-hosts/','Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:59.0) Gecko/20100101 Firefox/59.0','',NULL,NULL),(109410,0.000000,1524804279.104297,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://www.watchhill.ca/about/gallery/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(109411,0.000000,1524806279.022758,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://www.watchhill.ca/accommodations/harbour-suite/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(109412,0.000000,1524807537.587088,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://www.watchhill.ca/robots.txt','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(109413,0.000000,1524807540.461231,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://www.watchhill.ca/robots.txt','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(109414,0.000000,1524809726.238966,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,1,0,0,'https://www.watchhill.ca/robots.txt','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(109415,0.000000,1524809728.214198,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,1,0,0,'https://www.watchhill.ca/accommodations/harbour-suite/','','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2272.96 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(109416,0.000000,1524812908.402466,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://www.watchhill.ca/robots.txt','','Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)','',NULL,NULL),(109417,0.000000,1524816014.869749,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://www.watchhill.ca/logo/','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(109418,0.000000,1524816063.895217,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,1,0,0,'https://www.watchhill.ca/image-sitemap-1.xml','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(109419,0.000000,1524816097.640492,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'http://www.watchhill.ca/robots.txt','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(109420,0.000000,1524816101.784437,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://www.watchhill.ca/robots.txt','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(109421,0.000000,1524816105.157258,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'http://www.watchhill.ca/robots.txt','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(109422,0.000000,1524816107.862000,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://www.watchhill.ca/robots.txt','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(109423,0.000000,1524816109.386543,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'http://www.watchhill.ca/robots.txt','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(109424,0.000000,1524816113.325424,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://www.watchhill.ca/robots.txt','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(109425,0.000000,1524819139.140384,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,1,0,0,'https://www.watchhill.ca/about/your-hosts/','','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2272.96 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(109426,0.000000,1524821515.858169,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://www.watchhill.ca/robots.txt','','Mozilla/5.0 (compatible; AhrefsBot/5.2; +http://ahrefs.com/robot/)','',NULL,NULL),(109427,0.000000,1524824883.278980,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://www.watchhill.ca/robots.txt','','Mozilla/5.0 (compatible; Qwantify/2.4w; +https://www.qwant.com/)/2.4w','',NULL,NULL),(109428,0.000000,1524824887.040954,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://www.watchhill.ca/','','Mozilla/5.0 (compatible; Qwantify/2.4w; +https://www.qwant.com/)/2.4w','',NULL,NULL),(109429,0.000000,1524829242.206218,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/','https://www.google.ca/','Mozilla/5.0 (Linux; Android 6.0.1; STV100-3 Build/MMB29M) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.126 Mobile Safari/537.36','',NULL,NULL),(109430,0.000000,1524829286.316237,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/','https://www.watchhill.ca/','Mozilla/5.0 (Linux; Android 6.0.1; STV100-3 Build/MMB29M) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.126 Mobile Safari/537.36','',NULL,NULL),(109431,0.000000,1524834955.877614,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/','','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.36','',NULL,NULL),(109432,0.000000,1524834973.933774,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/the-huron/','https://www.watchhill.ca/accommodations/','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.36','',NULL,NULL),(109433,0.000000,1524838143.420008,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://www.watchhill.ca/about/the-area/','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(109434,0.000000,1524839680.439204,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://www.watchhill.ca/','https://www.google.ca/','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.36','',NULL,NULL),(109435,0.000000,1524840415.021500,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/','https://www.google.ca/url?sa=t&rct=j&q=&esrc=s&source=web&cd=1&ved=2ahUKEwjG7r-U2draAhXnYd8KHSsOBVEQ_UUwAHoECAAQAQ&url=https%3A%2F%2Fwww.watchhill.ca%2F&usg=AOvVaw1CgizKn2gegr0v6hs4nBL0','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko','',NULL,NULL),(109436,0.000000,1524840423.156339,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/rates-policies/','https://www.watchhill.ca/','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko','',NULL,NULL),(109437,0.000000,1524840771.911181,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/about/your-hosts/','https://www.watchhill.ca/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.162 Safari/537.36','',NULL,NULL),(109438,0.000000,1524846675.020466,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,1,0,0,'https://www.watchhill.ca/accommodations/the-huron/','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(109439,0.000000,1524848604.331502,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/','android-app://com.google.android.googlequicksearchbox','Mozilla/5.0 (Linux; Android 7.0; SM-T813 Build/NRD90M) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.109 Safari/537.36','',NULL,NULL),(109440,0.000000,1524851968.791303,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://watchhill.ca/robots.txt','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(109774,0.000000,1525127255.434057,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://www.watchhill.ca/','','Mozilla/5.0 (Linux; Android 7.0; SM-G903W Build/NRD90M) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.126 Mobile Safari/537.36','',NULL,NULL),(109775,0.000000,1525127899.401292,'\0\0\0\0\0\0\0\0\0\0ÿÿBfh',0,200,1,0,0,'https://www.watchhill.ca/','http://www.google.com/search','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko; Google Web Preview) Chrome/41.0.2272.118 Safari/537.36','',NULL,NULL),(109776,0.000000,1525128699.254413,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://www.watchhill.ca/accommodations/the-saugeen/','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(109777,0.000000,1525128724.404724,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'http://www.watchhill.ca/robots.txt','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(109778,0.000000,1525128740.863426,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://www.watchhill.ca/robots.txt','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(109779,0.000000,1525129092.767360,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://www.watchhill.ca/robots.txt','','Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)','',NULL,NULL),(109780,0.000000,1525130400.006138,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'http://watchhill.ca/','','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:59.0) Gecko/20100101 Firefox/59.0','',NULL,NULL),(109781,0.000000,1525130403.115506,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://watchhill.ca/','','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:59.0) Gecko/20100101 Firefox/59.0','',NULL,NULL),(109782,0.000000,1525130404.568558,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/','','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:59.0) Gecko/20100101 Firefox/59.0','',NULL,NULL),(109783,0.000000,1525130445.341800,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/rates-policies/','https://www.watchhill.ca/','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:59.0) Gecko/20100101 Firefox/59.0','',NULL,NULL),(109784,0.000000,1525130537.914071,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/the-saugeen/','https://www.watchhill.ca/rates-policies/','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:59.0) Gecko/20100101 Firefox/59.0','',NULL,NULL),(109785,0.000000,1525130574.467601,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/the-huron/','https://www.watchhill.ca/accommodations/the-saugeen/','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:59.0) Gecko/20100101 Firefox/59.0','',NULL,NULL),(109786,0.000000,1525132481.633927,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/','https://www.google.ca/','Mozilla/5.0 (iPhone; CPU iPhone OS 11_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/11.0 Mobile/15E148 Safari/604.1','',NULL,NULL),(109787,0.000000,1525132489.978483,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/rates-policies/','https://www.watchhill.ca/','Mozilla/5.0 (iPhone; CPU iPhone OS 11_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/11.0 Mobile/15E148 Safari/604.1','',NULL,NULL),(109788,0.000000,1525132559.108104,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/','https://www.watchhill.ca/rates-policies/','Mozilla/5.0 (iPhone; CPU iPhone OS 11_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/11.0 Mobile/15E148 Safari/604.1','',NULL,NULL),(109789,0.000000,1525132601.799890,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/the-huron/','https://www.watchhill.ca/accommodations/','Mozilla/5.0 (iPhone; CPU iPhone OS 11_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/11.0 Mobile/15E148 Safari/604.1','',NULL,NULL),(109790,0.000000,1525132615.841046,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/the-chantry/','https://www.watchhill.ca/accommodations/','Mozilla/5.0 (iPhone; CPU iPhone OS 11_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/11.0 Mobile/15E148 Safari/604.1','',NULL,NULL),(109791,0.000000,1525132650.749977,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/harbour-suite/','https://www.watchhill.ca/accommodations/','Mozilla/5.0 (iPhone; CPU iPhone OS 11_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/11.0 Mobile/15E148 Safari/604.1','',NULL,NULL),(109792,0.000000,1525133281.741713,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://www.watchhill.ca/accommodations/the-saugeen/','https://www.watchhill.ca/accommodations/','Mozilla/5.0 (Linux; Android 7.1.1; Nexus 9 Build/N9F27M) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.109 Safari/537.36','',NULL,NULL),(109793,0.000000,1525133899.950536,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/11.1 Safari/605.1.15','',NULL,NULL),(109794,0.000000,1525134870.552605,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'http://watchhill.ca/robots.txt','','Mozilla/5.0 (compatible; DotBot/1.1; http://www.opensiteexplorer.org/dotbot, help@moz.com)','',NULL,NULL),(109795,0.000000,1525134872.350828,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://watchhill.ca/robots.txt','','Mozilla/5.0 (compatible; DotBot/1.1; http://www.opensiteexplorer.org/dotbot, help@moz.com)','',NULL,NULL),(110475,0.000000,1525716351.839349,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/harbour-suite/','https://www.watchhill.ca/accommodations/','Mozilla/5.0 (iPhone; CPU iPhone OS 11_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E302 [FBAN/FBIOS;FBAV/156.0.0.41.97;FBBV/89172188;FBDV/iPhone8,1;FBMD/iPhone;FBSN/iOS;FBSV/11.3.1;FBSS/2;FBCR/Virgin;FBID/phone;FBLC/en_US;FBOP/5;FBRV/0]','',NULL,NULL),(110474,0.000000,1525716339.022903,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/the-saugeen/','https://www.watchhill.ca/accommodations/','Mozilla/5.0 (iPhone; CPU iPhone OS 11_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E302 [FBAN/FBIOS;FBAV/156.0.0.41.97;FBBV/89172188;FBDV/iPhone8,1;FBMD/iPhone;FBSN/iOS;FBSV/11.3.1;FBSS/2;FBCR/Virgin;FBID/phone;FBLC/en_US;FBOP/5;FBRV/0]','',NULL,NULL),(110473,0.000000,1525716314.465539,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/the-chantry/','https://www.watchhill.ca/accommodations/','Mozilla/5.0 (iPhone; CPU iPhone OS 11_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E302 [FBAN/FBIOS;FBAV/156.0.0.41.97;FBBV/89172188;FBDV/iPhone8,1;FBMD/iPhone;FBSN/iOS;FBSV/11.3.1;FBSS/2;FBCR/Virgin;FBID/phone;FBLC/en_US;FBOP/5;FBRV/0]','',NULL,NULL),(110472,0.000000,1525716297.354407,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/the-huron/','https://www.watchhill.ca/accommodations/','Mozilla/5.0 (iPhone; CPU iPhone OS 11_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E302 [FBAN/FBIOS;FBAV/156.0.0.41.97;FBBV/89172188;FBDV/iPhone8,1;FBMD/iPhone;FBSN/iOS;FBSV/11.3.1;FBSS/2;FBCR/Virgin;FBID/phone;FBLC/en_US;FBOP/5;FBRV/0]','',NULL,NULL),(110471,0.000000,1525716276.768546,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/','https://www.watchhill.ca/','Mozilla/5.0 (iPhone; CPU iPhone OS 11_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E302 [FBAN/FBIOS;FBAV/156.0.0.41.97;FBBV/89172188;FBDV/iPhone8,1;FBMD/iPhone;FBSN/iOS;FBSV/11.3.1;FBSS/2;FBCR/Virgin;FBID/phone;FBLC/en_US;FBOP/5;FBRV/0]','',NULL,NULL),(110470,0.000000,1525716260.013740,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/','','Mozilla/5.0 (iPhone; CPU iPhone OS 11_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E302 [FBAN/FBIOS;FBAV/156.0.0.41.97;FBBV/89172188;FBDV/iPhone8,1;FBMD/iPhone;FBSN/iOS;FBSV/11.3.1;FBSS/2;FBCR/Virgin;FBID/phone;FBLC/en_US;FBOP/5;FBRV/0]','',NULL,NULL),(110469,0.000000,1525716258.393322,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://watchhill.ca/','','Mozilla/5.0 (iPhone; CPU iPhone OS 11_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E302 [FBAN/FBIOS;FBAV/156.0.0.41.97;FBBV/89172188;FBDV/iPhone8,1;FBMD/iPhone;FBSN/iOS;FBSV/11.3.1;FBSS/2;FBCR/Virgin;FBID/phone;FBLC/en_US;FBOP/5;FBRV/0]','',NULL,NULL),(110468,0.000000,1525716256.099673,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'http://watchhill.ca/','','Mozilla/5.0 (iPhone; CPU iPhone OS 11_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E302 [FBAN/FBIOS;FBAV/156.0.0.41.97;FBBV/89172188;FBDV/iPhone8,1;FBMD/iPhone;FBSN/iOS;FBSV/11.3.1;FBSS/2;FBCR/Virgin;FBID/phone;FBLC/en_US;FBOP/5;FBRV/0]','',NULL,NULL),(110467,0.000000,1525715632.133604,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/rates-policies/','https://www.watchhill.ca/accommodations/the-chantry/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.139 Safari/537.36','',NULL,NULL),(110466,0.000000,1525715524.014105,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,1,0,0,'https://www.watchhill.ca/','','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2272.96 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(110465,0.000000,1525712987.625918,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/the-chantry/','https://www.watchhill.ca/accommodations/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.139 Safari/537.36','',NULL,NULL),(110464,0.000000,1525712980.425087,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/','https://www.watchhill.ca/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.139 Safari/537.36','',NULL,NULL),(110463,0.000000,1525710438.750045,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://www.watchhill.ca/comments/feed/','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(110462,0.000000,1525708770.467222,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/','https://www.google.ca/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.139 Safari/537.36','',NULL,NULL),(110460,0.000000,1525705435.742746,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,1,0,0,'https://watchhill.ca/','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(110461,0.000000,1525705551.088322,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,1,0,0,'http://watchhill.ca/','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(110459,0.000000,1525705204.719650,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,1,0,0,'https://www.watchhill.ca/','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(110457,0.000000,1525701814.524309,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,1,0,0,'https://www.watchhill.ca/robots.txt','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(110458,0.000000,1525704788.710439,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://www.watchhill.ca/','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.100 Safari/537.36','',NULL,NULL),(110456,0.000000,1525701062.523655,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'http://www.watchhill.ca/','','Mozilla/5.0 (compatible; DotBot/1.1; http://www.opensiteexplorer.org/dotbot, help@moz.com)','',NULL,NULL),(110454,0.000000,1525700708.408943,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://watchhill.ca/','http://watchhill.ca','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2883.95 Safari/537.36','',NULL,NULL),(110455,0.000000,1525700709.440386,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://www.watchhill.ca/','https://watchhill.ca/','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2883.95 Safari/537.36','',NULL,NULL),(110453,0.000000,1525700705.854926,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'http://watchhill.ca/','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2883.95 Safari/537.36','',NULL,NULL),(110452,0.000000,1525700706.409097,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://www.watchhill.ca/','https://www.google.com/','Mozilla/5.0 (X11; CrOS x86_64 10323.67.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.209 Safari/537.36','',NULL,NULL),(110450,0.000000,1525696658.519135,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://www.watchhill.ca/robots.txt','','Mozilla/5.0 (compatible; DotBot/1.1; http://www.opensiteexplorer.org/dotbot, help@moz.com)','',NULL,NULL),(110451,0.000000,1525700311.699738,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://www.watchhill.ca/sitemap.xml','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(110449,0.000000,1525696656.186054,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'http://www.watchhill.ca/robots.txt','','Mozilla/5.0 (compatible; DotBot/1.1; http://www.opensiteexplorer.org/dotbot, help@moz.com)','',NULL,NULL),(110448,0.000000,1525695583.438223,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://www.watchhill.ca/wp-json/oembed/1.0/embed?url=https%3A%2F%2Fwww.watchhill.ca%2Faccommodations%2Fthe-huron%2F&format=xml','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(110447,0.000000,1525694693.362759,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,1,0,0,'http://www.watchhill.ca/','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(110446,0.000000,1525693583.797588,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://www.watchhill.ca/wp-json/oembed/1.0/embed?url=https%3A%2F%2Fwww.watchhill.ca%2Fprivacy-policy%2F','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(110445,0.000000,1525691361.855299,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,1,0,0,'https://www.watchhill.ca/','','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2272.96 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(110444,0.000000,1525691355.250276,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,1,0,0,'https://watchhill.ca/','','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2272.96 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(110442,0.000000,1525687789.395487,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://www.watchhill.ca/robots.txt','','Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)','',NULL,NULL),(110443,0.000000,1525687792.609813,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://www.watchhill.ca/?foogallery=activities','','Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)','',NULL,NULL),(110441,0.000000,1525686582.921883,'\0\0\0\0\0\0\0\0\0\0ÿÿBfh',0,200,0,0,0,'https://www.watchhill.ca/','','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2623.75 Safari/537.36 Google Favicon','',NULL,NULL),(110439,0.000000,1525683126.194617,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://watchhill.ca/','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_6) AppleWebKit/603.3.8 (KHTML, like Gecko)','',NULL,NULL),(110440,0.000000,1525683127.250237,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://www.watchhill.ca/','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_6) AppleWebKit/603.3.8 (KHTML, like Gecko)','',NULL,NULL),(110438,0.000000,1525683120.225023,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'http://watchhill.ca/','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_6) AppleWebKit/603.3.8 (KHTML, like Gecko)','',NULL,NULL),(110436,0.000000,1525672511.322894,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,1,0,0,'https://www.watchhill.ca/','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(110437,0.000000,1525673145.801509,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://www.watchhill.ca/about/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(110434,0.000000,1525672507.925010,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,1,0,0,'http://watchhill.ca/','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(110435,0.000000,1525672509.921355,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,1,0,0,'https://watchhill.ca/','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(110433,0.000000,1525670596.817939,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://www.watchhill.ca/4/','','Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)','',NULL,NULL),(110431,0.000000,1525661710.736956,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://www.watchhill.ca/robots.txt','','Mozilla/5.0 (compatible; SemrushBot/1.2~bl; +http://www.semrush.com/bot.html)','',NULL,NULL),(110432,0.000000,1525670594.018610,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://www.watchhill.ca/robots.txt','','Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)','',NULL,NULL),(110430,0.000000,1525661708.450537,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'http://www.watchhill.ca/robots.txt','','Mozilla/5.0 (compatible; SemrushBot/1.2~bl; +http://www.semrush.com/bot.html)','',NULL,NULL),(110429,0.000000,1525661098.830800,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/','https://www.bing.com/','Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; rv:11.0) like Gecko','',NULL,NULL),(110428,0.000000,1525661096.424034,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'http://www.watchhill.ca/','https://www.bing.com/','Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; rv:11.0) like Gecko','',NULL,NULL),(110427,0.000000,1525660432.934835,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/harbour-suite/','https://www.watchhill.ca/accommodations/','Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:59.0) Gecko/20100101 Firefox/59.0','',NULL,NULL),(110426,0.000000,1525660420.256992,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/the-saugeen/','https://www.watchhill.ca/accommodations/','Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:59.0) Gecko/20100101 Firefox/59.0','',NULL,NULL),(110425,0.000000,1525660405.816435,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/the-chantry/','https://www.watchhill.ca/accommodations/','Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:59.0) Gecko/20100101 Firefox/59.0','',NULL,NULL),(110424,0.000000,1525660338.835847,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/the-huron/','https://www.watchhill.ca/accommodations/','Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:59.0) Gecko/20100101 Firefox/59.0','',NULL,NULL),(110422,0.000000,1525660293.253887,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/','https://www.google.com/','Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:59.0) Gecko/20100101 Firefox/59.0','',NULL,NULL),(110423,0.000000,1525660303.866086,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/','https://www.watchhill.ca/','Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:59.0) Gecko/20100101 Firefox/59.0','',NULL,NULL),(110420,0.000000,1525657355.761065,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'http://watchhill.ca/robots.txt','','Mozilla/5.0 (compatible; SemrushBot/1.2~bl; +http://www.semrush.com/bot.html)','',NULL,NULL),(110421,0.000000,1525657358.282724,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://watchhill.ca/robots.txt','','Mozilla/5.0 (compatible; SemrushBot/1.2~bl; +http://www.semrush.com/bot.html)','',NULL,NULL),(110419,0.000000,1525648390.446844,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/the-chantry/','http://m.facebook.com/','Mozilla/5.0 (Linux; Android 7.0; SM-A520W Build/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/66.0.3359.126 Mobile Safari/537.36 [FB_IAB/Orca-Android;FBAV/164.0.0.24.95;]','',NULL,NULL),(110418,0.000000,1525648364.978546,'\0\0\0\0\0\0\0\0\0\0ÿÿBÜ—\\',0,200,0,0,0,'https://www.watchhill.ca/accommodations/the-chantry/','','facebookexternalhit/1.1 (+http://www.facebook.com/externalhit_uatext.php)','',NULL,NULL),(110417,0.000000,1525648365.880162,'\0\0\0\0\0\0\0\0\0\0ÿÿE«á™',0,200,0,0,0,'https://www.watchhill.ca/accommodations/the-chantry','','facebookexternalhit/1.1','',NULL,NULL),(110416,0.000000,1525648365.836754,'\0\0\0\0\0\0\0\0\0\0ÿÿ­üz',0,200,0,0,0,'https://www.watchhill.ca/accommodations/the-chantry/','','facebookexternalhit/1.1 (+http://www.facebook.com/externalhit_uatext.php)','',NULL,NULL),(110415,0.000000,1525647659.562060,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/the-chantry/','https://www.watchhill.ca/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.139 Safari/537.36','',NULL,NULL),(110414,0.000000,1525647635.153869,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/','https://www.google.ca/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.139 Safari/537.36','',NULL,NULL),(110412,0.000000,1525646998.736509,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://www.watchhill.ca/robots.txt','','Mozilla/5.0 (compatible; SeznamBot/3.2; +http://napoveda.seznam.cz/en/seznambot-intro/)','',NULL,NULL),(110413,0.000000,1525647013.950367,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://www.watchhill.ca/img_0107/','','Mozilla/5.0 (compatible; SeznamBot/3.2; +http://napoveda.seznam.cz/en/seznambot-intro/)','',NULL,NULL),(110411,0.000000,1525640127.122694,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://www.watchhill.ca/robots.txt','','Mozilla/5.0 (compatible; AhrefsBot/5.2; +http://ahrefs.com/robot/)','',NULL,NULL),(110410,0.000000,1525638780.578577,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/the-huron/','https://www.watchhill.ca/accommodations/','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.117 Safari/537.36','',NULL,NULL),(110409,0.000000,1525638754.869379,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/','https://www.watchhill.ca/','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.117 Safari/537.36','',NULL,NULL),(110408,0.000000,1525638740.445273,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.117 Safari/537.36','',NULL,NULL),(110407,0.000000,1525638738.037775,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://watchhill.ca/','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.117 Safari/537.36','',NULL,NULL),(110406,0.000000,1525638735.740919,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'http://watchhill.ca/','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.117 Safari/537.36','',NULL,NULL),(110405,0.000000,1525637715.122208,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/rates-policies/','https://www.watchhill.ca/accommodations/the-saugeen/','Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:59.0) Gecko/20100101 Firefox/59.0','',NULL,NULL),(110404,0.000000,1525637697.748447,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/the-saugeen/','https://www.watchhill.ca/accommodations/','Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:59.0) Gecko/20100101 Firefox/59.0','',NULL,NULL),(110403,0.000000,1525637683.573545,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/the-chantry/','https://www.watchhill.ca/accommodations/','Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:59.0) Gecko/20100101 Firefox/59.0','',NULL,NULL),(110402,0.000000,1525637671.242577,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/the-saugeen/','https://www.watchhill.ca/accommodations/','Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:59.0) Gecko/20100101 Firefox/59.0','',NULL,NULL),(110401,0.000000,1525637648.681550,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/harbour-suite/','https://www.watchhill.ca/accommodations/','Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:59.0) Gecko/20100101 Firefox/59.0','',NULL,NULL),(110400,0.000000,1525637625.537761,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/the-saugeen/','https://www.watchhill.ca/accommodations/','Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:59.0) Gecko/20100101 Firefox/59.0','',NULL,NULL),(110399,0.000000,1525637579.780561,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/the-huron/','https://www.watchhill.ca/accommodations/','Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:59.0) Gecko/20100101 Firefox/59.0','',NULL,NULL),(110397,0.000000,1525637509.466696,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/the-huron/','https://www.watchhill.ca/accommodations/','Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:59.0) Gecko/20100101 Firefox/59.0','',NULL,NULL),(110398,0.000000,1525637550.407869,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/the-chantry/','https://www.watchhill.ca/accommodations/','Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:59.0) Gecko/20100101 Firefox/59.0','',NULL,NULL),(110395,0.000000,1525637481.259199,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/','','Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:59.0) Gecko/20100101 Firefox/59.0','',NULL,NULL),(110396,0.000000,1525637491.089654,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/','https://www.watchhill.ca/','Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:59.0) Gecko/20100101 Firefox/59.0','',NULL,NULL),(110393,0.000000,1525637476.100658,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'http://watchhill.ca/','','Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:59.0) Gecko/20100101 Firefox/59.0','',NULL,NULL),(110394,0.000000,1525637479.430744,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://watchhill.ca/','','Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:59.0) Gecko/20100101 Firefox/59.0','',NULL,NULL),(110390,0.000000,1525636272.714646,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'http://watchhill.ca/','','Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)','',NULL,NULL),(110391,0.000000,1525636274.017543,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://watchhill.ca/','','Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)','',NULL,NULL),(110392,0.000000,1525636274.219524,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://www.watchhill.ca/','','Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)','',NULL,NULL),(110389,0.000000,1525636268.601973,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://watchhill.ca/robots.txt','','Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)','',NULL,NULL),(110387,0.000000,1525636270.594958,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'http://www.watchhill.ca/','','Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)','',NULL,NULL),(110388,0.000000,1525636268.503548,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://www.watchhill.ca/robots.txt','','Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)','',NULL,NULL),(110385,0.000000,1525636267.256618,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'http://www.watchhill.ca/robots.txt','','Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)','',NULL,NULL),(110386,0.000000,1525636266.990550,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'http://watchhill.ca/robots.txt','','Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)','',NULL,NULL),(110384,0.000000,1525628801.976178,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,1,0,0,'https://www.watchhill.ca/?wordfence_logHuman=1&hid=88DA194C5985A14132C729403D5350F9','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(110383,0.000000,1525628632.153351,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,1,0,0,'https://www.watchhill.ca/?wordfence_logHuman=1&hid=88DA194C5985A14132C729403D5350F9','','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2272.96 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(110382,0.000000,1525626520.255577,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://www.watchhill.ca/sitemap-1.xml','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(110381,0.000000,1525624695.517049,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/','https://www.google.ca/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.139 Safari/537.36','',NULL,NULL),(110379,0.000000,1525624639.910281,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/','https://www.watchhill.ca/about/gallery/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.139 Safari/537.36','',NULL,NULL),(110380,0.000000,1525624641.137489,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/the-saugeen/','https://www.watchhill.ca/about/gallery/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.139 Safari/537.36','',NULL,NULL),(110378,0.000000,1525624630.367454,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/about/gallery/','https://www.watchhill.ca/accommodations/harbour-suite/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.139 Safari/537.36','',NULL,NULL),(110377,0.000000,1525624606.470170,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/harbour-suite/','https://www.watchhill.ca/accommodations/the-chantry/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.139 Safari/537.36','',NULL,NULL),(110376,0.000000,1525624593.298275,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/the-chantry/','https://www.watchhill.ca/accommodations/the-huron/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.139 Safari/537.36','',NULL,NULL),(110375,0.000000,1525624577.237440,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/the-huron/','https://www.watchhill.ca/accommodations/the-saugeen/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.139 Safari/537.36','',NULL,NULL),(110374,0.000000,1525624548.113761,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/the-saugeen/','https://www.watchhill.ca/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.139 Safari/537.36','',NULL,NULL),(110372,0.000000,1525624036.177754,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://www.watchhill.ca/robots.txt','','Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)','',NULL,NULL),(110373,0.000000,1525624509.607379,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/','https://www.google.ca/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.139 Safari/537.36','',NULL,NULL),(110370,0.000000,1525623189.278795,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,1,0,0,'http://www.watchhill.ca/','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(110371,0.000000,1525623191.218155,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,1,0,0,'https://www.watchhill.ca/','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(110368,0.000000,1525623019.293099,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,1,0,0,'http://watchhill.ca/robots.txt','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(110369,0.000000,1525623021.134670,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,1,0,0,'http://watchhill.ca/','','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2272.96 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(110367,0.000000,1525622852.137745,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,1,0,0,'http://www.watchhill.ca/','','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2272.96 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(110365,0.000000,1525622849.261481,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,1,0,0,'http://www.watchhill.ca/robots.txt','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(110366,0.000000,1525622851.209439,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,1,0,0,'https://www.watchhill.ca/robots.txt','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(110364,0.000000,1525621492.109566,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,1,0,0,'https://www.watchhill.ca/','','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2272.96 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(110363,0.000000,1525621490.934458,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,1,0,0,'https://watchhill.ca/','','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2272.96 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(110362,0.000000,1525621489.015817,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,1,0,0,'https://watchhill.ca/robots.txt','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(110360,0.000000,1525616282.519261,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://www.watchhill.ca/accommodations/harbour-suite/','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(110361,0.000000,1525619788.060341,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,404,1,0,0,'https://www.watchhill.ca/.well-known/assetlinks.json','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(110358,0.000000,1525615085.806360,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'http://www.watchhill.ca/robots.txt','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(110359,0.000000,1525615086.797092,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://www.watchhill.ca/robots.txt','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(110357,0.000000,1525615079.156989,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://www.watchhill.ca/home-slide-3/','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(110356,0.000000,1525612970.811578,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/the-saugeen/','https://www.watchhill.ca/accommodations/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.139 Safari/537.36','',NULL,NULL),(110355,0.000000,1525612964.778107,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/the-chantry/','https://www.watchhill.ca/accommodations/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.139 Safari/537.36','',NULL,NULL),(110354,0.000000,1525612956.509645,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/the-huron/','https://www.watchhill.ca/accommodations/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.139 Safari/537.36','',NULL,NULL),(110353,0.000000,1525612934.447614,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/','https://www.watchhill.ca/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.139 Safari/537.36','',NULL,NULL),(110352,0.000000,1525612929.878902,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.139 Safari/537.36','',NULL,NULL),(110351,0.000000,1525612928.474964,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://watchhill.ca/','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.139 Safari/537.36','',NULL,NULL),(110350,0.000000,1525612926.453814,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'http://watchhill.ca/','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.139 Safari/537.36','',NULL,NULL),(110349,0.000000,1525611467.587875,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,1,0,0,'https://www.watchhill.ca/contact/','','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2272.96 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(110348,0.000000,1525611465.713606,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,1,0,0,'https://www.watchhill.ca/robots.txt','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(110347,0.000000,1525611169.237733,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/the-huron/','https://www.watchhill.ca/about/gallery/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.139 Safari/537.36','',NULL,NULL),(110346,0.000000,1525611151.512489,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/about/gallery/','https://www.watchhill.ca/accommodations/harbour-suite/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.139 Safari/537.36','',NULL,NULL),(110345,0.000000,1525611098.416324,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/harbour-suite/','https://www.watchhill.ca/accommodations/the-saugeen/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.139 Safari/537.36','',NULL,NULL),(110344,0.000000,1525611083.055835,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/the-saugeen/','https://www.watchhill.ca/accommodations/the-chantry/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.139 Safari/537.36','',NULL,NULL),(110343,0.000000,1525611068.248600,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/the-chantry/','https://www.watchhill.ca/accommodations/the-huron/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.139 Safari/537.36','',NULL,NULL),(110342,0.000000,1525611004.418048,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/the-huron/','https://www.watchhill.ca/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.139 Safari/537.36','',NULL,NULL),(110341,0.000000,1525610895.800320,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/','https://www.google.ca/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.139 Safari/537.36','',NULL,NULL),(110340,0.000000,1525610873.742793,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://www.watchhill.ca/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(110338,0.000000,1525610871.836500,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://watchhill.ca/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(110339,0.000000,1525610871.985144,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'http://watchhill.ca/robots.txt','','Mozilla/5.0 (Windows NT 5.1; rv:6.0.2) Gecko/20100101 Firefox/6.0.2','',NULL,NULL),(110337,0.000000,1525610868.868105,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'http://watchhill.ca/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(110335,0.000000,1525602222.639753,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://www.watchhill.ca/contact/','','Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)','',NULL,NULL),(110336,0.000000,1525603925.026758,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://www.watchhill.ca/chantry-button/','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(110334,0.000000,1525602218.821127,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://www.watchhill.ca/robots.txt','','Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)','',NULL,NULL),(110332,0.000000,1525594806.528126,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'http://www.watchhill.ca/privacy-policy/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(110333,0.000000,1525594809.491364,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://www.watchhill.ca/privacy-policy/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(110331,0.000000,1525589374.647731,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://www.watchhill.ca/robots.txt','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(110330,0.000000,1525589371.301812,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://www.watchhill.ca/robots.txt','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(110329,0.000000,1525579063.808276,'\0\0\0\0\0\0\0\0\0\0ÿÿBfj',0,200,0,0,0,'https://www.watchhill.ca/','','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2623.75 Safari/537.36 Google Favicon','',NULL,NULL),(110328,0.000000,1525572486.860167,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://www.watchhill.ca/sitemap.xml','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(110327,0.000000,1525570772.873523,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/','','Mozilla/5.0 (Linux; Android 7.0; SM-G903W Build/NRD90M) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.126 Mobile Safari/537.36','',NULL,NULL),(110326,0.000000,1525570318.905333,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/','https://www.google.com/','Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:59.0) Gecko/20100101 Firefox/59.0','',NULL,NULL),(110325,0.000000,1525568504.779673,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://www.watchhill.ca/wp-json/oembed/1.0/embed?url=https%3A%2F%2Fwww.watchhill.ca%2Faccommodations%2F','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(110324,0.000000,1525551224.430962,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://www.watchhill.ca/robots.txt','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(110323,0.000000,1525551222.512569,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://www.watchhill.ca/robots.txt','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(110322,0.000000,1525548969.259840,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://www.watchhill.ca/robots.txt','','Mozilla/5.0 (compatible; AhrefsBot/5.2; +http://ahrefs.com/robot/)','',NULL,NULL),(110321,0.000000,1525548850.607026,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/the-chantry/','https://www.watchhill.ca/','Mozilla/5.0 (Linux; Android 7.0; WAS-L03T Build/HUAWEIWAS-L03T) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.126 Mobile Safari/537.36','',NULL,NULL),(110320,0.000000,1525548809.917926,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/','https://www.google.ca/','Mozilla/5.0 (Linux; Android 7.0; WAS-L03T Build/HUAWEIWAS-L03T) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.126 Mobile Safari/537.36','',NULL,NULL),(110319,0.000000,1525548598.926448,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://www.watchhill.ca/robots.txt','','Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)','',NULL,NULL),(110318,0.000000,1525547673.326175,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://www.watchhill.ca/robots.txt','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(110317,0.000000,1525547671.388102,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'http://www.watchhill.ca/robots.txt','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(110316,0.000000,1525547668.175445,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://www.watchhill.ca/robots.txt','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(110315,0.000000,1525547664.166932,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'http://www.watchhill.ca/robots.txt','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(110314,0.000000,1525547550.993580,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://www.watchhill.ca/robots.txt','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(110313,0.000000,1525547549.989795,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'http://www.watchhill.ca/robots.txt','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(110312,0.000000,1525547546.437206,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://www.watchhill.ca/1/','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(110311,0.000000,1525542545.578238,'\0\0\0\0\0\0\0\0\0\0ÿÿBùS\n',0,200,0,0,0,'https://www.watchhill.ca/robots.txt','https://www.watchhill.ca/','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5 Build/MRA58N) AppleWebKit/537.36(KHTML, like Gecko) Chrome/61.0.3116.0 Mobile Safari/537.36 Chrome-Lighthouse','',NULL,NULL),(110310,0.000000,1525542541.924509,'\0\0\0\0\0\0\0\0\0\0ÿÿBùS\n',0,200,0,0,0,'https://www.watchhill.ca/','','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5 Build/MRA58N) AppleWebKit/537.36(KHTML, like Gecko) Chrome/61.0.3116.0 Mobile Safari/537.36 Chrome-Lighthouse','',NULL,NULL),(110309,0.000000,1525542540.028994,'\0\0\0\0\0\0\0\0\0\0ÿÿBùS\n',0,404,0,0,0,'https://www.watchhill.ca/wp-content/plugins/ml-slider/assets/sliders/flexslider/fonts/flexslider-icon.ttf','https://www.watchhill.ca/wp-content/plugins/ml-slider/assets/sliders/flexslider/flexslider.css?ver=3.7.1','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5 Build/MRA58N) AppleWebKit/537.36(KHTML, like Gecko) Chrome/61.0.3116.0 Mobile Safari/537.36 Chrome-Lighthouse','',NULL,NULL),(110308,0.000000,1525542538.967967,'\0\0\0\0\0\0\0\0\0\0ÿÿBùS',0,404,0,0,0,'https://www.watchhill.ca/wp-content/plugins/ml-slider/assets/sliders/flexslider/fonts/flexslider-icon.woff','https://www.watchhill.ca/wp-content/plugins/ml-slider/assets/sliders/flexslider/flexslider.css?ver=3.7.1','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5 Build/MRA58N) AppleWebKit/537.36(KHTML, like Gecko) Chrome/61.0.3116.0 Mobile Safari/537.36 Chrome-Lighthouse','',NULL,NULL),(110307,0.000000,1525542536.444970,'\0\0\0\0\0\0\0\0\0\0ÿÿBùS',0,200,0,0,0,'https://www.watchhill.ca/','','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5 Build/MRA58N) AppleWebKit/537.36(KHTML, like Gecko) Chrome/61.0.3116.0 Mobile Safari/537.36 Chrome-Lighthouse','',NULL,NULL),(110306,0.000000,1525542529.634881,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://www.watchhill.ca/','','Mozilla/5.0 (Unknown; Linux x86_64) AppleWebKit/538.1 (KHTML, like Gecko) PhantomJS/2.1.1 Safari/538.1','',NULL,NULL),(109741,0.000000,1525108590.529729,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://watchhill.ca/','','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2883.87 Safari/537.36','',NULL,NULL),(109740,0.000000,1525108588.366520,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'http://watchhill.ca/','','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2883.87 Safari/537.36','',NULL,NULL),(109739,0.000000,1525108174.720524,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://www.watchhill.ca/image-sitemap-1.xml','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(109738,0.000000,1525106297.371395,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/rates-policies/','https://www.watchhill.ca/','Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; rv:11.0) like Gecko','',NULL,NULL),(109737,0.000000,1525106296.989368,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/rates-policies/','https://www.watchhill.ca/','Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; rv:11.0) like Gecko','',NULL,NULL),(109736,0.000000,1525106281.177843,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/','','Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; rv:11.0) like Gecko','',NULL,NULL),(109734,0.000000,1525106277.716028,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'http://watchhill.ca/','','Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; rv:11.0) like Gecko','',NULL,NULL),(109735,0.000000,1525106279.905791,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://watchhill.ca/','','Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; rv:11.0) like Gecko','',NULL,NULL),(109733,0.000000,1525105836.523881,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,1,0,0,'https://www.watchhill.ca/robots.txt','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(109732,0.000000,1525105577.400719,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://www.watchhill.ca/news-sitemap.xml','','Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)','',NULL,NULL),(109731,0.000000,1525105465.211497,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://www.watchhill.ca/robots.txt','','Mozilla/5.0 (compatible; AhrefsBot/5.2; +http://ahrefs.com/robot/)','',NULL,NULL),(109730,0.000000,1525105415.475855,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://watchhill.ca/','','Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)','',NULL,NULL),(109729,0.000000,1525105414.632868,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'http://watchhill.ca/','','Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)','',NULL,NULL),(109728,0.000000,1525105413.444299,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'http://www.watchhill.ca/','','Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)','',NULL,NULL),(109727,0.000000,1525105410.137449,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'http://watchhill.ca/robots.txt','','Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)','',NULL,NULL),(109726,0.000000,1525105411.259586,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://watchhill.ca/robots.txt','','Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)','',NULL,NULL),(109725,0.000000,1525105410.644210,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://www.watchhill.ca/','','Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)','',NULL,NULL),(109724,0.000000,1525105410.122614,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'http://www.watchhill.ca/robots.txt','','Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)','',NULL,NULL),(109723,0.000000,1525103777.188780,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://www.watchhill.ca/about/the-area/','','Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)','',NULL,NULL),(109722,0.000000,1525103773.337501,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://www.watchhill.ca/robots.txt','','Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)','',NULL,NULL),(109721,0.000000,1525100802.630564,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://www.watchhill.ca/wp-json/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(109720,0.000000,1525097248.787655,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/harbour-suite/','https://www.watchhill.ca/accommodations/','Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; rv:11.0) like Gecko','',NULL,NULL),(109719,0.000000,1525097239.254279,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/the-saugeen/','https://www.watchhill.ca/accommodations/','Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; rv:11.0) like Gecko','',NULL,NULL),(109718,0.000000,1525097227.621449,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/the-chantry/','https://www.watchhill.ca/accommodations/','Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; rv:11.0) like Gecko','',NULL,NULL),(109717,0.000000,1525097210.242774,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/the-huron/','https://www.watchhill.ca/accommodations/','Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; rv:11.0) like Gecko','',NULL,NULL),(109716,0.000000,1525097170.152380,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/','https://www.watchhill.ca/','Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; rv:11.0) like Gecko','',NULL,NULL),(109715,0.000000,1525097161.478954,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/','http://www.saugeenshoreschamber.ca/list/member/watch-hjill-42801666','Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; rv:11.0) like Gecko','',NULL,NULL),(109714,0.000000,1525097158.946263,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'http://www.watchhill.ca/','http://www.saugeenshoreschamber.ca/list/member/watch-hjill-42801666','Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; rv:11.0) like Gecko','',NULL,NULL),(109713,0.000000,1525080065.566573,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://www.watchhill.ca/about/your-hosts/','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(109712,0.000000,1525080054.393093,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://www.watchhill.ca/robots.txt','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(109711,0.000000,1525080052.412381,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://www.watchhill.ca/robots.txt','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(109709,0.000000,1525072825.255509,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,1,0,0,'https://www.watchhill.ca/sitemap-1.xml','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(109710,0.000000,1525075929.225274,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://www.watchhill.ca/accommodations/harbour-suite/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(109708,0.000000,1525071130.666420,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://www.watchhill.ca/wp-json/oembed/1.0/embed?url=https%3A%2F%2Fwww.watchhill.ca%2F&format=xml','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(109707,0.000000,1525067917.679978,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,1,0,0,'https://www.watchhill.ca/','','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2272.96 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(109706,0.000000,1525067916.552929,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,1,0,0,'https://watchhill.ca/','','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2272.96 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(109705,0.000000,1525067914.569180,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,1,0,0,'http://watchhill.ca/','','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2272.96 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(109704,0.000000,1525067775.526229,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,1,0,0,'https://www.watchhill.ca/','','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2272.96 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(109702,0.000000,1525065785.260106,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,1,0,0,'https://www.watchhill.ca/','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(109703,0.000000,1525067772.818726,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,1,0,0,'https://watchhill.ca/','','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2272.96 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(109701,0.000000,1525065783.005893,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,1,0,0,'http://www.watchhill.ca/','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(109700,0.000000,1525065644.948389,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,1,0,0,'https://www.watchhill.ca/','','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2272.96 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(109699,0.000000,1525065643.839881,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,1,0,0,'http://www.watchhill.ca/','','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2272.96 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(109698,0.000000,1525065642.889102,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,1,0,0,'https://www.watchhill.ca/robots.txt','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(109697,0.000000,1525065641.002124,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,1,0,0,'http://www.watchhill.ca/robots.txt','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(109696,0.000000,1525064268.518270,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/harbour-suite/','https://www.watchhill.ca/accommodations/the-saugeen/','Mozilla/5.0 (iPad; CPU OS 11_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/11.0 Mobile/15E148 Safari/604.1','',NULL,NULL),(109695,0.000000,1525064247.011787,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/the-saugeen/','https://www.watchhill.ca/accommodations/the-chantry/','Mozilla/5.0 (iPad; CPU OS 11_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/11.0 Mobile/15E148 Safari/604.1','',NULL,NULL),(109694,0.000000,1525064226.268384,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/the-chantry/','https://www.watchhill.ca/accommodations/the-huron/','Mozilla/5.0 (iPad; CPU OS 11_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/11.0 Mobile/15E148 Safari/604.1','',NULL,NULL),(109693,0.000000,1525064220.051058,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,1,0,0,'https://www.watchhill.ca/','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(109692,0.000000,1525064203.459714,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/the-huron/','https://www.watchhill.ca/','Mozilla/5.0 (iPad; CPU OS 11_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/11.0 Mobile/15E148 Safari/604.1','',NULL,NULL),(109690,0.000000,1525062194.953448,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://www.watchhill.ca/robots.txt','','Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)','',NULL,NULL),(109691,0.000000,1525064172.562109,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/','https://www.google.ca/','Mozilla/5.0 (iPad; CPU OS 11_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/11.0 Mobile/15E148 Safari/604.1','',NULL,NULL),(109689,0.000000,1525059566.942170,'\0\0\0\0\0\0\0\0\0\0ÿÿ@ö¡¾',0,200,0,0,0,'http://www.watchhill.ca/','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10.10; rv:59.0) Gecko/20100101 Firefox/59.0','',NULL,NULL),(109688,0.000000,1525059564.417824,'\0\0\0\0\0\0\0\0\0\0ÿÿ@ö¡¾',0,200,0,0,0,'http://www.watchhill.ca/robots.txt','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10.10; rv:59.0) Gecko/20100101 Firefox/59.0','',NULL,NULL),(109687,0.000000,1525055347.874572,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://www.watchhill.ca/robots.txt','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(109686,0.000000,1525055345.383530,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'http://www.watchhill.ca/robots.txt','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(109685,0.000000,1525055320.025671,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://www.watchhill.ca/3/','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(109684,0.000000,1525054724.263753,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/harbour-suite/','https://www.watchhill.ca/accommodations/','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/11.1 Safari/605.1.15','',NULL,NULL),(109683,0.000000,1525054680.966657,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/the-saugeen/','https://www.watchhill.ca/accommodations/','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/11.1 Safari/605.1.15','',NULL,NULL),(109682,0.000000,1525054641.383907,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/the-chantry/','https://www.watchhill.ca/accommodations/','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/11.1 Safari/605.1.15','',NULL,NULL),(109681,0.000000,1525054540.387884,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/the-huron/','https://www.watchhill.ca/accommodations/','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/11.1 Safari/605.1.15','',NULL,NULL),(109680,0.000000,1525054464.498019,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/','https://www.watchhill.ca/','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/11.1 Safari/605.1.15','',NULL,NULL),(109679,0.000000,1525054365.468915,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/','https://www.google.ca/','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/11.1 Safari/605.1.15','',NULL,NULL),(109678,0.000000,1525053135.732939,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,1,0,0,'https://www.watchhill.ca/','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(109677,0.000000,1525052568.177744,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,1,0,0,'https://www.watchhill.ca/','','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2272.96 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(109675,0.000000,1525052006.116622,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,1,0,0,'https://watchhill.ca/','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(109676,0.000000,1525052007.476026,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,1,0,0,'https://www.watchhill.ca/','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(109674,0.000000,1525052003.986727,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,1,0,0,'http://watchhill.ca/','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(109673,0.000000,1525049247.419237,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/','','Mozilla/5.0 (Linux; Android 7.0; SM-G903W Build/NRD90M) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.126 Mobile Safari/537.36','',NULL,NULL),(109672,0.000000,1525048446.315734,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,1,0,0,'https://www.watchhill.ca/','','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2272.96 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(109670,0.000000,1525046030.469943,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,1,0,0,'https://www.watchhill.ca/','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(109671,0.000000,1525047349.592684,'\0\0\0\0\0\0\0\0\0\0ÿÿBfj',0,200,0,0,0,'https://www.watchhill.ca/','','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2623.75 Safari/537.36 Google Favicon','',NULL,NULL),(109669,0.000000,1525045462.169548,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,1,0,0,'https://www.watchhill.ca/','','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2272.96 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(109668,0.000000,1525043456.276168,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://www.watchhill.ca/','https://www.google.com/','Mozilla/5.0 (iPad; CPU OS 11_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/11.0 Mobile/15E148 Safari/604.1','',NULL,NULL),(109667,0.000000,1525043455.024992,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://www.watchhill.ca/','https://www.google.com/','Mozilla/5.0 (iPad; CPU OS 11_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/11.0 Mobile/15E148 Safari/604.1','',NULL,NULL),(110662,0.000000,1525766235.247578,'\0\0\0\0\0\0\0\0\0\0ÿÿÇG®Ì',0,200,0,0,0,'https://watchhill.ca/','','Mozilla/5.0 (iPhone; CPU iPhone OS 11_2_6 like Mac OS X) AppleWebKit/604.5.6 (KHTML, like Gecko) Mobile/15D100 [FBAN/FBIOS;FBAV/170.1.0.80.91;FBBV/106613464;FBDV/iPhone9,4;FBMD/iPhone;FBSN/iOS;FBSV/11.2.6;FBSS/3;FBCR/Rogers;FBID/phone;FBLC/en_US;FBOP/5;FBRV/0]','',NULL,NULL),(109376,0.000000,1524758335.066894,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/','https://www.watchhill.ca/about/history-of-watch-hill/','Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; rv:11.0) like Gecko','',NULL,NULL),(109377,0.000000,1524758839.705776,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'http://www.watchhill.ca/','https://4inn.ru/','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; ru) Opera 8.01','',NULL,NULL),(109378,0.000000,1524758841.450038,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'http://www.watchhill.ca/','https://4inn.ru/','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; ru) Opera 8.01','',NULL,NULL),(109379,0.000000,1524758842.317769,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'http://www.watchhill.ca/','https://4inn.ru/','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; ru) Opera 8.01','',NULL,NULL),(109380,0.000000,1524759201.667642,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/','https://www.google.ca/','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.117 Safari/537.36','',NULL,NULL),(109302,0.000000,1524698765.024399,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/','','Mozilla/5.0 (Windows NT 6.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2623.112 Safari/537.36','',NULL,NULL),(109303,0.000000,1524698796.600671,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/rates-policies/','https://www.watchhill.ca/','Mozilla/5.0 (Windows NT 6.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2623.112 Safari/537.36','',NULL,NULL),(109304,0.000000,1524698891.539380,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/about/your-hosts/','https://www.watchhill.ca/','Mozilla/5.0 (Windows NT 6.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2623.112 Safari/537.36','',NULL,NULL),(109305,0.000000,1524698927.045724,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/the-huron/','https://www.watchhill.ca/about/your-hosts/','Mozilla/5.0 (Windows NT 6.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2623.112 Safari/537.36','',NULL,NULL),(109306,0.000000,1524699004.376419,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/the-chantry/','https://www.watchhill.ca/about/your-hosts/','Mozilla/5.0 (Windows NT 6.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2623.112 Safari/537.36','',NULL,NULL),(109307,0.000000,1524699349.870011,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://www.watchhill.ca/huron-button/','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(109308,0.000000,1524699355.551621,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'http://www.watchhill.ca/robots.txt','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(109309,0.000000,1524699355.631538,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'http://www.watchhill.ca/robots.txt','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(109310,0.000000,1524699357.206576,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://www.watchhill.ca/robots.txt','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(109311,0.000000,1524699357.432686,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://www.watchhill.ca/robots.txt','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(109312,0.000000,1524699358.582639,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://www.watchhill.ca/robots.txt','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(109313,0.000000,1524699359.568339,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://www.watchhill.ca/robots.txt','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(109314,0.000000,1524699375.150841,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'http://www.watchhill.ca/robots.txt','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(109315,0.000000,1524699376.446975,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://www.watchhill.ca/robots.txt','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(109316,0.000000,1524699990.775450,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,1,0,0,'https://www.watchhill.ca/','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(109317,0.000000,1524700938.006222,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'http://www.watchhill.ca/robots.txt','','Mozilla/5.0 (compatible; ScoutJet; +http://www.scoutjet.com/)','',NULL,NULL),(109318,0.000000,1524700950.149575,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://www.watchhill.ca/robots.txt','','Mozilla/5.0 (compatible; ScoutJet; +http://www.scoutjet.com/)','',NULL,NULL),(109319,0.000000,1524700961.227574,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://www.watchhill.ca/accommodations/harbour-suite/','','Mozilla/5.0 (compatible; ScoutJet; +http://www.scoutjet.com/)','',NULL,NULL),(109320,0.000000,1524701201.952947,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://www.watchhill.ca/robots.txt','','Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)','',NULL,NULL),(109321,0.000000,1524701454.458310,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,404,1,0,0,'https://www.watchhill.ca/.well-known/assetlinks.json','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(109322,0.000000,1524701524.853776,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/','https://www.google.ca/','Mozilla/5.0 (iPhone; CPU iPhone OS 11_1_2 like Mac OS X) AppleWebKit/604.3.5 (KHTML, like Gecko) Version/11.0 Mobile/15B202 Safari/604.1','',NULL,NULL),(109323,0.000000,1524701538.908801,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/rates-policies/','https://www.watchhill.ca/','Mozilla/5.0 (iPhone; CPU iPhone OS 11_1_2 like Mac OS X) AppleWebKit/604.3.5 (KHTML, like Gecko) Version/11.0 Mobile/15B202 Safari/604.1','',NULL,NULL),(109324,0.000000,1524701724.461166,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/the-huron/','https://www.watchhill.ca/rates-policies/','Mozilla/5.0 (iPhone; CPU iPhone OS 11_1_2 like Mac OS X) AppleWebKit/604.3.5 (KHTML, like Gecko) Version/11.0 Mobile/15B202 Safari/604.1','',NULL,NULL),(109325,0.000000,1524701726.583426,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/the-huron/','https://www.watchhill.ca/rates-policies/','Mozilla/5.0 (iPhone; CPU iPhone OS 11_1_2 like Mac OS X) AppleWebKit/604.3.5 (KHTML, like Gecko) Version/11.0 Mobile/15B202 Safari/604.1','',NULL,NULL),(109326,0.000000,1524704423.691106,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://www.watchhill.ca/contact/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(109327,0.000000,1524707613.822048,'\0\0\0\0\0\0\0\0\0\0ÿÿBfl',0,200,0,0,0,'https://www.watchhill.ca/','','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2623.75 Safari/537.36 Google Favicon','',NULL,NULL),(109328,0.000000,1524710274.288632,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://www.watchhill.ca/','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_4) AppleWebKit/605.1.15 (KHTML, like Gecko)','',NULL,NULL),(109329,0.000000,1524711421.240794,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/','https://www.google.ca/','Mozilla/5.0 (iPad; CPU OS 9_3_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13E238 Safari/601.1','',NULL,NULL),(109330,0.000000,1524711439.346757,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/rates-policies/','https://www.watchhill.ca/','Mozilla/5.0 (iPad; CPU OS 9_3_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13E238 Safari/601.1','',NULL,NULL),(109331,0.000000,1524711477.956552,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/harbour-suite/','https://www.watchhill.ca/rates-policies/','Mozilla/5.0 (iPad; CPU OS 9_3_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13E238 Safari/601.1','',NULL,NULL),(109332,0.000000,1524712618.524579,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,1,0,0,'http://www.watchhill.ca/robots.txt','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(109333,0.000000,1524712621.290815,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,1,0,0,'https://www.watchhill.ca/robots.txt','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(109334,0.000000,1524712622.211490,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,1,0,0,'http://www.watchhill.ca/','','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2272.96 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(109335,0.000000,1524712623.358212,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,1,0,0,'https://www.watchhill.ca/','','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2272.96 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(109336,0.000000,1524712739.708540,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,1,0,0,'http://www.watchhill.ca/','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(109337,0.000000,1524712741.780780,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,1,0,0,'https://www.watchhill.ca/','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(109338,0.000000,1524713005.159034,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://www.watchhill.ca/robots.txt','','Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)','',NULL,NULL),(109339,0.000000,1524714196.260039,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,1,0,0,'http://watchhill.ca/robots.txt','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(109340,0.000000,1524714198.613568,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,1,0,0,'https://watchhill.ca/robots.txt','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(109341,0.000000,1524714199.715602,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,1,0,0,'http://watchhill.ca/','','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2272.96 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(109342,0.000000,1524714201.427737,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,1,0,0,'https://watchhill.ca/','','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2272.96 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(109343,0.000000,1524714203.350647,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,1,0,0,'https://www.watchhill.ca/','','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2272.96 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(109344,0.000000,1524714317.354630,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,1,0,0,'https://www.watchhill.ca/','','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2272.96 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(109345,0.000000,1524720748.988963,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,1,0,0,'https://watchhill.ca/','','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2272.96 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(109346,0.000000,1524720751.814072,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,1,0,0,'https://www.watchhill.ca/','','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2272.96 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(109347,0.000000,1524725634.760369,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://www.watchhill.ca/robots.txt','','Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)','',NULL,NULL),(109348,0.000000,1524731850.514650,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'http://watchhill.ca/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(109349,0.000000,1524731853.740372,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://watchhill.ca/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(109350,0.000000,1524731855.720359,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://www.watchhill.ca/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(109351,0.000000,1524731855.963613,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'http://www.watchhill.ca/robots.txt','','Mozilla/5.0 (Windows NT 5.1; rv:6.0.2) Gecko/20100101 Firefox/6.0.2','',NULL,NULL),(109352,0.000000,1524733721.242720,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,1,0,0,'https://www.watchhill.ca/','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(109353,0.000000,1524738096.181272,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://www.watchhill.ca/robots.txt','','Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)','',NULL,NULL),(109354,0.000000,1524739802.563364,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://www.watchhill.ca/hosts-button/','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(109355,0.000000,1524742245.217871,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://www.watchhill.ca/sitemap-1.xml','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(109356,0.000000,1524744035.858403,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'http://www.watchhill.ca/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(109357,0.000000,1524744038.520815,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://www.watchhill.ca/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(109358,0.000000,1524748226.969866,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'http://www.watchhill.ca/wp-login.php','','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1 HCF/3.7.18','',NULL,NULL),(109359,0.000000,1524748236.425136,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'http://www.watchhill.ca/wp-login.php','','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1 HCF/3.7.18','',NULL,NULL),(109360,0.000000,1524748244.332646,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'http://www.watchhill.ca/','','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1 HCF/3.7.18','',NULL,NULL),(109361,0.000000,1524751326.652598,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://www.watchhill.ca/about/the-area/','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(109362,0.000000,1524753658.545438,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/the-saugeen/','https://www.watchhill.ca/accommodations/harbour-suite/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.162 Safari/537.36','',NULL,NULL),(109363,0.000000,1524753667.665857,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/the-saugeen/','https://www.watchhill.ca/accommodations/harbour-suite/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.162 Safari/537.36','',NULL,NULL),(109364,0.000000,1524753693.254766,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/','https://www.watchhill.ca/accommodations/the-saugeen/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.162 Safari/537.36','',NULL,NULL),(109365,0.000000,1524753696.246341,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'http://www.watchhill.ca/','http://www.saugeenshoreschamber.ca/list/member/watch-hjill-42801666','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.36','',NULL,NULL),(109366,0.000000,1524753697.544377,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/','http://www.saugeenshoreschamber.ca/list/member/watch-hjill-42801666','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.36','',NULL,NULL),(109367,0.000000,1524753699.243108,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/the-huron/','https://www.watchhill.ca/accommodations/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.162 Safari/537.36','',NULL,NULL),(109368,0.000000,1524753722.943327,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/the-chantry/','https://www.watchhill.ca/accommodations/the-huron/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.162 Safari/537.36','',NULL,NULL),(109369,0.000000,1524753739.031951,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/the-saugeen/','https://www.watchhill.ca/accommodations/the-chantry/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.162 Safari/537.36','',NULL,NULL),(109370,0.000000,1524753748.348146,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/harbour-suite/','https://www.watchhill.ca/accommodations/the-saugeen/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.162 Safari/537.36','',NULL,NULL),(109371,0.000000,1524753798.494996,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/about/gallery/','https://www.watchhill.ca/accommodations/harbour-suite/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.162 Safari/537.36','',NULL,NULL),(109372,0.000000,1524753930.453998,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/contact/','https://www.watchhill.ca/about/gallery/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.162 Safari/537.36','',NULL,NULL),(109373,0.000000,1524753956.117317,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/','https://www.google.ca/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.162 Safari/537.36','',NULL,NULL),(109374,0.000000,1524754259.573347,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/','','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.36','',NULL,NULL),(109375,0.000000,1524758269.418204,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/about/history-of-watch-hill/','https://www.google.ca/url?sa=i&rct=j&q=&esrc=s&source=images&cd=&ved=2ahUKEwjettGTp9jaAhUq_4MKHW4bB1AQjB16BAgAEAQ&url=https%3A%2F%2Fwww.watchhill.ca%2Fabout%2Fhistory-of-watch-hill%2F&psig=AOvVaw33wDmQgHaddNwnFfs5KmWX&ust=1524844522701782','Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; rv:11.0) like Gecko','',NULL,NULL),(109640,0.000000,1525037007.478203,'\0\0\0\0\0\0\0\0\0\0ÿÿBÜœ—',1,200,0,0,0,'https://www.watchhill.ca/','http://l.facebook.com/l.php?u=http%3A%2F%2Fwww.watchhill.ca%2F&h=ATNsH96z0cvPZeDco430PtH2G32R_xKktvqkMG71zGFCNzNLaP3l_8f2Ta0rfZIKEyWMl5pXhrPsvOG0e-FXluOh8fSkawP-2YAgOqPulnQc8bXG31S2dCVFC3MpIQ','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.36 Edge/16.16299','',NULL,NULL),(109639,0.000000,1525037005.126156,'\0\0\0\0\0\0\0\0\0\0ÿÿBÜœ—',0,200,0,0,0,'http://www.watchhill.ca/','http://l.facebook.com/l.php?u=http%3A%2F%2Fwww.watchhill.ca%2F&h=ATNsH96z0cvPZeDco430PtH2G32R_xKktvqkMG71zGFCNzNLaP3l_8f2Ta0rfZIKEyWMl5pXhrPsvOG0e-FXluOh8fSkawP-2YAgOqPulnQc8bXG31S2dCVFC3MpIQ','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.36 Edge/16.16299','',NULL,NULL),(109638,0.000000,1525036083.334015,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,1,0,0,'https://www.watchhill.ca/','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(109637,0.000000,1525035813.465900,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://www.watchhill.ca/robots.txt','','Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)','',NULL,NULL),(109636,0.000000,1525034948.826408,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,1,0,0,'https://www.watchhill.ca/','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(109635,0.000000,1525034946.117059,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,1,0,0,'http://www.watchhill.ca/','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(109634,0.000000,1525034805.228511,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,1,0,0,'https://www.watchhill.ca/','','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2272.96 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(109633,0.000000,1525034804.105636,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,1,0,0,'http://www.watchhill.ca/','','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2272.96 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(109632,0.000000,1525034636.061376,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/the-chantry/','https://www.watchhill.ca/accommodations/','Mozilla/5.0 (iPhone; CPU iPhone OS 10_1_1 like Mac OS X) AppleWebKit/602.2.14 (KHTML, like Gecko) Version/10.0 Mobile/14B100 Safari/602.1','',NULL,NULL),(109631,0.000000,1525034625.925368,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/','https://www.watchhill.ca/','Mozilla/5.0 (iPhone; CPU iPhone OS 10_1_1 like Mac OS X) AppleWebKit/602.2.14 (KHTML, like Gecko) Version/10.0 Mobile/14B100 Safari/602.1','',NULL,NULL),(109629,0.000000,1525030439.378144,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'http://watchhill.ca/','','Mozilla/5.0 (iPhone; CPU iPhone OS 11_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/11.0 Mobile/15E148 Safari/604.1','',NULL,NULL),(109630,0.000000,1525034614.091216,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/','','Mozilla/5.0 (iPhone; CPU iPhone OS 10_1_1 like Mac OS X) AppleWebKit/602.2.14 (KHTML, like Gecko) Version/10.0 Mobile/14B100 Safari/602.1','',NULL,NULL),(109628,0.000000,1525028645.145036,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://www.watchhill.ca/','','Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729)','',NULL,NULL),(109627,0.000000,1525028643.832993,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'http://www.watchhill.ca/','','Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729)','',NULL,NULL),(109626,0.000000,1525028640.618845,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://www.watchhill.ca/','','Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729)','',NULL,NULL),(109624,0.000000,1525024813.646393,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'http://www.watchhill.ca/','','','',NULL,NULL),(109625,0.000000,1525027699.056941,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,1,0,0,'https://www.watchhill.ca/','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(109623,0.000000,1525021319.801952,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.139 Safari/537.36','',NULL,NULL),(109622,0.000000,1525019730.947927,'\0\0\0\0\0\0\0\0\0\0ÿÿCçÂ',0,200,0,0,0,'http://watchhill.ca/','','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/57.0.2987.133 Safari/537.36','',NULL,NULL),(109621,0.000000,1525019714.787053,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'http://watchhill.ca/','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_4) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/11.1 Safari/605.1.15','',NULL,NULL),(109620,0.000000,1525019672.538187,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.139 Safari/537.36','',NULL,NULL),(109619,0.000000,1525019434.028673,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'http://www.watchhill.ca/','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.139 Safari/537.36','',NULL,NULL),(109618,0.000000,1525014630.849675,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,1,0,0,'https://www.watchhill.ca/','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(109617,0.000000,1525014629.661573,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,1,0,0,'https://watchhill.ca/','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(109616,0.000000,1525014628.557492,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,1,0,0,'http://watchhill.ca/','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(109615,0.000000,1525014627.622748,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,1,0,0,'https://watchhill.ca/robots.txt','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(109614,0.000000,1525014625.480092,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,1,0,0,'http://watchhill.ca/robots.txt','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(109613,0.000000,1525012380.190058,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://www.watchhill.ca/robots.txt','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(109612,0.000000,1525012378.241668,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://www.watchhill.ca/robots.txt','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(109611,0.000000,1525012210.232797,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://www.watchhill.ca/about/the-area/','','Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)','',NULL,NULL),(109610,0.000000,1525011783.250121,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,1,0,0,'https://www.watchhill.ca/','','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2272.96 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(109608,0.000000,1525011699.533175,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://www.watchhill.ca/robots.txt','','Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)','',NULL,NULL),(109609,0.000000,1525011703.404071,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://www.watchhill.ca/logo/','','Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)','',NULL,NULL),(109607,0.000000,1525011488.950653,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://www.watchhill.ca/robots.txt','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(109605,0.000000,1525011484.107098,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://www.watchhill.ca/robots.txt','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(109606,0.000000,1525011485.023804,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'http://www.watchhill.ca/robots.txt','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(109604,0.000000,1525011483.223721,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'http://www.watchhill.ca/robots.txt','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(109602,0.000000,1525011481.427163,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'http://www.watchhill.ca/robots.txt','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(109603,0.000000,1525011482.319769,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://www.watchhill.ca/robots.txt','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(109601,0.000000,1525011480.222934,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://www.watchhill.ca/robots.txt','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(109599,0.000000,1525011470.194657,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://www.watchhill.ca/1m1a1500/','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(109600,0.000000,1525011478.509785,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'http://www.watchhill.ca/robots.txt','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(109597,0.000000,1525005236.056351,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://www.watchhill.ca/robots.txt','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(109598,0.000000,1525005956.853987,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,1,0,0,'https://www.watchhill.ca/','','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2272.96 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(109596,0.000000,1525005235.069018,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'http://www.watchhill.ca/robots.txt','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(109595,0.000000,1525005226.737036,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://www.watchhill.ca/','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(109594,0.000000,1525003541.038651,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,1,0,0,'https://www.watchhill.ca/','','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2272.96 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(109593,0.000000,1524999075.352538,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,1,0,0,'https://www.watchhill.ca/','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(109592,0.000000,1524997819.629468,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://www.watchhill.ca/privacy-policy/','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(109591,0.000000,1524997800.463172,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'http://www.watchhill.ca/','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2743.116 Safari/537.36 Edge/15.15063','',NULL,NULL),(109590,0.000000,1524997794.403063,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'http://www.watchhill.ca/','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2743.116 Safari/537.36 Edge/15.15063','',NULL,NULL),(109589,0.000000,1524992939.009008,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,1,0,0,'https://www.watchhill.ca/','','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2272.96 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(109587,0.000000,1524992057.264026,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,1,0,0,'https://www.watchhill.ca/robots.txt','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(109588,0.000000,1524992063.590979,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,1,0,0,'https://www.watchhill.ca/','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(109586,0.000000,1524983258.544463,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://www.watchhill.ca/accommodations/harbour-suite/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(109584,0.000000,1524969783.871906,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,1,0,0,'https://www.watchhill.ca/','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(109585,0.000000,1524979430.235845,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://www.watchhill.ca/robots.txt','','Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)','',NULL,NULL),(109583,0.000000,1524966921.574191,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,1,0,0,'https://www.watchhill.ca/','','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2272.96 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(109582,0.000000,1524966918.529411,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,1,0,0,'https://watchhill.ca/','','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2272.96 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(109581,0.000000,1524966698.092323,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,1,0,0,'https://www.watchhill.ca/','','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2272.96 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(109580,0.000000,1524966440.220102,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'http://www.watchhill.ca/','http://m.facebook.com','Mozilla/5.0 (iPhone; CPU iPhone OS 11_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E216 [FBAN/FBIOS;FBAV/169.0.0.50.95;FBBV/104829965;FBDV/iPhone9,3;FBMD/iPhone;FBSN/iOS;FBSV/11.3;FBSS/2;FBCR/fido;FBID/phone;FBLC/en_US;FBOP/5;FBRV/0]','',NULL,NULL),(109579,0.000000,1524965703.125601,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://www.watchhill.ca/image-sitemap-1.xml','','Mozilla/5.0 (compatible; ScoutJet; +http://www.scoutjet.com/)','',NULL,NULL),(109578,0.000000,1524965599.342333,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,1,0,0,'https://www.watchhill.ca/','','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2272.96 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(109577,0.000000,1524965598.235158,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,1,0,0,'https://watchhill.ca/','','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2272.96 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(109576,0.000000,1524965596.211269,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,1,0,0,'http://watchhill.ca/','','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2272.96 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(109575,0.000000,1524965377.444665,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,1,0,0,'https://www.watchhill.ca/','','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2272.96 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(109573,0.000000,1524965158.296561,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,1,0,0,'https://www.watchhill.ca/','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(109574,0.000000,1524965375.458432,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,1,0,0,'http://www.watchhill.ca/','','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2272.96 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(109572,0.000000,1524965157.187823,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,1,0,0,'http://www.watchhill.ca/','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(109571,0.000000,1524965156.285266,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,1,0,0,'https://www.watchhill.ca/robots.txt','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(109569,0.000000,1524965065.318528,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://www.watchhill.ca/1m1a1599/','','Mozilla/5.0 (compatible; ScoutJet; +http://www.scoutjet.com/)','',NULL,NULL),(109570,0.000000,1524965155.224504,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,1,0,0,'http://www.watchhill.ca/robots.txt','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(109568,0.000000,1524965054.177934,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://www.watchhill.ca/robots.txt','','Mozilla/5.0 (compatible; ScoutJet; +http://www.scoutjet.com/)','',NULL,NULL),(109567,0.000000,1524965042.131512,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'http://www.watchhill.ca/robots.txt','','Mozilla/5.0 (compatible; ScoutJet; +http://www.scoutjet.com/)','',NULL,NULL),(109565,0.000000,1524964520.193013,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/','','Mozilla/5.0 (iPad; CPU OS 9_3_5 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13G36 Safari/601.1','',NULL,NULL),(109566,0.000000,1524964560.418359,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/rates-policies/','https://www.watchhill.ca/','Mozilla/5.0 (iPad; CPU OS 9_3_5 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13G36 Safari/601.1','',NULL,NULL),(109564,0.000000,1524964000.953172,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,404,0,0,0,'https://www.watchhill.ca/js/mage/cookies.js','watchhill.ca','Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4','',NULL,NULL),(109563,0.000000,1524964000.438253,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,404,0,0,0,'https://www.watchhill.ca/js/mage/cookies.js','watchhill.ca','Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4','',NULL,NULL),(109562,0.000000,1524963997.770552,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://watchhill.ca/js/mage/cookies.js','watchhill.ca','Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4','',NULL,NULL),(109561,0.000000,1524963997.745347,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://watchhill.ca/js/mage/cookies.js','watchhill.ca','Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4','',NULL,NULL),(109560,0.000000,1524963994.964289,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'http://watchhill.ca/js/mage/cookies.js','watchhill.ca','Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4','',NULL,NULL),(109558,0.000000,1524963344.111913,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://watchhill.ca/','','Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)','',NULL,NULL),(109559,0.000000,1524963993.979258,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'http://watchhill.ca/js/mage/cookies.js','watchhill.ca','Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4','',NULL,NULL),(109557,0.000000,1524963343.364821,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'http://www.watchhill.ca/','','Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)','',NULL,NULL),(109556,0.000000,1524963343.134999,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'http://watchhill.ca/','','Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)','',NULL,NULL),(109555,0.000000,1524963340.098309,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://www.watchhill.ca/','','Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)','',NULL,NULL),(109554,0.000000,1524963339.550337,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://watchhill.ca/robots.txt','','Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)','',NULL,NULL),(109552,0.000000,1524963339.158669,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'http://watchhill.ca/robots.txt','','Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)','',NULL,NULL),(109553,0.000000,1524963338.615291,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'http://www.watchhill.ca/robots.txt','','Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)','',NULL,NULL),(109551,0.000000,1524959961.479910,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://www.watchhill.ca/?foogallery=huron-suite','','Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)','',NULL,NULL),(109550,0.000000,1524959957.736227,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://www.watchhill.ca/robots.txt','','Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)','',NULL,NULL),(109549,0.000000,1524957692.513737,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/about/your-hosts/','https://www.watchhill.ca/','Mozilla/5.0 (iPhone; CPU iPhone OS 11_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/11.0 Mobile/15E148 Safari/604.1','',NULL,NULL),(109548,0.000000,1524957546.922773,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/','https://www.watchhill.ca/','Mozilla/5.0 (iPhone; CPU iPhone OS 11_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/11.0 Mobile/15E148 Safari/604.1','',NULL,NULL),(109546,0.000000,1524956338.884019,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,404,1,0,0,'https://www.watchhill.ca/.well-known/assetlinks.json','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(109547,0.000000,1524957514.590007,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/','https://www.google.ca/','Mozilla/5.0 (iPhone; CPU iPhone OS 11_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/11.0 Mobile/15E148 Safari/604.1','',NULL,NULL),(109545,0.000000,1524954641.245179,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/the-huron/','https://www.watchhill.ca/accommodations/','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/602.1.50 (KHTML, like Gecko) Version/10.0 Safari/602.1.50','',NULL,NULL),(109544,0.000000,1524954602.205384,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/the-chantry/','https://www.watchhill.ca/accommodations/','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/602.1.50 (KHTML, like Gecko) Version/10.0 Safari/602.1.50','',NULL,NULL),(109543,0.000000,1524954573.915330,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/','https://www.watchhill.ca/','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/602.1.50 (KHTML, like Gecko) Version/10.0 Safari/602.1.50','',NULL,NULL),(109542,0.000000,1524954541.006267,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/','https://www.google.com/','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/602.1.50 (KHTML, like Gecko) Version/10.0 Safari/602.1.50','',NULL,NULL),(109541,0.000000,1524951753.542083,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/the-huron/','https://www.watchhill.ca/accommodations/','Mozilla/5.0 (Linux; Android 7.0; SM-A520W Build/NRD90M) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.126 Mobile Safari/537.36','',NULL,NULL),(109540,0.000000,1524951668.129834,'\0\0\0\0\0\0\0\0\0\0ÿÿÉËw',1,200,0,0,0,'https://www.watchhill.ca/accommodations/the-chantry/','https://www.watchhill.ca/accommodations/','Mozilla/5.0 (Linux; Android 7.0; SM-A520W Build/NRD90M) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.126 Mobile Safari/537.36','',NULL,NULL),(109539,0.000000,1524951611.143867,'\0\0\0\0\0\0\0\0\0\0ÿÿÉËw',1,200,0,0,0,'https://www.watchhill.ca/accommodations/the-huron/','https://www.watchhill.ca/accommodations/the-chantry/','Mozilla/5.0 (Linux; Android 7.0; SM-A520W Build/NRD90M) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.126 Mobile Safari/537.36','',NULL,NULL),(109538,0.000000,1524951537.339616,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/the-chantry/','https://www.watchhill.ca/accommodations/','Mozilla/5.0 (Linux; Android 7.0; SM-A520W Build/NRD90M) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.126 Mobile Safari/537.36','',NULL,NULL),(109537,0.000000,1524951513.659616,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/harbour-suite/','https://www.watchhill.ca/accommodations/','Mozilla/5.0 (Linux; Android 7.0; SM-A520W Build/NRD90M) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.126 Mobile Safari/537.36','',NULL,NULL),(109536,0.000000,1524951474.594983,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/','https://www.watchhill.ca/accommodations/','Mozilla/5.0 (Linux; Android 7.0; SM-A520W Build/NRD90M) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.126 Mobile Safari/537.36','',NULL,NULL),(109535,0.000000,1524951469.983627,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/','https://www.watchhill.ca/accommodations/','Mozilla/5.0 (Linux; Android 7.0; SM-A520W Build/NRD90M) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.126 Mobile Safari/537.36','',NULL,NULL),(109534,0.000000,1524951465.715959,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/','https://www.watchhill.ca/accommodations/the-saugeen/','Mozilla/5.0 (Linux; Android 7.0; SM-A520W Build/NRD90M) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.126 Mobile Safari/537.36','',NULL,NULL),(109533,0.000000,1524951416.752360,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/the-saugeen/','https://www.watchhill.ca/accommodations/','Mozilla/5.0 (Linux; Android 7.0; SM-A520W Build/NRD90M) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.126 Mobile Safari/537.36','',NULL,NULL),(109532,0.000000,1524951410.262599,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/','https://www.watchhill.ca/accommodations/','Mozilla/5.0 (Linux; Android 7.0; SM-A520W Build/NRD90M) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.126 Mobile Safari/537.36','',NULL,NULL),(109531,0.000000,1524951274.206451,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/the-chantry/','https://www.watchhill.ca/accommodations/','Mozilla/5.0 (Linux; Android 7.0; SM-A520W Build/NRD90M) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.126 Mobile Safari/537.36','',NULL,NULL),(109530,0.000000,1524951267.244612,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/','https://www.watchhill.ca/rates-policies/','Mozilla/5.0 (Linux; Android 7.0; SM-A520W Build/NRD90M) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.126 Mobile Safari/537.36','',NULL,NULL),(109529,0.000000,1524951226.072909,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/the-huron/','https://www.watchhill.ca/rates-policies/','Mozilla/5.0 (Linux; Android 7.0; SM-A520W Build/NRD90M) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.126 Mobile Safari/537.36','',NULL,NULL),(109528,0.000000,1524951131.796676,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/rates-policies/','https://www.watchhill.ca/','Mozilla/5.0 (Linux; Android 7.0; SM-A520W Build/NRD90M) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.126 Mobile Safari/537.36','',NULL,NULL),(109527,0.000000,1524951100.598212,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/','android-app://com.google.android.googlequicksearchbox','Mozilla/5.0 (Linux; Android 7.0; SM-A520W Build/NRD90M) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.126 Mobile Safari/537.36','',NULL,NULL),(109526,0.000000,1524951083.783393,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/the-chantry/','https://www.watchhill.ca/accommodations/the-huron/','Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:59.0) Gecko/20100101 Firefox/59.0','',NULL,NULL),(109525,0.000000,1524951043.776548,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/the-huron/','https://www.watchhill.ca/accommodations/','Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:59.0) Gecko/20100101 Firefox/59.0','',NULL,NULL),(109524,0.000000,1524951028.928861,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/','https://www.watchhill.ca/accommodations/the-saugeen/','Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:59.0) Gecko/20100101 Firefox/59.0','',NULL,NULL),(109523,0.000000,1524950988.894439,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/the-saugeen/','https://www.watchhill.ca/accommodations/the-chantry/','Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:59.0) Gecko/20100101 Firefox/59.0','',NULL,NULL),(109522,0.000000,1524950925.411172,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/the-chantry/','https://www.watchhill.ca/accommodations/','Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:59.0) Gecko/20100101 Firefox/59.0','',NULL,NULL),(109521,0.000000,1524950838.501715,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/','https://www.watchhill.ca/','Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:59.0) Gecko/20100101 Firefox/59.0','',NULL,NULL),(109520,0.000000,1524950801.646946,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/','https://www.google.com/','Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:59.0) Gecko/20100101 Firefox/59.0','',NULL,NULL),(109519,0.000000,1524935530.691463,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/','android-app://m.facebook.com','Mozilla/5.0 (Linux; Android 4.3; LT30a Build/9.2.A.0.295) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.126 Mobile Safari/537.36','',NULL,NULL),(109518,0.000000,1524933657.740371,'\0\0\0\0\0\0\0\0\0\0ÿÿBùS',0,200,0,0,0,'https://www.watchhill.ca/wp-login.php?redirect_to=https%3A%2F%2Fwww.watchhill.ca%2Fwp-admin%2Fadmin.php%3Fpage%3Dwp-simple-booking-calendar-premium&reauth=1','','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2623.75 Safari/537.36 Google Favicon','',NULL,NULL),(109517,0.000000,1524930380.094368,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'http://www.watchhill.ca/','http://sorus.ucoz.ru/','Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; Win 9x 4.90)','',NULL,NULL),(109516,0.000000,1524930379.247920,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'http://www.watchhill.ca/','http://sorus.ucoz.ru/','Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; Win 9x 4.90)','',NULL,NULL),(109515,0.000000,1524930377.513202,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'http://www.watchhill.ca/','http://sorus.ucoz.ru/','Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; Win 9x 4.90)','',NULL,NULL),(109514,0.000000,1524930040.532183,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://www.watchhill.ca/xmlrpc.php?rsd','','Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)','',NULL,NULL),(109513,0.000000,1524930036.690995,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://www.watchhill.ca/robots.txt','','Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)','',NULL,NULL),(109512,0.000000,1524922232.305771,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://www.watchhill.ca/about/gallery/','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(109511,0.000000,1524915583.729475,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/testimonials/','https://www.watchhill.ca/rates-policies/','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_4) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/11.1 Safari/605.1.15','',NULL,NULL),(109510,0.000000,1524915536.638564,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/rates-policies/','https://www.watchhill.ca/','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_4) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/11.1 Safari/605.1.15','',NULL,NULL),(109509,0.000000,1524915507.503332,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/','https://www.watchhill.ca/accommodations/the-huron/','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_4) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/11.1 Safari/605.1.15','',NULL,NULL),(109508,0.000000,1524915479.977260,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/the-huron/','https://www.watchhill.ca/about/','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_4) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/11.1 Safari/605.1.15','',NULL,NULL),(109507,0.000000,1524915458.337092,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/about/','https://www.watchhill.ca/','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_4) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/11.1 Safari/605.1.15','',NULL,NULL),(109506,0.000000,1524915441.096184,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/','https://www.google.com/','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_4) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/11.1 Safari/605.1.15','',NULL,NULL),(109505,0.000000,1524911052.521319,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://watchhill.ca/robots.txt','','Mozilla/5.0 (compatible; AhrefsBot/5.2; +http://ahrefs.com/robot/)','',NULL,NULL),(109504,0.000000,1524911049.706002,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'http://watchhill.ca/robots.txt','','Mozilla/5.0 (compatible; AhrefsBot/5.2; +http://ahrefs.com/robot/)','',NULL,NULL),(109503,0.000000,1524909846.099051,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://www.watchhill.ca/1m1a1575/','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(109501,0.000000,1524903403.489298,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,1,0,0,'https://www.watchhill.ca/robots.txt','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(109502,0.000000,1524904339.367650,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://www.watchhill.ca/accommodations/harbour-suite/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(109500,0.000000,1524903098.185297,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://www.watchhill.ca/robots.txt','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(109499,0.000000,1524903095.954508,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://www.watchhill.ca/robots.txt','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(109498,0.000000,1524899597.432036,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/harbour-suite/','https://www.watchhill.ca/accommodations/the-saugeen/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.36 Edge/16.16299','',NULL,NULL),(109497,0.000000,1524899589.490751,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/the-saugeen/','https://www.watchhill.ca/accommodations/the-chantry/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.36 Edge/16.16299','',NULL,NULL),(109496,0.000000,1524899579.710841,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/the-chantry/','https://www.watchhill.ca/accommodations/the-huron/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.36 Edge/16.16299','',NULL,NULL),(109495,0.000000,1524899577.823486,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/','https://www.watchhill.ca/accommodations/the-huron/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.36 Edge/16.16299','',NULL,NULL),(109494,0.000000,1524899533.510235,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/the-huron/','https://www.watchhill.ca/rates-policies/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.36 Edge/16.16299','',NULL,NULL),(109493,0.000000,1524899478.802937,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/rates-policies/','https://www.watchhill.ca/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.36 Edge/16.16299','',NULL,NULL),(109492,0.000000,1524899470.780876,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/','https://www.google.ca/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.36 Edge/16.16299','',NULL,NULL),(109491,0.000000,1524899406.034816,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://www.watchhill.ca/wp-json/oembed/1.0/embed?url=https%3A%2F%2Fwww.watchhill.ca%2F&format=xml','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(109490,0.000000,1524891091.046944,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://www.watchhill.ca/robots.txt','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(109488,0.000000,1524891079.234520,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://www.watchhill.ca/robots.txt','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(109489,0.000000,1524891087.046887,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'http://www.watchhill.ca/robots.txt','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(109486,0.000000,1524891075.902191,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://www.watchhill.ca/bg/','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(109487,0.000000,1524891078.308089,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'http://www.watchhill.ca/robots.txt','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(109485,0.000000,1524890404.197696,'\0\0\0\0\0\0\0\0\0\0ÿÿBfh',0,200,0,0,0,'https://www.watchhill.ca/','','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2623.75 Safari/537.36 Google Favicon','',NULL,NULL),(109484,0.000000,1524889841.831177,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,1,0,0,'https://www.watchhill.ca/','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(109482,0.000000,1524889839.430904,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,1,0,0,'http://watchhill.ca/','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(109483,0.000000,1524889840.564529,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,1,0,0,'https://watchhill.ca/','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(109481,0.000000,1524889838.494811,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,1,0,0,'https://watchhill.ca/robots.txt','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(109479,0.000000,1524885830.314409,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://www.watchhill.ca/robots.txt','','Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)','',NULL,NULL),(109480,0.000000,1524889836.556311,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,1,0,0,'http://watchhill.ca/robots.txt','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(109478,0.000000,1524878151.439936,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/testimonials/','https://www.watchhill.ca/rates-policies/','Mozilla/5.0 (iPhone; CPU iPhone OS 10_3_3 like Mac OS X) AppleWebKit/603.3.8 (KHTML, like Gecko) Version/10.0 Mobile/14G60 Safari/602.1','',NULL,NULL),(109477,0.000000,1524878086.318331,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/rates-policies/','https://www.watchhill.ca/about/gallery/','Mozilla/5.0 (iPhone; CPU iPhone OS 10_3_3 like Mac OS X) AppleWebKit/603.3.8 (KHTML, like Gecko) Version/10.0 Mobile/14G60 Safari/602.1','',NULL,NULL),(109476,0.000000,1524877920.236274,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/about/gallery/','https://www.watchhill.ca/about/history-of-watch-hill/','Mozilla/5.0 (iPhone; CPU iPhone OS 10_3_3 like Mac OS X) AppleWebKit/603.3.8 (KHTML, like Gecko) Version/10.0 Mobile/14G60 Safari/602.1','',NULL,NULL),(109475,0.000000,1524877898.011292,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/about/gallery/','https://www.watchhill.ca/about/history-of-watch-hill/','Mozilla/5.0 (iPhone; CPU iPhone OS 10_3_3 like Mac OS X) AppleWebKit/603.3.8 (KHTML, like Gecko) Version/10.0 Mobile/14G60 Safari/602.1','',NULL,NULL),(109474,0.000000,1524877857.452910,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/harbour-suite/','https://www.watchhill.ca/about/history-of-watch-hill/','Mozilla/5.0 (iPhone; CPU iPhone OS 10_3_3 like Mac OS X) AppleWebKit/603.3.8 (KHTML, like Gecko) Version/10.0 Mobile/14G60 Safari/602.1','',NULL,NULL),(109473,0.000000,1524877843.517861,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/the-chantry/','https://www.watchhill.ca/about/history-of-watch-hill/','Mozilla/5.0 (iPhone; CPU iPhone OS 10_3_3 like Mac OS X) AppleWebKit/603.3.8 (KHTML, like Gecko) Version/10.0 Mobile/14G60 Safari/602.1','',NULL,NULL),(109472,0.000000,1524877835.437907,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/the-huron/','https://www.watchhill.ca/about/history-of-watch-hill/','Mozilla/5.0 (iPhone; CPU iPhone OS 10_3_3 like Mac OS X) AppleWebKit/603.3.8 (KHTML, like Gecko) Version/10.0 Mobile/14G60 Safari/602.1','',NULL,NULL),(109471,0.000000,1524877804.038399,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/the-saugeen/','https://www.watchhill.ca/about/history-of-watch-hill/','Mozilla/5.0 (iPhone; CPU iPhone OS 10_3_3 like Mac OS X) AppleWebKit/603.3.8 (KHTML, like Gecko) Version/10.0 Mobile/14G60 Safari/602.1','',NULL,NULL),(109470,0.000000,1524877775.222781,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/the-chantry/','https://www.watchhill.ca/about/history-of-watch-hill/','Mozilla/5.0 (iPhone; CPU iPhone OS 10_3_3 like Mac OS X) AppleWebKit/603.3.8 (KHTML, like Gecko) Version/10.0 Mobile/14G60 Safari/602.1','',NULL,NULL),(109469,0.000000,1524877734.064323,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/the-huron/','https://www.watchhill.ca/about/history-of-watch-hill/','Mozilla/5.0 (iPhone; CPU iPhone OS 10_3_3 like Mac OS X) AppleWebKit/603.3.8 (KHTML, like Gecko) Version/10.0 Mobile/14G60 Safari/602.1','',NULL,NULL),(109468,0.000000,1524877697.335956,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/about/history-of-watch-hill/','https://www.watchhill.ca/','Mozilla/5.0 (iPhone; CPU iPhone OS 10_3_3 like Mac OS X) AppleWebKit/603.3.8 (KHTML, like Gecko) Version/10.0 Mobile/14G60 Safari/602.1','',NULL,NULL),(109467,0.000000,1524877690.826449,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/about/history-of-watch-hill/','https://www.watchhill.ca/','Mozilla/5.0 (iPhone; CPU iPhone OS 10_3_3 like Mac OS X) AppleWebKit/603.3.8 (KHTML, like Gecko) Version/10.0 Mobile/14G60 Safari/602.1','',NULL,NULL),(109466,0.000000,1524877626.226296,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/about/your-hosts/','https://www.watchhill.ca/','Mozilla/5.0 (iPhone; CPU iPhone OS 10_3_3 like Mac OS X) AppleWebKit/603.3.8 (KHTML, like Gecko) Version/10.0 Mobile/14G60 Safari/602.1','',NULL,NULL),(109465,0.000000,1524877605.177411,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/','https://www.google.ca/','Mozilla/5.0 (iPhone; CPU iPhone OS 10_3_3 like Mac OS X) AppleWebKit/603.3.8 (KHTML, like Gecko) Version/10.0 Mobile/14G60 Safari/602.1','',NULL,NULL),(109464,0.000000,1524873807.933129,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/the-huron/','https://www.watchhill.ca/','Mozilla/5.0 (iPad; CPU OS 11_1 like Mac OS X) AppleWebKit/604.3.5 (KHTML, like Gecko) Version/11.0 Mobile/15B93 Safari/604.1','',NULL,NULL),(109462,0.000000,1524873777.861104,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://watchhill.ca/','','Mozilla/5.0 (iPad; CPU OS 11_1 like Mac OS X) AppleWebKit/604.3.5 (KHTML, like Gecko) Version/11.0 Mobile/15B93 Safari/604.1','',NULL,NULL),(109463,0.000000,1524873779.479836,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/','','Mozilla/5.0 (iPad; CPU OS 11_1 like Mac OS X) AppleWebKit/604.3.5 (KHTML, like Gecko) Version/11.0 Mobile/15B93 Safari/604.1','',NULL,NULL),(109461,0.000000,1524873775.280730,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'http://watchhill.ca/','','Mozilla/5.0 (iPad; CPU OS 11_1 like Mac OS X) AppleWebKit/604.3.5 (KHTML, like Gecko) Version/11.0 Mobile/15B93 Safari/604.1','',NULL,NULL),(109459,0.000000,1524869651.089082,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://www.watchhill.ca/robots.txt','','Mozilla/5.0 (compatible; AhrefsBot/5.2; +http://ahrefs.com/robot/)','',NULL,NULL),(109460,0.000000,1524873192.453630,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://www.watchhill.ca/robots.txt','','Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)','',NULL,NULL),(109458,0.000000,1524865786.636243,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/rates-policies/','https://www.watchhill.ca/about/gallery/','Mozilla/5.0 (iPhone; CPU iPhone OS 11_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/11.0 Mobile/15E148 Safari/604.1','',NULL,NULL),(109457,0.000000,1524865773.871450,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/about/gallery/','https://www.watchhill.ca/','Mozilla/5.0 (iPhone; CPU iPhone OS 11_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/11.0 Mobile/15E148 Safari/604.1','',NULL,NULL),(109456,0.000000,1524865755.599631,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/the-chantry/','https://www.watchhill.ca/','Mozilla/5.0 (iPhone; CPU iPhone OS 11_2_6 like Mac OS X) AppleWebKit/604.5.6 (KHTML, like Gecko) Version/11.0 Mobile/15D100 Safari/604.1','',NULL,NULL),(109455,0.000000,1524865754.629663,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/the-chantry/','https://www.watchhill.ca/','Mozilla/5.0 (iPhone; CPU iPhone OS 11_2_6 like Mac OS X) AppleWebKit/604.5.6 (KHTML, like Gecko) Version/11.0 Mobile/15D100 Safari/604.1','',NULL,NULL),(109454,0.000000,1524865741.524183,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/the-huron/','https://www.watchhill.ca/','Mozilla/5.0 (iPhone; CPU iPhone OS 11_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/11.0 Mobile/15E148 Safari/604.1','',NULL,NULL),(109453,0.000000,1524865739.169224,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/the-huron/','https://www.watchhill.ca/','Mozilla/5.0 (iPhone; CPU iPhone OS 11_2_6 like Mac OS X) AppleWebKit/604.5.6 (KHTML, like Gecko) Version/11.0 Mobile/15D100 Safari/604.1','',NULL,NULL),(109452,0.000000,1524865738.182694,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/the-huron/','https://www.watchhill.ca/','Mozilla/5.0 (iPhone; CPU iPhone OS 11_2_6 like Mac OS X) AppleWebKit/604.5.6 (KHTML, like Gecko) Version/11.0 Mobile/15D100 Safari/604.1','',NULL,NULL),(109451,0.000000,1524865708.075961,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/','https://www.google.ca/','Mozilla/5.0 (iPhone; CPU iPhone OS 11_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/11.0 Mobile/15E148 Safari/604.1','',NULL,NULL),(109450,0.000000,1524865706.684596,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/','https://www.google.ca/','Mozilla/5.0 (iPhone; CPU iPhone OS 11_2_6 like Mac OS X) AppleWebKit/604.5.6 (KHTML, like Gecko) Version/11.0 Mobile/15D100 Safari/604.1','',NULL,NULL),(109449,0.000000,1524862952.357159,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/about/your-hosts/','https://www.watchhill.ca/','Mozilla/5.0 (iPhone; CPU iPhone OS 11_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/11.0 Mobile/15E148 Safari/604.1','',NULL,NULL),(109448,0.000000,1524862917.822782,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/','https://www.google.ca/','Mozilla/5.0 (iPhone; CPU iPhone OS 11_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/11.0 Mobile/15E148 Safari/604.1','',NULL,NULL),(109447,0.000000,1524861831.962323,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://www.watchhill.ca/about/the-area/','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(109446,0.000000,1524858997.219795,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://www.watchhill.ca/robots.txt','','Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)','',NULL,NULL),(109445,0.000000,1524854222.348445,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/about/','https://www.watchhill.ca/','Mozilla/5.0 (iPad; CPU OS 9_3_5 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13G36 Safari/601.1','',NULL,NULL),(109444,0.000000,1524854138.781080,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://www.watchhill.ca/','','Mozilla/5.0 (iPad; CPU OS 9_3_5 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13G36 Safari/601.1','',NULL,NULL),(109443,0.000000,1524854138.782923,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/','https://www.google.ca/','Mozilla/5.0 (iPad; CPU OS 9_3_5 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13G36 Safari/601.1','',NULL,NULL),(109442,0.000000,1524851978.854171,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://watchhill.ca/2017/03/hello-world/','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(109441,0.000000,1524851970.946332,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://watchhill.ca/robots.txt','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(110724,0.000000,1525797309.726485,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://watchhill.ca/robots.txt','','Mozilla/5.0 (compatible; SemrushBot/1.2~bl; +http://www.semrush.com/bot.html)','',NULL,NULL),(110723,0.000000,1525797307.464499,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'http://watchhill.ca/robots.txt','','Mozilla/5.0 (compatible; SemrushBot/1.2~bl; +http://www.semrush.com/bot.html)','',NULL,NULL),(110722,0.000000,1525795710.364268,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/','https://www.bing.com/','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; Touch; rv:11.0) like Gecko','',NULL,NULL),(110721,0.000000,1525795708.024871,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'http://www.watchhill.ca/','https://www.bing.com/','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; Touch; rv:11.0) like Gecko','',NULL,NULL),(110720,0.000000,1525794344.945558,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/the-saugeen/','https://www.watchhill.ca/accommodations/','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.139 Safari/537.36','',NULL,NULL),(110719,0.000000,1525794341.599846,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/','https://www.watchhill.ca/rates-policies/','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.139 Safari/537.36','',NULL,NULL),(110718,0.000000,1525794300.458476,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/rates-policies/','https://www.watchhill.ca/about/gallery/','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.139 Safari/537.36','',NULL,NULL),(110717,0.000000,1525794295.678737,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/about/gallery/','https://www.watchhill.ca/','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.139 Safari/537.36','',NULL,NULL),(110716,0.000000,1525794274.024944,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/','','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.139 Safari/537.36','',NULL,NULL),(110715,0.000000,1525794272.919047,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://watchhill.ca/','','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.139 Safari/537.36','',NULL,NULL),(110305,0.000000,1525542526.838039,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'http://www.watchhill.ca/','','Mozilla/5.0 (Unknown; Linux x86_64) AppleWebKit/538.1 (KHTML, like Gecko) PhantomJS/2.1.1 Safari/538.1','',NULL,NULL),(110304,0.000000,1525537987.915786,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,1,0,0,'https://www.watchhill.ca/?foogallery=shared-spaces','','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2272.96 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(110303,0.000000,1525537485.535204,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,1,0,0,'https://www.watchhill.ca/?foogallery=huron-suite','','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2272.96 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(110302,0.000000,1525536983.313933,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,1,0,0,'https://www.watchhill.ca/?foogallery=activities','','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2272.96 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(110301,0.000000,1525534799.571025,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://www.watchhill.ca/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(110300,0.000000,1525534798.055815,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://watchhill.ca/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(110299,0.000000,1525534795.709968,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'http://watchhill.ca/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(110298,0.000000,1525532877.318547,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/contact/','https://www.watchhill.ca/','Mozilla/5.0 (Macintosh; Intel Mac OS X 10.7; rv:48.0) Gecko/20100101 Firefox/48.0','',NULL,NULL),(110297,0.000000,1525532875.181819,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/contact/','https://www.watchhill.ca/','Mozilla/5.0 (Macintosh; Intel Mac OS X 10.7; rv:48.0) Gecko/20100101 Firefox/48.0','',NULL,NULL),(110296,0.000000,1525532862.327353,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/','https://www.google.com/','Mozilla/5.0 (Macintosh; Intel Mac OS X 10.7; rv:48.0) Gecko/20100101 Firefox/48.0','',NULL,NULL),(110294,0.000000,1525530063.996541,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://www.watchhill.ca/robots.txt','','Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)','',NULL,NULL),(110295,0.000000,1525530067.729081,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://www.watchhill.ca/chantry-suite/','','Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)','',NULL,NULL),(110293,0.000000,1525525826.643457,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/rates-policies/','https://www.watchhill.ca/','Mozilla/5.0 (iPad; CPU OS 11_2 like Mac OS X) AppleWebKit/604.4.7 (KHTML, like Gecko) Version/11.0 Mobile/15C114 Safari/604.1','',NULL,NULL),(110292,0.000000,1525525811.381512,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/','https://www.google.ca/','Mozilla/5.0 (iPad; CPU OS 11_2 like Mac OS X) AppleWebKit/604.4.7 (KHTML, like Gecko) Version/11.0 Mobile/15C114 Safari/604.1','',NULL,NULL),(110291,0.000000,1525523935.988556,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/rates-policies/','https://www.watchhill.ca/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.139 Safari/537.36','',NULL,NULL),(110290,0.000000,1525523919.233973,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/','https://www.google.ca/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.139 Safari/537.36','',NULL,NULL),(110288,0.000000,1525516558.695810,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://www.watchhill.ca/','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(110289,0.000000,1525520882.127127,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,1,0,0,'https://www.watchhill.ca/robots.txt','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(110287,0.000000,1525513429.380637,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://www.watchhill.ca/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(110286,0.000000,1525513426.890620,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'http://www.watchhill.ca/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(110285,0.000000,1525511427.296812,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://www.watchhill.ca/about/history-of-watch-hill/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(110284,0.000000,1525497761.228148,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'http://watchhill.ca/wp-login.php','','Mozilla/5.0 (Windows NT 6.1; rv:52.0) Gecko/20100101 Firefox/52.0','',NULL,NULL),(110283,0.000000,1525497758.209457,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'http://watchhill.ca/?author=50','','Mozilla/5.0 (Windows NT 6.1; rv:52.0) Gecko/20100101 Firefox/52.0','',NULL,NULL),(110282,0.000000,1525497755.592338,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'http://watchhill.ca/?author=49','','Mozilla/5.0 (Windows NT 6.1; rv:52.0) Gecko/20100101 Firefox/52.0','',NULL,NULL),(110281,0.000000,1525497752.991189,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'http://watchhill.ca/?author=48','','Mozilla/5.0 (Windows NT 6.1; rv:52.0) Gecko/20100101 Firefox/52.0','',NULL,NULL),(110280,0.000000,1525497750.028915,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'http://watchhill.ca/?author=47','','Mozilla/5.0 (Windows NT 6.1; rv:52.0) Gecko/20100101 Firefox/52.0','',NULL,NULL),(110279,0.000000,1525497747.349614,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'http://watchhill.ca/?author=46','','Mozilla/5.0 (Windows NT 6.1; rv:52.0) Gecko/20100101 Firefox/52.0','',NULL,NULL),(110278,0.000000,1525497744.405355,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'http://watchhill.ca/?author=45','','Mozilla/5.0 (Windows NT 6.1; rv:52.0) Gecko/20100101 Firefox/52.0','',NULL,NULL),(110277,0.000000,1525497741.471975,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'http://watchhill.ca/?author=44','','Mozilla/5.0 (Windows NT 6.1; rv:52.0) Gecko/20100101 Firefox/52.0','',NULL,NULL),(110276,0.000000,1525497738.546609,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'http://watchhill.ca/?author=43','','Mozilla/5.0 (Windows NT 6.1; rv:52.0) Gecko/20100101 Firefox/52.0','',NULL,NULL),(110275,0.000000,1525497735.543600,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'http://watchhill.ca/?author=42','','Mozilla/5.0 (Windows NT 6.1; rv:52.0) Gecko/20100101 Firefox/52.0','',NULL,NULL),(110274,0.000000,1525497732.531316,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'http://watchhill.ca/?author=41','','Mozilla/5.0 (Windows NT 6.1; rv:52.0) Gecko/20100101 Firefox/52.0','',NULL,NULL),(110273,0.000000,1525497729.695119,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'http://watchhill.ca/?author=40','','Mozilla/5.0 (Windows NT 6.1; rv:52.0) Gecko/20100101 Firefox/52.0','',NULL,NULL),(110271,0.000000,1525497723.881017,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'http://watchhill.ca/?author=38','','Mozilla/5.0 (Windows NT 6.1; rv:52.0) Gecko/20100101 Firefox/52.0','',NULL,NULL),(110272,0.000000,1525497726.861538,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'http://watchhill.ca/?author=39','','Mozilla/5.0 (Windows NT 6.1; rv:52.0) Gecko/20100101 Firefox/52.0','',NULL,NULL),(110270,0.000000,1525497721.253173,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'http://watchhill.ca/?author=37','','Mozilla/5.0 (Windows NT 6.1; rv:52.0) Gecko/20100101 Firefox/52.0','',NULL,NULL),(110268,0.000000,1525497715.937739,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'http://watchhill.ca/?author=35','','Mozilla/5.0 (Windows NT 6.1; rv:52.0) Gecko/20100101 Firefox/52.0','',NULL,NULL),(110269,0.000000,1525497718.343857,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'http://watchhill.ca/?author=36','','Mozilla/5.0 (Windows NT 6.1; rv:52.0) Gecko/20100101 Firefox/52.0','',NULL,NULL),(110266,0.000000,1525497710.658821,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'http://watchhill.ca/?author=33','','Mozilla/5.0 (Windows NT 6.1; rv:52.0) Gecko/20100101 Firefox/52.0','',NULL,NULL),(110267,0.000000,1525497713.355129,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'http://watchhill.ca/?author=34','','Mozilla/5.0 (Windows NT 6.1; rv:52.0) Gecko/20100101 Firefox/52.0','',NULL,NULL),(110265,0.000000,1525497708.103305,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'http://watchhill.ca/?author=32','','Mozilla/5.0 (Windows NT 6.1; rv:52.0) Gecko/20100101 Firefox/52.0','',NULL,NULL),(110263,0.000000,1525497702.515903,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'http://watchhill.ca/?author=30','','Mozilla/5.0 (Windows NT 6.1; rv:52.0) Gecko/20100101 Firefox/52.0','',NULL,NULL),(110264,0.000000,1525497705.464652,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'http://watchhill.ca/?author=31','','Mozilla/5.0 (Windows NT 6.1; rv:52.0) Gecko/20100101 Firefox/52.0','',NULL,NULL),(110261,0.000000,1525497697.018616,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'http://watchhill.ca/?author=28','','Mozilla/5.0 (Windows NT 6.1; rv:52.0) Gecko/20100101 Firefox/52.0','',NULL,NULL),(110262,0.000000,1525497699.698026,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'http://watchhill.ca/?author=29','','Mozilla/5.0 (Windows NT 6.1; rv:52.0) Gecko/20100101 Firefox/52.0','',NULL,NULL),(110260,0.000000,1525497693.986436,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'http://watchhill.ca/?author=27','','Mozilla/5.0 (Windows NT 6.1; rv:52.0) Gecko/20100101 Firefox/52.0','',NULL,NULL),(110258,0.000000,1525497688.460135,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'http://watchhill.ca/?author=25','','Mozilla/5.0 (Windows NT 6.1; rv:52.0) Gecko/20100101 Firefox/52.0','',NULL,NULL),(110259,0.000000,1525497691.320613,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'http://watchhill.ca/?author=26','','Mozilla/5.0 (Windows NT 6.1; rv:52.0) Gecko/20100101 Firefox/52.0','',NULL,NULL),(110257,0.000000,1525497686.065373,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'http://watchhill.ca/?author=24','','Mozilla/5.0 (Windows NT 6.1; rv:52.0) Gecko/20100101 Firefox/52.0','',NULL,NULL),(110256,0.000000,1525497682.901465,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'http://watchhill.ca/?author=23','','Mozilla/5.0 (Windows NT 6.1; rv:52.0) Gecko/20100101 Firefox/52.0','',NULL,NULL),(110255,0.000000,1525497679.632769,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'http://watchhill.ca/?author=22','','Mozilla/5.0 (Windows NT 6.1; rv:52.0) Gecko/20100101 Firefox/52.0','',NULL,NULL),(110254,0.000000,1525497676.939960,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'http://watchhill.ca/?author=21','','Mozilla/5.0 (Windows NT 6.1; rv:52.0) Gecko/20100101 Firefox/52.0','',NULL,NULL),(110252,0.000000,1525497670.924156,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'http://watchhill.ca/?author=19','','Mozilla/5.0 (Windows NT 6.1; rv:52.0) Gecko/20100101 Firefox/52.0','',NULL,NULL),(110253,0.000000,1525497673.893746,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'http://watchhill.ca/?author=20','','Mozilla/5.0 (Windows NT 6.1; rv:52.0) Gecko/20100101 Firefox/52.0','',NULL,NULL),(110251,0.000000,1525497668.056317,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'http://watchhill.ca/?author=18','','Mozilla/5.0 (Windows NT 6.1; rv:52.0) Gecko/20100101 Firefox/52.0','',NULL,NULL),(110250,0.000000,1525497665.132113,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'http://watchhill.ca/?author=17','','Mozilla/5.0 (Windows NT 6.1; rv:52.0) Gecko/20100101 Firefox/52.0','',NULL,NULL),(110249,0.000000,1525497662.180153,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'http://watchhill.ca/?author=16','','Mozilla/5.0 (Windows NT 6.1; rv:52.0) Gecko/20100101 Firefox/52.0','',NULL,NULL),(110248,0.000000,1525497659.285961,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'http://watchhill.ca/?author=15','','Mozilla/5.0 (Windows NT 6.1; rv:52.0) Gecko/20100101 Firefox/52.0','',NULL,NULL),(110247,0.000000,1525497656.306212,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'http://watchhill.ca/?author=14','','Mozilla/5.0 (Windows NT 6.1; rv:52.0) Gecko/20100101 Firefox/52.0','',NULL,NULL),(110246,0.000000,1525497653.166916,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'http://watchhill.ca/?author=13','','Mozilla/5.0 (Windows NT 6.1; rv:52.0) Gecko/20100101 Firefox/52.0','',NULL,NULL),(110245,0.000000,1525497650.813241,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'http://watchhill.ca/?author=12','','Mozilla/5.0 (Windows NT 6.1; rv:52.0) Gecko/20100101 Firefox/52.0','',NULL,NULL),(110244,0.000000,1525497648.493816,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'http://watchhill.ca/?author=11','','Mozilla/5.0 (Windows NT 6.1; rv:52.0) Gecko/20100101 Firefox/52.0','',NULL,NULL),(110243,0.000000,1525497645.627535,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'http://watchhill.ca/?author=10','','Mozilla/5.0 (Windows NT 6.1; rv:52.0) Gecko/20100101 Firefox/52.0','',NULL,NULL),(110242,0.000000,1525497642.992537,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'http://watchhill.ca/?author=9','','Mozilla/5.0 (Windows NT 6.1; rv:52.0) Gecko/20100101 Firefox/52.0','',NULL,NULL),(110240,0.000000,1525497636.350659,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'http://watchhill.ca/?author=7','','Mozilla/5.0 (Windows NT 6.1; rv:52.0) Gecko/20100101 Firefox/52.0','',NULL,NULL),(110241,0.000000,1525497640.139354,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'http://watchhill.ca/?author=8','','Mozilla/5.0 (Windows NT 6.1; rv:52.0) Gecko/20100101 Firefox/52.0','',NULL,NULL),(110238,0.000000,1525497076.569832,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://www.watchhill.ca/contact/','http://watchhill.ca','Mozilla/5.0 (Windows NT 6.3; Win64; x64; rv:57.0) Gecko/20100101 Firefox/57.0','',NULL,NULL),(110239,0.000000,1525497207.659376,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'http://watchhill.ca/?author=4','','Mozilla/5.0 (Windows NT 6.1; rv:52.0) Gecko/20100101 Firefox/52.0','',NULL,NULL),(110237,0.000000,1525497060.676708,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://www.watchhill.ca/','https://watchhill.ca/','Mozilla/5.0 (Windows NT 6.3; Win64; x64; rv:57.0) Gecko/20100101 Firefox/57.0','',NULL,NULL),(110235,0.000000,1525497055.006605,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'http://watchhill.ca/','','Mozilla/5.0 (Windows NT 6.3; Win64; x64; rv:57.0) Gecko/20100101 Firefox/57.0','',NULL,NULL),(110236,0.000000,1525497057.470060,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://watchhill.ca/','','Mozilla/5.0 (Windows NT 6.3; Win64; x64; rv:57.0) Gecko/20100101 Firefox/57.0','',NULL,NULL),(110234,0.000000,1525495873.677491,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://watchhill.ca/robots.txt','','Mozilla/5.0 (compatible; AhrefsBot/5.2; +http://ahrefs.com/robot/)','',NULL,NULL),(110232,0.000000,1525491463.908108,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://www.watchhill.ca/robots.txt','','Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)','',NULL,NULL),(110233,0.000000,1525494656.622983,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://www.watchhill.ca/?foogallery=shared-spaces','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(110231,0.000000,1525482783.010208,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'http://www.watchhill.ca/','http://metallo-konstruktsii.ru/','Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; Win 9x 4.90; Creative)','',NULL,NULL),(110230,0.000000,1525482781.002699,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'http://www.watchhill.ca/','http://metallo-konstruktsii.ru/','Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; Win 9x 4.90; Creative)','',NULL,NULL),(110228,0.000000,1525469586.481240,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'http://www.watchhill.ca/','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(110229,0.000000,1525482779.289398,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'http://www.watchhill.ca/','http://metallo-konstruktsii.ru/','Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; Win 9x 4.90; Creative)','',NULL,NULL),(110227,0.000000,1525467331.959365,'\0\0\0\0\0\0\0\0\0\0ÿÿBfh',0,200,0,0,0,'https://www.watchhill.ca/','','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2623.75 Safari/537.36 Google Favicon','',NULL,NULL),(110226,0.000000,1525466580.729280,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/about/','https://www.watchhill.ca/','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_3) AppleWebKit/604.5.6 (KHTML, like Gecko) Version/11.0.3 Safari/604.5.6','',NULL,NULL),(110225,0.000000,1525466490.193841,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/','https://www.watchhill.ca/','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_3) AppleWebKit/604.5.6 (KHTML, like Gecko) Version/11.0.3 Safari/604.5.6','',NULL,NULL),(110224,0.000000,1525466440.834654,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/rates-policies/','https://www.watchhill.ca/','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_3) AppleWebKit/604.5.6 (KHTML, like Gecko) Version/11.0.3 Safari/604.5.6','',NULL,NULL),(110223,0.000000,1525466396.655499,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/','https://www.google.com/','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_3) AppleWebKit/604.5.6 (KHTML, like Gecko) Version/11.0.3 Safari/604.5.6','',NULL,NULL),(110222,0.000000,1525466339.911059,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'http://www.watchhill.ca/','','Mozilla/5.0 (compatible; DotBot/1.1; http://www.opensiteexplorer.org/dotbot, help@moz.com)','',NULL,NULL),(110220,0.000000,1525464294.398149,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://www.watchhill.ca/robots.txt','','Mozilla/5.0 (compatible; SemrushBot/1.2~bl; +http://www.semrush.com/bot.html)','',NULL,NULL),(110221,0.000000,1525465662.920664,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://www.watchhill.ca/accommodations/the-chantry/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(110219,0.000000,1525464292.382485,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'http://www.watchhill.ca/robots.txt','','Mozilla/5.0 (compatible; SemrushBot/1.2~bl; +http://www.semrush.com/bot.html)','',NULL,NULL),(110218,0.000000,1525462588.342836,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://www.watchhill.ca/robots.txt','','Mozilla/5.0 (compatible; DotBot/1.1; http://www.opensiteexplorer.org/dotbot, help@moz.com)','',NULL,NULL),(110216,0.000000,1525461632.448266,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://www.watchhill.ca/robots.txt','','Mozilla/5.0 (compatible; AhrefsBot/5.2; +http://ahrefs.com/robot/)','',NULL,NULL),(110217,0.000000,1525462586.590043,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'http://www.watchhill.ca/robots.txt','','Mozilla/5.0 (compatible; DotBot/1.1; http://www.opensiteexplorer.org/dotbot, help@moz.com)','',NULL,NULL),(110215,0.000000,1525460149.851751,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/the-saugeen/','https://www.watchhill.ca/accommodations/','Mozilla/5.0 (iPhone; CPU iPhone OS 11_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/11.0 Mobile/15E148 Safari/604.1','',NULL,NULL),(110213,0.000000,1525457047.536761,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://www.watchhill.ca/','','Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)','',NULL,NULL),(110214,0.000000,1525457047.910691,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://watchhill.ca/','','Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)','',NULL,NULL),(110212,0.000000,1525457046.581614,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'http://www.watchhill.ca/','','Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)','',NULL,NULL),(110210,0.000000,1525457043.391579,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://watchhill.ca/robots.txt','','Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)','',NULL,NULL),(110211,0.000000,1525457046.249539,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'http://watchhill.ca/','','Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)','',NULL,NULL),(110208,0.000000,1525457041.699541,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'http://watchhill.ca/robots.txt','','Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)','',NULL,NULL),(110209,0.000000,1525457043.154642,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://www.watchhill.ca/robots.txt','','Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)','',NULL,NULL),(110207,0.000000,1525457042.474577,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'http://www.watchhill.ca/robots.txt','','Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)','',NULL,NULL),(110205,0.000000,1525455617.297893,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'http://www.watchhill.ca/robots.txt','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(110206,0.000000,1525455619.001112,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://www.watchhill.ca/robots.txt','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(110204,0.000000,1525455609.964014,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://www.watchhill.ca/rates-policies/','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(110203,0.000000,1525455422.835093,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/','https://www.watchhill.ca/','Mozilla/5.0 (iPad; CPU OS 11_2_2 like Mac OS X) AppleWebKit/604.4.7 (KHTML, like Gecko) Version/11.0 Mobile/15C202 Safari/604.1','',NULL,NULL),(110202,0.000000,1525455407.706672,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/','https://www.google.ca/','Mozilla/5.0 (iPad; CPU OS 11_2_2 like Mac OS X) AppleWebKit/604.4.7 (KHTML, like Gecko) Version/11.0 Mobile/15C202 Safari/604.1','',NULL,NULL),(110201,0.000000,1525450811.939871,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/rates-policies/','https://www.watchhill.ca/accommodations/','Mozilla/5.0 (iPhone; CPU iPhone OS 11_2_1 like Mac OS X) AppleWebKit/604.4.7 (KHTML, like Gecko) Version/11.0 Mobile/15C153 Safari/604.1','',NULL,NULL),(110200,0.000000,1525450744.309354,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/','https://www.watchhill.ca/','Mozilla/5.0 (iPhone; CPU iPhone OS 11_2_1 like Mac OS X) AppleWebKit/604.4.7 (KHTML, like Gecko) Version/11.0 Mobile/15C153 Safari/604.1','',NULL,NULL),(110199,0.000000,1525450719.308040,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/','','Mozilla/5.0 (iPhone; CPU iPhone OS 11_2_1 like Mac OS X) AppleWebKit/604.4.7 (KHTML, like Gecko) Version/11.0 Mobile/15C153 Safari/604.1','',NULL,NULL),(110198,0.000000,1525450717.973753,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://watchhill.ca/','','Mozilla/5.0 (iPhone; CPU iPhone OS 11_2_1 like Mac OS X) AppleWebKit/604.4.7 (KHTML, like Gecko) Version/11.0 Mobile/15C153 Safari/604.1','',NULL,NULL),(110197,0.000000,1525450715.053767,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'http://watchhill.ca/','','Mozilla/5.0 (iPhone; CPU iPhone OS 11_2_1 like Mac OS X) AppleWebKit/604.4.7 (KHTML, like Gecko) Version/11.0 Mobile/15C153 Safari/604.1','',NULL,NULL),(110196,0.000000,1525450028.536841,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://watchhill.ca/robots.txt','','Mozilla/5.0 (compatible; SemrushBot/1.2~bl; +http://www.semrush.com/bot.html)','',NULL,NULL),(110195,0.000000,1525450026.321556,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'http://watchhill.ca/robots.txt','','Mozilla/5.0 (compatible; SemrushBot/1.2~bl; +http://www.semrush.com/bot.html)','',NULL,NULL),(110194,0.000000,1525448076.656650,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,1,0,0,'https://www.watchhill.ca/feed/','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(110193,0.000000,1525447915.982931,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://www.watchhill.ca/rates-policies/','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(110192,0.000000,1525447676.758609,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,1,0,0,'https://www.watchhill.ca/','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(110191,0.000000,1525446640.816643,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://www.watchhill.ca/1m1a1575/','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(110190,0.000000,1525444463.963168,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/','https://www.google.ca/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.139 Safari/537.36','',NULL,NULL),(110189,0.000000,1525444390.572712,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,404,0,0,0,'https://www.watchhill.ca/wp-content/plugins/foobox-image-lightbox/free/js/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(110188,0.000000,1525444389.105155,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'http://www.watchhill.ca/wp-content/plugins/foobox-image-lightbox/free/js/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(110187,0.000000,1525444287.719610,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/','https://www.google.ca/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.139 Safari/537.36','',NULL,NULL),(110185,0.000000,1525443938.861687,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://www.watchhill.ca/xmlrpc.php?rsd','','Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)','',NULL,NULL),(110186,0.000000,1525444024.331582,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/','https://www.watchhill.ca/accommodations/the-huron/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.139 Safari/537.36','',NULL,NULL),(110184,0.000000,1525443934.686614,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://www.watchhill.ca/robots.txt','','Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)','',NULL,NULL),(110183,0.000000,1525443927.534116,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/the-huron/','https://www.watchhill.ca/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.139 Safari/537.36','',NULL,NULL),(110182,0.000000,1525443925.654626,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/the-huron/','https://www.watchhill.ca/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.139 Safari/537.36','',NULL,NULL),(110181,0.000000,1525443767.454317,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/contact/','https://www.watchhill.ca/accommodations/the-huron/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.139 Safari/537.36','',NULL,NULL),(110180,0.000000,1525443691.064678,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/contact/','https://www.watchhill.ca/accommodations/the-huron/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.139 Safari/537.36','',NULL,NULL),(110179,0.000000,1525443561.505303,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/the-huron/','https://www.watchhill.ca/rates-policies/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.139 Safari/537.36','',NULL,NULL),(110178,0.000000,1525443533.196432,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/rates-policies/','https://www.watchhill.ca/accommodations/the-huron/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.139 Safari/537.36','',NULL,NULL),(110177,0.000000,1525443522.257241,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/the-huron/','https://www.watchhill.ca/accommodations/the-saugeen/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.139 Safari/537.36','',NULL,NULL),(110176,0.000000,1525443483.580289,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/the-saugeen/','https://www.watchhill.ca/accommodations/the-huron/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.139 Safari/537.36','',NULL,NULL),(110175,0.000000,1525443454.331172,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/the-huron/','https://www.watchhill.ca/accommodations/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.139 Safari/537.36','',NULL,NULL),(110174,0.000000,1525443450.588704,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/','https://www.watchhill.ca/accommodations/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.139 Safari/537.36','',NULL,NULL),(110172,0.000000,1525443444.021321,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/','https://www.watchhill.ca/accommodations/harbour-suite/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.139 Safari/537.36','',NULL,NULL),(110173,0.000000,1525443447.481031,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/','https://www.watchhill.ca/accommodations/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.139 Safari/537.36','',NULL,NULL),(110171,0.000000,1525443438.780939,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/harbour-suite/','https://www.watchhill.ca/accommodations/the-chantry/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.139 Safari/537.36','',NULL,NULL),(110170,0.000000,1525443438.779282,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/harbour-suite/','https://www.watchhill.ca/accommodations/the-chantry/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.139 Safari/537.36','',NULL,NULL),(110169,0.000000,1525443426.706120,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/the-chantry/','https://www.watchhill.ca/accommodations/the-huron/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.139 Safari/537.36','',NULL,NULL),(110168,0.000000,1525443405.522165,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/the-huron/','https://www.watchhill.ca/accommodations/the-saugeen/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.139 Safari/537.36','',NULL,NULL),(110167,0.000000,1525443380.805519,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/the-saugeen/','https://www.watchhill.ca/rates-policies/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.139 Safari/537.36','',NULL,NULL),(110166,0.000000,1525443310.750790,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/rates-policies/','https://www.watchhill.ca/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.139 Safari/537.36','',NULL,NULL),(110164,0.000000,1525443259.271140,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/','https://www.google.ca/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.139 Safari/537.36','',NULL,NULL),(110165,0.000000,1525443279.022172,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/','https://www.watchhill.ca/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.139 Safari/537.36','',NULL,NULL),(110163,0.000000,1525434505.563948,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/the-saugeen/','https://www.watchhill.ca/accommodations/','Mozilla/5.0 (iPhone; CPU iPhone OS 11_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/11.0 Mobile/15E148 Safari/604.1','',NULL,NULL),(110162,0.000000,1525434470.639919,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/','https://www.watchhill.ca/rates-policies/','Mozilla/5.0 (iPhone; CPU iPhone OS 11_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/11.0 Mobile/15E148 Safari/604.1','',NULL,NULL),(110161,0.000000,1525434420.468935,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/rates-policies/','https://www.watchhill.ca/','Mozilla/5.0 (iPhone; CPU iPhone OS 11_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/11.0 Mobile/15E148 Safari/604.1','',NULL,NULL),(110160,0.000000,1525434398.243882,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/','','Mozilla/5.0 (iPhone; CPU iPhone OS 11_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/11.0 Mobile/15E148 Safari/604.1','',NULL,NULL),(110159,0.000000,1525434396.550641,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://watchhill.ca/','','Mozilla/5.0 (iPhone; CPU iPhone OS 11_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/11.0 Mobile/15E148 Safari/604.1','',NULL,NULL),(110158,0.000000,1525434393.921873,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'http://watchhill.ca/','','Mozilla/5.0 (iPhone; CPU iPhone OS 11_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/11.0 Mobile/15E148 Safari/604.1','',NULL,NULL),(110157,0.000000,1525430759.020155,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,404,1,0,0,'https://www.watchhill.ca/.well-known/assetlinks.json','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(110155,0.000000,1525429229.264458,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://www.watchhill.ca/accommodations/','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(110156,0.000000,1525430328.434651,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,1,0,0,'https://www.watchhill.ca/','','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; Google Web Preview Analytics) Chrome/41.0.2272.118 Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(110154,0.000000,1525426213.581591,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://www.watchhill.ca/contact/','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:59.0) Gecko/20100101 Firefox/59.0','',NULL,NULL),(110152,0.000000,1525424921.143769,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://www.watchhill.ca/robots.txt','','Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)','',NULL,NULL),(110153,0.000000,1525426211.254605,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://www.watchhill.ca/contact','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:59.0) Gecko/20100101 Firefox/59.0','',NULL,NULL),(110151,0.000000,1525418403.036544,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://www.watchhill.ca/about/your-hosts/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(110150,0.000000,1525416524.440386,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://www.watchhill.ca/','','Mozilla/5.0 (compatible; NetcraftSurveyAgent/1.0; +info@netcraft.com)','',NULL,NULL),(110149,0.000000,1525416518.140616,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'http://www.watchhill.ca/','','Mozilla/5.0 (compatible; NetcraftSurveyAgent/1.0; +info@netcraft.com)','',NULL,NULL),(110148,0.000000,1525413305.969519,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,1,0,0,'https://watchhill.ca/','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(110147,0.000000,1525413304.023439,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,1,0,0,'http://watchhill.ca/','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(110146,0.000000,1525411866.965709,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,1,0,0,'https://www.watchhill.ca/','','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2272.96 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(110145,0.000000,1525411864.432309,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,1,0,0,'https://watchhill.ca/','','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2272.96 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(110143,0.000000,1525409202.699461,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'http://www.watchhill.ca/','','MauiBot (crawler.feedback+wc@gmail.com)','',NULL,NULL),(110144,0.000000,1525409452.576043,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,1,0,0,'https://www.watchhill.ca/sitemap.xml','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(110141,0.000000,1525409132.065547,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'http://www.watchhill.ca/robots.txt','','MauiBot (crawler.feedback+wc@gmail.com)','',NULL,NULL),(110142,0.000000,1525409134.320567,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://www.watchhill.ca/robots.txt','','MauiBot (crawler.feedback+wc@gmail.com)','',NULL,NULL),(110139,0.000000,1525406172.579460,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://mail.watchhill.ca/','','Mozilla/5.0 (compatible; NetcraftSurveyAgent/1.0; +info@netcraft.com)','',NULL,NULL),(110140,0.000000,1525406178.867872,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://www.watchhill.ca/','','Mozilla/5.0 (compatible; NetcraftSurveyAgent/1.0; +info@netcraft.com)','',NULL,NULL),(110137,0.000000,1525404093.561086,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://www.watchhill.ca/1m1a1266_b/','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(110138,0.000000,1525406166.513043,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'http://mail.watchhill.ca/','','Mozilla/5.0 (compatible; NetcraftSurveyAgent/1.0; +info@netcraft.com)','',NULL,NULL),(110135,0.000000,1525404069.668551,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://www.watchhill.ca/robots.txt','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(110136,0.000000,1525404071.503732,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://www.watchhill.ca/robots.txt','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(110134,0.000000,1525402370.387080,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://www.watchhill.ca/','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(110132,0.000000,1525395543.393593,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://www.watchhill.ca/','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(110133,0.000000,1525395972.534730,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://www.watchhill.ca/accommodations/','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(110131,0.000000,1525394475.495358,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://www.watchhill.ca/','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/11.1 Safari/605.1.15','',NULL,NULL),(110128,0.000000,1525393424.361458,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://www.watchhill.ca/robots.txt','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(110129,0.000000,1525393425.378662,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'http://www.watchhill.ca/robots.txt','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(110130,0.000000,1525393426.797260,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://www.watchhill.ca/robots.txt','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(110127,0.000000,1525393421.872459,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'http://www.watchhill.ca/robots.txt','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(110126,0.000000,1525393420.154127,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://www.watchhill.ca/robots.txt','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(110125,0.000000,1525393418.608721,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'http://www.watchhill.ca/robots.txt','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(110124,0.000000,1525393413.090235,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://www.watchhill.ca/author/richard/','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(110123,0.000000,1525391039.671461,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/contact/','https://www.watchhill.ca/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.139 Safari/537.36','',NULL,NULL),(110122,0.000000,1525391029.229016,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/','https://www.watchhill.ca/accommodations/the-huron/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.139 Safari/537.36','',NULL,NULL),(110121,0.000000,1525390664.982354,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/the-huron/','https://www.watchhill.ca/accommodations/the-saugeen/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.139 Safari/537.36','',NULL,NULL),(110120,0.000000,1525390638.572620,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/the-saugeen/','https://www.watchhill.ca/rates-policies/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.139 Safari/537.36','',NULL,NULL),(110578,0.000000,1525736461.126607,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'http://www.watchhill.ca/robots.txt','','Mozilla/5.0 (compatible; Daum/4.1; +http://cs.daum.net/faq/15/4118.html?faqId=28966)','',NULL,NULL),(110577,0.000000,1525736447.582024,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/the-chantry/','https://www.watchhill.ca/accommodations/the-saugeen/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.36 Edge/16.16299','',NULL,NULL),(110576,0.000000,1525736436.041361,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/the-saugeen/','https://www.watchhill.ca/accommodations/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.36 Edge/16.16299','',NULL,NULL),(110575,0.000000,1525736427.901114,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/','https://www.watchhill.ca/accommodations/the-chantry/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.36 Edge/16.16299','',NULL,NULL),(110574,0.000000,1525736361.841289,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/the-chantry/','https://www.watchhill.ca/accommodations/the-huron/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.36 Edge/16.16299','',NULL,NULL),(110573,0.000000,1525736360.713978,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/','https://www.watchhill.ca/accommodations/the-huron/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.36 Edge/16.16299','',NULL,NULL),(110572,0.000000,1525736348.880924,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/the-huron/','https://www.watchhill.ca/accommodations/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.36 Edge/16.16299','',NULL,NULL),(110571,0.000000,1525736337.970592,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/','https://www.watchhill.ca/accommodations/harbour-suite/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.36 Edge/16.16299','',NULL,NULL),(110570,0.000000,1525736303.847685,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/harbour-suite/','https://www.watchhill.ca/accommodations/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.36 Edge/16.16299','',NULL,NULL),(110569,0.000000,1525736289.495277,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/','https://www.watchhill.ca/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.36 Edge/16.16299','',NULL,NULL),(110568,0.000000,1525736279.190213,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.36 Edge/16.16299','',NULL,NULL),(110567,0.000000,1525736278.018608,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://watchhill.ca/','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.36 Edge/16.16299','',NULL,NULL),(110566,0.000000,1525736275.828228,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'http://watchhill.ca/','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.36 Edge/16.16299','',NULL,NULL),(110565,0.000000,1525734904.419241,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/the-chantry/','https://www.watchhill.ca/accommodations/','Mozilla/5.0 (iPad; CPU OS 11_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/11.0 Mobile/15E148 Safari/604.1','',NULL,NULL),(110564,0.000000,1525734833.731842,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/','https://www.watchhill.ca/','Mozilla/5.0 (iPad; CPU OS 11_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/11.0 Mobile/15E148 Safari/604.1','',NULL,NULL),(110563,0.000000,1525734792.056933,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/about/','https://www.watchhill.ca/','Mozilla/5.0 (Linux; Android 7.1.1; SM-T560NU Build/NMF26X; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/66.0.3359.126 Safari/537.36','',NULL,NULL),(110562,0.000000,1525734711.302316,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/rates-policies/','https://www.watchhill.ca/','Mozilla/5.0 (Linux; Android 7.1.1; SM-T560NU Build/NMF26X; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/66.0.3359.126 Safari/537.36','',NULL,NULL),(110561,0.000000,1525734695.628046,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/','','Mozilla/5.0 (Linux; Android 7.1.1; SM-T560NU Build/NMF26X; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/66.0.3359.126 Safari/537.36','',NULL,NULL),(110560,0.000000,1525734694.163659,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://watchhill.ca/','','Mozilla/5.0 (Linux; Android 7.1.1; SM-T560NU Build/NMF26X; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/66.0.3359.126 Safari/537.36','',NULL,NULL),(110559,0.000000,1525734692.146143,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'http://watchhill.ca/','','Mozilla/5.0 (Linux; Android 7.1.1; SM-T560NU Build/NMF26X; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/66.0.3359.126 Safari/537.36','',NULL,NULL),(110558,0.000000,1525734111.392787,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/','https://www.google.ca/','Mozilla/5.0 (iPad; CPU OS 11_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/11.0 Mobile/15E148 Safari/604.1','',NULL,NULL),(110557,0.000000,1525733737.731793,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,1,0,0,'https://watchhill.ca/robots.txt','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(110556,0.000000,1525733735.748082,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,1,0,0,'http://watchhill.ca/robots.txt','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(110555,0.000000,1525733404.494883,'\0\0\0\0\0\0\0\0\0\0ÿÿBfj',0,200,0,0,0,'https://www.watchhill.ca/','','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2623.75 Safari/537.36 Google Favicon','',NULL,NULL),(110553,0.000000,1525733166.637494,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://www.watchhill.ca/robots.txt','','Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)','',NULL,NULL),(110554,0.000000,1525733367.902754,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,1,0,0,'https://www.watchhill.ca/image-sitemap-1.xml','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(110552,0.000000,1525732076.213053,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,404,0,0,0,'https://www.watchhill.ca/wp-content/plugins/foobox-image-lightbox/free/js/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(110551,0.000000,1525732076.918919,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'http://www.watchhill.ca/robots.txt','','Mozilla/5.0 (Windows NT 5.1; rv:6.0.2) Gecko/20100101 Firefox/6.0.2','',NULL,NULL),(110550,0.000000,1525732073.011009,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'http://www.watchhill.ca/wp-content/plugins/foobox-image-lightbox/free/js/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(110549,0.000000,1525730172.469457,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,1,0,0,'https://www.watchhill.ca/','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(110548,0.000000,1525729751.652413,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/rates-policies/','https://www.watchhill.ca/','Mozilla/5.0 (Macintosh; Intel Mac OS X 10.9; rv:59.0) Gecko/20100101 Firefox/59.0','',NULL,NULL),(110546,0.000000,1525729715.844343,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://watchhill.ca/','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10.9; rv:59.0) Gecko/20100101 Firefox/59.0','',NULL,NULL),(110547,0.000000,1525729716.998422,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10.9; rv:59.0) Gecko/20100101 Firefox/59.0','',NULL,NULL),(110545,0.000000,1525729713.706634,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'http://watchhill.ca/','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10.9; rv:59.0) Gecko/20100101 Firefox/59.0','',NULL,NULL),(110543,0.000000,1525729116.658619,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://www.watchhill.ca/robots.txt','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(110544,0.000000,1525729118.691591,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://www.watchhill.ca/robots.txt','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(110542,0.000000,1525727877.908959,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/rates-policies/','https://www.watchhill.ca/','Mozilla/5.0 (iPhone; CPU iPhone OS 11_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E216 [FBAN/FBIOS;FBAV/170.1.0.80.91;FBBV/106613464;FBDV/iPhone7,2;FBMD/iPhone;FBSN/iOS;FBSV/11.3;FBSS/2;FBCR/Bell;FBID/phone;FBLC/fr_FR;FBOP/5;FBRV/0]','',NULL,NULL),(110541,0.000000,1525727855.672664,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/','','Mozilla/5.0 (iPhone; CPU iPhone OS 11_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E216 [FBAN/FBIOS;FBAV/170.1.0.80.91;FBBV/106613464;FBDV/iPhone7,2;FBMD/iPhone;FBSN/iOS;FBSV/11.3;FBSS/2;FBCR/Bell;FBID/phone;FBLC/fr_FR;FBOP/5;FBRV/0]','',NULL,NULL),(110540,0.000000,1525727854.718527,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://www.watchhill.ca/','','Mozilla/5.0 (iPhone; CPU iPhone OS 11_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E216 [FBAN/FBIOS;FBAV/170.1.0.80.91;FBBV/106613464;FBDV/iPhone7,2;FBMD/iPhone;FBSN/iOS;FBSV/11.3;FBSS/2;FBCR/Bell;FBID/phone;FBLC/fr_FR;FBOP/5;FBRV/0]','',NULL,NULL),(110539,0.000000,1525727853.331718,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://watchhill.ca/','','Mozilla/5.0 (iPhone; CPU iPhone OS 11_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E216 [FBAN/FBIOS;FBAV/170.1.0.80.91;FBBV/106613464;FBDV/iPhone7,2;FBMD/iPhone;FBSN/iOS;FBSV/11.3;FBSS/2;FBCR/Bell;FBID/phone;FBLC/fr_FR;FBOP/5;FBRV/0]','',NULL,NULL),(110538,0.000000,1525727851.072051,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'http://watchhill.ca/','','Mozilla/5.0 (iPhone; CPU iPhone OS 11_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E216 [FBAN/FBIOS;FBAV/170.1.0.80.91;FBBV/106613464;FBDV/iPhone7,2;FBMD/iPhone;FBSN/iOS;FBSV/11.3;FBSS/2;FBCR/Bell;FBID/phone;FBLC/fr_FR;FBOP/5;FBRV/0]','',NULL,NULL),(110537,0.000000,1525727346.442134,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/rates-policies/','https://www.watchhill.ca/','Mozilla/5.0 (iPad; CPU OS 10_3_3 like Mac OS X) AppleWebKit/603.3.8 (KHTML, like Gecko) Version/10.0 Mobile/14G60 Safari/602.1','',NULL,NULL),(110536,0.000000,1525727344.709041,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/rates-policies/','https://www.watchhill.ca/','Mozilla/5.0 (iPad; CPU OS 10_3_3 like Mac OS X) AppleWebKit/603.3.8 (KHTML, like Gecko) Version/10.0 Mobile/14G60 Safari/602.1','',NULL,NULL),(110535,0.000000,1525727325.308070,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/','','Mozilla/5.0 (iPad; CPU OS 10_3_3 like Mac OS X) AppleWebKit/603.3.8 (KHTML, like Gecko) Version/10.0 Mobile/14G60 Safari/602.1','',NULL,NULL),(110534,0.000000,1525727323.588266,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://watchhill.ca/','','Mozilla/5.0 (iPad; CPU OS 10_3_3 like Mac OS X) AppleWebKit/603.3.8 (KHTML, like Gecko) Version/10.0 Mobile/14G60 Safari/602.1','',NULL,NULL),(110533,0.000000,1525727321.325756,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'http://watchhill.ca/','','Mozilla/5.0 (iPad; CPU OS 10_3_3 like Mac OS X) AppleWebKit/603.3.8 (KHTML, like Gecko) Version/10.0 Mobile/14G60 Safari/602.1','',NULL,NULL),(110532,0.000000,1525726196.794310,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/the-huron/','https://www.watchhill.ca/accommodations/the-saugeen/','Mozilla/5.0 (iPad; CPU OS 11_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/11.0 Mobile/15E148 Safari/604.1','',NULL,NULL),(110531,0.000000,1525726121.154279,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/the-saugeen/','https://www.watchhill.ca/accommodations/the-huron/','Mozilla/5.0 (iPad; CPU OS 11_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/11.0 Mobile/15E148 Safari/604.1','',NULL,NULL),(110530,0.000000,1525726119.687971,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/the-saugeen/','https://www.watchhill.ca/accommodations/the-huron/','Mozilla/5.0 (iPad; CPU OS 11_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/11.0 Mobile/15E148 Safari/604.1','',NULL,NULL),(110529,0.000000,1525726118.690957,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/the-saugeen/','https://www.watchhill.ca/accommodations/the-huron/','Mozilla/5.0 (iPad; CPU OS 11_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/11.0 Mobile/15E148 Safari/604.1','',NULL,NULL),(110528,0.000000,1525726117.679053,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/the-saugeen/','https://www.watchhill.ca/accommodations/the-huron/','Mozilla/5.0 (iPad; CPU OS 11_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/11.0 Mobile/15E148 Safari/604.1','',NULL,NULL),(110527,0.000000,1525726116.703182,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/the-saugeen/','https://www.watchhill.ca/accommodations/the-huron/','Mozilla/5.0 (iPad; CPU OS 11_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/11.0 Mobile/15E148 Safari/604.1','',NULL,NULL),(110526,0.000000,1525726088.116461,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/the-huron/','https://www.watchhill.ca/','Mozilla/5.0 (iPad; CPU OS 11_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/11.0 Mobile/15E148 Safari/604.1','',NULL,NULL),(110525,0.000000,1525726079.410277,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/','','Mozilla/5.0 (iPad; CPU OS 11_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/11.0 Mobile/15E148 Safari/604.1','',NULL,NULL),(110524,0.000000,1525725776.501444,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/the-chantry/','https://www.watchhill.ca/accommodations/','Mozilla/5.0 (iPhone; CPU iPhone OS 11_2_6 like Mac OS X) AppleWebKit/604.1.34 (KHTML, like Gecko) GSA/48.0.193557427 Mobile/15D100 Safari/604.1','',NULL,NULL),(110523,0.000000,1525725718.403385,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/the-huron/','https://www.watchhill.ca/accommodations/','Mozilla/5.0 (iPhone; CPU iPhone OS 11_2_6 like Mac OS X) AppleWebKit/604.1.34 (KHTML, like Gecko) GSA/48.0.193557427 Mobile/15D100 Safari/604.1','',NULL,NULL),(110522,0.000000,1525725704.460335,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/','https://www.watchhill.ca/','Mozilla/5.0 (iPhone; CPU iPhone OS 11_2_6 like Mac OS X) AppleWebKit/604.1.34 (KHTML, like Gecko) GSA/48.0.193557427 Mobile/15D100 Safari/604.1','',NULL,NULL),(110521,0.000000,1525725679.032867,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/','','Mozilla/5.0 (iPhone; CPU iPhone OS 11_2_6 like Mac OS X) AppleWebKit/604.1.34 (KHTML, like Gecko) GSA/48.0.193557427 Mobile/15D100 Safari/604.1','',NULL,NULL),(110520,0.000000,1525725677.445196,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://watchhill.ca/','','Mozilla/5.0 (iPhone; CPU iPhone OS 11_2_6 like Mac OS X) AppleWebKit/604.1.34 (KHTML, like Gecko) GSA/48.0.193557427 Mobile/15D100 Safari/604.1','',NULL,NULL),(110519,0.000000,1525725675.093401,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'http://watchhill.ca/','','Mozilla/5.0 (iPhone; CPU iPhone OS 11_2_6 like Mac OS X) AppleWebKit/604.1.34 (KHTML, like Gecko) GSA/48.0.193557427 Mobile/15D100 Safari/604.1','',NULL,NULL),(110518,0.000000,1525723377.404535,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/the-chantry/','https://www.watchhill.ca/accommodations/the-huron/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.36','',NULL,NULL),(110517,0.000000,1525723338.917515,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/rates-policies/','https://www.watchhill.ca/','Mozilla/5.0 (iPad; CPU OS 11_2_6 like Mac OS X) AppleWebKit/604.1.34 (KHTML, like Gecko) CriOS/66.0.3359.122 Mobile/15D100 Safari/604.1','',NULL,NULL),(110516,0.000000,1525723330.076118,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/the-huron/','https://www.watchhill.ca/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.36','',NULL,NULL),(110515,0.000000,1525723314.364195,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/','','Mozilla/5.0 (iPad; CPU OS 11_2_6 like Mac OS X) AppleWebKit/604.1.34 (KHTML, like Gecko) CriOS/66.0.3359.122 Mobile/15D100 Safari/604.1','',NULL,NULL),(110514,0.000000,1525723312.615953,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://watchhill.ca/','','Mozilla/5.0 (iPad; CPU OS 11_2_6 like Mac OS X) AppleWebKit/604.1.34 (KHTML, like Gecko) CriOS/66.0.3359.122 Mobile/15D100 Safari/604.1','',NULL,NULL),(110512,0.000000,1525723216.126853,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.36','',NULL,NULL),(110513,0.000000,1525723311.061395,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'http://watchhill.ca/','','Mozilla/5.0 (iPad; CPU OS 11_2_6 like Mac OS X) AppleWebKit/604.1.34 (KHTML, like Gecko) CriOS/66.0.3359.122 Mobile/15D100 Safari/604.1','',NULL,NULL),(110511,0.000000,1525723214.743985,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://watchhill.ca/','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.36','',NULL,NULL),(110510,0.000000,1525723208.137065,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'http://watchhill.ca/','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.36','',NULL,NULL),(110509,0.000000,1525721507.908330,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/','https://www.google.ca/','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.139 Safari/537.36','',NULL,NULL),(110508,0.000000,1525721354.490717,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/the-chantry/','https://www.watchhill.ca/accommodations/','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.139 Safari/537.36','',NULL,NULL),(110507,0.000000,1525721347.025393,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/the-huron/','https://www.watchhill.ca/accommodations/','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.139 Safari/537.36','',NULL,NULL),(110505,0.000000,1525721328.412946,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/','https://www.google.ca/','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.139 Safari/537.36','',NULL,NULL),(110506,0.000000,1525721335.217068,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/','https://www.watchhill.ca/','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.139 Safari/537.36','',NULL,NULL),(110504,0.000000,1525721319.060092,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://www.watchhill.ca/','https://www.google.ca/','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.139 Safari/537.36','',NULL,NULL),(110503,0.000000,1525720845.914873,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/harbour-suite/','https://www.watchhill.ca/','Mozilla/5.0 (iPad; CPU OS 11_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/11.0 Mobile/15E148 Safari/604.1','',NULL,NULL),(110502,0.000000,1525720816.116935,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://www.watchhill.ca/','','Mozilla/5.0 (iPad; CPU OS 11_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/11.0 Mobile/15E148 Safari/604.1','',NULL,NULL),(110501,0.000000,1525720816.490932,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/','https://www.google.ca/','Mozilla/5.0 (iPad; CPU OS 11_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/11.0 Mobile/15E148 Safari/604.1','',NULL,NULL),(110500,0.000000,1525720125.115886,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/the-saugeen/','https://www.watchhill.ca/accommodations/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.139 Safari/537.36','',NULL,NULL),(110499,0.000000,1525720115.154841,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/','https://www.watchhill.ca/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.139 Safari/537.36','',NULL,NULL),(110498,0.000000,1525720113.296679,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/','https://www.watchhill.ca/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.139 Safari/537.36','',NULL,NULL),(110497,0.000000,1525720087.265706,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/rates-policies/','https://www.watchhill.ca/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.139 Safari/537.36','',NULL,NULL),(110496,0.000000,1525720075.601185,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.139 Safari/537.36','',NULL,NULL),(110495,0.000000,1525720074.315215,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://watchhill.ca/','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.139 Safari/537.36','',NULL,NULL),(110494,0.000000,1525720072.116300,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'http://watchhill.ca/','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.139 Safari/537.36','',NULL,NULL),(110493,0.000000,1525719414.465664,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,1,0,0,'https://watchhill.ca/','','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2272.96 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(110491,0.000000,1525718644.388108,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/','','Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; rv:11.0) like Gecko','',NULL,NULL),(110492,0.000000,1525719412.526989,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,1,0,0,'https://watchhill.ca/robots.txt','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(110490,0.000000,1525718642.884866,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://watchhill.ca/','','Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; rv:11.0) like Gecko','',NULL,NULL),(110489,0.000000,1525718640.805694,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'http://watchhill.ca/','','Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; rv:11.0) like Gecko','',NULL,NULL),(110488,0.000000,1525718509.483729,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/rates-policies/','https://www.watchhill.ca/','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.139 Safari/537.36','',NULL,NULL),(110486,0.000000,1525718496.734563,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://watchhill.ca/','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.139 Safari/537.36','',NULL,NULL),(110487,0.000000,1525718497.847274,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.139 Safari/537.36','',NULL,NULL),(110485,0.000000,1525718495.666539,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'http://watchhill.ca/','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.139 Safari/537.36','',NULL,NULL),(110484,0.000000,1525718328.644448,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/rates-policies/','https://www.watchhill.ca/','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/11.1 Safari/605.1.15','',NULL,NULL),(110483,0.000000,1525718317.419507,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/11.1 Safari/605.1.15','',NULL,NULL),(110482,0.000000,1525718316.012531,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://watchhill.ca/','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/11.1 Safari/605.1.15','',NULL,NULL),(110481,0.000000,1525718313.994744,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'http://watchhill.ca/','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/11.1 Safari/605.1.15','',NULL,NULL),(110480,0.000000,1525716758.126037,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/rates-policies/','https://www.watchhill.ca/','Mozilla/5.0 (Linux; Android 7.0; SM-G930W8 Build/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/66.0.3359.126 Mobile Safari/537.36','',NULL,NULL),(110479,0.000000,1525716747.725787,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/','https://www.watchhill.ca/','Mozilla/5.0 (Linux; Android 7.0; SM-G930W8 Build/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/66.0.3359.126 Mobile Safari/537.36','',NULL,NULL),(110478,0.000000,1525716737.548596,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/','','Mozilla/5.0 (Linux; Android 7.0; SM-G930W8 Build/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/66.0.3359.126 Mobile Safari/537.36','',NULL,NULL),(110477,0.000000,1525716736.033961,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://watchhill.ca/','','Mozilla/5.0 (Linux; Android 7.0; SM-G930W8 Build/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/66.0.3359.126 Mobile Safari/537.36','',NULL,NULL),(110476,0.000000,1525716733.796609,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'http://watchhill.ca/','','Mozilla/5.0 (Linux; Android 7.0; SM-G930W8 Build/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/66.0.3359.126 Mobile Safari/537.36','',NULL,NULL),(110879,0.000000,1525840005.218511,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,1,0,0,'https://www.watchhill.ca/','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(110878,0.000000,1525839995.295029,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,1,0,0,'https://www.watchhill.ca/','','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2272.96 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(110876,0.000000,1525838803.572520,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://www.watchhill.ca/','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_6) AppleWebKit/605.1.15 (KHTML, like Gecko)','',NULL,NULL),(110877,0.000000,1525838941.824442,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://www.watchhill.ca/xmlrpc.php?rsd','','Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)','',NULL,NULL),(110875,0.000000,1525835301.430709,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/about/your-hosts/','https://www.watchhill.ca/rates-policies/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.36','',NULL,NULL),(110874,0.000000,1525835299.258516,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/about/','https://www.watchhill.ca/rates-policies/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.36','',NULL,NULL),(110873,0.000000,1525835222.966938,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/rates-policies/','https://www.watchhill.ca/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.36','',NULL,NULL),(110872,0.000000,1525835212.874895,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.36','',NULL,NULL),(110870,0.000000,1525835209.428727,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'http://watchhill.ca/','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.36','',NULL,NULL),(110871,0.000000,1525835211.476978,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://watchhill.ca/','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.36','',NULL,NULL),(110869,0.000000,1525834186.026934,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/','https://www.google.ca/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.139 Safari/537.36','',NULL,NULL),(110868,0.000000,1525833532.864783,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://www.watchhill.ca/robots.txt','','Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)','',NULL,NULL),(110867,0.000000,1525832352.114102,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_4) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/11.1 Safari/605.1.15','',NULL,NULL),(110866,0.000000,1525832350.864190,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://watchhill.ca/','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_4) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/11.1 Safari/605.1.15','',NULL,NULL),(110865,0.000000,1525832347.959875,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'http://watchhill.ca/','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_4) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/11.1 Safari/605.1.15','',NULL,NULL),(110864,0.000000,1525830209.333836,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'http://watchhill.ca/','','Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0)','',NULL,NULL),(110863,0.000000,1525830196.433247,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'http://www.watchhill.ca/','','Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0)','',NULL,NULL),(110862,0.000000,1525830154.894502,'\0\0\0\0\0\0\0\0\0\0ÿÿBfl',0,200,0,0,0,'https://www.watchhill.ca/','','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2623.75 Safari/537.36 Google Favicon','',NULL,NULL),(110861,0.000000,1525829974.336264,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/the-huron/','https://www.watchhill.ca/accommodations/','Mozilla/5.0 (Linux; Android 7.0; SM-G930W8 Build/NRD90M) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.126 Mobile Safari/537.36','',NULL,NULL),(110860,0.000000,1525829916.708479,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/the-chantry/','https://www.watchhill.ca/accommodations/','Mozilla/5.0 (Linux; Android 7.0; SM-G930W8 Build/NRD90M) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.126 Mobile Safari/537.36','',NULL,NULL),(110859,0.000000,1525829901.970732,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/the-saugeen/','https://www.watchhill.ca/accommodations/','Mozilla/5.0 (Linux; Android 7.0; SM-G930W8 Build/NRD90M) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.126 Mobile Safari/537.36','',NULL,NULL),(110858,0.000000,1525829874.123095,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/','https://www.watchhill.ca/rates-policies/','Mozilla/5.0 (Linux; Android 7.0; SM-G930W8 Build/NRD90M) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.126 Mobile Safari/537.36','',NULL,NULL),(110857,0.000000,1525829813.872103,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/rates-policies/','https://www.watchhill.ca/','Mozilla/5.0 (Linux; Android 7.0; SM-G930W8 Build/NRD90M) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.126 Mobile Safari/537.36','',NULL,NULL),(110856,0.000000,1525829791.095079,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/','https://www.google.ca/','Mozilla/5.0 (Linux; Android 7.0; SM-G930W8 Build/NRD90M) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.126 Mobile Safari/537.36','',NULL,NULL),(110854,0.000000,1525829394.283992,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/rates-policies/','https://www.watchhill.ca/','Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.139 Safari/537.36','',NULL,NULL),(110855,0.000000,1525829447.226333,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/','https://www.watchhill.ca/rates-policies/','Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.139 Safari/537.36','',NULL,NULL),(110852,0.000000,1525829336.795833,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://watchhill.ca/','','Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.139 Safari/537.36','',NULL,NULL),(110853,0.000000,1525829338.031161,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/','','Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.139 Safari/537.36','',NULL,NULL),(110851,0.000000,1525829334.772026,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'http://watchhill.ca/','','Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.139 Safari/537.36','',NULL,NULL),(110850,0.000000,1525826602.095317,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/the-huron/','https://www.watchhill.ca/rates-policies/','Mozilla/5.0 (iPhone; CPU iPhone OS 11_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E216 [FBAN/FBIOS;FBAV/155.0.0.36.93;FBBV/87992437;FBDV/iPhone8,1;FBMD/iPhone;FBSN/iOS;FBSV/11.3;FBSS/2;FBCR/TELUS;FBID/phone;FBLC/en_US;FBOP/5;FBRV/0]','',NULL,NULL),(110849,0.000000,1525826573.629757,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/harbour-suite/','https://www.watchhill.ca/rates-policies/','Mozilla/5.0 (iPhone; CPU iPhone OS 11_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E216 [FBAN/FBIOS;FBAV/155.0.0.36.93;FBBV/87992437;FBDV/iPhone8,1;FBMD/iPhone;FBSN/iOS;FBSV/11.3;FBSS/2;FBCR/TELUS;FBID/phone;FBLC/en_US;FBOP/5;FBRV/0]','',NULL,NULL),(110848,0.000000,1525826562.817343,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/the-saugeen/','https://www.watchhill.ca/rates-policies/','Mozilla/5.0 (iPhone; CPU iPhone OS 11_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E216 [FBAN/FBIOS;FBAV/155.0.0.36.93;FBBV/87992437;FBDV/iPhone8,1;FBMD/iPhone;FBSN/iOS;FBSV/11.3;FBSS/2;FBCR/TELUS;FBID/phone;FBLC/en_US;FBOP/5;FBRV/0]','',NULL,NULL),(110847,0.000000,1525826561.439376,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/the-saugeen/','https://www.watchhill.ca/rates-policies/','Mozilla/5.0 (iPhone; CPU iPhone OS 11_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E216 [FBAN/FBIOS;FBAV/155.0.0.36.93;FBBV/87992437;FBDV/iPhone8,1;FBMD/iPhone;FBSN/iOS;FBSV/11.3;FBSS/2;FBCR/TELUS;FBID/phone;FBLC/en_US;FBOP/5;FBRV/0]','',NULL,NULL),(110846,0.000000,1525826544.258463,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/the-chantry/','https://www.watchhill.ca/rates-policies/','Mozilla/5.0 (iPhone; CPU iPhone OS 11_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E216 [FBAN/FBIOS;FBAV/155.0.0.36.93;FBBV/87992437;FBDV/iPhone8,1;FBMD/iPhone;FBSN/iOS;FBSV/11.3;FBSS/2;FBCR/TELUS;FBID/phone;FBLC/en_US;FBOP/5;FBRV/0]','',NULL,NULL),(109796,0.000000,1525135726.864096,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/','','Mozilla/5.0 (iPad; CPU OS 11_1 like Mac OS X) AppleWebKit/604.3.5 (KHTML, like Gecko) Version/11.0 Mobile/15B93 Safari/604.1','',NULL,NULL),(109797,0.000000,1525136981.002287,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'http://watchhill.ca/','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.36','',NULL,NULL),(109798,0.000000,1525136983.056365,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://watchhill.ca/','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.36','',NULL,NULL),(109799,0.000000,1525136984.289568,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.36','',NULL,NULL),(109800,0.000000,1525137007.240925,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/','https://www.watchhill.ca/','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.36','',NULL,NULL),(109801,0.000000,1525137008.576473,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/rates-policies/','https://www.watchhill.ca/','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.36','',NULL,NULL),(109802,0.000000,1525137019.589804,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/','https://www.watchhill.ca/rates-policies/','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.36','',NULL,NULL),(109803,0.000000,1525137021.630549,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/about/','https://www.watchhill.ca/accommodations/','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.36','',NULL,NULL),(109804,0.000000,1525137027.404078,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/about/','https://www.watchhill.ca/about/','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.36','',NULL,NULL),(109805,0.000000,1525137028.776700,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/the-huron/','https://www.watchhill.ca/about/','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.36','',NULL,NULL),(109806,0.000000,1525137046.072568,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/the-chantry/','https://www.watchhill.ca/accommodations/the-huron/','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.36','',NULL,NULL),(109807,0.000000,1525137081.455654,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/','https://www.watchhill.ca/accommodations/the-chantry/','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.36','',NULL,NULL),(109808,0.000000,1525137082.562546,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/the-saugeen/','https://www.watchhill.ca/accommodations/the-chantry/','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.36','',NULL,NULL),(109809,0.000000,1525138475.061855,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/','https://www.bing.com/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.36 Edge/16.16299','',NULL,NULL),(109810,0.000000,1525138531.176307,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/rates-policies/','https://www.watchhill.ca/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.36 Edge/16.16299','',NULL,NULL),(109811,0.000000,1525138657.459320,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/','https://www.bing.com/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.36 Edge/16.16299','',NULL,NULL),(109812,0.000000,1525138665.747839,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/','https://www.watchhill.ca/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.36 Edge/16.16299','',NULL,NULL),(109813,0.000000,1525138728.755211,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/the-huron/','https://www.watchhill.ca/accommodations/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.36 Edge/16.16299','',NULL,NULL),(109814,0.000000,1525138828.558535,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/','https://www.watchhill.ca/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.36 Edge/16.16299','',NULL,NULL),(109815,0.000000,1525138833.829539,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/the-chantry/','https://www.watchhill.ca/accommodations/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.36 Edge/16.16299','',NULL,NULL),(109816,0.000000,1525138864.323654,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/','https://www.watchhill.ca/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.36 Edge/16.16299','',NULL,NULL),(109817,0.000000,1525138868.283322,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/the-saugeen/','https://www.watchhill.ca/accommodations/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.36 Edge/16.16299','',NULL,NULL),(109818,0.000000,1525139254.463633,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'http://www.watchhill.ca/','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/62.0.3202.94 Safari/537.36','',NULL,NULL),(109819,0.000000,1525139260.382158,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://www.watchhill.ca/','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/62.0.3202.94 Safari/537.36','',NULL,NULL),(109820,0.000000,1525139913.891770,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/','https://ca.search.yahoo.com/','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.139 Safari/537.36','',NULL,NULL),(109821,0.000000,1525139929.625504,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/','https://www.watchhill.ca/','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.139 Safari/537.36','',NULL,NULL),(109822,0.000000,1525139940.942183,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/the-huron/','https://www.watchhill.ca/accommodations/','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.139 Safari/537.36','',NULL,NULL),(109823,0.000000,1525139991.087207,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/the-chantry/','https://www.watchhill.ca/accommodations/','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.139 Safari/537.36','',NULL,NULL),(109824,0.000000,1525140015.640014,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/the-saugeen/','https://www.watchhill.ca/accommodations/','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.139 Safari/537.36','',NULL,NULL),(109825,0.000000,1525140028.849385,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/harbour-suite/','https://www.watchhill.ca/accommodations/','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.139 Safari/537.36','',NULL,NULL),(109826,0.000000,1525140069.175573,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/about/','https://www.watchhill.ca/','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.139 Safari/537.36','',NULL,NULL),(109827,0.000000,1525140104.749499,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/about/your-hosts/','https://www.watchhill.ca/','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.139 Safari/537.36','',NULL,NULL),(109828,0.000000,1525140117.112898,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/rates-policies/','https://www.watchhill.ca/about/your-hosts/','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.139 Safari/537.36','',NULL,NULL),(109829,0.000000,1525142654.029798,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://watchhill.ca/','','Mozilla/5.0 (compatible; DotBot/1.1; http://www.opensiteexplorer.org/dotbot, help@moz.com)','',NULL,NULL),(109830,0.000000,1525142839.139286,'\0\0\0\0\0\0\0\0\0\0ÿÿBfn',0,200,0,0,0,'https://www.watchhill.ca/','','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2623.75 Safari/537.36 Google Favicon','',NULL,NULL),(109831,0.000000,1525147479.867996,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://www.watchhill.ca/1m1a1554/','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(109832,0.000000,1525159216.594282,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'http://watchhill.ca/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(109833,0.000000,1525159223.805436,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://watchhill.ca/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(109834,0.000000,1525159223.908080,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'http://watchhill.ca/robots.txt','','Mozilla/5.0 (Windows NT 5.1; rv:6.0.2) Gecko/20100101 Firefox/6.0.2','',NULL,NULL),(109835,0.000000,1525159225.703311,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://www.watchhill.ca/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(109836,0.000000,1525168394.660808,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'http://watchhill.ca/','','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/62.0.3187.0 Safari/537.36','',NULL,NULL),(109837,0.000000,1525168394.659174,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'http://www.watchhill.ca/','','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/62.0.3187.0 Safari/537.36','',NULL,NULL),(109838,0.000000,1525172970.367473,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'http://www.watchhill.ca/robots.txt','','Mozilla/5.0 (compatible; AhrefsBot/5.2; +http://ahrefs.com/robot/)','',NULL,NULL),(109839,0.000000,1525172973.233534,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://www.watchhill.ca/robots.txt','','Mozilla/5.0 (compatible; AhrefsBot/5.2; +http://ahrefs.com/robot/)','',NULL,NULL),(109840,0.000000,1525177368.893083,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/','','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.36','',NULL,NULL),(109841,0.000000,1525177380.472726,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/the-huron/','https://www.watchhill.ca/accommodations/','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.36','',NULL,NULL),(109842,0.000000,1525182374.138255,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/','https://www.google.com/','Mozilla/5.0 (iPad; CPU OS 11_3 like Mac OS X) AppleWebKit/604.1.34 (KHTML, like Gecko) CriOS/66.0.3359.122 Mobile/15E216 Safari/604.1','',NULL,NULL),(109843,0.000000,1525182417.367411,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/the-huron/','https://www.watchhill.ca/','Mozilla/5.0 (iPad; CPU OS 11_3 like Mac OS X) AppleWebKit/604.1.34 (KHTML, like Gecko) CriOS/66.0.3359.122 Mobile/15E216 Safari/604.1','',NULL,NULL),(109844,0.000000,1525182441.524192,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/the-chantry/','https://www.watchhill.ca/','Mozilla/5.0 (iPad; CPU OS 11_3 like Mac OS X) AppleWebKit/604.1.34 (KHTML, like Gecko) CriOS/66.0.3359.122 Mobile/15E216 Safari/604.1','',NULL,NULL),(109845,0.000000,1525182484.877718,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/','https://www.watchhill.ca/accommodations/the-chantry/','Mozilla/5.0 (iPad; CPU OS 11_3 like Mac OS X) AppleWebKit/604.1.34 (KHTML, like Gecko) CriOS/66.0.3359.122 Mobile/15E216 Safari/604.1','',NULL,NULL),(109846,0.000000,1525182497.672544,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/the-saugeen/','https://www.watchhill.ca/accommodations/','Mozilla/5.0 (iPad; CPU OS 11_3 like Mac OS X) AppleWebKit/604.1.34 (KHTML, like Gecko) CriOS/66.0.3359.122 Mobile/15E216 Safari/604.1','',NULL,NULL),(109847,0.000000,1525182537.838182,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/harbour-suite/','https://www.watchhill.ca/accommodations/','Mozilla/5.0 (iPad; CPU OS 11_3 like Mac OS X) AppleWebKit/604.1.34 (KHTML, like Gecko) CriOS/66.0.3359.122 Mobile/15E216 Safari/604.1','',NULL,NULL),(109848,0.000000,1525182564.078683,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/the-chantry/','https://www.watchhill.ca/accommodations/','Mozilla/5.0 (iPad; CPU OS 11_3 like Mac OS X) AppleWebKit/604.1.34 (KHTML, like Gecko) CriOS/66.0.3359.122 Mobile/15E216 Safari/604.1','',NULL,NULL),(109849,0.000000,1525182622.546871,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/the-huron/','https://www.watchhill.ca/accommodations/','Mozilla/5.0 (iPad; CPU OS 11_3 like Mac OS X) AppleWebKit/604.1.34 (KHTML, like Gecko) CriOS/66.0.3359.122 Mobile/15E216 Safari/604.1','',NULL,NULL),(109850,0.000000,1525186677.374439,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,1,0,0,'https://www.watchhill.ca/news-sitemap.xml','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(109851,0.000000,1525191104.637411,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'http://watchhill.ca/robots.txt','','Mozilla/5.0 (compatible; SemrushBot/1.2~bl; +http://www.semrush.com/bot.html)','',NULL,NULL),(109852,0.000000,1525191106.898728,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://watchhill.ca/robots.txt','','Mozilla/5.0 (compatible; SemrushBot/1.2~bl; +http://www.semrush.com/bot.html)','',NULL,NULL),(109853,0.000000,1525193900.390055,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/','','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.36','',NULL,NULL),(109854,0.000000,1525193914.262106,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/accommodations/the-huron/','https://www.watchhill.ca/accommodations/','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.36','',NULL,NULL),(109855,0.000000,1525193995.243112,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/about/history-of-watch-hill/','https://www.watchhill.ca/accommodations/the-huron/','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.36','',NULL,NULL),(109856,0.000000,1525194980.680642,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,1,0,0,'https://www.watchhill.ca/robots.txt','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(110725,0.000000,1525798516.448805,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'http://www.watchhill.ca/robots.txt','','Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)','',NULL,NULL),(110726,0.000000,1525798516.083788,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'http://watchhill.ca/robots.txt','','Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)','',NULL,NULL),(110727,0.000000,1525798517.453930,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://watchhill.ca/robots.txt','','Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)','',NULL,NULL),(110728,0.000000,1525798517.680971,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://www.watchhill.ca/robots.txt','','Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)','',NULL,NULL),(110729,0.000000,1525798520.538699,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://watchhill.ca/robots.txt','','Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)','',NULL,NULL),(110730,0.000000,1525798520.838658,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://www.watchhill.ca/robots.txt','','Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)','',NULL,NULL),(110731,0.000000,1525798522.319647,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'http://watchhill.ca/','','Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)','',NULL,NULL),(110732,0.000000,1525798522.665953,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'http://www.watchhill.ca/','','Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)','',NULL,NULL),(110733,0.000000,1525798644.562661,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://www.watchhill.ca/','','Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)','',NULL,NULL),(110734,0.000000,1525798644.819689,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://watchhill.ca/','','Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)','',NULL,NULL),(110735,0.000000,1525798711.217875,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'http://watchhill.ca/','','Mozilla/5.0 (Linux; Android 6.0.1; SM-J120W Build/MMB29K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.98 Mobile Safari/537.36','',NULL,NULL),(110736,0.000000,1525798713.351771,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://watchhill.ca/','','Mozilla/5.0 (Linux; Android 6.0.1; SM-J120W Build/MMB29K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.98 Mobile Safari/537.36','',NULL,NULL),(110737,0.000000,1525798714.762721,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/','','Mozilla/5.0 (Linux; Android 6.0.1; SM-J120W Build/MMB29K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.98 Mobile Safari/537.36','',NULL,NULL),(110738,0.000000,1525798727.889870,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/rates-policies/','https://www.watchhill.ca/','Mozilla/5.0 (Linux; Android 6.0.1; SM-J120W Build/MMB29K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.98 Mobile Safari/537.36','',NULL,NULL),(110739,0.000000,1525798774.602844,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/wp-login.php?redirect_to=https%3A%2F%2Fwww.watchhill.ca%2Fwp-admin%2Fadmin.php%3Fpage%3Dwp-simple-booking-calendar-premium&reauth=1','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.139 Safari/537.36','',NULL,NULL),(110740,0.000000,1525798784.208859,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,4,0,'https://www.watchhill.ca/wp-login.php','https://www.watchhill.ca/wp-login.php?redirect_to=https%3A%2F%2Fwww.watchhill.ca%2Fwp-admin%2Fadmin.php%3Fpage%3Dwp-simple-booking-calendar-premium&reauth=1','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.139 Safari/537.36','loginOK',NULL,NULL),(110741,0.000000,1525798786.065625,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'http://www.watchhill.ca/','','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/57.0.2987.133 Safari/537.36','',NULL,NULL),(110742,0.000000,1525798788.007280,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,0,0,0,'https://www.watchhill.ca/','','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/57.0.2987.133 Safari/537.36','',NULL,NULL),(110743,0.000000,1525798858.632974,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,1,0,0,'https://www.watchhill.ca/robots.txt','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(110744,0.000000,1525798859.655310,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',0,200,1,0,0,'https://www.watchhill.ca/','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(110745,0.000000,1525800196.485256,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1,200,0,0,0,'https://www.watchhill.ca/','https://www.watchhill.ca/?_sm_nck=1','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.139 Safari/537.36','',NULL,NULL);
/*!40000 ALTER TABLE `wh_wfHits` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wh_wfHoover`
--

DROP TABLE IF EXISTS `wh_wfHoover`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wh_wfHoover` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `owner` text,
  `host` text,
  `path` text,
  `hostKey` varbinary(124) DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `k2` (`hostKey`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wh_wfHoover`
--

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

--
-- Table structure for table `wh_wfIssues`
--

DROP TABLE IF EXISTS `wh_wfIssues`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wh_wfIssues` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `time` int(10) unsigned NOT NULL,
  `lastUpdated` int(10) unsigned NOT NULL,
  `status` varchar(10) NOT NULL,
  `type` varchar(20) NOT NULL,
  `severity` tinyint(3) unsigned NOT NULL,
  `ignoreP` char(32) NOT NULL,
  `ignoreC` char(32) NOT NULL,
  `shortMsg` varchar(255) NOT NULL,
  `longMsg` text,
  `data` text,
  PRIMARY KEY (`id`),
  KEY `lastUpdated` (`lastUpdated`),
  KEY `status` (`status`),
  KEY `ignoreP` (`ignoreP`),
  KEY `ignoreC` (`ignoreC`)
) ENGINE=MyISAM AUTO_INCREMENT=4348 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wh_wfIssues`
--

LOCK TABLES `wh_wfIssues` WRITE;
/*!40000 ALTER TABLE `wh_wfIssues` DISABLE KEYS */;
INSERT INTO `wh_wfIssues` VALUES (3782,1518742422,1518742422,'ignoreC','wfPluginAbandoned',2,'1a03a3b97000d8c2ceef602fa96b34c2','1a03a3b97000d8c2ceef602fa96b34c2','The Plugin \"WP Mobile Detect\" appears to be abandoned (updated May 11, 2015, tested to WP 4.2.19).','It was last updated 2 years 9 months ago and tested up to WordPress 4.2.19. It may have compatibility problems with the current version of WordPress or unknown security issues. <a href=\"https://www.wordfence.com/help/?query=scan-result-plugin-abandoned\" target=\"_blank\" rel=\"noopener noreferrer\">Get more information.</a>','a:20:{s:4:\"name\";s:16:\"WP Mobile Detect\";s:4:\"slug\";s:16:\"wp-mobile-detect\";s:7:\"version\";s:3:\"2.0\";s:6:\"author\";s:46:\"<a href=\"http://jes.se.com\">Jesse Friedman</a>\";s:14:\"author_profile\";s:42:\"https://profiles.wordpress.org/professor44\";s:8:\"requires\";s:5:\"2.8.4\";s:6:\"tested\";s:6:\"4.2.19\";s:12:\"requires_php\";b:0;s:13:\"compatibility\";a:0:{}s:11:\"num_ratings\";i:63;s:15:\"support_threads\";i:0;s:24:\"support_threads_resolved\";i:0;s:12:\"last_updated\";s:21:\"2015-05-11 8:21pm GMT\";s:8:\"homepage\";s:34:\"http://jes.se.com/wp-mobile-detect\";s:13:\"download_link\";s:63:\"https://downloads.wordpress.org/plugin/wp-mobile-detect.2.0.zip\";s:12:\"contributors\";a:0:{}s:11:\"dateUpdated\";s:12:\"May 11, 2015\";s:9:\"abandoned\";b:1;s:10:\"vulnerable\";b:0;s:5:\"wpURL\";s:46:\"https://wordpress.org/plugins/wp-mobile-detect\";}'),(1169,1500308057,1500308057,'ignoreC','knownfile',2,'8c82e95dc44aeb6440d352fa3c6205eb','7bfcd1f5249abf483d337d5016f18ebe','Modified plugin file: wp-content/plugins/ml-slider/ml-slider.php','This file belongs to plugin \"Meta Slider\" version \"3.5.1\" and has been modified from the file that is distributed by WordPress.org for this version. Please use the link to see how the file has changed. If you have modified this file yourself, you can safely ignore this warning. If you see a lot of changed files in a plugin that have been made by the author, then try uninstalling and reinstalling the plugin to force an upgrade. Doing this is a workaround for plugin authors who don\'t manage their code correctly. [See our FAQ on www.wordfence.com for more info]','a:9:{s:4:\"file\";s:42:\"wp-content/plugins/ml-slider/ml-slider.php\";s:5:\"cType\";s:6:\"plugin\";s:7:\"canDiff\";b:1;s:6:\"canFix\";b:1;s:9:\"canDelete\";b:0;s:5:\"cName\";s:11:\"Meta Slider\";s:8:\"cVersion\";s:5:\"3.5.1\";s:4:\"cKey\";s:23:\"ml-slider/ml-slider.php\";s:10:\"haveIssues\";s:7:\"plugins\";}'),(4323,1525594951,1525594951,'new','suspiciousAdminUsers',1,'84210e3c22d89dccc9217711d295e4b8','84210e3c22d89dccc9217711d295e4b8','An admin user with the username James was created outside of WordPress.','An admin user with the username James was created outside of WordPress. It\'s\n				possible a plugin could have created the account, but if you do not recognize the user, we suggest you remove\n				it.','a:1:{s:6:\"userID\";i:6;}'),(4347,1525800205,1525800205,'new','wfThemeUpgrade',2,'69a39992e5b84e91728e67aaf3daf321','69a39992e5b84e91728e67aaf3daf321','The Theme \"Genesis\" needs an upgrade (2.5.3 -> 2.6.1).','You need to upgrade \"Genesis\" to the newest version to ensure you have any security fixes the developer has released.','a:7:{s:10:\"newVersion\";s:5:\"2.6.1\";s:7:\"package\";s:61:\"https://www.genesistheme.com/download/?file=genesis.2.6.1.zip\";s:3:\"URL\";s:41:\"https://my.studiopress.com/themes/genesis\";s:4:\"Name\";s:7:\"Genesis\";s:4:\"name\";s:7:\"Genesis\";s:7:\"version\";s:5:\"2.5.3\";s:10:\"vulnerable\";b:0;}'),(4346,1525800205,1525800205,'new','wfThemeUpgrade',2,'275ed34646f0f6e9c7e92af889d898a5','275ed34646f0f6e9c7e92af889d898a5','The Theme \"Twenty Seventeen\" needs an upgrade (1.4 -> 1.5).','You need to upgrade \"Twenty Seventeen\" to the newest version to ensure you have any security fixes the developer has released.','a:7:{s:10:\"newVersion\";s:3:\"1.5\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/theme/twentyseventeen.1.5.zip\";s:3:\"URL\";s:45:\"https://wordpress.org/themes/twentyseventeen/\";s:4:\"Name\";s:16:\"Twenty Seventeen\";s:4:\"name\";s:16:\"Twenty Seventeen\";s:7:\"version\";s:3:\"1.4\";s:10:\"vulnerable\";b:0;}'),(4345,1525800205,1525800205,'new','wfPluginUpgrade',2,'c3a1934c0a51631ab9a4c43a37f39797','c3a1934c0a51631ab9a4c43a37f39797','The Plugin \"WP Media folder\" needs an upgrade (4.5.0 -> 4.5.3).','You need to upgrade \"WP Media folder\" to the newest version to ensure you have any security fixes the developer has released.','a:16:{s:4:\"Name\";s:15:\"WP Media folder\";s:9:\"PluginURI\";s:25:\"http://www.joomunited.com\";s:7:\"Version\";s:5:\"4.5.0\";s:11:\"Description\";s:180:\"WP media Folder is a WordPress plugin that enhance the WordPress media manager by adding a folder manager inside. <cite>By <a href=\"http://www.joomunited.com\">Joomunited</a></cite>\";s:6:\"Author\";s:50:\"<a href=\"http://www.joomunited.com\">Joomunited</a>\";s:9:\"AuthorURI\";s:25:\"http://www.joomunited.com\";s:10:\"TextDomain\";s:4:\"wpmf\";s:10:\"DomainPath\";s:10:\"/languages\";s:7:\"Network\";b:0;s:5:\"Title\";s:55:\"<a href=\"http://www.joomunited.com\">WP Media folder</a>\";s:10:\"AuthorName\";s:10:\"Joomunited\";s:10:\"pluginFile\";s:83:\"/home/tumthakar0/public_html/wp-content/plugins/wp-media-folder/wp-media-folder.php\";s:10:\"newVersion\";s:5:\"4.5.3\";s:4:\"slug\";s:15:\"wp-media-folder\";s:5:\"wpURL\";s:61:\"https://www.joomunited.com/wordpress-products/wp-media-folder\";s:10:\"vulnerable\";b:0;}'),(4342,1525800205,1525800205,'new','wfPluginUpgrade',2,'b53d2a6ee2b90881e4646bfb70eb0448','b53d2a6ee2b90881e4646bfb70eb0448','The Plugin \"Members\" needs an upgrade (2.0.2 -> 2.1.0).','You need to upgrade \"Members\" to the newest version to ensure you have any security fixes the developer has released.','a:16:{s:4:\"Name\";s:7:\"Members\";s:9:\"PluginURI\";s:39:\"https://themehybrid.com/plugins/members\";s:7:\"Version\";s:5:\"2.0.2\";s:11:\"Description\";s:349:\"A user and role management plugin that puts you in full control of your site&#8217;s permissions. This plugin allows you to edit your roles and their capabilities, clone existing roles, assign multiple roles per user, block post content, or even make your site completely private. <cite>By <a href=\"https://themehybrid.com\">Justin Tadlock</a></cite>\";s:6:\"Author\";s:52:\"<a href=\"https://themehybrid.com\">Justin Tadlock</a>\";s:9:\"AuthorURI\";s:23:\"https://themehybrid.com\";s:10:\"TextDomain\";s:7:\"members\";s:10:\"DomainPath\";s:5:\"/lang\";s:7:\"Network\";b:0;s:5:\"Title\";s:61:\"<a href=\"https://themehybrid.com/plugins/members\">Members</a>\";s:10:\"AuthorName\";s:14:\"Justin Tadlock\";s:10:\"pluginFile\";s:67:\"/home/tumthakar0/public_html/wp-content/plugins/members/members.php\";s:10:\"newVersion\";s:5:\"2.1.0\";s:4:\"slug\";s:7:\"members\";s:5:\"wpURL\";s:37:\"https://wordpress.org/plugins/members\";s:10:\"vulnerable\";b:0;}'),(4343,1525800205,1525800205,'new','wfPluginUpgrade',2,'7c1cbfeaa2f6180693dbc5c3c87e686a','7c1cbfeaa2f6180693dbc5c3c87e686a','The Plugin \"MetaSlider\" needs an upgrade (3.7.1 -> 3.7.2).','You need to upgrade \"MetaSlider\" to the newest version to ensure you have any security fixes the developer has released.','a:16:{s:4:\"Name\";s:10:\"MetaSlider\";s:9:\"PluginURI\";s:26:\"https://www.metaslider.com\";s:7:\"Version\";s:5:\"3.7.1\";s:11:\"Description\";s:208:\"Easy to use slideshow plugin. Create SEO optimised responsive slideshows with Nivo Slider, Flex Slider, Coin Slider and Responsive Slides. <cite>By <a href=\"https://www.metaslider.com\">Team Updraft</a></cite>\";s:6:\"Author\";s:53:\"<a href=\"https://www.metaslider.com\">Team Updraft</a>\";s:9:\"AuthorURI\";s:26:\"https://www.metaslider.com\";s:10:\"TextDomain\";s:9:\"ml-slider\";s:10:\"DomainPath\";s:10:\"/languages\";s:7:\"Network\";b:0;s:5:\"Title\";s:51:\"<a href=\"https://www.metaslider.com\">MetaSlider</a>\";s:10:\"AuthorName\";s:12:\"Team Updraft\";s:10:\"pluginFile\";s:71:\"/home/tumthakar0/public_html/wp-content/plugins/ml-slider/ml-slider.php\";s:10:\"newVersion\";s:5:\"3.7.2\";s:4:\"slug\";s:9:\"ml-slider\";s:5:\"wpURL\";s:39:\"https://wordpress.org/plugins/ml-slider\";s:10:\"vulnerable\";b:0;}'),(4344,1525800205,1525800205,'new','wfPluginUpgrade',2,'199fc8c3c769501c20eb4654b2601a89','199fc8c3c769501c20eb4654b2601a89','The Plugin \"Simple Page Ordering\" needs an upgrade (2.3 -> 2.3.1).','You need to upgrade \"Simple Page Ordering\" to the newest version to ensure you have any security fixes the developer has released.','a:16:{s:4:\"Name\";s:20:\"Simple Page Ordering\";s:9:\"PluginURI\";s:55:\"http://10up.com/plugins/simple-page-ordering-wordpress/\";s:7:\"Version\";s:3:\"2.3\";s:11:\"Description\";s:235:\"Order your pages and hierarchical post types using drag and drop on the built in page list. For further instructions, open the &#8220;Help&#8221; tab on the Pages screen. <cite>By <a href=\"http://10up.com\">Jake Goldman, 10up</a></cite>\";s:6:\"Author\";s:48:\"<a href=\"http://10up.com\">Jake Goldman, 10up</a>\";s:9:\"AuthorURI\";s:15:\"http://10up.com\";s:10:\"TextDomain\";s:20:\"simple-page-ordering\";s:10:\"DomainPath\";s:0:\"\";s:7:\"Network\";b:0;s:5:\"Title\";s:90:\"<a href=\"http://10up.com/plugins/simple-page-ordering-wordpress/\">Simple Page Ordering</a>\";s:10:\"AuthorName\";s:18:\"Jake Goldman, 10up\";s:10:\"pluginFile\";s:93:\"/home/tumthakar0/public_html/wp-content/plugins/simple-page-ordering/simple-page-ordering.php\";s:10:\"newVersion\";s:5:\"2.3.1\";s:4:\"slug\";s:20:\"simple-page-ordering\";s:5:\"wpURL\";s:50:\"https://wordpress.org/plugins/simple-page-ordering\";s:10:\"vulnerable\";b:0;}'),(4340,1525800205,1525800205,'new','wfPluginUpgrade',2,'803c5935a7873b8d65fef621a58776cf','803c5935a7873b8d65fef621a58776cf','The Plugin \"FooGallery\" needs an upgrade (1.4.15 -> 1.4.29).','You need to upgrade \"FooGallery\" to the newest version to ensure you have any security fixes the developer has released.','a:16:{s:4:\"Name\";s:10:\"FooGallery\";s:9:\"PluginURI\";s:19:\"https://foo.gallery\";s:7:\"Version\";s:6:\"1.4.15\";s:11:\"Description\";s:161:\"FooGallery is the most intuitive and extensible gallery management tool ever created for WordPress <cite>By <a href=\"http://fooplugins.com\">FooPlugins</a></cite>\";s:6:\"Author\";s:46:\"<a href=\"http://fooplugins.com\">FooPlugins</a>\";s:9:\"AuthorURI\";s:21:\"http://fooplugins.com\";s:10:\"TextDomain\";s:10:\"foogallery\";s:10:\"DomainPath\";s:10:\"/languages\";s:7:\"Network\";b:0;s:5:\"Title\";s:44:\"<a href=\"https://foo.gallery\">FooGallery</a>\";s:10:\"AuthorName\";s:10:\"FooPlugins\";s:10:\"pluginFile\";s:73:\"/home/tumthakar0/public_html/wp-content/plugins/foogallery/foogallery.php\";s:10:\"newVersion\";s:6:\"1.4.29\";s:4:\"slug\";s:10:\"foogallery\";s:5:\"wpURL\";s:40:\"https://wordpress.org/plugins/foogallery\";s:10:\"vulnerable\";b:0;}'),(4341,1525800205,1525800205,'new','wfPluginUpgrade',2,'68b52fbc5af979050139b9cd44863f09','68b52fbc5af979050139b9cd44863f09','The Plugin \"Jetpack by WordPress.com\" needs an upgrade (5.9 -> 6.1).','You need to upgrade \"Jetpack by WordPress.com\" to the newest version to ensure you have any security fixes the developer has released.','a:16:{s:4:\"Name\";s:24:\"Jetpack by WordPress.com\";s:9:\"PluginURI\";s:19:\"https://jetpack.com\";s:7:\"Version\";s:3:\"5.9\";s:11:\"Description\";s:279:\"Bring the power of the WordPress.com cloud to your self-hosted WordPress. Jetpack enables you to connect your blog to a WordPress.com account to use the powerful features normally only available to WordPress.com users. <cite>By <a href=\"https://jetpack.com\">Automattic</a></cite>\";s:6:\"Author\";s:44:\"<a href=\"https://jetpack.com\">Automattic</a>\";s:9:\"AuthorURI\";s:19:\"https://jetpack.com\";s:10:\"TextDomain\";s:7:\"jetpack\";s:10:\"DomainPath\";s:11:\"/languages/\";s:7:\"Network\";b:0;s:5:\"Title\";s:58:\"<a href=\"https://jetpack.com\">Jetpack by WordPress.com</a>\";s:10:\"AuthorName\";s:10:\"Automattic\";s:10:\"pluginFile\";s:67:\"/home/tumthakar0/public_html/wp-content/plugins/jetpack/jetpack.php\";s:10:\"newVersion\";s:3:\"6.1\";s:4:\"slug\";s:7:\"jetpack\";s:5:\"wpURL\";s:37:\"https://wordpress.org/plugins/jetpack\";s:10:\"vulnerable\";b:0;}');
/*!40000 ALTER TABLE `wh_wfIssues` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wh_wfKnownFileList`
--

DROP TABLE IF EXISTS `wh_wfKnownFileList`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wh_wfKnownFileList` (
  `id` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `path` text NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=4965 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wh_wfKnownFileList`
--

LOCK TABLES `wh_wfKnownFileList` WRITE;
/*!40000 ALTER TABLE `wh_wfKnownFileList` DISABLE KEYS */;
INSERT INTO `wh_wfKnownFileList` VALUES (1,'index.php'),(2,'license.txt'),(3,'readme.html'),(4,'wordfence-waf.php'),(5,'wp-activate.php'),(6,'wp-admin/about.php'),(7,'wp-admin/admin-ajax.php'),(8,'wp-admin/admin-footer.php'),(9,'wp-admin/admin-functions.php'),(10,'wp-admin/admin-header.php'),(11,'wp-admin/admin-post.php'),(12,'wp-admin/admin.php'),(13,'wp-admin/async-upload.php'),(14,'wp-admin/comment.php'),(15,'wp-admin/credits.php'),(16,'wp-admin/css/about-rtl.css'),(17,'wp-admin/css/about-rtl.min.css'),(18,'wp-admin/css/about.css'),(19,'wp-admin/css/about.min.css'),(20,'wp-admin/css/admin-menu-rtl.css'),(21,'wp-admin/css/admin-menu-rtl.min.css'),(22,'wp-admin/css/admin-menu.css'),(23,'wp-admin/css/admin-menu.min.css'),(24,'wp-admin/css/code-editor-rtl.css'),(25,'wp-admin/css/code-editor-rtl.min.css'),(26,'wp-admin/css/code-editor.css'),(27,'wp-admin/css/code-editor.min.css'),(28,'wp-admin/css/color-picker-rtl.css'),(29,'wp-admin/css/color-picker-rtl.min.css'),(30,'wp-admin/css/color-picker.css'),(31,'wp-admin/css/color-picker.min.css'),(32,'wp-admin/css/colors/_admin.scss'),(33,'wp-admin/css/colors/_mixins.scss'),(34,'wp-admin/css/colors/_variables.scss'),(35,'wp-admin/css/colors/blue/colors-rtl.css'),(36,'wp-admin/css/colors/blue/colors-rtl.min.css'),(37,'wp-admin/css/colors/blue/colors.css'),(38,'wp-admin/css/colors/blue/colors.min.css'),(39,'wp-admin/css/colors/blue/colors.scss'),(40,'wp-admin/css/colors/coffee/colors-rtl.css'),(41,'wp-admin/css/colors/coffee/colors-rtl.min.css'),(42,'wp-admin/css/colors/coffee/colors.css'),(43,'wp-admin/css/colors/coffee/colors.min.css'),(44,'wp-admin/css/colors/coffee/colors.scss'),(45,'wp-admin/css/colors/ectoplasm/colors-rtl.css'),(46,'wp-admin/css/colors/ectoplasm/colors-rtl.min.css'),(47,'wp-admin/css/colors/ectoplasm/colors.css'),(48,'wp-admin/css/colors/ectoplasm/colors.min.css'),(49,'wp-admin/css/colors/ectoplasm/colors.scss'),(50,'wp-admin/css/colors/light/colors-rtl.css'),(51,'wp-admin/css/colors/light/colors-rtl.min.css'),(52,'wp-admin/css/colors/light/colors.css'),(53,'wp-admin/css/colors/light/colors.min.css'),(54,'wp-admin/css/colors/light/colors.scss'),(55,'wp-admin/css/colors/midnight/colors-rtl.css'),(56,'wp-admin/css/colors/midnight/colors-rtl.min.css'),(57,'wp-admin/css/colors/midnight/colors.css'),(58,'wp-admin/css/colors/midnight/colors.min.css'),(59,'wp-admin/css/colors/midnight/colors.scss'),(60,'wp-admin/css/colors/ocean/colors-rtl.css'),(61,'wp-admin/css/colors/ocean/colors-rtl.min.css'),(62,'wp-admin/css/colors/ocean/colors.css'),(63,'wp-admin/css/colors/ocean/colors.min.css'),(64,'wp-admin/css/colors/ocean/colors.scss'),(65,'wp-admin/css/colors/sunrise/colors-rtl.css'),(66,'wp-admin/css/colors/sunrise/colors-rtl.min.css'),(67,'wp-admin/css/colors/sunrise/colors.css'),(68,'wp-admin/css/colors/sunrise/colors.min.css'),(69,'wp-admin/css/colors/sunrise/colors.scss'),(70,'wp-admin/css/common-rtl.css'),(71,'wp-admin/css/common-rtl.min.css'),(72,'wp-admin/css/common.css'),(73,'wp-admin/css/common.min.css'),(74,'wp-admin/css/customize-controls-rtl.css'),(75,'wp-admin/css/customize-controls-rtl.min.css'),(76,'wp-admin/css/customize-controls.css'),(77,'wp-admin/css/customize-controls.min.css'),(78,'wp-admin/css/customize-nav-menus-rtl.css'),(79,'wp-admin/css/customize-nav-menus-rtl.min.css'),(80,'wp-admin/css/customize-nav-menus.css'),(81,'wp-admin/css/customize-nav-menus.min.css'),(82,'wp-admin/css/customize-widgets-rtl.css'),(83,'wp-admin/css/customize-widgets-rtl.min.css'),(84,'wp-admin/css/customize-widgets.css'),(85,'wp-admin/css/customize-widgets.min.css'),(86,'wp-admin/css/dashboard-rtl.css'),(87,'wp-admin/css/dashboard-rtl.min.css'),(88,'wp-admin/css/dashboard.css'),(89,'wp-admin/css/dashboard.min.css'),(90,'wp-admin/css/deprecated-media-rtl.css'),(91,'wp-admin/css/deprecated-media-rtl.min.css'),(92,'wp-admin/css/deprecated-media.css'),(93,'wp-admin/css/deprecated-media.min.css'),(94,'wp-admin/css/edit-rtl.css'),(95,'wp-admin/css/edit-rtl.min.css'),(96,'wp-admin/css/edit.css'),(97,'wp-admin/css/edit.min.css'),(98,'wp-admin/css/farbtastic-rtl.css'),(99,'wp-admin/css/farbtastic-rtl.min.css'),(100,'wp-admin/css/farbtastic.css'),(101,'wp-admin/css/farbtastic.min.css'),(102,'wp-admin/css/forms-rtl.css'),(103,'wp-admin/css/forms-rtl.min.css'),(104,'wp-admin/css/forms.css'),(105,'wp-admin/css/forms.min.css'),(106,'wp-admin/css/ie-rtl.css'),(107,'wp-admin/css/ie-rtl.min.css'),(108,'wp-admin/css/ie.css'),(109,'wp-admin/css/ie.min.css'),(110,'wp-admin/css/install-rtl.css'),(111,'wp-admin/css/install-rtl.min.css'),(112,'wp-admin/css/install.css'),(113,'wp-admin/css/install.min.css'),(114,'wp-admin/css/l10n-rtl.css'),(115,'wp-admin/css/l10n-rtl.min.css'),(116,'wp-admin/css/l10n.css'),(117,'wp-admin/css/l10n.min.css'),(118,'wp-admin/css/list-tables-rtl.css'),(119,'wp-admin/css/list-tables-rtl.min.css'),(120,'wp-admin/css/list-tables.css'),(121,'wp-admin/css/list-tables.min.css'),(122,'wp-admin/css/login-rtl.css'),(123,'wp-admin/css/login-rtl.min.css'),(124,'wp-admin/css/login.css'),(125,'wp-admin/css/login.min.css'),(126,'wp-admin/css/media-rtl.css'),(127,'wp-admin/css/media-rtl.min.css'),(128,'wp-admin/css/media.css'),(129,'wp-admin/css/media.min.css'),(130,'wp-admin/css/nav-menus-rtl.css'),(131,'wp-admin/css/nav-menus-rtl.min.css'),(132,'wp-admin/css/nav-menus.css'),(133,'wp-admin/css/nav-menus.min.css'),(134,'wp-admin/css/revisions-rtl.css'),(135,'wp-admin/css/revisions-rtl.min.css'),(136,'wp-admin/css/revisions.css'),(137,'wp-admin/css/revisions.min.css'),(138,'wp-admin/css/site-icon-rtl.css'),(139,'wp-admin/css/site-icon-rtl.min.css'),(140,'wp-admin/css/site-icon.css'),(141,'wp-admin/css/site-icon.min.css'),(142,'wp-admin/css/themes-rtl.css'),(143,'wp-admin/css/themes-rtl.min.css'),(144,'wp-admin/css/themes.css'),(145,'wp-admin/css/themes.min.css'),(146,'wp-admin/css/widgets-rtl.css'),(147,'wp-admin/css/widgets-rtl.min.css'),(148,'wp-admin/css/widgets.css'),(149,'wp-admin/css/widgets.min.css'),(150,'wp-admin/css/wp-admin-rtl.css'),(151,'wp-admin/css/wp-admin-rtl.min.css'),(152,'wp-admin/css/wp-admin.css'),(153,'wp-admin/css/wp-admin.min.css'),(154,'wp-admin/custom-background.php'),(155,'wp-admin/custom-header.php'),(156,'wp-admin/customize.php'),(157,'wp-admin/edit-comments.php'),(158,'wp-admin/edit-form-advanced.php'),(159,'wp-admin/edit-form-comment.php'),(160,'wp-admin/edit-link-form.php'),(161,'wp-admin/edit-tag-form.php'),(162,'wp-admin/edit-tags.php'),(163,'wp-admin/edit.php'),(164,'wp-admin/error_log'),(165,'wp-admin/export.php'),(166,'wp-admin/freedoms.php'),(167,'wp-admin/images/align-center-2x.png'),(168,'wp-admin/images/align-center.png'),(169,'wp-admin/images/align-left-2x.png'),(170,'wp-admin/images/align-left.png'),(171,'wp-admin/images/align-none-2x.png'),(172,'wp-admin/images/align-none.png'),(173,'wp-admin/images/align-right-2x.png'),(174,'wp-admin/images/align-right.png'),(175,'wp-admin/images/arrows-2x.png'),(176,'wp-admin/images/arrows.png'),(177,'wp-admin/images/browser-rtl.png'),(178,'wp-admin/images/browser.png'),(179,'wp-admin/images/bubble_bg-2x.gif'),(180,'wp-admin/images/bubble_bg.gif'),(181,'wp-admin/images/comment-grey-bubble-2x.png'),(182,'wp-admin/images/comment-grey-bubble.png'),(183,'wp-admin/images/date-button-2x.gif'),(184,'wp-admin/images/date-button.gif'),(185,'wp-admin/images/generic.png'),(186,'wp-admin/images/icons32-2x.png'),(187,'wp-admin/images/icons32-vs-2x.png'),(188,'wp-admin/images/icons32-vs.png'),(189,'wp-admin/images/icons32.png'),(190,'wp-admin/images/imgedit-icons-2x.png'),(191,'wp-admin/images/imgedit-icons.png'),(192,'wp-admin/images/list-2x.png'),(193,'wp-admin/images/list.png'),(194,'wp-admin/images/loading.gif'),(195,'wp-admin/images/marker.png'),(196,'wp-admin/images/mask.png'),(197,'wp-admin/images/media-button-2x.png'),(198,'wp-admin/images/media-button-image.gif'),(199,'wp-admin/images/media-button-music.gif'),(200,'wp-admin/images/media-button-other.gif'),(201,'wp-admin/images/media-button-video.gif'),(202,'wp-admin/images/media-button.png'),(203,'wp-admin/images/menu-2x.png'),(204,'wp-admin/images/menu-vs-2x.png'),(205,'wp-admin/images/menu-vs.png'),(206,'wp-admin/images/menu.png'),(207,'wp-admin/images/no.png'),(208,'wp-admin/images/post-formats-vs.png'),(209,'wp-admin/images/post-formats.png'),(210,'wp-admin/images/post-formats32-vs.png'),(211,'wp-admin/images/post-formats32.png'),(212,'wp-admin/images/resize-2x.gif'),(213,'wp-admin/images/resize-rtl-2x.gif'),(214,'wp-admin/images/resize-rtl.gif'),(215,'wp-admin/images/resize.gif'),(216,'wp-admin/images/se.png'),(217,'wp-admin/images/sort-2x.gif'),(218,'wp-admin/images/sort.gif'),(219,'wp-admin/images/spinner-2x.gif'),(220,'wp-admin/images/spinner.gif'),(221,'wp-admin/images/stars-2x.png'),(222,'wp-admin/images/stars.png'),(223,'wp-admin/images/w-logo-blue.png'),(224,'wp-admin/images/w-logo-white.png'),(225,'wp-admin/images/wheel.png'),(226,'wp-admin/images/wordpress-logo-white.svg'),(227,'wp-admin/images/wordpress-logo.png'),(228,'wp-admin/images/wordpress-logo.svg'),(229,'wp-admin/images/wpspin_light-2x.gif'),(230,'wp-admin/images/wpspin_light.gif'),(231,'wp-admin/images/xit-2x.gif'),(232,'wp-admin/images/xit.gif'),(233,'wp-admin/images/yes.png'),(234,'wp-admin/import.php'),(235,'wp-admin/includes/admin-filters.php'),(236,'wp-admin/includes/admin.php'),(237,'wp-admin/includes/ajax-actions.php'),(238,'wp-admin/includes/bookmark.php'),(239,'wp-admin/includes/class-automatic-upgrader-skin.php'),(240,'wp-admin/includes/class-bulk-plugin-upgrader-skin.php'),(241,'wp-admin/includes/class-bulk-theme-upgrader-skin.php'),(242,'wp-admin/includes/class-bulk-upgrader-skin.php'),(243,'wp-admin/includes/class-core-upgrader.php'),(244,'wp-admin/includes/class-file-upload-upgrader.php'),(245,'wp-admin/includes/class-ftp-pure.php'),(246,'wp-admin/includes/class-ftp-sockets.php'),(247,'wp-admin/includes/class-ftp.php'),(248,'wp-admin/includes/class-language-pack-upgrader-skin.php'),(249,'wp-admin/includes/class-language-pack-upgrader.php'),(250,'wp-admin/includes/class-pclzip.php'),(251,'wp-admin/includes/class-plugin-installer-skin.php'),(252,'wp-admin/includes/class-plugin-upgrader-skin.php'),(253,'wp-admin/includes/class-plugin-upgrader.php'),(254,'wp-admin/includes/class-theme-installer-skin.php'),(255,'wp-admin/includes/class-theme-upgrader-skin.php'),(256,'wp-admin/includes/class-theme-upgrader.php'),(257,'wp-admin/includes/class-walker-category-checklist.php'),(258,'wp-admin/includes/class-walker-nav-menu-checklist.php'),(259,'wp-admin/includes/class-walker-nav-menu-edit.php'),(260,'wp-admin/includes/class-wp-ajax-upgrader-skin.php'),(261,'wp-admin/includes/class-wp-automatic-updater.php'),(262,'wp-admin/includes/class-wp-comments-list-table.php'),(263,'wp-admin/includes/class-wp-community-events.php'),(264,'wp-admin/includes/class-wp-filesystem-base.php'),(265,'wp-admin/includes/class-wp-filesystem-direct.php'),(266,'wp-admin/includes/class-wp-filesystem-ftpext.php'),(267,'wp-admin/includes/class-wp-filesystem-ftpsockets.php'),(268,'wp-admin/includes/class-wp-filesystem-ssh2.php'),(269,'wp-admin/includes/class-wp-importer.php'),(270,'wp-admin/includes/class-wp-internal-pointers.php'),(271,'wp-admin/includes/class-wp-links-list-table.php'),(272,'wp-admin/includes/class-wp-list-table-compat.php'),(273,'wp-admin/includes/class-wp-list-table.php'),(274,'wp-admin/includes/class-wp-media-list-table.php'),(275,'wp-admin/includes/class-wp-ms-sites-list-table.php'),(276,'wp-admin/includes/class-wp-ms-themes-list-table.php'),(277,'wp-admin/includes/class-wp-ms-users-list-table.php'),(278,'wp-admin/includes/class-wp-plugin-install-list-table.php'),(279,'wp-admin/includes/class-wp-plugins-list-table.php'),(280,'wp-admin/includes/class-wp-post-comments-list-table.php'),(281,'wp-admin/includes/class-wp-posts-list-table.php'),(282,'wp-admin/includes/class-wp-screen.php'),(283,'wp-admin/includes/class-wp-site-icon.php'),(284,'wp-admin/includes/class-wp-terms-list-table.php'),(285,'wp-admin/includes/class-wp-theme-install-list-table.php'),(286,'wp-admin/includes/class-wp-themes-list-table.php'),(287,'wp-admin/includes/class-wp-upgrader-skin.php'),(288,'wp-admin/includes/class-wp-upgrader-skins.php'),(289,'wp-admin/includes/class-wp-upgrader.php'),(290,'wp-admin/includes/class-wp-users-list-table.php'),(291,'wp-admin/includes/comment.php'),(292,'wp-admin/includes/continents-cities.php'),(293,'wp-admin/includes/credits.php'),(294,'wp-admin/includes/dashboard.php'),(295,'wp-admin/includes/deprecated.php'),(296,'wp-admin/includes/edit-tag-messages.php'),(297,'wp-admin/includes/export.php'),(298,'wp-admin/includes/file.php'),(299,'wp-admin/includes/image-edit.php'),(300,'wp-admin/includes/image.php'),(301,'wp-admin/includes/import.php'),(302,'wp-admin/includes/list-table.php'),(303,'wp-admin/includes/media.php'),(304,'wp-admin/includes/menu.php'),(305,'wp-admin/includes/meta-boxes.php'),(306,'wp-admin/includes/misc.php'),(307,'wp-admin/includes/ms-admin-filters.php'),(308,'wp-admin/includes/ms-deprecated.php'),(309,'wp-admin/includes/ms.php'),(310,'wp-admin/includes/nav-menu.php'),(311,'wp-admin/includes/network.php'),(312,'wp-admin/includes/noop.php'),(313,'wp-admin/includes/options.php'),(314,'wp-admin/includes/plugin-install.php'),(315,'wp-admin/includes/plugin.php'),(316,'wp-admin/includes/post.php'),(317,'wp-admin/includes/revision.php'),(318,'wp-admin/includes/schema.php'),(319,'wp-admin/includes/screen.php'),(320,'wp-admin/includes/taxonomy.php'),(321,'wp-admin/includes/template.php'),(322,'wp-admin/includes/theme-install.php'),(323,'wp-admin/includes/theme.php'),(324,'wp-admin/includes/translation-install.php'),(325,'wp-admin/includes/update-core.php'),(326,'wp-admin/includes/update.php'),(327,'wp-admin/includes/upgrade.php'),(328,'wp-admin/includes/user.php'),(329,'wp-admin/includes/widgets.php'),(330,'wp-admin/index.php'),(331,'wp-admin/install-helper.php'),(332,'wp-admin/install.php'),(333,'wp-admin/js/accordion.js'),(334,'wp-admin/js/accordion.min.js'),(335,'wp-admin/js/code-editor.js'),(336,'wp-admin/js/code-editor.min.js'),(337,'wp-admin/js/color-picker.js'),(338,'wp-admin/js/color-picker.min.js'),(339,'wp-admin/js/comment.js'),(340,'wp-admin/js/comment.min.js'),(341,'wp-admin/js/common.js'),(342,'wp-admin/js/common.min.js'),(343,'wp-admin/js/custom-background.js'),(344,'wp-admin/js/custom-background.min.js'),(345,'wp-admin/js/custom-header.js'),(346,'wp-admin/js/customize-controls.js'),(347,'wp-admin/js/customize-controls.min.js'),(348,'wp-admin/js/customize-nav-menus.js'),(349,'wp-admin/js/customize-nav-menus.min.js'),(350,'wp-admin/js/customize-widgets.js'),(351,'wp-admin/js/customize-widgets.min.js'),(352,'wp-admin/js/dashboard.js'),(353,'wp-admin/js/dashboard.min.js'),(354,'wp-admin/js/edit-comments.js'),(355,'wp-admin/js/edit-comments.min.js'),(356,'wp-admin/js/editor-expand.js'),(357,'wp-admin/js/editor-expand.min.js'),(358,'wp-admin/js/editor.js'),(359,'wp-admin/js/editor.min.js'),(360,'wp-admin/js/farbtastic.js'),(361,'wp-admin/js/gallery.js'),(362,'wp-admin/js/gallery.min.js'),(363,'wp-admin/js/image-edit.js'),(364,'wp-admin/js/image-edit.min.js'),(365,'wp-admin/js/inline-edit-post.js'),(366,'wp-admin/js/inline-edit-post.min.js'),(367,'wp-admin/js/inline-edit-tax.js'),(368,'wp-admin/js/inline-edit-tax.min.js'),(369,'wp-admin/js/iris.min.js'),(370,'wp-admin/js/language-chooser.js'),(371,'wp-admin/js/language-chooser.min.js'),(372,'wp-admin/js/link.js'),(373,'wp-admin/js/link.min.js'),(374,'wp-admin/js/media-gallery.js'),(375,'wp-admin/js/media-gallery.min.js'),(376,'wp-admin/js/media-upload.js'),(377,'wp-admin/js/media-upload.min.js'),(378,'wp-admin/js/media.js'),(379,'wp-admin/js/media.min.js'),(380,'wp-admin/js/nav-menu.js'),(381,'wp-admin/js/nav-menu.min.js'),(382,'wp-admin/js/password-strength-meter.js'),(383,'wp-admin/js/password-strength-meter.min.js'),(384,'wp-admin/js/plugin-install.js'),(385,'wp-admin/js/plugin-install.min.js'),(386,'wp-admin/js/post.js'),(387,'wp-admin/js/post.min.js'),(388,'wp-admin/js/postbox.js'),(389,'wp-admin/js/postbox.min.js'),(390,'wp-admin/js/revisions.js'),(391,'wp-admin/js/revisions.min.js'),(392,'wp-admin/js/set-post-thumbnail.js'),(393,'wp-admin/js/set-post-thumbnail.min.js'),(394,'wp-admin/js/svg-painter.js'),(395,'wp-admin/js/svg-painter.min.js'),(396,'wp-admin/js/tags-box.js'),(397,'wp-admin/js/tags-box.min.js'),(398,'wp-admin/js/tags-suggest.js'),(399,'wp-admin/js/tags-suggest.min.js'),(400,'wp-admin/js/tags.js'),(401,'wp-admin/js/tags.min.js'),(402,'wp-admin/js/theme-plugin-editor.js'),(403,'wp-admin/js/theme-plugin-editor.min.js'),(404,'wp-admin/js/theme.js'),(405,'wp-admin/js/theme.min.js'),(406,'wp-admin/js/updates.js'),(407,'wp-admin/js/updates.min.js'),(408,'wp-admin/js/user-profile.js'),(409,'wp-admin/js/user-profile.min.js'),(410,'wp-admin/js/user-suggest.js'),(411,'wp-admin/js/user-suggest.min.js'),(412,'wp-admin/js/widgets/custom-html-widgets.js'),(413,'wp-admin/js/widgets/custom-html-widgets.min.js'),(414,'wp-admin/js/widgets/media-audio-widget.js'),(415,'wp-admin/js/widgets/media-audio-widget.min.js'),(416,'wp-admin/js/widgets/media-gallery-widget.js'),(417,'wp-admin/js/widgets/media-gallery-widget.min.js'),(418,'wp-admin/js/widgets/media-image-widget.js'),(419,'wp-admin/js/widgets/media-image-widget.min.js'),(420,'wp-admin/js/widgets/media-video-widget.js'),(421,'wp-admin/js/widgets/media-video-widget.min.js'),(422,'wp-admin/js/widgets/media-widgets.js'),(423,'wp-admin/js/widgets/media-widgets.min.js'),(424,'wp-admin/js/widgets/text-widgets.js'),(425,'wp-admin/js/widgets/text-widgets.min.js'),(426,'wp-admin/js/widgets.js'),(427,'wp-admin/js/widgets.min.js'),(428,'wp-admin/js/word-count.js'),(429,'wp-admin/js/word-count.min.js'),(430,'wp-admin/js/wp-fullscreen-stub.js'),(431,'wp-admin/js/wp-fullscreen-stub.min.js'),(432,'wp-admin/js/xfn.js'),(433,'wp-admin/js/xfn.min.js'),(434,'wp-admin/link-add.php'),(435,'wp-admin/link-manager.php'),(436,'wp-admin/link-parse-opml.php'),(437,'wp-admin/link.php'),(438,'wp-admin/load-scripts.php'),(439,'wp-admin/load-styles.php'),(440,'wp-admin/maint/repair.php'),(441,'wp-admin/media-new.php'),(442,'wp-admin/media-upload.php'),(443,'wp-admin/media.php'),(444,'wp-admin/menu-header.php'),(445,'wp-admin/menu.php'),(446,'wp-admin/moderation.php'),(447,'wp-admin/ms-admin.php'),(448,'wp-admin/ms-delete-site.php'),(449,'wp-admin/ms-edit.php'),(450,'wp-admin/ms-options.php'),(451,'wp-admin/ms-sites.php'),(452,'wp-admin/ms-themes.php'),(453,'wp-admin/ms-upgrade-network.php'),(454,'wp-admin/ms-users.php'),(455,'wp-admin/my-sites.php'),(456,'wp-admin/nav-menus.php'),(457,'wp-admin/network/about.php'),(458,'wp-admin/network/admin.php'),(459,'wp-admin/network/credits.php'),(460,'wp-admin/network/edit.php'),(461,'wp-admin/network/freedoms.php'),(462,'wp-admin/network/index.php'),(463,'wp-admin/network/menu.php'),(464,'wp-admin/network/plugin-editor.php'),(465,'wp-admin/network/plugin-install.php'),(466,'wp-admin/network/plugins.php'),(467,'wp-admin/network/privacy.php'),(468,'wp-admin/network/profile.php'),(469,'wp-admin/network/settings.php'),(470,'wp-admin/network/setup.php'),(471,'wp-admin/network/site-info.php'),(472,'wp-admin/network/site-new.php'),(473,'wp-admin/network/site-settings.php'),(474,'wp-admin/network/site-themes.php'),(475,'wp-admin/network/site-users.php'),(476,'wp-admin/network/sites.php'),(477,'wp-admin/network/theme-editor.php'),(478,'wp-admin/network/theme-install.php'),(479,'wp-admin/network/themes.php'),(480,'wp-admin/network/update-core.php'),(481,'wp-admin/network/update.php'),(482,'wp-admin/network/upgrade.php'),(483,'wp-admin/network/user-edit.php'),(484,'wp-admin/network/user-new.php'),(485,'wp-admin/network/users.php'),(486,'wp-admin/network.php'),(487,'wp-admin/options-discussion.php'),(488,'wp-admin/options-general.php'),(489,'wp-admin/options-head.php'),(490,'wp-admin/options-media.php'),(491,'wp-admin/options-permalink.php'),(492,'wp-admin/options-reading.php'),(493,'wp-admin/options-writing.php'),(494,'wp-admin/options.php'),(495,'wp-admin/plugin-editor.php'),(496,'wp-admin/plugin-install.php'),(497,'wp-admin/plugins.php'),(498,'wp-admin/post-new.php'),(499,'wp-admin/post.php'),(500,'wp-admin/press-this.php'),(501,'wp-admin/privacy.php'),(502,'wp-admin/profile.php'),(503,'wp-admin/revision.php'),(504,'wp-admin/setup-config.php'),(505,'wp-admin/term.php'),(506,'wp-admin/theme-editor.php'),(507,'wp-admin/theme-install.php'),(508,'wp-admin/themes.php'),(509,'wp-admin/tools.php'),(510,'wp-admin/update-core.php'),(511,'wp-admin/update.php'),(512,'wp-admin/upgrade-functions.php'),(513,'wp-admin/upgrade.php'),(514,'wp-admin/upload.php'),(515,'wp-admin/user/about.php'),(516,'wp-admin/user/admin.php'),(517,'wp-admin/user/credits.php'),(518,'wp-admin/user/error_log'),(519,'wp-admin/user/freedoms.php'),(520,'wp-admin/user/index.php'),(521,'wp-admin/user/menu.php'),(522,'wp-admin/user/privacy.php'),(523,'wp-admin/user/profile.php'),(524,'wp-admin/user/user-edit.php'),(525,'wp-admin/user-edit.php'),(526,'wp-admin/user-new.php'),(527,'wp-admin/users.php'),(528,'wp-admin/widgets.php'),(529,'wp-blog-header.php'),(530,'wp-comments-post.php'),(531,'wp-config-sample.php'),(532,'wp-config.php'),(533,'wp-content/index.php'),(534,'wp-content/plugins/adminimize/LICENSE.txt'),(535,'wp-content/plugins/adminimize/adminimize.php'),(536,'wp-content/plugins/adminimize/adminimize_page.php'),(537,'wp-content/plugins/adminimize/css/mw_cat_full.css'),(538,'wp-content/plugins/adminimize/css/mw_cat_full.min.css'),(539,'wp-content/plugins/adminimize/css/mw_small_user_info.css'),(540,'wp-content/plugins/adminimize/css/mw_small_user_info.min.css'),(541,'wp-content/plugins/adminimize/css/style.css'),(542,'wp-content/plugins/adminimize/css/style.min.css'),(543,'wp-content/plugins/adminimize/inc-options/admin_bar.php'),(544,'wp-content/plugins/adminimize/inc-options/admin_bar_frontend.php'),(545,'wp-content/plugins/adminimize/inc-options/backend_options.php'),(546,'wp-content/plugins/adminimize/inc-options/dashboard_options.php'),(547,'wp-content/plugins/adminimize/inc-options/deinstall_options.php'),(548,'wp-content/plugins/adminimize/inc-options/global_options.php'),(549,'wp-content/plugins/adminimize/inc-options/im_export_options.php'),(550,'wp-content/plugins/adminimize/inc-options/links_options.php'),(551,'wp-content/plugins/adminimize/inc-options/menu_options.php'),(552,'wp-content/plugins/adminimize/inc-options/minimenu.php'),(553,'wp-content/plugins/adminimize/inc-options/self_settings.php'),(554,'wp-content/plugins/adminimize/inc-options/settings_notice.php'),(555,'wp-content/plugins/adminimize/inc-options/theme_options.php'),(556,'wp-content/plugins/adminimize/inc-options/widget_options.php'),(557,'wp-content/plugins/adminimize/inc-options/wp_nav_menu_options.php'),(558,'wp-content/plugins/adminimize/inc-options/write_cp_options.php'),(559,'wp-content/plugins/adminimize/inc-options/write_page_options.php'),(560,'wp-content/plugins/adminimize/inc-options/write_post_options.php'),(561,'wp-content/plugins/adminimize/inc-setup/admin-bar-items.php'),(562,'wp-content/plugins/adminimize/inc-setup/admin-footer.php'),(563,'wp-content/plugins/adminimize/inc-setup/dashboard.php'),(564,'wp-content/plugins/adminimize/inc-setup/export.php'),(565,'wp-content/plugins/adminimize/inc-setup/footer.php'),(566,'wp-content/plugins/adminimize/inc-setup/helping_hands.php'),(567,'wp-content/plugins/adminimize/inc-setup/import.php'),(568,'wp-content/plugins/adminimize/inc-setup/messages.php'),(569,'wp-content/plugins/adminimize/inc-setup/meta-boxes.php'),(570,'wp-content/plugins/adminimize/inc-setup/remove-admin-bar.php'),(571,'wp-content/plugins/adminimize/inc-setup/remove-admin-notices.php'),(572,'wp-content/plugins/adminimize/inc-setup/widget.php'),(573,'wp-content/plugins/adminimize/js/adminimize.js'),(574,'wp-content/plugins/adminimize/js/adminimize.min.js'),(575,'wp-content/plugins/adminimize/js/remove_footer.js'),(576,'wp-content/plugins/adminimize/js/remove_footer.min.js'),(577,'wp-content/plugins/adminimize/js/remove_header.js'),(578,'wp-content/plugins/adminimize/js/remove_header.min.js'),(579,'wp-content/plugins/adminimize/js/tb_window.js'),(580,'wp-content/plugins/adminimize/js/tb_window.min.js'),(581,'wp-content/plugins/adminimize/js/timestamp.js'),(582,'wp-content/plugins/adminimize/js/timestamp.min.js'),(583,'wp-content/plugins/adminimize/readme.txt'),(584,'wp-content/plugins/akismet/.htaccess'),(585,'wp-content/plugins/akismet/LICENSE.txt'),(586,'wp-content/plugins/akismet/_inc/akismet.css'),(587,'wp-content/plugins/akismet/_inc/akismet.js'),(588,'wp-content/plugins/akismet/_inc/form.js'),(589,'wp-content/plugins/akismet/_inc/img/logo-full-2x.png'),(590,'wp-content/plugins/akismet/akismet.php'),(591,'wp-content/plugins/akismet/class.akismet-admin.php'),(592,'wp-content/plugins/akismet/class.akismet-cli.php'),(593,'wp-content/plugins/akismet/class.akismet-rest-api.php'),(594,'wp-content/plugins/akismet/class.akismet-widget.php'),(595,'wp-content/plugins/akismet/class.akismet.php'),(596,'wp-content/plugins/akismet/index.php'),(597,'wp-content/plugins/akismet/readme.txt'),(598,'wp-content/plugins/akismet/views/config.php'),(599,'wp-content/plugins/akismet/views/get.php'),(600,'wp-content/plugins/akismet/views/notice.php'),(601,'wp-content/plugins/akismet/views/start.php'),(602,'wp-content/plugins/akismet/views/stats.php'),(603,'wp-content/plugins/akismet/wrapper.php'),(604,'wp-content/plugins/foobox-image-lightbox/assets/img/foobot.png'),(605,'wp-content/plugins/foobox-image-lightbox/assets/img/foobot_red.png'),(606,'wp-content/plugins/foobox-image-lightbox/foobox-free.php'),(607,'wp-content/plugins/foobox-image-lightbox/free/css/admin-foobox_page_foobox-settings.css'),(608,'wp-content/plugins/foobox-image-lightbox/free/css/admin-toplevel_page_foobox-image-lightbox.css'),(609,'wp-content/plugins/foobox-image-lightbox/free/css/font/foobox.eot'),(610,'wp-content/plugins/foobox-image-lightbox/free/css/font/foobox.svg'),(611,'wp-content/plugins/foobox-image-lightbox/free/css/font/foobox.ttf'),(612,'wp-content/plugins/foobox-image-lightbox/free/css/font/foobox.woff'),(613,'wp-content/plugins/foobox-image-lightbox/free/css/foobox.free.min.css'),(614,'wp-content/plugins/foobox-image-lightbox/free/css/foobox.noie7.min.css'),(615,'wp-content/plugins/foobox-image-lightbox/free/css/img/demo.png'),(616,'wp-content/plugins/foobox-image-lightbox/free/css/img/tick.png'),(617,'wp-content/plugins/foobox-image-lightbox/free/css/img/tick2.png'),(618,'wp-content/plugins/foobox-image-lightbox/free/css/img/tick3.png'),(619,'wp-content/plugins/foobox-image-lightbox/free/foobox-free.php'),(620,'wp-content/plugins/foobox-image-lightbox/free/includes/class-exclude.php'),(621,'wp-content/plugins/foobox-image-lightbox/free/includes/class-foogallery-foobox-free-extension.php'),(622,'wp-content/plugins/foobox-image-lightbox/free/includes/class-script-generator.php'),(623,'wp-content/plugins/foobox-image-lightbox/free/includes/class-settings.php'),(624,'wp-content/plugins/foobox-image-lightbox/free/includes/foopluginbase/README.md'),(625,'wp-content/plugins/foobox-image-lightbox/free/includes/foopluginbase/bootstrapper.php'),(626,'wp-content/plugins/foobox-image-lightbox/free/includes/foopluginbase/changelog.txt'),(627,'wp-content/plugins/foobox-image-lightbox/free/includes/foopluginbase/classes/class-foo-plugin-base.php'),(628,'wp-content/plugins/foobox-image-lightbox/free/includes/foopluginbase/classes/class-foo-plugin-options.php'),(629,'wp-content/plugins/foobox-image-lightbox/free/includes/foopluginbase/classes/class-foo-plugin-settings.php'),(630,'wp-content/plugins/foobox-image-lightbox/free/includes/foopluginbase/classes/class-foo-plugin-textdomain.php'),(631,'wp-content/plugins/foobox-image-lightbox/free/includes/foopluginbase/classes/index.php'),(632,'wp-content/plugins/foobox-image-lightbox/free/includes/foopluginbase/css/admin-settings.css'),(633,'wp-content/plugins/foobox-image-lightbox/free/includes/foopluginbase/css/index.php'),(634,'wp-content/plugins/foobox-image-lightbox/free/includes/foopluginbase/functions/arrays.php'),(635,'wp-content/plugins/foobox-image-lightbox/free/includes/foopluginbase/functions/general.php'),(636,'wp-content/plugins/foobox-image-lightbox/free/includes/foopluginbase/functions/index.php'),(637,'wp-content/plugins/foobox-image-lightbox/free/includes/foopluginbase/functions/screen.php'),(638,'wp-content/plugins/foobox-image-lightbox/free/includes/foopluginbase/functions/strings.php'),(639,'wp-content/plugins/foobox-image-lightbox/free/includes/foopluginbase/index.php'),(640,'wp-content/plugins/foobox-image-lightbox/free/includes/foopluginbase/js/admin-settings.js'),(641,'wp-content/plugins/foobox-image-lightbox/free/includes/foopluginbase/js/index.php'),(642,'wp-content/plugins/foobox-image-lightbox/free/includes/foopluginbase/views/index.php'),(643,'wp-content/plugins/foobox-image-lightbox/free/includes/foopluginbase/views/settings.php'),(644,'wp-content/plugins/foobox-image-lightbox/free/includes/upgrade.php'),(645,'wp-content/plugins/foobox-image-lightbox/free/includes/view-getting-started.php'),(646,'wp-content/plugins/foobox-image-lightbox/free/js/admin-foobox_page_foobox-settings.js'),(647,'wp-content/plugins/foobox-image-lightbox/free/js/admin-toplevel_page_foobox-image-lightbox.js'),(648,'wp-content/plugins/foobox-image-lightbox/free/js/foobox.free.min.js'),(649,'wp-content/plugins/foobox-image-lightbox/freemius/.codeclimate.yml'),(650,'wp-content/plugins/foobox-image-lightbox/freemius/.github/ISSUE_TEMPLATE.md'),(651,'wp-content/plugins/foobox-image-lightbox/freemius/.travis.yml'),(652,'wp-content/plugins/foobox-image-lightbox/freemius/LICENSE.txt'),(653,'wp-content/plugins/foobox-image-lightbox/freemius/README.md'),(654,'wp-content/plugins/foobox-image-lightbox/freemius/assets/css/admin/account.css'),(655,'wp-content/plugins/foobox-image-lightbox/freemius/assets/css/admin/add-ons.css'),(656,'wp-content/plugins/foobox-image-lightbox/freemius/assets/css/admin/affiliation.css'),(657,'wp-content/plugins/foobox-image-lightbox/freemius/assets/css/admin/checkout.css'),(658,'wp-content/plugins/foobox-image-lightbox/freemius/assets/css/admin/common.css'),(659,'wp-content/plugins/foobox-image-lightbox/freemius/assets/css/admin/connect.css'),(660,'wp-content/plugins/foobox-image-lightbox/freemius/assets/css/admin/deactivation-feedback.css'),(661,'wp-content/plugins/foobox-image-lightbox/freemius/assets/css/admin/debug.css'),(662,'wp-content/plugins/foobox-image-lightbox/freemius/assets/css/admin/dialog-boxes.css'),(663,'wp-content/plugins/foobox-image-lightbox/freemius/assets/css/admin/index.php'),(664,'wp-content/plugins/foobox-image-lightbox/freemius/assets/css/admin/license-activation.css'),(665,'wp-content/plugins/foobox-image-lightbox/freemius/assets/css/customizer.css'),(666,'wp-content/plugins/foobox-image-lightbox/freemius/assets/css/index.php'),(667,'wp-content/plugins/foobox-image-lightbox/freemius/assets/img/foobox-image-lightbox.png'),(668,'wp-content/plugins/foobox-image-lightbox/freemius/assets/img/index.php'),(669,'wp-content/plugins/foobox-image-lightbox/freemius/assets/img/plugin-icon.png'),(670,'wp-content/plugins/foobox-image-lightbox/freemius/assets/img/theme-icon.png'),(671,'wp-content/plugins/foobox-image-lightbox/freemius/assets/index.php'),(672,'wp-content/plugins/foobox-image-lightbox/freemius/assets/js/index.php'),(673,'wp-content/plugins/foobox-image-lightbox/freemius/assets/js/nojquery.ba-postmessage.js'),(674,'wp-content/plugins/foobox-image-lightbox/freemius/assets/js/nojquery.ba-postmessage.min.js'),(675,'wp-content/plugins/foobox-image-lightbox/freemius/assets/js/postmessage.js'),(676,'wp-content/plugins/foobox-image-lightbox/freemius/assets/scss/_colors.scss'),(677,'wp-content/plugins/foobox-image-lightbox/freemius/assets/scss/_functions.scss'),(678,'wp-content/plugins/foobox-image-lightbox/freemius/assets/scss/_load.scss'),(679,'wp-content/plugins/foobox-image-lightbox/freemius/assets/scss/_mixins.scss'),(680,'wp-content/plugins/foobox-image-lightbox/freemius/assets/scss/_start.scss'),(681,'wp-content/plugins/foobox-image-lightbox/freemius/assets/scss/_vars.scss'),(682,'wp-content/plugins/foobox-image-lightbox/freemius/assets/scss/admin/_ajax-loader.scss'),(683,'wp-content/plugins/foobox-image-lightbox/freemius/assets/scss/admin/_auto-install.scss'),(684,'wp-content/plugins/foobox-image-lightbox/freemius/assets/scss/admin/_deactivation-feedback.scss'),(685,'wp-content/plugins/foobox-image-lightbox/freemius/assets/scss/admin/_license-activation.scss'),(686,'wp-content/plugins/foobox-image-lightbox/freemius/assets/scss/admin/_license-key-resend.scss'),(687,'wp-content/plugins/foobox-image-lightbox/freemius/assets/scss/admin/_modal-common.scss'),(688,'wp-content/plugins/foobox-image-lightbox/freemius/assets/scss/admin/_themes.scss'),(689,'wp-content/plugins/foobox-image-lightbox/freemius/assets/scss/admin/account.scss'),(690,'wp-content/plugins/foobox-image-lightbox/freemius/assets/scss/admin/add-ons.scss'),(691,'wp-content/plugins/foobox-image-lightbox/freemius/assets/scss/admin/affiliation.scss'),(692,'wp-content/plugins/foobox-image-lightbox/freemius/assets/scss/admin/checkout.scss'),(693,'wp-content/plugins/foobox-image-lightbox/freemius/assets/scss/admin/common.scss'),(694,'wp-content/plugins/foobox-image-lightbox/freemius/assets/scss/admin/connect.scss'),(695,'wp-content/plugins/foobox-image-lightbox/freemius/assets/scss/admin/debug.scss'),(696,'wp-content/plugins/foobox-image-lightbox/freemius/assets/scss/admin/dialog-boxes.scss'),(697,'wp-content/plugins/foobox-image-lightbox/freemius/assets/scss/admin/index.php'),(698,'wp-content/plugins/foobox-image-lightbox/freemius/assets/scss/customizer.scss'),(699,'wp-content/plugins/foobox-image-lightbox/freemius/assets/scss/index.php'),(700,'wp-content/plugins/foobox-image-lightbox/freemius/composer.json'),(701,'wp-content/plugins/foobox-image-lightbox/freemius/config.php'),(702,'wp-content/plugins/foobox-image-lightbox/freemius/gulpfile.js'),(703,'wp-content/plugins/foobox-image-lightbox/freemius/includes/class-freemius-abstract.php'),(704,'wp-content/plugins/foobox-image-lightbox/freemius/includes/class-freemius.php'),(705,'wp-content/plugins/foobox-image-lightbox/freemius/includes/class-fs-api.php'),(706,'wp-content/plugins/foobox-image-lightbox/freemius/includes/class-fs-logger.php'),(707,'wp-content/plugins/foobox-image-lightbox/freemius/includes/class-fs-plugin-updater.php'),(708,'wp-content/plugins/foobox-image-lightbox/freemius/includes/class-fs-security.php'),(709,'wp-content/plugins/foobox-image-lightbox/freemius/includes/customizer/class-fs-customizer-support-section.php'),(710,'wp-content/plugins/foobox-image-lightbox/freemius/includes/customizer/class-fs-customizer-upsell-control.php'),(711,'wp-content/plugins/foobox-image-lightbox/freemius/includes/customizer/index.php'),(712,'wp-content/plugins/foobox-image-lightbox/freemius/includes/debug/class-fs-debug-bar-panel.php'),(713,'wp-content/plugins/foobox-image-lightbox/freemius/includes/debug/debug-bar-start.php'),(714,'wp-content/plugins/foobox-image-lightbox/freemius/includes/debug/index.php'),(715,'wp-content/plugins/foobox-image-lightbox/freemius/includes/entities/class-fs-affiliate-terms.php'),(716,'wp-content/plugins/foobox-image-lightbox/freemius/includes/entities/class-fs-affiliate.php'),(717,'wp-content/plugins/foobox-image-lightbox/freemius/includes/entities/class-fs-billing.php'),(718,'wp-content/plugins/foobox-image-lightbox/freemius/includes/entities/class-fs-entity.php'),(719,'wp-content/plugins/foobox-image-lightbox/freemius/includes/entities/class-fs-payment.php'),(720,'wp-content/plugins/foobox-image-lightbox/freemius/includes/entities/class-fs-plugin-info.php'),(721,'wp-content/plugins/foobox-image-lightbox/freemius/includes/entities/class-fs-plugin-license.php'),(722,'wp-content/plugins/foobox-image-lightbox/freemius/includes/entities/class-fs-plugin-plan.php'),(723,'wp-content/plugins/foobox-image-lightbox/freemius/includes/entities/class-fs-plugin-tag.php'),(724,'wp-content/plugins/foobox-image-lightbox/freemius/includes/entities/class-fs-plugin.php'),(725,'wp-content/plugins/foobox-image-lightbox/freemius/includes/entities/class-fs-pricing.php'),(726,'wp-content/plugins/foobox-image-lightbox/freemius/includes/entities/class-fs-scope-entity.php'),(727,'wp-content/plugins/foobox-image-lightbox/freemius/includes/entities/class-fs-site.php'),(728,'wp-content/plugins/foobox-image-lightbox/freemius/includes/entities/class-fs-subscription.php'),(729,'wp-content/plugins/foobox-image-lightbox/freemius/includes/entities/class-fs-user.php'),(730,'wp-content/plugins/foobox-image-lightbox/freemius/includes/entities/index.php'),(731,'wp-content/plugins/foobox-image-lightbox/freemius/includes/fs-core-functions.php'),(732,'wp-content/plugins/foobox-image-lightbox/freemius/includes/fs-essential-functions.php'),(733,'wp-content/plugins/foobox-image-lightbox/freemius/includes/fs-plugin-info-dialog.php'),(734,'wp-content/plugins/foobox-image-lightbox/freemius/includes/i18n.php'),(735,'wp-content/plugins/foobox-image-lightbox/freemius/includes/index.php'),(736,'wp-content/plugins/foobox-image-lightbox/freemius/includes/l10n.php'),(737,'wp-content/plugins/foobox-image-lightbox/freemius/includes/managers/class-fs-admin-menu-manager.php'),(738,'wp-content/plugins/foobox-image-lightbox/freemius/includes/managers/class-fs-admin-notice-manager.php'),(739,'wp-content/plugins/foobox-image-lightbox/freemius/includes/managers/class-fs-cache-manager.php'),(740,'wp-content/plugins/foobox-image-lightbox/freemius/includes/managers/class-fs-key-value-storage.php'),(741,'wp-content/plugins/foobox-image-lightbox/freemius/includes/managers/class-fs-license-manager.php'),(742,'wp-content/plugins/foobox-image-lightbox/freemius/includes/managers/class-fs-option-manager.php'),(743,'wp-content/plugins/foobox-image-lightbox/freemius/includes/managers/class-fs-plan-manager.php'),(744,'wp-content/plugins/foobox-image-lightbox/freemius/includes/managers/class-fs-plugin-manager.php'),(745,'wp-content/plugins/foobox-image-lightbox/freemius/includes/managers/index.php'),(746,'wp-content/plugins/foobox-image-lightbox/freemius/includes/sdk/Exceptions/ArgumentNotExistException.php'),(747,'wp-content/plugins/foobox-image-lightbox/freemius/includes/sdk/Exceptions/EmptyArgumentException.php'),(748,'wp-content/plugins/foobox-image-lightbox/freemius/includes/sdk/Exceptions/Exception.php'),(749,'wp-content/plugins/foobox-image-lightbox/freemius/includes/sdk/Exceptions/InvalidArgumentException.php'),(750,'wp-content/plugins/foobox-image-lightbox/freemius/includes/sdk/Exceptions/OAuthException.php'),(751,'wp-content/plugins/foobox-image-lightbox/freemius/includes/sdk/Exceptions/index.php'),(752,'wp-content/plugins/foobox-image-lightbox/freemius/includes/sdk/FreemiusBase.php'),(753,'wp-content/plugins/foobox-image-lightbox/freemius/includes/sdk/FreemiusWordPress.php'),(754,'wp-content/plugins/foobox-image-lightbox/freemius/includes/sdk/LICENSE.txt'),(755,'wp-content/plugins/foobox-image-lightbox/freemius/includes/sdk/index.php'),(756,'wp-content/plugins/foobox-image-lightbox/freemius/includes/supplements/fs-essential-functions-1.1.7.1.php'),(757,'wp-content/plugins/foobox-image-lightbox/freemius/includes/supplements/index.php'),(758,'wp-content/plugins/foobox-image-lightbox/freemius/index.php'),(759,'wp-content/plugins/foobox-image-lightbox/freemius/languages/freemius-da_DK.mo'),(760,'wp-content/plugins/foobox-image-lightbox/freemius/languages/freemius-da_DK.po'),(761,'wp-content/plugins/foobox-image-lightbox/freemius/languages/freemius-en.mo'),(762,'wp-content/plugins/foobox-image-lightbox/freemius/languages/freemius-en.po'),(763,'wp-content/plugins/foobox-image-lightbox/freemius/languages/freemius-es_ES.mo'),(764,'wp-content/plugins/foobox-image-lightbox/freemius/languages/freemius-es_ES.po'),(765,'wp-content/plugins/foobox-image-lightbox/freemius/languages/freemius-he_IL.mo'),(766,'wp-content/plugins/foobox-image-lightbox/freemius/languages/freemius-he_IL.po'),(767,'wp-content/plugins/foobox-image-lightbox/freemius/languages/freemius-it_IT.mo'),(768,'wp-content/plugins/foobox-image-lightbox/freemius/languages/freemius-it_IT.po'),(769,'wp-content/plugins/foobox-image-lightbox/freemius/languages/freemius-ja_JP.mo'),(770,'wp-content/plugins/foobox-image-lightbox/freemius/languages/freemius-ja_JP.po'),(771,'wp-content/plugins/foobox-image-lightbox/freemius/languages/freemius.pot'),(772,'wp-content/plugins/foobox-image-lightbox/freemius/languages/index.php'),(773,'wp-content/plugins/foobox-image-lightbox/freemius/package.json'),(774,'wp-content/plugins/foobox-image-lightbox/freemius/require.php'),(775,'wp-content/plugins/foobox-image-lightbox/freemius/start.php'),(776,'wp-content/plugins/foobox-image-lightbox/freemius/templates/account/billing.php'),(777,'wp-content/plugins/foobox-image-lightbox/freemius/templates/account/index.php'),(778,'wp-content/plugins/foobox-image-lightbox/freemius/templates/account/payments.php'),(779,'wp-content/plugins/foobox-image-lightbox/freemius/templates/account.php'),(780,'wp-content/plugins/foobox-image-lightbox/freemius/templates/add-ons.php'),(781,'wp-content/plugins/foobox-image-lightbox/freemius/templates/add-trial-to-pricing.php'),(782,'wp-content/plugins/foobox-image-lightbox/freemius/templates/admin-notice.php'),(783,'wp-content/plugins/foobox-image-lightbox/freemius/templates/ajax-loader.php'),(784,'wp-content/plugins/foobox-image-lightbox/freemius/templates/all-admin-notice.php'),(785,'wp-content/plugins/foobox-image-lightbox/freemius/templates/auto-installation.php'),(786,'wp-content/plugins/foobox-image-lightbox/freemius/templates/checkout-legacy.php'),(787,'wp-content/plugins/foobox-image-lightbox/freemius/templates/checkout.php'),(788,'wp-content/plugins/foobox-image-lightbox/freemius/templates/connect.php'),(789,'wp-content/plugins/foobox-image-lightbox/freemius/templates/contact.php'),(790,'wp-content/plugins/foobox-image-lightbox/freemius/templates/debug/api-calls.php'),(791,'wp-content/plugins/foobox-image-lightbox/freemius/templates/debug/index.php'),(792,'wp-content/plugins/foobox-image-lightbox/freemius/templates/debug/logger.php'),(793,'wp-content/plugins/foobox-image-lightbox/freemius/templates/debug/plugins-themes-sync.php'),(794,'wp-content/plugins/foobox-image-lightbox/freemius/templates/debug/scheduled-crons.php'),(795,'wp-content/plugins/foobox-image-lightbox/freemius/templates/debug.php'),(796,'wp-content/plugins/foobox-image-lightbox/freemius/templates/email.php'),(797,'wp-content/plugins/foobox-image-lightbox/freemius/templates/firewall-issues-js.php'),(798,'wp-content/plugins/foobox-image-lightbox/freemius/templates/forms/affiliation.php'),(799,'wp-content/plugins/foobox-image-lightbox/freemius/templates/forms/deactivation/contact.php'),(800,'wp-content/plugins/foobox-image-lightbox/freemius/templates/forms/deactivation/form.php'),(801,'wp-content/plugins/foobox-image-lightbox/freemius/templates/forms/deactivation/index.php'),(802,'wp-content/plugins/foobox-image-lightbox/freemius/templates/forms/deactivation/retry-skip.php'),(803,'wp-content/plugins/foobox-image-lightbox/freemius/templates/forms/index.php'),(804,'wp-content/plugins/foobox-image-lightbox/freemius/templates/forms/license-activation.php'),(805,'wp-content/plugins/foobox-image-lightbox/freemius/templates/forms/optout.php'),(806,'wp-content/plugins/foobox-image-lightbox/freemius/templates/forms/resend-key.php'),(807,'wp-content/plugins/foobox-image-lightbox/freemius/templates/forms/trial-start.php'),(808,'wp-content/plugins/foobox-image-lightbox/freemius/templates/index.php'),(809,'wp-content/plugins/foobox-image-lightbox/freemius/templates/js/index.php'),(810,'wp-content/plugins/foobox-image-lightbox/freemius/templates/js/jquery.content-change.php'),(811,'wp-content/plugins/foobox-image-lightbox/freemius/templates/js/style-premium-theme.php'),(812,'wp-content/plugins/foobox-image-lightbox/freemius/templates/plugin-icon.php'),(813,'wp-content/plugins/foobox-image-lightbox/freemius/templates/plugin-info/description.php'),(814,'wp-content/plugins/foobox-image-lightbox/freemius/templates/plugin-info/features.php'),(815,'wp-content/plugins/foobox-image-lightbox/freemius/templates/plugin-info/index.php'),(816,'wp-content/plugins/foobox-image-lightbox/freemius/templates/plugin-info/screenshots.php'),(817,'wp-content/plugins/foobox-image-lightbox/freemius/templates/powered-by.php'),(818,'wp-content/plugins/foobox-image-lightbox/freemius/templates/pricing.php'),(819,'wp-content/plugins/foobox-image-lightbox/freemius/templates/secure-https-header.php'),(820,'wp-content/plugins/foobox-image-lightbox/freemius/templates/sticky-admin-notice-js.php'),(821,'wp-content/plugins/foobox-image-lightbox/freemius/templates/tabs-capture-js.php'),(822,'wp-content/plugins/foobox-image-lightbox/freemius/templates/tabs.php'),(823,'wp-content/plugins/foobox-image-lightbox/includes/actions.php'),(824,'wp-content/plugins/foobox-image-lightbox/includes/admin/menu.php'),(825,'wp-content/plugins/foobox-image-lightbox/includes/admin/view-getting-started.php'),(826,'wp-content/plugins/foobox-image-lightbox/includes/filters.php'),(827,'wp-content/plugins/foobox-image-lightbox/includes/functions.php'),(828,'wp-content/plugins/foobox-image-lightbox/install.txt'),(829,'wp-content/plugins/foobox-image-lightbox/languages/fooboxfree-sr_RS.mo'),(830,'wp-content/plugins/foobox-image-lightbox/languages/fooboxfree-sr_RS.po'),(831,'wp-content/plugins/foobox-image-lightbox/languages/fooboxfree.mo'),(832,'wp-content/plugins/foobox-image-lightbox/languages/fooboxfree.pot'),(833,'wp-content/plugins/foobox-image-lightbox/license.txt'),(834,'wp-content/plugins/foobox-image-lightbox/readme.txt'),(835,'wp-content/plugins/foogallery/Gruntfile.js'),(836,'wp-content/plugins/foogallery/LICENSE.txt'),(837,'wp-content/plugins/foogallery/README.md'),(838,'wp-content/plugins/foogallery/README.txt'),(839,'wp-content/plugins/foogallery/assets/extension_bg.png'),(840,'wp-content/plugins/foogallery/assets/foobot_small.png'),(841,'wp-content/plugins/foogallery/assets/image-placeholder.png'),(842,'wp-content/plugins/foogallery/assets/logo.png'),(843,'wp-content/plugins/foogallery/assets/screenshots/admin-edit-gallery.jpg'),(844,'wp-content/plugins/foogallery/assets/screenshots/admin-insert-shortcode.jpg'),(845,'wp-content/plugins/foogallery/assets/screenshots/admin-nextgen-import.jpg'),(846,'wp-content/plugins/foogallery/changelog.txt'),(847,'wp-content/plugins/foogallery/css/admin-foogallery.css'),(848,'wp-content/plugins/foogallery/css/admin-page-foogallery-extensions.css'),(849,'wp-content/plugins/foogallery/css/admin-page-foogallery-help.css'),(850,'wp-content/plugins/foogallery/css/admin-page-foogallery-settings.css'),(851,'wp-content/plugins/foogallery/css/admin-tinymce.css'),(852,'wp-content/plugins/foogallery/css/foogallery-foovideo-overrides.css'),(853,'wp-content/plugins/foogallery/css/foogallery.admin.min.css'),(854,'wp-content/plugins/foogallery/extensions/albums/admin/class-columns.php'),(855,'wp-content/plugins/foogallery/extensions/albums/admin/class-metaboxes.php'),(856,'wp-content/plugins/foogallery/extensions/albums/admin/index.php'),(857,'wp-content/plugins/foogallery/extensions/albums/album-default.php'),(858,'wp-content/plugins/foogallery/extensions/albums/album-stack.php'),(859,'wp-content/plugins/foogallery/extensions/albums/class-albums-extension.php'),(860,'wp-content/plugins/foogallery/extensions/albums/class-foogallery-album.php'),(861,'wp-content/plugins/foogallery/extensions/albums/class-posttypes.php'),(862,'wp-content/plugins/foogallery/extensions/albums/css/admin-foogallery-album.css'),(863,'wp-content/plugins/foogallery/extensions/albums/css/album-default.css'),(864,'wp-content/plugins/foogallery/extensions/albums/css/album-stack.css'),(865,'wp-content/plugins/foogallery/extensions/albums/foogallery-albums.png'),(866,'wp-content/plugins/foogallery/extensions/albums/functions.php'),(867,'wp-content/plugins/foogallery/extensions/albums/js/admin-foogallery-album.js'),(868,'wp-content/plugins/foogallery/extensions/albums/js/album-stack.js'),(869,'wp-content/plugins/foogallery/extensions/albums/public/class-foogallery-album-template-loader.php'),(870,'wp-content/plugins/foogallery/extensions/albums/public/class-rewrite-rules.php'),(871,'wp-content/plugins/foogallery/extensions/albums/public/class-shortcodes.php'),(872,'wp-content/plugins/foogallery/extensions/default-templates/class-default-templates-extension.php'),(873,'wp-content/plugins/foogallery/extensions/default-templates/class-default-templates.php'),(874,'wp-content/plugins/foogallery/extensions/default-templates/default/class-default-gallery-template.php'),(875,'wp-content/plugins/foogallery/extensions/default-templates/default/gallery-default.php'),(876,'wp-content/plugins/foogallery/extensions/default-templates/default/js/admin-gallery-default.js'),(877,'wp-content/plugins/foogallery/extensions/default-templates/functions.php'),(878,'wp-content/plugins/foogallery/extensions/default-templates/image-viewer/class-image-viewer-gallery-template.php'),(879,'wp-content/plugins/foogallery/extensions/default-templates/image-viewer/gallery-image-viewer.php'),(880,'wp-content/plugins/foogallery/extensions/default-templates/image-viewer/js/admin-gallery-image-viewer.js'),(881,'wp-content/plugins/foogallery/extensions/default-templates/justified/class-justified-gallery-template.php'),(882,'wp-content/plugins/foogallery/extensions/default-templates/justified/gallery-justified.php'),(883,'wp-content/plugins/foogallery/extensions/default-templates/masonry/class-masonry-gallery-template.php'),(884,'wp-content/plugins/foogallery/extensions/default-templates/masonry/gallery-masonry.php'),(885,'wp-content/plugins/foogallery/extensions/default-templates/masonry/js/admin-gallery-masonry.js'),(886,'wp-content/plugins/foogallery/extensions/default-templates/shared/css/admin-foogallery.css'),(887,'wp-content/plugins/foogallery/extensions/default-templates/shared/css/foogallery.css'),(888,'wp-content/plugins/foogallery/extensions/default-templates/shared/css/foogallery.min.css'),(889,'wp-content/plugins/foogallery/extensions/default-templates/shared/img/circle-plus.png'),(890,'wp-content/plugins/foogallery/extensions/default-templates/shared/img/circle-plus@2x.png'),(891,'wp-content/plugins/foogallery/extensions/default-templates/shared/img/circle-plus@3x.png'),(892,'wp-content/plugins/foogallery/extensions/default-templates/shared/img/external.png'),(893,'wp-content/plugins/foogallery/extensions/default-templates/shared/img/external@2x.png'),(894,'wp-content/plugins/foogallery/extensions/default-templates/shared/img/external@3x.png'),(895,'wp-content/plugins/foogallery/extensions/default-templates/shared/img/eye.png'),(896,'wp-content/plugins/foogallery/extensions/default-templates/shared/img/eye@2x.png'),(897,'wp-content/plugins/foogallery/extensions/default-templates/shared/img/eye@3x.png'),(898,'wp-content/plugins/foogallery/extensions/default-templates/shared/img/image.png'),(899,'wp-content/plugins/foogallery/extensions/default-templates/shared/img/image@2x.png'),(900,'wp-content/plugins/foogallery/extensions/default-templates/shared/img/image@3x.png'),(901,'wp-content/plugins/foogallery/extensions/default-templates/shared/img/plus.png'),(902,'wp-content/plugins/foogallery/extensions/default-templates/shared/img/plus@2x.png'),(903,'wp-content/plugins/foogallery/extensions/default-templates/shared/img/plus@3x.png'),(904,'wp-content/plugins/foogallery/extensions/default-templates/shared/img/zoom.png'),(905,'wp-content/plugins/foogallery/extensions/default-templates/shared/img/zoom2.png'),(906,'wp-content/plugins/foogallery/extensions/default-templates/shared/img/zoom2@2x.png'),(907,'wp-content/plugins/foogallery/extensions/default-templates/shared/img/zoom2@3x.png'),(908,'wp-content/plugins/foogallery/extensions/default-templates/shared/img/zoom3.png'),(909,'wp-content/plugins/foogallery/extensions/default-templates/shared/img/zoom3@2x.png'),(910,'wp-content/plugins/foogallery/extensions/default-templates/shared/img/zoom3@3x.png'),(911,'wp-content/plugins/foogallery/extensions/default-templates/shared/img/zoom@2x.png'),(912,'wp-content/plugins/foogallery/extensions/default-templates/shared/img/zoom@3x.png'),(913,'wp-content/plugins/foogallery/extensions/default-templates/shared/js/foogallery.js'),(914,'wp-content/plugins/foogallery/extensions/default-templates/shared/js/foogallery.min.js'),(915,'wp-content/plugins/foogallery/extensions/default-templates/simple-portfolio/class-simple-portfolio-gallery-template.php'),(916,'wp-content/plugins/foogallery/extensions/default-templates/simple-portfolio/gallery-simple_portfolio.php'),(917,'wp-content/plugins/foogallery/extensions/default-templates/thumbnail/class-thumbnail-gallery-template.php'),(918,'wp-content/plugins/foogallery/extensions/default-templates/thumbnail/gallery-thumbnail.php'),(919,'wp-content/plugins/foogallery/extensions/default-templates/thumbnail/js/admin-gallery-thumbnail.js'),(920,'wp-content/plugins/foogallery/extensions/extensions.json.js'),(921,'wp-content/plugins/foogallery/extensions/media-categories/class-media-categories-extension.php'),(922,'wp-content/plugins/foogallery/extensions/nextgen-importer/class-nextgen-gallery-importer-extension.php'),(923,'wp-content/plugins/foogallery/extensions/nextgen-importer/class-nextgen-helper.php'),(924,'wp-content/plugins/foogallery/extensions/nextgen-importer/class-nextgen-import-progress-album.php'),(925,'wp-content/plugins/foogallery/extensions/nextgen-importer/class-nextgen-import-progress.php'),(926,'wp-content/plugins/foogallery/extensions/nextgen-importer/class-nextgen-pagination.php'),(927,'wp-content/plugins/foogallery/extensions/nextgen-importer/view-importer.php'),(928,'wp-content/plugins/foogallery/foogallery.php'),(929,'wp-content/plugins/foogallery/freemius/LICENSE.txt'),(930,'wp-content/plugins/foogallery/freemius/README.md'),(931,'wp-content/plugins/foogallery/freemius/assets/css/admin/account.css'),(932,'wp-content/plugins/foogallery/freemius/assets/css/admin/add-ons.css'),(933,'wp-content/plugins/foogallery/freemius/assets/css/admin/affiliation.css'),(934,'wp-content/plugins/foogallery/freemius/assets/css/admin/checkout.css'),(935,'wp-content/plugins/foogallery/freemius/assets/css/admin/common.css'),(936,'wp-content/plugins/foogallery/freemius/assets/css/admin/connect.css'),(937,'wp-content/plugins/foogallery/freemius/assets/css/admin/deactivation-feedback.css'),(938,'wp-content/plugins/foogallery/freemius/assets/css/admin/debug.css'),(939,'wp-content/plugins/foogallery/freemius/assets/css/admin/dialog-boxes.css'),(940,'wp-content/plugins/foogallery/freemius/assets/css/admin/license-activation.css'),(941,'wp-content/plugins/foogallery/freemius/assets/css/customizer.css'),(942,'wp-content/plugins/foogallery/freemius/assets/img/plugin-icon.png'),(943,'wp-content/plugins/foogallery/freemius/assets/img/theme-icon.png'),(944,'wp-content/plugins/foogallery/freemius/assets/index.php'),(945,'wp-content/plugins/foogallery/freemius/assets/js/nojquery.ba-postmessage.js'),(946,'wp-content/plugins/foogallery/freemius/assets/js/nojquery.ba-postmessage.min.js'),(947,'wp-content/plugins/foogallery/freemius/assets/js/postmessage.js'),(948,'wp-content/plugins/foogallery/freemius/assets/scss/_colors.scss'),(949,'wp-content/plugins/foogallery/freemius/assets/scss/_functions.scss'),(950,'wp-content/plugins/foogallery/freemius/assets/scss/_load.scss'),(951,'wp-content/plugins/foogallery/freemius/assets/scss/_mixins.scss'),(952,'wp-content/plugins/foogallery/freemius/assets/scss/_start.scss'),(953,'wp-content/plugins/foogallery/freemius/assets/scss/_vars.scss'),(954,'wp-content/plugins/foogallery/freemius/assets/scss/admin/_ajax-loader.scss'),(955,'wp-content/plugins/foogallery/freemius/assets/scss/admin/_auto-install.scss'),(956,'wp-content/plugins/foogallery/freemius/assets/scss/admin/_deactivation-feedback.scss'),(957,'wp-content/plugins/foogallery/freemius/assets/scss/admin/_license-activation.scss'),(958,'wp-content/plugins/foogallery/freemius/assets/scss/admin/_license-key-resend.scss'),(959,'wp-content/plugins/foogallery/freemius/assets/scss/admin/_modal-common.scss'),(960,'wp-content/plugins/foogallery/freemius/assets/scss/admin/_themes.scss'),(961,'wp-content/plugins/foogallery/freemius/assets/scss/admin/account.scss'),(962,'wp-content/plugins/foogallery/freemius/assets/scss/admin/add-ons.scss'),(963,'wp-content/plugins/foogallery/freemius/assets/scss/admin/affiliation.scss'),(964,'wp-content/plugins/foogallery/freemius/assets/scss/admin/checkout.scss'),(965,'wp-content/plugins/foogallery/freemius/assets/scss/admin/common.scss'),(966,'wp-content/plugins/foogallery/freemius/assets/scss/admin/connect.scss'),(967,'wp-content/plugins/foogallery/freemius/assets/scss/admin/debug.scss'),(968,'wp-content/plugins/foogallery/freemius/assets/scss/admin/dialog-boxes.scss'),(969,'wp-content/plugins/foogallery/freemius/assets/scss/customizer.scss'),(970,'wp-content/plugins/foogallery/freemius/composer.json'),(971,'wp-content/plugins/foogallery/freemius/config.php'),(972,'wp-content/plugins/foogallery/freemius/gulpfile.js'),(973,'wp-content/plugins/foogallery/freemius/includes/class-freemius-abstract.php'),(974,'wp-content/plugins/foogallery/freemius/includes/class-freemius.php'),(975,'wp-content/plugins/foogallery/freemius/includes/class-fs-api.php'),(976,'wp-content/plugins/foogallery/freemius/includes/class-fs-logger.php'),(977,'wp-content/plugins/foogallery/freemius/includes/class-fs-plugin-updater.php'),(978,'wp-content/plugins/foogallery/freemius/includes/class-fs-security.php'),(979,'wp-content/plugins/foogallery/freemius/includes/customizer/class-fs-customizer-support-section.php'),(980,'wp-content/plugins/foogallery/freemius/includes/customizer/class-fs-customizer-upsell-control.php'),(981,'wp-content/plugins/foogallery/freemius/includes/debug/class-fs-debug-bar-panel.php'),(982,'wp-content/plugins/foogallery/freemius/includes/debug/debug-bar-start.php'),(983,'wp-content/plugins/foogallery/freemius/includes/debug/index.php'),(984,'wp-content/plugins/foogallery/freemius/includes/entities/class-fs-affiliate-terms.php'),(985,'wp-content/plugins/foogallery/freemius/includes/entities/class-fs-affiliate.php'),(986,'wp-content/plugins/foogallery/freemius/includes/entities/class-fs-billing.php'),(987,'wp-content/plugins/foogallery/freemius/includes/entities/class-fs-entity.php'),(988,'wp-content/plugins/foogallery/freemius/includes/entities/class-fs-payment.php'),(989,'wp-content/plugins/foogallery/freemius/includes/entities/class-fs-plugin-info.php'),(990,'wp-content/plugins/foogallery/freemius/includes/entities/class-fs-plugin-license.php'),(991,'wp-content/plugins/foogallery/freemius/includes/entities/class-fs-plugin-plan.php'),(992,'wp-content/plugins/foogallery/freemius/includes/entities/class-fs-plugin-tag.php'),(993,'wp-content/plugins/foogallery/freemius/includes/entities/class-fs-plugin.php'),(994,'wp-content/plugins/foogallery/freemius/includes/entities/class-fs-pricing.php'),(995,'wp-content/plugins/foogallery/freemius/includes/entities/class-fs-scope-entity.php'),(996,'wp-content/plugins/foogallery/freemius/includes/entities/class-fs-site.php'),(997,'wp-content/plugins/foogallery/freemius/includes/entities/class-fs-subscription.php'),(998,'wp-content/plugins/foogallery/freemius/includes/entities/class-fs-user.php'),(999,'wp-content/plugins/foogallery/freemius/includes/entities/index.php'),(1000,'wp-content/plugins/foogallery/freemius/includes/fs-core-functions.php'),(1001,'wp-content/plugins/foogallery/freemius/includes/fs-essential-functions.php'),(1002,'wp-content/plugins/foogallery/freemius/includes/fs-plugin-info-dialog.php'),(1003,'wp-content/plugins/foogallery/freemius/includes/i18n.php'),(1004,'wp-content/plugins/foogallery/freemius/includes/index.php'),(1005,'wp-content/plugins/foogallery/freemius/includes/l10n.php'),(1006,'wp-content/plugins/foogallery/freemius/includes/managers/class-fs-admin-menu-manager.php'),(1007,'wp-content/plugins/foogallery/freemius/includes/managers/class-fs-admin-notice-manager.php'),(1008,'wp-content/plugins/foogallery/freemius/includes/managers/class-fs-cache-manager.php'),(1009,'wp-content/plugins/foogallery/freemius/includes/managers/class-fs-key-value-storage.php'),(1010,'wp-content/plugins/foogallery/freemius/includes/managers/class-fs-license-manager.php'),(1011,'wp-content/plugins/foogallery/freemius/includes/managers/class-fs-option-manager.php'),(1012,'wp-content/plugins/foogallery/freemius/includes/managers/class-fs-plan-manager.php'),(1013,'wp-content/plugins/foogallery/freemius/includes/managers/class-fs-plugin-manager.php'),(1014,'wp-content/plugins/foogallery/freemius/includes/managers/index.php'),(1015,'wp-content/plugins/foogallery/freemius/includes/sdk/Exceptions/ArgumentNotExistException.php'),(1016,'wp-content/plugins/foogallery/freemius/includes/sdk/Exceptions/EmptyArgumentException.php'),(1017,'wp-content/plugins/foogallery/freemius/includes/sdk/Exceptions/Exception.php'),(1018,'wp-content/plugins/foogallery/freemius/includes/sdk/Exceptions/InvalidArgumentException.php'),(1019,'wp-content/plugins/foogallery/freemius/includes/sdk/Exceptions/OAuthException.php'),(1020,'wp-content/plugins/foogallery/freemius/includes/sdk/Exceptions/index.php'),(1021,'wp-content/plugins/foogallery/freemius/includes/sdk/FreemiusBase.php'),(1022,'wp-content/plugins/foogallery/freemius/includes/sdk/FreemiusWordPress.php'),(1023,'wp-content/plugins/foogallery/freemius/includes/sdk/LICENSE.txt'),(1024,'wp-content/plugins/foogallery/freemius/includes/sdk/index.php'),(1025,'wp-content/plugins/foogallery/freemius/includes/supplements/fs-essential-functions-1.1.7.1.php'),(1026,'wp-content/plugins/foogallery/freemius/includes/supplements/index.php'),(1027,'wp-content/plugins/foogallery/freemius/index.php'),(1028,'wp-content/plugins/foogallery/freemius/languages/freemius-da_DK.mo'),(1029,'wp-content/plugins/foogallery/freemius/languages/freemius-da_DK.po'),(1030,'wp-content/plugins/foogallery/freemius/languages/freemius-en.mo'),(1031,'wp-content/plugins/foogallery/freemius/languages/freemius-en.po'),(1032,'wp-content/plugins/foogallery/freemius/languages/freemius-he.mo'),(1033,'wp-content/plugins/foogallery/freemius/languages/freemius-he.po'),(1034,'wp-content/plugins/foogallery/freemius/languages/freemius-it_IT.mo'),(1035,'wp-content/plugins/foogallery/freemius/languages/freemius-it_IT.po'),(1036,'wp-content/plugins/foogallery/freemius/languages/freemius-ja_JP.mo'),(1037,'wp-content/plugins/foogallery/freemius/languages/freemius-ja_JP.po'),(1038,'wp-content/plugins/foogallery/freemius/languages/freemius.pot'),(1039,'wp-content/plugins/foogallery/freemius/languages/index.php'),(1040,'wp-content/plugins/foogallery/freemius/package.json'),(1041,'wp-content/plugins/foogallery/freemius/require.php'),(1042,'wp-content/plugins/foogallery/freemius/start.php'),(1043,'wp-content/plugins/foogallery/freemius/templates/account/billing.php'),(1044,'wp-content/plugins/foogallery/freemius/templates/account/index.php'),(1045,'wp-content/plugins/foogallery/freemius/templates/account/payments.php'),(1046,'wp-content/plugins/foogallery/freemius/templates/account.php'),(1047,'wp-content/plugins/foogallery/freemius/templates/add-ons.php'),(1048,'wp-content/plugins/foogallery/freemius/templates/add-trial-to-pricing.php'),(1049,'wp-content/plugins/foogallery/freemius/templates/admin-notice.php'),(1050,'wp-content/plugins/foogallery/freemius/templates/ajax-loader.php'),(1051,'wp-content/plugins/foogallery/freemius/templates/all-admin-notice.php'),(1052,'wp-content/plugins/foogallery/freemius/templates/auto-installation.php'),(1053,'wp-content/plugins/foogallery/freemius/templates/checkout-legacy.php'),(1054,'wp-content/plugins/foogallery/freemius/templates/checkout.php'),(1055,'wp-content/plugins/foogallery/freemius/templates/connect.php'),(1056,'wp-content/plugins/foogallery/freemius/templates/contact.php'),(1057,'wp-content/plugins/foogallery/freemius/templates/debug/api-calls.php'),(1058,'wp-content/plugins/foogallery/freemius/templates/debug/index.php'),(1059,'wp-content/plugins/foogallery/freemius/templates/debug/logger.php'),(1060,'wp-content/plugins/foogallery/freemius/templates/debug/plugins-themes-sync.php'),(1061,'wp-content/plugins/foogallery/freemius/templates/debug/scheduled-crons.php'),(1062,'wp-content/plugins/foogallery/freemius/templates/debug.php'),(1063,'wp-content/plugins/foogallery/freemius/templates/email.php'),(1064,'wp-content/plugins/foogallery/freemius/templates/firewall-issues-js.php'),(1065,'wp-content/plugins/foogallery/freemius/templates/forms/affiliation.php'),(1066,'wp-content/plugins/foogallery/freemius/templates/forms/deactivation/contact.php'),(1067,'wp-content/plugins/foogallery/freemius/templates/forms/deactivation/form.php'),(1068,'wp-content/plugins/foogallery/freemius/templates/forms/deactivation/index.php'),(1069,'wp-content/plugins/foogallery/freemius/templates/forms/deactivation/retry-skip.php'),(1070,'wp-content/plugins/foogallery/freemius/templates/forms/index.php'),(1071,'wp-content/plugins/foogallery/freemius/templates/forms/license-activation.php'),(1072,'wp-content/plugins/foogallery/freemius/templates/forms/optout.php'),(1073,'wp-content/plugins/foogallery/freemius/templates/forms/resend-key.php'),(1074,'wp-content/plugins/foogallery/freemius/templates/forms/trial-start.php'),(1075,'wp-content/plugins/foogallery/freemius/templates/index.php'),(1076,'wp-content/plugins/foogallery/freemius/templates/js/index.php'),(1077,'wp-content/plugins/foogallery/freemius/templates/js/jquery.content-change.php'),(1078,'wp-content/plugins/foogallery/freemius/templates/js/style-premium-theme.php'),(1079,'wp-content/plugins/foogallery/freemius/templates/plugin-icon.php'),(1080,'wp-content/plugins/foogallery/freemius/templates/plugin-info/description.php'),(1081,'wp-content/plugins/foogallery/freemius/templates/plugin-info/features.php'),(1082,'wp-content/plugins/foogallery/freemius/templates/plugin-info/index.php'),(1083,'wp-content/plugins/foogallery/freemius/templates/plugin-info/screenshots.php'),(1084,'wp-content/plugins/foogallery/freemius/templates/powered-by.php'),(1085,'wp-content/plugins/foogallery/freemius/templates/pricing.php'),(1086,'wp-content/plugins/foogallery/freemius/templates/secure-https-header.php'),(1087,'wp-content/plugins/foogallery/freemius/templates/sticky-admin-notice-js.php'),(1088,'wp-content/plugins/foogallery/freemius/templates/tabs-capture-js.php'),(1089,'wp-content/plugins/foogallery/freemius/templates/tabs.php'),(1090,'wp-content/plugins/foogallery/includes/WPThumb/wpthumb.background-fill.php'),(1091,'wp-content/plugins/foogallery/includes/WPThumb/wpthumb.crop-from-position.php'),(1092,'wp-content/plugins/foogallery/includes/WPThumb/wpthumb.image-editor.php'),(1093,'wp-content/plugins/foogallery/includes/WPThumb/wpthumb.php'),(1094,'wp-content/plugins/foogallery/includes/WPThumb/wpthumb.shortcodes.php'),(1095,'wp-content/plugins/foogallery/includes/WPThumb/wpthumb.watermark.php'),(1096,'wp-content/plugins/foogallery/includes/admin/boilerplates/lightbox/assets/extension_bg.png'),(1097,'wp-content/plugins/foogallery/includes/admin/boilerplates/lightbox/css/lightbox-EXTSLUG.css'),(1098,'wp-content/plugins/foogallery/includes/admin/boilerplates/lightbox/foogallery-EXTSLUG-extension.txt'),(1099,'wp-content/plugins/foogallery/includes/admin/boilerplates/lightbox/foogallery-EXTSLUG-init.txt'),(1100,'wp-content/plugins/foogallery/includes/admin/boilerplates/lightbox/js/lightbox-EXTSLUG.js'),(1101,'wp-content/plugins/foogallery/includes/admin/boilerplates/template/assets/extension_bg.png'),(1102,'wp-content/plugins/foogallery/includes/admin/boilerplates/template/css/gallery-EXTSLUG.css'),(1103,'wp-content/plugins/foogallery/includes/admin/boilerplates/template/foogallery-EXTSLUG-extension.txt'),(1104,'wp-content/plugins/foogallery/includes/admin/boilerplates/template/foogallery-EXTSLUG-init.txt'),(1105,'wp-content/plugins/foogallery/includes/admin/boilerplates/template/gallery-EXTSLUG.txt'),(1106,'wp-content/plugins/foogallery/includes/admin/boilerplates/template/js/admin-gallery-EXTSLUG.js'),(1107,'wp-content/plugins/foogallery/includes/admin/boilerplates/template/js/gallery-EXTSLUG.js'),(1108,'wp-content/plugins/foogallery/includes/admin/class-admin-css-load-optimizer.php'),(1109,'wp-content/plugins/foogallery/includes/admin/class-admin-notices.php'),(1110,'wp-content/plugins/foogallery/includes/admin/class-admin.php'),(1111,'wp-content/plugins/foogallery/includes/admin/class-attachment-fields.php'),(1112,'wp-content/plugins/foogallery/includes/admin/class-autoptimize-support.php'),(1113,'wp-content/plugins/foogallery/includes/admin/class-boilerplate-download-handler.php'),(1114,'wp-content/plugins/foogallery/includes/admin/class-boilerplate-zip-generator.php'),(1115,'wp-content/plugins/foogallery/includes/admin/class-columns.php'),(1116,'wp-content/plugins/foogallery/includes/admin/class-extensions.php'),(1117,'wp-content/plugins/foogallery/includes/admin/class-gallery-editor.php'),(1118,'wp-content/plugins/foogallery/includes/admin/class-gallery-metabox-fields.php'),(1119,'wp-content/plugins/foogallery/includes/admin/class-gallery-metabox-settings-helper.php'),(1120,'wp-content/plugins/foogallery/includes/admin/class-gallery-metabox-settings.php'),(1121,'wp-content/plugins/foogallery/includes/admin/class-gallery-metaboxes.php'),(1122,'wp-content/plugins/foogallery/includes/admin/class-menu.php'),(1123,'wp-content/plugins/foogallery/includes/admin/class-settings-image-optimization.php'),(1124,'wp-content/plugins/foogallery/includes/admin/class-settings.php'),(1125,'wp-content/plugins/foogallery/includes/admin/class-silent-installer-skin.php'),(1126,'wp-content/plugins/foogallery/includes/admin/index.php'),(1127,'wp-content/plugins/foogallery/includes/admin/view-extensions-build-your-own.php'),(1128,'wp-content/plugins/foogallery/includes/admin/view-extensions-popup.php'),(1129,'wp-content/plugins/foogallery/includes/admin/view-extensions.php'),(1130,'wp-content/plugins/foogallery/includes/admin/view-help.php'),(1131,'wp-content/plugins/foogallery/includes/admin/view-system-info.php'),(1132,'wp-content/plugins/foogallery/includes/class-attachment-filters.php'),(1133,'wp-content/plugins/foogallery/includes/class-foobox-support.php'),(1134,'wp-content/plugins/foogallery/includes/class-foogallery-animated-gif-support.php'),(1135,'wp-content/plugins/foogallery/includes/class-foogallery-attachment-custom-class.php'),(1136,'wp-content/plugins/foogallery/includes/class-foogallery-attachment.php'),(1137,'wp-content/plugins/foogallery/includes/class-foogallery-cache.php'),(1138,'wp-content/plugins/foogallery/includes/class-foogallery-common-fields.php'),(1139,'wp-content/plugins/foogallery/includes/class-foogallery-datasource-media_library.php'),(1140,'wp-content/plugins/foogallery/includes/class-foogallery-extensions-compatibility.php'),(1141,'wp-content/plugins/foogallery/includes/class-foogallery-lazyload.php'),(1142,'wp-content/plugins/foogallery/includes/class-foogallery-paging.php'),(1143,'wp-content/plugins/foogallery/includes/class-foogallery-upgrade.php'),(1144,'wp-content/plugins/foogallery/includes/class-foogallery-widget.php'),(1145,'wp-content/plugins/foogallery/includes/class-foogallery.php'),(1146,'wp-content/plugins/foogallery/includes/class-polylang-compatibility.php'),(1147,'wp-content/plugins/foogallery/includes/class-posttypes.php'),(1148,'wp-content/plugins/foogallery/includes/class-responsive-lightbox-dfactory-support.php'),(1149,'wp-content/plugins/foogallery/includes/class-retina.php'),(1150,'wp-content/plugins/foogallery/includes/class-thumbnail-dimensions.php'),(1151,'wp-content/plugins/foogallery/includes/class-thumbnails.php'),(1152,'wp-content/plugins/foogallery/includes/class-version-check.php'),(1153,'wp-content/plugins/foogallery/includes/class-wp-rocket-support.php'),(1154,'wp-content/plugins/foogallery/includes/class-wpthumb-enhancements.php'),(1155,'wp-content/plugins/foogallery/includes/constants.php'),(1156,'wp-content/plugins/foogallery/includes/extensions/class-extension.php'),(1157,'wp-content/plugins/foogallery/includes/extensions/class-extensions-api.php'),(1158,'wp-content/plugins/foogallery/includes/extensions/class-extensions-loader.php'),(1159,'wp-content/plugins/foogallery/includes/foopluginbase/README.md'),(1160,'wp-content/plugins/foogallery/includes/foopluginbase/bootstrapper.php'),(1161,'wp-content/plugins/foogallery/includes/foopluginbase/changelog.txt'),(1162,'wp-content/plugins/foogallery/includes/foopluginbase/classes/class-foo-friendly-dates.php'),(1163,'wp-content/plugins/foogallery/includes/foopluginbase/classes/class-foo-plugin-base.php'),(1164,'wp-content/plugins/foogallery/includes/foopluginbase/classes/class-foo-plugin-file-locator.php'),(1165,'wp-content/plugins/foogallery/includes/foopluginbase/classes/class-foo-plugin-metabox-sanity.php'),(1166,'wp-content/plugins/foogallery/includes/foopluginbase/classes/class-foo-plugin-options.php'),(1167,'wp-content/plugins/foogallery/includes/foopluginbase/classes/class-foo-plugin-settings.php'),(1168,'wp-content/plugins/foogallery/includes/foopluginbase/classes/class-foo-plugin-textdomain.php'),(1169,'wp-content/plugins/foogallery/includes/foopluginbase/classes/index.php'),(1170,'wp-content/plugins/foogallery/includes/foopluginbase/css/admin-settings.css'),(1171,'wp-content/plugins/foogallery/includes/foopluginbase/css/index.php'),(1172,'wp-content/plugins/foogallery/includes/foopluginbase/functions/arrays.php'),(1173,'wp-content/plugins/foogallery/includes/foopluginbase/functions/dates.php'),(1174,'wp-content/plugins/foogallery/includes/foopluginbase/functions/general.php'),(1175,'wp-content/plugins/foogallery/includes/foopluginbase/functions/index.php'),(1176,'wp-content/plugins/foogallery/includes/foopluginbase/functions/screen.php'),(1177,'wp-content/plugins/foogallery/includes/foopluginbase/functions/strings.php'),(1178,'wp-content/plugins/foogallery/includes/foopluginbase/index.php'),(1179,'wp-content/plugins/foogallery/includes/foopluginbase/js/admin-settings.js'),(1180,'wp-content/plugins/foogallery/includes/foopluginbase/js/index.php'),(1181,'wp-content/plugins/foogallery/includes/foopluginbase/tests/class-foo-friendly-dates-tests.php'),(1182,'wp-content/plugins/foogallery/includes/foopluginbase/views/index.php'),(1183,'wp-content/plugins/foogallery/includes/foopluginbase/views/settings.php'),(1184,'wp-content/plugins/foogallery/includes/functions.php'),(1185,'wp-content/plugins/foogallery/includes/includes.php'),(1186,'wp-content/plugins/foogallery/includes/index.php'),(1187,'wp-content/plugins/foogallery/includes/interface-foogallery-datasource.php'),(1188,'wp-content/plugins/foogallery/includes/public/class-admin-bar.php'),(1189,'wp-content/plugins/foogallery/includes/public/class-css-load-optimizer.php'),(1190,'wp-content/plugins/foogallery/includes/public/class-foogallery-template-loader.php'),(1191,'wp-content/plugins/foogallery/includes/public/class-public.php'),(1192,'wp-content/plugins/foogallery/includes/public/class-shortcodes.php'),(1193,'wp-content/plugins/foogallery/includes/public/class-yoast-seo-sitemaps.php'),(1194,'wp-content/plugins/foogallery/includes/public/index.php'),(1195,'wp-content/plugins/foogallery/includes/render-functions.php'),(1196,'wp-content/plugins/foogallery/index.html'),(1197,'wp-content/plugins/foogallery/js/admin-foogallery-editor.js'),(1198,'wp-content/plugins/foogallery/js/admin-foogallery.js'),(1199,'wp-content/plugins/foogallery/js/admin-page-foogallery-extensions-modal.js'),(1200,'wp-content/plugins/foogallery/js/admin-page-foogallery-extensions.js'),(1201,'wp-content/plugins/foogallery/js/admin-page-foogallery-settings.js'),(1202,'wp-content/plugins/foogallery/js/admin-tinymce.js'),(1203,'wp-content/plugins/foogallery/js/admin-uploader.js'),(1204,'wp-content/plugins/foogallery/js/foogallery.admin.min.js'),(1205,'wp-content/plugins/foogallery/languages/foogallery-fa_IR.mo'),(1206,'wp-content/plugins/foogallery/languages/foogallery-fa_IR.po'),(1207,'wp-content/plugins/foogallery/languages/foogallery-fr_FR.mo'),(1208,'wp-content/plugins/foogallery/languages/foogallery-fr_FR.po'),(1209,'wp-content/plugins/foogallery/languages/foogallery.mo'),(1210,'wp-content/plugins/foogallery/languages/foogallery.pot'),(1211,'wp-content/plugins/foogallery/languages/index.php'),(1212,'wp-content/plugins/foogallery/lib/spectrum/spectrum.css'),(1213,'wp-content/plugins/foogallery/lib/spectrum/spectrum.js'),(1214,'wp-content/plugins/foogallery/package.json'),(1215,'wp-content/plugins/foogallery/templates/index.php'),(1216,'wp-content/plugins/foogallery/templates/where-are-the-templates.php'),(1217,'wp-content/plugins/foogallery/views/index.php'),(1218,'wp-content/plugins/genesis-simple-hooks/Gruntfile.js'),(1219,'wp-content/plugins/genesis-simple-hooks/genesis-simple-hooks.php'),(1220,'wp-content/plugins/genesis-simple-hooks/includes/class-genesis-simple-hooks-admin.php'),(1221,'wp-content/plugins/genesis-simple-hooks/includes/deprecated.php'),(1222,'wp-content/plugins/genesis-simple-hooks/includes/functions.php'),(1223,'wp-content/plugins/genesis-simple-hooks/languages/genesis-simple-hooks.pot'),(1224,'wp-content/plugins/genesis-simple-hooks/package.json'),(1225,'wp-content/plugins/genesis-simple-hooks/plugin.php'),(1226,'wp-content/plugins/genesis-simple-hooks/readme.txt'),(1227,'wp-content/plugins/hello.php'),(1228,'wp-content/plugins/index.php'),(1229,'wp-content/plugins/jetpack/.svnignore'),(1230,'wp-content/plugins/jetpack/3rd-party/3rd-party.php'),(1231,'wp-content/plugins/jetpack/3rd-party/bbpress.php'),(1232,'wp-content/plugins/jetpack/3rd-party/beaverbuilder.php'),(1233,'wp-content/plugins/jetpack/3rd-party/bitly.php'),(1234,'wp-content/plugins/jetpack/3rd-party/buddypress.php'),(1235,'wp-content/plugins/jetpack/3rd-party/class.jetpack-modules-overrides.php'),(1236,'wp-content/plugins/jetpack/3rd-party/debug-bar/class.jetpack-search-debug-bar.php'),(1237,'wp-content/plugins/jetpack/3rd-party/debug-bar/debug-bar.css'),(1238,'wp-content/plugins/jetpack/3rd-party/debug-bar/debug-bar.js'),(1239,'wp-content/plugins/jetpack/3rd-party/debug-bar.php'),(1240,'wp-content/plugins/jetpack/3rd-party/domain-mapping.php'),(1241,'wp-content/plugins/jetpack/3rd-party/polldaddy.php'),(1242,'wp-content/plugins/jetpack/3rd-party/qtranslate-x.php'),(1243,'wp-content/plugins/jetpack/3rd-party/vaultpress.php'),(1244,'wp-content/plugins/jetpack/3rd-party/woocommerce-services.php'),(1245,'wp-content/plugins/jetpack/3rd-party/woocommerce.php'),(1246,'wp-content/plugins/jetpack/3rd-party/wpml.php'),(1247,'wp-content/plugins/jetpack/CODE-OF-CONDUCT.md'),(1248,'wp-content/plugins/jetpack/_inc/accessible-focus.js'),(1249,'wp-content/plugins/jetpack/_inc/build/accessible-focus.min.js'),(1250,'wp-content/plugins/jetpack/_inc/build/admin.dops-style.css'),(1251,'wp-content/plugins/jetpack/_inc/build/admin.dops-style.rtl.css'),(1252,'wp-content/plugins/jetpack/_inc/build/admin.js'),(1253,'wp-content/plugins/jetpack/_inc/build/after-the-deadline/atd-autoproofread.min.js'),(1254,'wp-content/plugins/jetpack/_inc/build/after-the-deadline/atd-nonvis-editor-plugin.min.js'),(1255,'wp-content/plugins/jetpack/_inc/build/after-the-deadline/atd.core.min.js'),(1256,'wp-content/plugins/jetpack/_inc/build/after-the-deadline/jquery.atd.min.js'),(1257,'wp-content/plugins/jetpack/_inc/build/after-the-deadline/tinymce/editor_plugin.min.js'),(1258,'wp-content/plugins/jetpack/_inc/build/after-the-deadline/tinymce/plugin.min.js'),(1259,'wp-content/plugins/jetpack/_inc/build/carousel/jetpack-carousel.min.js'),(1260,'wp-content/plugins/jetpack/_inc/build/comment-likes/comment-like-count.min.js'),(1261,'wp-content/plugins/jetpack/_inc/build/contact-form/js/editor-view.min.js'),(1262,'wp-content/plugins/jetpack/_inc/build/contact-form/js/grunion-admin.min.js'),(1263,'wp-content/plugins/jetpack/_inc/build/contact-form/js/grunion-frontend.min.js'),(1264,'wp-content/plugins/jetpack/_inc/build/contact-form/js/grunion.min.js'),(1265,'wp-content/plugins/jetpack/_inc/build/contact-form/js/tinymce-plugin-form-button.min.js'),(1266,'wp-content/plugins/jetpack/_inc/build/custom-css/custom-css/js/core-customizer-css-preview.min.js'),(1267,'wp-content/plugins/jetpack/_inc/build/custom-css/custom-css/js/core-customizer-css.core-4.9.min.js'),(1268,'wp-content/plugins/jetpack/_inc/build/custom-css/custom-css/js/core-customizer-css.min.js'),(1269,'wp-content/plugins/jetpack/_inc/build/custom-css/custom-css/js/css-editor.min.js'),(1270,'wp-content/plugins/jetpack/_inc/build/custom-css/custom-css/js/use-codemirror.min.js'),(1271,'wp-content/plugins/jetpack/_inc/build/custom-post-types/comics/comics.min.js'),(1272,'wp-content/plugins/jetpack/_inc/build/custom-post-types/js/many-items.min.js'),(1273,'wp-content/plugins/jetpack/_inc/build/custom-post-types/js/menu-checkboxes.min.js'),(1274,'wp-content/plugins/jetpack/_inc/build/custom-post-types/js/nova-drag-drop.min.js'),(1275,'wp-content/plugins/jetpack/_inc/build/facebook-embed.min.js'),(1276,'wp-content/plugins/jetpack/_inc/build/gallery-settings.min.js'),(1277,'wp-content/plugins/jetpack/_inc/build/idc-notice.min.js'),(1278,'wp-content/plugins/jetpack/_inc/build/infinite-scroll/infinity.min.js'),(1279,'wp-content/plugins/jetpack/_inc/build/jetpack-admin.min.js'),(1280,'wp-content/plugins/jetpack/_inc/build/jetpack-connection-banner.min.js'),(1281,'wp-content/plugins/jetpack/_inc/build/jetpack-jitm.min.js'),(1282,'wp-content/plugins/jetpack/_inc/build/jetpack-modules.min.js'),(1283,'wp-content/plugins/jetpack/_inc/build/jetpack-modules.models.min.js'),(1284,'wp-content/plugins/jetpack/_inc/build/jetpack-modules.views.min.js'),(1285,'wp-content/plugins/jetpack/_inc/build/jquery.jetpack-resize.min.js'),(1286,'wp-content/plugins/jetpack/_inc/build/jquery.spin.min.js'),(1287,'wp-content/plugins/jetpack/_inc/build/lazy-images/js/lazy-images.min.js'),(1288,'wp-content/plugins/jetpack/_inc/build/likes/post-count-jetpack.min.js'),(1289,'wp-content/plugins/jetpack/_inc/build/likes/post-count.min.js'),(1290,'wp-content/plugins/jetpack/_inc/build/likes/queuehandler.min.js'),(1291,'wp-content/plugins/jetpack/_inc/build/masterbar/tracks-events.min.js'),(1292,'wp-content/plugins/jetpack/_inc/build/minileven/theme/pub/minileven/js/small-menu.min.js'),(1293,'wp-content/plugins/jetpack/_inc/build/photon/photon.min.js'),(1294,'wp-content/plugins/jetpack/_inc/build/postmessage.min.js'),(1295,'wp-content/plugins/jetpack/_inc/build/publicize/assets/publicize.min.js'),(1296,'wp-content/plugins/jetpack/_inc/build/related-posts/related-posts-customizer.min.js'),(1297,'wp-content/plugins/jetpack/_inc/build/related-posts/related-posts.min.js'),(1298,'wp-content/plugins/jetpack/_inc/build/sharedaddy/admin-sharing.min.js'),(1299,'wp-content/plugins/jetpack/_inc/build/sharedaddy/sharing.min.js'),(1300,'wp-content/plugins/jetpack/_inc/build/shortcodes/js/brightcove.min.js'),(1301,'wp-content/plugins/jetpack/_inc/build/shortcodes/js/gist.min.js'),(1302,'wp-content/plugins/jetpack/_inc/build/shortcodes/js/instagram.min.js'),(1303,'wp-content/plugins/jetpack/_inc/build/shortcodes/js/jmpress.min.js'),(1304,'wp-content/plugins/jetpack/_inc/build/shortcodes/js/main.min.js'),(1305,'wp-content/plugins/jetpack/_inc/build/shortcodes/js/quiz.min.js'),(1306,'wp-content/plugins/jetpack/_inc/build/shortcodes/js/recipes-printthis.min.js'),(1307,'wp-content/plugins/jetpack/_inc/build/shortcodes/js/recipes.min.js'),(1308,'wp-content/plugins/jetpack/_inc/build/shortcodes/js/slideshow-shortcode.min.js'),(1309,'wp-content/plugins/jetpack/_inc/build/spin.min.js'),(1310,'wp-content/plugins/jetpack/_inc/build/static-ie-notice.html'),(1311,'wp-content/plugins/jetpack/_inc/build/static-noscript-notice.html'),(1312,'wp-content/plugins/jetpack/_inc/build/static-version-notice.html'),(1313,'wp-content/plugins/jetpack/_inc/build/static.html'),(1314,'wp-content/plugins/jetpack/_inc/build/style.min.css'),(1315,'wp-content/plugins/jetpack/_inc/build/style.min.rtl.css'),(1316,'wp-content/plugins/jetpack/_inc/build/tiled-gallery/tiled-gallery/tiled-gallery.min.js'),(1317,'wp-content/plugins/jetpack/_inc/build/twitter-timeline.min.js'),(1318,'wp-content/plugins/jetpack/_inc/build/videopress/js/editor-view.min.js'),(1319,'wp-content/plugins/jetpack/_inc/build/videopress/js/media-video-widget-extensions.min.js'),(1320,'wp-content/plugins/jetpack/_inc/build/videopress/js/videopress-plupload.min.js'),(1321,'wp-content/plugins/jetpack/_inc/build/videopress/js/videopress-uploader.min.js'),(1322,'wp-content/plugins/jetpack/_inc/build/widget-visibility/widget-conditions/widget-conditions.min.js'),(1323,'wp-content/plugins/jetpack/_inc/build/widgets/contact-info/contact-info-admin.min.js'),(1324,'wp-content/plugins/jetpack/_inc/build/widgets/customizer-utils.min.js'),(1325,'wp-content/plugins/jetpack/_inc/build/widgets/eu-cookie-law/eu-cookie-law.min.js'),(1326,'wp-content/plugins/jetpack/_inc/build/widgets/gallery/js/admin.min.js'),(1327,'wp-content/plugins/jetpack/_inc/build/widgets/gallery/js/gallery.min.js'),(1328,'wp-content/plugins/jetpack/_inc/build/widgets/google-plus/js/admin.min.js'),(1329,'wp-content/plugins/jetpack/_inc/build/widgets/google-translate/google-translate.min.js'),(1330,'wp-content/plugins/jetpack/_inc/build/widgets/milestone/admin.min.js'),(1331,'wp-content/plugins/jetpack/_inc/build/widgets/milestone/milestone.min.js'),(1332,'wp-content/plugins/jetpack/_inc/build/widgets/search/js/search-widget-admin.min.js'),(1333,'wp-content/plugins/jetpack/_inc/build/widgets/search/js/search-widget.min.js'),(1334,'wp-content/plugins/jetpack/_inc/build/widgets/twitter-timeline-admin.min.js'),(1335,'wp-content/plugins/jetpack/_inc/class.jetpack-provision.php'),(1336,'wp-content/plugins/jetpack/_inc/facebook-embed.js'),(1337,'wp-content/plugins/jetpack/_inc/fonts/automatticons/automatticons.eot'),(1338,'wp-content/plugins/jetpack/_inc/fonts/automatticons/automatticons.svg'),(1339,'wp-content/plugins/jetpack/_inc/fonts/automatticons/automatticons.ttf'),(1340,'wp-content/plugins/jetpack/_inc/fonts/automatticons/automatticons.woff'),(1341,'wp-content/plugins/jetpack/_inc/fonts/jetpack/jetpack.eot'),(1342,'wp-content/plugins/jetpack/_inc/fonts/jetpack/jetpack.svg'),(1343,'wp-content/plugins/jetpack/_inc/fonts/jetpack/jetpack.ttf'),(1344,'wp-content/plugins/jetpack/_inc/fonts/jetpack/jetpack.woff'),(1345,'wp-content/plugins/jetpack/_inc/footer.php'),(1346,'wp-content/plugins/jetpack/_inc/gallery-settings.js'),(1347,'wp-content/plugins/jetpack/_inc/genericons/COPYING.txt'),(1348,'wp-content/plugins/jetpack/_inc/genericons/LICENSE.txt'),(1349,'wp-content/plugins/jetpack/_inc/genericons/README.md'),(1350,'wp-content/plugins/jetpack/_inc/genericons/genericons/Genericons.eot'),(1351,'wp-content/plugins/jetpack/_inc/genericons/genericons/Genericons.svg'),(1352,'wp-content/plugins/jetpack/_inc/genericons/genericons/Genericons.ttf'),(1353,'wp-content/plugins/jetpack/_inc/genericons/genericons/Genericons.woff'),(1354,'wp-content/plugins/jetpack/_inc/genericons/genericons/genericons.css'),(1355,'wp-content/plugins/jetpack/_inc/genericons/genericons/rtl/genericons-rtl.css'),(1356,'wp-content/plugins/jetpack/_inc/genericons/genericons.css'),(1357,'wp-content/plugins/jetpack/_inc/genericons.php'),(1358,'wp-content/plugins/jetpack/_inc/header.php'),(1359,'wp-content/plugins/jetpack/_inc/idc-notice.js'),(1360,'wp-content/plugins/jetpack/_inc/jetpack-admin.js'),(1361,'wp-content/plugins/jetpack/_inc/jetpack-connection-banner.js'),(1362,'wp-content/plugins/jetpack/_inc/jetpack-jitm.js'),(1363,'wp-content/plugins/jetpack/_inc/jetpack-modules.js'),(1364,'wp-content/plugins/jetpack/_inc/jetpack-modules.models.js'),(1365,'wp-content/plugins/jetpack/_inc/jetpack-modules.views.js'),(1366,'wp-content/plugins/jetpack/_inc/jetpack-strings.php'),(1367,'wp-content/plugins/jetpack/_inc/jquery.jetpack-resize.js'),(1368,'wp-content/plugins/jetpack/_inc/jquery.spin.js'),(1369,'wp-content/plugins/jetpack/_inc/lib/admin-pages/class.jetpack-admin-page.php'),(1370,'wp-content/plugins/jetpack/_inc/lib/admin-pages/class.jetpack-landing-page.php'),(1371,'wp-content/plugins/jetpack/_inc/lib/admin-pages/class.jetpack-react-page.php'),(1372,'wp-content/plugins/jetpack/_inc/lib/admin-pages/class.jetpack-settings-page.php'),(1373,'wp-content/plugins/jetpack/_inc/lib/class.color.php'),(1374,'wp-content/plugins/jetpack/_inc/lib/class.core-rest-api-endpoints.php'),(1375,'wp-content/plugins/jetpack/_inc/lib/class.jetpack-automatic-install-skin.php'),(1376,'wp-content/plugins/jetpack/_inc/lib/class.jetpack-iframe-embed.php'),(1377,'wp-content/plugins/jetpack/_inc/lib/class.jetpack-search-performance-logger.php'),(1378,'wp-content/plugins/jetpack/_inc/lib/class.media-extractor.php'),(1379,'wp-content/plugins/jetpack/_inc/lib/class.media-summary.php'),(1380,'wp-content/plugins/jetpack/_inc/lib/class.media.php'),(1381,'wp-content/plugins/jetpack/_inc/lib/core-api/class.jetpack-core-api-module-endpoints.php'),(1382,'wp-content/plugins/jetpack/_inc/lib/core-api/class.jetpack-core-api-site-endpoints.php'),(1383,'wp-content/plugins/jetpack/_inc/lib/core-api/class.jetpack-core-api-widgets-endpoints.php'),(1384,'wp-content/plugins/jetpack/_inc/lib/core-api/class.jetpack-core-api-xmlrpc-consumer-endpoint.php'),(1385,'wp-content/plugins/jetpack/_inc/lib/functions.wp-notify.php'),(1386,'wp-content/plugins/jetpack/_inc/lib/icalendar-reader.php'),(1387,'wp-content/plugins/jetpack/_inc/lib/jetpack-wpes-query-builder/jetpack-wpes-query-builder.php'),(1388,'wp-content/plugins/jetpack/_inc/lib/jetpack-wpes-query-builder/jetpack-wpes-query-parser.php'),(1389,'wp-content/plugins/jetpack/_inc/lib/markdown/0-load.php'),(1390,'wp-content/plugins/jetpack/_inc/lib/markdown/README.md'),(1391,'wp-content/plugins/jetpack/_inc/lib/markdown/extra.php'),(1392,'wp-content/plugins/jetpack/_inc/lib/markdown/gfm.php'),(1393,'wp-content/plugins/jetpack/_inc/lib/plugins.php'),(1394,'wp-content/plugins/jetpack/_inc/lib/tonesque.php'),(1395,'wp-content/plugins/jetpack/_inc/lib/tracks/class.tracks-client.php'),(1396,'wp-content/plugins/jetpack/_inc/lib/tracks/class.tracks-event.php'),(1397,'wp-content/plugins/jetpack/_inc/lib/tracks/client.php'),(1398,'wp-content/plugins/jetpack/_inc/lib/tracks/tracks-ajax.js'),(1399,'wp-content/plugins/jetpack/_inc/lib/tracks/tracks-callables.js'),(1400,'wp-content/plugins/jetpack/_inc/lib/widgets.php'),(1401,'wp-content/plugins/jetpack/_inc/postmessage.js'),(1402,'wp-content/plugins/jetpack/_inc/social-logos/social-logos.css'),(1403,'wp-content/plugins/jetpack/_inc/social-logos/social-logos.eot'),(1404,'wp-content/plugins/jetpack/_inc/social-logos/social-logos.html'),(1405,'wp-content/plugins/jetpack/_inc/social-logos/social-logos.min.css'),(1406,'wp-content/plugins/jetpack/_inc/social-logos/social-logos.ttf'),(1407,'wp-content/plugins/jetpack/_inc/social-logos/social-logos.woff2'),(1408,'wp-content/plugins/jetpack/_inc/social-logos.php'),(1409,'wp-content/plugins/jetpack/_inc/spin.js'),(1410,'wp-content/plugins/jetpack/_inc/twitter-timeline.js'),(1411,'wp-content/plugins/jetpack/bin/partner-cancel.sh'),(1412,'wp-content/plugins/jetpack/bin/partner-provision.sh'),(1413,'wp-content/plugins/jetpack/bin/travis_install.sh'),(1414,'wp-content/plugins/jetpack/changelog.txt'),(1415,'wp-content/plugins/jetpack/class.frame-nonce-preview.php'),(1416,'wp-content/plugins/jetpack/class.jetpack-admin.php'),(1417,'wp-content/plugins/jetpack/class.jetpack-autoupdate.php'),(1418,'wp-content/plugins/jetpack/class.jetpack-bbpress-json-api-compat.php'),(1419,'wp-content/plugins/jetpack/class.jetpack-cli.php'),(1420,'wp-content/plugins/jetpack/class.jetpack-client-server.php'),(1421,'wp-content/plugins/jetpack/class.jetpack-client.php'),(1422,'wp-content/plugins/jetpack/class.jetpack-connection-banner.php'),(1423,'wp-content/plugins/jetpack/class.jetpack-constants.php'),(1424,'wp-content/plugins/jetpack/class.jetpack-data.php'),(1425,'wp-content/plugins/jetpack/class.jetpack-debugger.php'),(1426,'wp-content/plugins/jetpack/class.jetpack-error.php'),(1427,'wp-content/plugins/jetpack/class.jetpack-heartbeat.php'),(1428,'wp-content/plugins/jetpack/class.jetpack-idc.php'),(1429,'wp-content/plugins/jetpack/class.jetpack-ixr-client.php'),(1430,'wp-content/plugins/jetpack/class.jetpack-jitm.php'),(1431,'wp-content/plugins/jetpack/class.jetpack-modules-list-table.php'),(1432,'wp-content/plugins/jetpack/class.jetpack-network-sites-list-table.php'),(1433,'wp-content/plugins/jetpack/class.jetpack-network.php'),(1434,'wp-content/plugins/jetpack/class.jetpack-options.php'),(1435,'wp-content/plugins/jetpack/class.jetpack-post-images.php'),(1436,'wp-content/plugins/jetpack/class.jetpack-signature.php'),(1437,'wp-content/plugins/jetpack/class.jetpack-tracks.php'),(1438,'wp-content/plugins/jetpack/class.jetpack-twitter-cards.php'),(1439,'wp-content/plugins/jetpack/class.jetpack-user-agent.php'),(1440,'wp-content/plugins/jetpack/class.jetpack-xmlrpc-server.php'),(1441,'wp-content/plugins/jetpack/class.jetpack.php'),(1442,'wp-content/plugins/jetpack/class.json-api-endpoints.php'),(1443,'wp-content/plugins/jetpack/class.json-api.php'),(1444,'wp-content/plugins/jetpack/class.photon.php'),(1445,'wp-content/plugins/jetpack/composer.json'),(1446,'wp-content/plugins/jetpack/css/dashboard-widget-rtl.css'),(1447,'wp-content/plugins/jetpack/css/dashboard-widget-rtl.css.map'),(1448,'wp-content/plugins/jetpack/css/dashboard-widget-rtl.css.min.map'),(1449,'wp-content/plugins/jetpack/css/dashboard-widget-rtl.min.css'),(1450,'wp-content/plugins/jetpack/css/dashboard-widget.css'),(1451,'wp-content/plugins/jetpack/css/dashboard-widget.css.map'),(1452,'wp-content/plugins/jetpack/css/dashboard-widget.css.min.map'),(1453,'wp-content/plugins/jetpack/css/dashboard-widget.min.css'),(1454,'wp-content/plugins/jetpack/css/jetpack-admin-jitm-rtl.css'),(1455,'wp-content/plugins/jetpack/css/jetpack-admin-jitm-rtl.css.map'),(1456,'wp-content/plugins/jetpack/css/jetpack-admin-jitm-rtl.css.min.map'),(1457,'wp-content/plugins/jetpack/css/jetpack-admin-jitm-rtl.min.css'),(1458,'wp-content/plugins/jetpack/css/jetpack-admin-jitm.css'),(1459,'wp-content/plugins/jetpack/css/jetpack-admin-jitm.css.map'),(1460,'wp-content/plugins/jetpack/css/jetpack-admin-jitm.css.min.map'),(1461,'wp-content/plugins/jetpack/css/jetpack-admin-jitm.min.css'),(1462,'wp-content/plugins/jetpack/css/jetpack-admin-rtl.css'),(1463,'wp-content/plugins/jetpack/css/jetpack-admin-rtl.css.map'),(1464,'wp-content/plugins/jetpack/css/jetpack-admin-rtl.css.min.map'),(1465,'wp-content/plugins/jetpack/css/jetpack-admin-rtl.min.css'),(1466,'wp-content/plugins/jetpack/css/jetpack-admin.css'),(1467,'wp-content/plugins/jetpack/css/jetpack-admin.css.map'),(1468,'wp-content/plugins/jetpack/css/jetpack-admin.css.min.map'),(1469,'wp-content/plugins/jetpack/css/jetpack-admin.min.css'),(1470,'wp-content/plugins/jetpack/css/jetpack-banners-rtl.css'),(1471,'wp-content/plugins/jetpack/css/jetpack-banners-rtl.css.map'),(1472,'wp-content/plugins/jetpack/css/jetpack-banners-rtl.css.min.map'),(1473,'wp-content/plugins/jetpack/css/jetpack-banners-rtl.min.css'),(1474,'wp-content/plugins/jetpack/css/jetpack-banners.css'),(1475,'wp-content/plugins/jetpack/css/jetpack-banners.css.map'),(1476,'wp-content/plugins/jetpack/css/jetpack-banners.css.min.map'),(1477,'wp-content/plugins/jetpack/css/jetpack-banners.min.css'),(1478,'wp-content/plugins/jetpack/css/jetpack-icons-rtl.css'),(1479,'wp-content/plugins/jetpack/css/jetpack-icons-rtl.css.map'),(1480,'wp-content/plugins/jetpack/css/jetpack-icons-rtl.css.min.map'),(1481,'wp-content/plugins/jetpack/css/jetpack-icons-rtl.min.css'),(1482,'wp-content/plugins/jetpack/css/jetpack-icons.css'),(1483,'wp-content/plugins/jetpack/css/jetpack-icons.css.map'),(1484,'wp-content/plugins/jetpack/css/jetpack-icons.css.min.map'),(1485,'wp-content/plugins/jetpack/css/jetpack-icons.min.css'),(1486,'wp-content/plugins/jetpack/css/jetpack-idc-admin-bar-rtl.css'),(1487,'wp-content/plugins/jetpack/css/jetpack-idc-admin-bar-rtl.css.map'),(1488,'wp-content/plugins/jetpack/css/jetpack-idc-admin-bar-rtl.css.min.map'),(1489,'wp-content/plugins/jetpack/css/jetpack-idc-admin-bar-rtl.min.css'),(1490,'wp-content/plugins/jetpack/css/jetpack-idc-admin-bar.css'),(1491,'wp-content/plugins/jetpack/css/jetpack-idc-admin-bar.css.map'),(1492,'wp-content/plugins/jetpack/css/jetpack-idc-admin-bar.css.min.map'),(1493,'wp-content/plugins/jetpack/css/jetpack-idc-admin-bar.min.css'),(1494,'wp-content/plugins/jetpack/css/jetpack-idc-rtl.css'),(1495,'wp-content/plugins/jetpack/css/jetpack-idc-rtl.css.map'),(1496,'wp-content/plugins/jetpack/css/jetpack-idc-rtl.css.min.map'),(1497,'wp-content/plugins/jetpack/css/jetpack-idc-rtl.min.css'),(1498,'wp-content/plugins/jetpack/css/jetpack-idc.css'),(1499,'wp-content/plugins/jetpack/css/jetpack-idc.css.map'),(1500,'wp-content/plugins/jetpack/css/jetpack-idc.css.min.map'),(1501,'wp-content/plugins/jetpack/css/jetpack-idc.min.css'),(1502,'wp-content/plugins/jetpack/css/jetpack-rtl.css'),(1503,'wp-content/plugins/jetpack/css/jetpack.css'),(1504,'wp-content/plugins/jetpack/functions.compat.php'),(1505,'wp-content/plugins/jetpack/functions.gallery.php'),(1506,'wp-content/plugins/jetpack/functions.global.php'),(1507,'wp-content/plugins/jetpack/functions.opengraph.php'),(1508,'wp-content/plugins/jetpack/functions.photon.php'),(1509,'wp-content/plugins/jetpack/images/apps/triple-devices.svg'),(1510,'wp-content/plugins/jetpack/images/apps.svg'),(1511,'wp-content/plugins/jetpack/images/cf-ss.png'),(1512,'wp-content/plugins/jetpack/images/cloud-based.svg'),(1513,'wp-content/plugins/jetpack/images/connect-jetpack.svg'),(1514,'wp-content/plugins/jetpack/images/connect-plug.svg'),(1515,'wp-content/plugins/jetpack/images/customize-theme-2.svg'),(1516,'wp-content/plugins/jetpack/images/customize-theme.svg'),(1517,'wp-content/plugins/jetpack/images/feature-photon-lrg.jpg'),(1518,'wp-content/plugins/jetpack/images/feature-photon-med.jpg'),(1519,'wp-content/plugins/jetpack/images/feature-photon-sm.jpg'),(1520,'wp-content/plugins/jetpack/images/generating-cash-2.svg'),(1521,'wp-content/plugins/jetpack/images/jetpack-icon.jpg'),(1522,'wp-content/plugins/jetpack/images/jetpack-logo.png'),(1523,'wp-content/plugins/jetpack/images/jetpack-logo.svg'),(1524,'wp-content/plugins/jetpack/images/jetpack-search.svg'),(1525,'wp-content/plugins/jetpack/images/jetpack-welcome.svg'),(1526,'wp-content/plugins/jetpack/images/jupiter.svg'),(1527,'wp-content/plugins/jetpack/images/long-clouds.svg'),(1528,'wp-content/plugins/jetpack/images/man-and-laptop.svg'),(1529,'wp-content/plugins/jetpack/images/people-around-page.svg'),(1530,'wp-content/plugins/jetpack/images/plans/plan-business.svg'),(1531,'wp-content/plugins/jetpack/images/plans/plan-free.svg'),(1532,'wp-content/plugins/jetpack/images/plans/plan-personal.svg'),(1533,'wp-content/plugins/jetpack/images/plans/plan-premium.svg'),(1534,'wp-content/plugins/jetpack/images/rss/blue-large.png'),(1535,'wp-content/plugins/jetpack/images/rss/blue-medium.png'),(1536,'wp-content/plugins/jetpack/images/rss/blue-small.png'),(1537,'wp-content/plugins/jetpack/images/rss/green-large.png'),(1538,'wp-content/plugins/jetpack/images/rss/green-medium.png'),(1539,'wp-content/plugins/jetpack/images/rss/green-small.png'),(1540,'wp-content/plugins/jetpack/images/rss/orange-large.png'),(1541,'wp-content/plugins/jetpack/images/rss/orange-medium.png'),(1542,'wp-content/plugins/jetpack/images/rss/orange-small.png'),(1543,'wp-content/plugins/jetpack/images/rss/pink-large.png'),(1544,'wp-content/plugins/jetpack/images/rss/pink-medium.png'),(1545,'wp-content/plugins/jetpack/images/rss/pink-small.png'),(1546,'wp-content/plugins/jetpack/images/rss/purple-large.png'),(1547,'wp-content/plugins/jetpack/images/rss/purple-medium.png'),(1548,'wp-content/plugins/jetpack/images/rss/purple-small.png'),(1549,'wp-content/plugins/jetpack/images/rss/red-large.png'),(1550,'wp-content/plugins/jetpack/images/rss/red-medium.png'),(1551,'wp-content/plugins/jetpack/images/rss/red-small.png'),(1552,'wp-content/plugins/jetpack/images/rss/silver-large.png'),(1553,'wp-content/plugins/jetpack/images/rss/silver-medium.png'),(1554,'wp-content/plugins/jetpack/images/rss/silver-small.png'),(1555,'wp-content/plugins/jetpack/images/security.svg'),(1556,'wp-content/plugins/jetpack/images/stars-full.svg'),(1557,'wp-content/plugins/jetpack/images/stars-left.svg'),(1558,'wp-content/plugins/jetpack/images/stars-right.svg'),(1559,'wp-content/plugins/jetpack/images/stat-bars.svg'),(1560,'wp-content/plugins/jetpack/images/stats-example-lrg.png'),(1561,'wp-content/plugins/jetpack/images/stats-example-med.png'),(1562,'wp-content/plugins/jetpack/images/stats-example-sm.png'),(1563,'wp-content/plugins/jetpack/images/stats-people.svg'),(1564,'wp-content/plugins/jetpack/images/stats-smiley.gif'),(1565,'wp-content/plugins/jetpack/images/stats.svg'),(1566,'wp-content/plugins/jetpack/images/white-clouds-reverse.svg'),(1567,'wp-content/plugins/jetpack/images/white-clouds.svg'),(1568,'wp-content/plugins/jetpack/images/wordads.svg'),(1569,'wp-content/plugins/jetpack/jetpack.php'),(1570,'wp-content/plugins/jetpack/json-api-config.php'),(1571,'wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-add-widget-endpoint.php'),(1572,'wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-autosave-post-v1-1-endpoint.php'),(1573,'wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-bulk-delete-post-endpoint.php'),(1574,'wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-bulk-restore-post-endpoint.php'),(1575,'wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-comment-endpoint.php'),(1576,'wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-delete-media-endpoint.php'),(1577,'wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-delete-media-v1-1-endpoint.php'),(1578,'wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-edit-media-v1-2-endpoint.php'),(1579,'wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-get-autosave-v1-1-endpoint.php'),(1580,'wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-get-comment-counts-endpoint.php'),(1581,'wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-get-comment-endpoint.php'),(1582,'wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-get-comment-history-endpoint.php'),(1583,'wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-get-comments-tree-endpoint.php'),(1584,'wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-get-comments-tree-v1-1-endpoint.php'),(1585,'wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-get-comments-tree-v1-2-endpoint.php'),(1586,'wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-get-customcss.php'),(1587,'wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-get-media-endpoint.php'),(1588,'wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-get-media-v1-1-endpoint.php'),(1589,'wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-get-media-v1-2-endpoint.php'),(1590,'wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-get-post-counts-v1-1-endpoint.php'),(1591,'wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-get-post-endpoint.php'),(1592,'wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-get-post-v1-1-endpoint.php'),(1593,'wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-get-site-endpoint.php'),(1594,'wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-get-site-v1-2-endpoint.php'),(1595,'wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-get-taxonomies-endpoint.php'),(1596,'wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-get-taxonomy-endpoint.php'),(1597,'wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-get-term-endpoint.php'),(1598,'wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-list-comments-endpoint.php'),(1599,'wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-list-embeds-endpoint.php'),(1600,'wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-list-media-endpoint.php'),(1601,'wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-list-media-v1-1-endpoint.php'),(1602,'wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-list-media-v1-2-endpoint.php'),(1603,'wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-list-post-type-taxonomies-endpoint.php'),(1604,'wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-list-post-types-endpoint.php'),(1605,'wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-list-posts-endpoint.php'),(1606,'wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-list-posts-v1-1-endpoint.php'),(1607,'wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-list-posts-v1-2-endpoint.php'),(1608,'wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-list-roles-endpoint.php'),(1609,'wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-list-shortcodes-endpoint.php'),(1610,'wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-list-terms-endpoint.php'),(1611,'wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-list-users-endpoint.php'),(1612,'wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-menus-v1-1-endpoint.php'),(1613,'wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-post-endpoint.php'),(1614,'wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-post-v1-1-endpoint.php'),(1615,'wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-render-embed-endpoint.php'),(1616,'wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-render-embed-reversal-endpoint.php'),(1617,'wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-render-endpoint.php'),(1618,'wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-render-shortcode-endpoint.php'),(1619,'wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-sharing-buttons-endpoint.php'),(1620,'wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-site-settings-endpoint.php'),(1621,'wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-site-settings-v1-2-endpoint.php'),(1622,'wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-site-settings-v1-3-endpoint.php'),(1623,'wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-site-settings-v1-4-endpoint.php'),(1624,'wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-site-user-endpoint.php'),(1625,'wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-taxonomy-endpoint.php'),(1626,'wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-update-comment-endpoint.php'),(1627,'wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-update-customcss.php'),(1628,'wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-update-media-endpoint.php'),(1629,'wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-update-media-v1-1-endpoint.php'),(1630,'wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-update-post-endpoint.php'),(1631,'wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-update-post-v1-1-endpoint.php'),(1632,'wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-update-post-v1-2-endpoint.php'),(1633,'wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-update-site-homepage-endpoint.php'),(1634,'wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-update-site-logo-endpoint.php'),(1635,'wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-update-taxonomy-endpoint.php'),(1636,'wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-update-term-endpoint.php'),(1637,'wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-update-user-endpoint.php'),(1638,'wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-upload-media-endpoint.php'),(1639,'wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-upload-media-v1-1-endpoint.php'),(1640,'wp-content/plugins/jetpack/json-endpoints/jetpack/class.jetpack-json-api-check-capabilities-endpoint.php'),(1641,'wp-content/plugins/jetpack/json-endpoints/jetpack/class.jetpack-json-api-core-endpoint.php'),(1642,'wp-content/plugins/jetpack/json-endpoints/jetpack/class.jetpack-json-api-core-modify-endpoint.php'),(1643,'wp-content/plugins/jetpack/json-endpoints/jetpack/class.jetpack-json-api-cron-endpoint.php'),(1644,'wp-content/plugins/jetpack/json-endpoints/jetpack/class.jetpack-json-api-endpoint.php'),(1645,'wp-content/plugins/jetpack/json-endpoints/jetpack/class.jetpack-json-api-get-comment-backup-endpoint.php'),(1646,'wp-content/plugins/jetpack/json-endpoints/jetpack/class.jetpack-json-api-get-option-backup-endpoint.php'),(1647,'wp-content/plugins/jetpack/json-endpoints/jetpack/class.jetpack-json-api-get-post-backup-endpoint.php'),(1648,'wp-content/plugins/jetpack/json-endpoints/jetpack/class.jetpack-json-api-get-term-backup-endpoint.php'),(1649,'wp-content/plugins/jetpack/json-endpoints/jetpack/class.jetpack-json-api-get-user-backup-endpoint.php'),(1650,'wp-content/plugins/jetpack/json-endpoints/jetpack/class.jetpack-json-api-log-endpoint.php'),(1651,'wp-content/plugins/jetpack/json-endpoints/jetpack/class.jetpack-json-api-maybe-auto-update-endpoint.php'),(1652,'wp-content/plugins/jetpack/json-endpoints/jetpack/class.jetpack-json-api-modules-endpoint.php'),(1653,'wp-content/plugins/jetpack/json-endpoints/jetpack/class.jetpack-json-api-modules-get-endpoint.php'),(1654,'wp-content/plugins/jetpack/json-endpoints/jetpack/class.jetpack-json-api-modules-list-endpoint.php'),(1655,'wp-content/plugins/jetpack/json-endpoints/jetpack/class.jetpack-json-api-modules-modify-endpoint.php'),(1656,'wp-content/plugins/jetpack/json-endpoints/jetpack/class.jetpack-json-api-plugins-delete-endpoint.php'),(1657,'wp-content/plugins/jetpack/json-endpoints/jetpack/class.jetpack-json-api-plugins-endpoint.php'),(1658,'wp-content/plugins/jetpack/json-endpoints/jetpack/class.jetpack-json-api-plugins-get-endpoint.php'),(1659,'wp-content/plugins/jetpack/json-endpoints/jetpack/class.jetpack-json-api-plugins-install-endpoint.php'),(1660,'wp-content/plugins/jetpack/json-endpoints/jetpack/class.jetpack-json-api-plugins-list-endpoint.php'),(1661,'wp-content/plugins/jetpack/json-endpoints/jetpack/class.jetpack-json-api-plugins-modify-endpoint.php'),(1662,'wp-content/plugins/jetpack/json-endpoints/jetpack/class.jetpack-json-api-plugins-modify-v1-2-endpoint.php'),(1663,'wp-content/plugins/jetpack/json-endpoints/jetpack/class.jetpack-json-api-plugins-new-endpoint.php'),(1664,'wp-content/plugins/jetpack/json-endpoints/jetpack/class.jetpack-json-api-sync-endpoint.php'),(1665,'wp-content/plugins/jetpack/json-endpoints/jetpack/class.jetpack-json-api-themes-active-endpoint.php'),(1666,'wp-content/plugins/jetpack/json-endpoints/jetpack/class.jetpack-json-api-themes-delete-endpoint.php'),(1667,'wp-content/plugins/jetpack/json-endpoints/jetpack/class.jetpack-json-api-themes-endpoint.php'),(1668,'wp-content/plugins/jetpack/json-endpoints/jetpack/class.jetpack-json-api-themes-get-endpoint.php'),(1669,'wp-content/plugins/jetpack/json-endpoints/jetpack/class.jetpack-json-api-themes-install-endpoint.php'),(1670,'wp-content/plugins/jetpack/json-endpoints/jetpack/class.jetpack-json-api-themes-list-endpoint.php'),(1671,'wp-content/plugins/jetpack/json-endpoints/jetpack/class.jetpack-json-api-themes-modify-endpoint.php'),(1672,'wp-content/plugins/jetpack/json-endpoints/jetpack/class.jetpack-json-api-themes-new-endpoint.php'),(1673,'wp-content/plugins/jetpack/json-endpoints/jetpack/class.jetpack-json-api-translations-endpoint.php'),(1674,'wp-content/plugins/jetpack/json-endpoints/jetpack/class.jetpack-json-api-translations-modify-endpoint.php'),(1675,'wp-content/plugins/jetpack/json-endpoints/jetpack/class.jetpack-json-api-updates-status-endpoint.php'),(1676,'wp-content/plugins/jetpack/json-endpoints/jetpack/class.jetpack-json-api-user-connect-endpoint.php'),(1677,'wp-content/plugins/jetpack/json-endpoints/jetpack/class.jetpack-json-api-user-create-endpoint.php'),(1678,'wp-content/plugins/jetpack/json-endpoints/jetpack/class.wpcom-json-api-get-option-endpoint.php'),(1679,'wp-content/plugins/jetpack/json-endpoints/jetpack/class.wpcom-json-api-update-option-endpoint.php'),(1680,'wp-content/plugins/jetpack/json-endpoints/jetpack/json-api-jetpack-endpoints.php'),(1681,'wp-content/plugins/jetpack/json-endpoints.php'),(1682,'wp-content/plugins/jetpack/languages/jetpack-af.mo'),(1683,'wp-content/plugins/jetpack/languages/jetpack-ary.mo'),(1684,'wp-content/plugins/jetpack/languages/jetpack-az.mo'),(1685,'wp-content/plugins/jetpack/languages/jetpack-bg_BG.mo'),(1686,'wp-content/plugins/jetpack/languages/jetpack-bs_BA.mo'),(1687,'wp-content/plugins/jetpack/languages/jetpack-ca.mo'),(1688,'wp-content/plugins/jetpack/languages/jetpack-ckb.mo'),(1689,'wp-content/plugins/jetpack/languages/jetpack-cs_CZ.mo'),(1690,'wp-content/plugins/jetpack/languages/jetpack-cy.mo'),(1691,'wp-content/plugins/jetpack/languages/jetpack-da_DK.mo'),(1692,'wp-content/plugins/jetpack/languages/jetpack-gd.mo'),(1693,'wp-content/plugins/jetpack/languages/jetpack-gl_ES.mo'),(1694,'wp-content/plugins/jetpack/languages/jetpack-hu_HU.mo'),(1695,'wp-content/plugins/jetpack/languages/jetpack-is_IS.mo'),(1696,'wp-content/plugins/jetpack/languages/jetpack-ka_GE.mo'),(1697,'wp-content/plugins/jetpack/languages/jetpack-lt_LT.mo'),(1698,'wp-content/plugins/jetpack/languages/jetpack-lv.mo'),(1699,'wp-content/plugins/jetpack/languages/jetpack-mk_MK.mo'),(1700,'wp-content/plugins/jetpack/languages/jetpack-ms_MY.mo'),(1701,'wp-content/plugins/jetpack/languages/jetpack-my_MM.mo'),(1702,'wp-content/plugins/jetpack/languages/jetpack-nb_NO.mo'),(1703,'wp-content/plugins/jetpack/languages/jetpack-nn_NO.mo'),(1704,'wp-content/plugins/jetpack/languages/jetpack-pl_PL.mo'),(1705,'wp-content/plugins/jetpack/languages/jetpack-pt_PT.mo'),(1706,'wp-content/plugins/jetpack/languages/jetpack-sa_IN.mo'),(1707,'wp-content/plugins/jetpack/languages/jetpack-si_LK.mo'),(1708,'wp-content/plugins/jetpack/languages/jetpack-sl_SI.mo'),(1709,'wp-content/plugins/jetpack/languages/jetpack-sr_RS.mo'),(1710,'wp-content/plugins/jetpack/languages/jetpack-te.mo'),(1711,'wp-content/plugins/jetpack/languages/jetpack-th.mo'),(1712,'wp-content/plugins/jetpack/languages/jetpack-uk.mo'),(1713,'wp-content/plugins/jetpack/languages/jetpack-ur.mo'),(1714,'wp-content/plugins/jetpack/languages/jetpack-vi.mo'),(1715,'wp-content/plugins/jetpack/languages/json/jetpack-af.json'),(1716,'wp-content/plugins/jetpack/languages/json/jetpack-ar.json'),(1717,'wp-content/plugins/jetpack/languages/json/jetpack-ary.json'),(1718,'wp-content/plugins/jetpack/languages/json/jetpack-az.json'),(1719,'wp-content/plugins/jetpack/languages/json/jetpack-bg_BG.json'),(1720,'wp-content/plugins/jetpack/languages/json/jetpack-bs_BA.json'),(1721,'wp-content/plugins/jetpack/languages/json/jetpack-ca.json'),(1722,'wp-content/plugins/jetpack/languages/json/jetpack-ckb.json'),(1723,'wp-content/plugins/jetpack/languages/json/jetpack-cs_CZ.json'),(1724,'wp-content/plugins/jetpack/languages/json/jetpack-cy.json'),(1725,'wp-content/plugins/jetpack/languages/json/jetpack-da_DK.json'),(1726,'wp-content/plugins/jetpack/languages/json/jetpack-de_DE.json'),(1727,'wp-content/plugins/jetpack/languages/json/jetpack-de_DE_formal.json'),(1728,'wp-content/plugins/jetpack/languages/json/jetpack-el.json'),(1729,'wp-content/plugins/jetpack/languages/json/jetpack-en_AU.json'),(1730,'wp-content/plugins/jetpack/languages/json/jetpack-en_CA.json'),(1731,'wp-content/plugins/jetpack/languages/json/jetpack-en_GB.json'),(1732,'wp-content/plugins/jetpack/languages/json/jetpack-en_NZ.json'),(1733,'wp-content/plugins/jetpack/languages/json/jetpack-eo.json'),(1734,'wp-content/plugins/jetpack/languages/json/jetpack-es_AR.json'),(1735,'wp-content/plugins/jetpack/languages/json/jetpack-es_CL.json'),(1736,'wp-content/plugins/jetpack/languages/json/jetpack-es_CR.json'),(1737,'wp-content/plugins/jetpack/languages/json/jetpack-es_ES.json'),(1738,'wp-content/plugins/jetpack/languages/json/jetpack-es_VE.json'),(1739,'wp-content/plugins/jetpack/languages/json/jetpack-fa_IR.json'),(1740,'wp-content/plugins/jetpack/languages/json/jetpack-fi.json'),(1741,'wp-content/plugins/jetpack/languages/json/jetpack-fr_BE.json'),(1742,'wp-content/plugins/jetpack/languages/json/jetpack-fr_FR.json'),(1743,'wp-content/plugins/jetpack/languages/json/jetpack-gd.json'),(1744,'wp-content/plugins/jetpack/languages/json/jetpack-gl_ES.json'),(1745,'wp-content/plugins/jetpack/languages/json/jetpack-he_IL.json'),(1746,'wp-content/plugins/jetpack/languages/json/jetpack-hr.json'),(1747,'wp-content/plugins/jetpack/languages/json/jetpack-hu_HU.json'),(1748,'wp-content/plugins/jetpack/languages/json/jetpack-id_ID.json'),(1749,'wp-content/plugins/jetpack/languages/json/jetpack-is_IS.json'),(1750,'wp-content/plugins/jetpack/languages/json/jetpack-it_IT.json'),(1751,'wp-content/plugins/jetpack/languages/json/jetpack-ja.json'),(1752,'wp-content/plugins/jetpack/languages/json/jetpack-ka_GE.json'),(1753,'wp-content/plugins/jetpack/languages/json/jetpack-ko_KR.json'),(1754,'wp-content/plugins/jetpack/languages/json/jetpack-lt_LT.json'),(1755,'wp-content/plugins/jetpack/languages/json/jetpack-lv.json'),(1756,'wp-content/plugins/jetpack/languages/json/jetpack-mk_MK.json'),(1757,'wp-content/plugins/jetpack/languages/json/jetpack-ms_MY.json'),(1758,'wp-content/plugins/jetpack/languages/json/jetpack-my_MM.json'),(1759,'wp-content/plugins/jetpack/languages/json/jetpack-nb_NO.json'),(1760,'wp-content/plugins/jetpack/languages/json/jetpack-nl_NL.json'),(1761,'wp-content/plugins/jetpack/languages/json/jetpack-nl_NL_formal.json'),(1762,'wp-content/plugins/jetpack/languages/json/jetpack-nn_NO.json'),(1763,'wp-content/plugins/jetpack/languages/json/jetpack-pl_PL.json'),(1764,'wp-content/plugins/jetpack/languages/json/jetpack-pt_BR.json'),(1765,'wp-content/plugins/jetpack/languages/json/jetpack-pt_PT.json'),(1766,'wp-content/plugins/jetpack/languages/json/jetpack-ro_RO.json'),(1767,'wp-content/plugins/jetpack/languages/json/jetpack-ru_RU.json'),(1768,'wp-content/plugins/jetpack/languages/json/jetpack-sa_IN.json'),(1769,'wp-content/plugins/jetpack/languages/json/jetpack-si_LK.json'),(1770,'wp-content/plugins/jetpack/languages/json/jetpack-sk_SK.json'),(1771,'wp-content/plugins/jetpack/languages/json/jetpack-sl_SI.json'),(1772,'wp-content/plugins/jetpack/languages/json/jetpack-sq.json'),(1773,'wp-content/plugins/jetpack/languages/json/jetpack-sr_RS.json'),(1774,'wp-content/plugins/jetpack/languages/json/jetpack-sv_SE.json'),(1775,'wp-content/plugins/jetpack/languages/json/jetpack-te.json'),(1776,'wp-content/plugins/jetpack/languages/json/jetpack-th.json'),(1777,'wp-content/plugins/jetpack/languages/json/jetpack-tr_TR.json'),(1778,'wp-content/plugins/jetpack/languages/json/jetpack-uk.json'),(1779,'wp-content/plugins/jetpack/languages/json/jetpack-ur.json'),(1780,'wp-content/plugins/jetpack/languages/json/jetpack-vi.json'),(1781,'wp-content/plugins/jetpack/languages/json/jetpack-zh_CN.json'),(1782,'wp-content/plugins/jetpack/languages/json/jetpack-zh_HK.json'),(1783,'wp-content/plugins/jetpack/languages/json/jetpack-zh_TW.json'),(1784,'wp-content/plugins/jetpack/languages/readme.txt'),(1785,'wp-content/plugins/jetpack/locales.php'),(1786,'wp-content/plugins/jetpack/modules/after-the-deadline/atd-autoproofread.js'),(1787,'wp-content/plugins/jetpack/modules/after-the-deadline/atd-nonvis-editor-plugin.js'),(1788,'wp-content/plugins/jetpack/modules/after-the-deadline/atd-rtl.css'),(1789,'wp-content/plugins/jetpack/modules/after-the-deadline/atd-rtl.min.css'),(1790,'wp-content/plugins/jetpack/modules/after-the-deadline/atd.core.js'),(1791,'wp-content/plugins/jetpack/modules/after-the-deadline/atd.css'),(1792,'wp-content/plugins/jetpack/modules/after-the-deadline/atd.min.css'),(1793,'wp-content/plugins/jetpack/modules/after-the-deadline/button.gif'),(1794,'wp-content/plugins/jetpack/modules/after-the-deadline/config-options.php'),(1795,'wp-content/plugins/jetpack/modules/after-the-deadline/config-unignore.php'),(1796,'wp-content/plugins/jetpack/modules/after-the-deadline/jquery.atd.js'),(1797,'wp-content/plugins/jetpack/modules/after-the-deadline/proxy.php'),(1798,'wp-content/plugins/jetpack/modules/after-the-deadline/rtl/atd-rtl.css'),(1799,'wp-content/plugins/jetpack/modules/after-the-deadline/tinymce/atdbuttontr.gif'),(1800,'wp-content/plugins/jetpack/modules/after-the-deadline/tinymce/css/content-rtl.css'),(1801,'wp-content/plugins/jetpack/modules/after-the-deadline/tinymce/css/content-rtl.min.css'),(1802,'wp-content/plugins/jetpack/modules/after-the-deadline/tinymce/css/content.css'),(1803,'wp-content/plugins/jetpack/modules/after-the-deadline/tinymce/css/content.min.css'),(1804,'wp-content/plugins/jetpack/modules/after-the-deadline/tinymce/editor_plugin.js'),(1805,'wp-content/plugins/jetpack/modules/after-the-deadline/tinymce/plugin.js'),(1806,'wp-content/plugins/jetpack/modules/after-the-deadline.php'),(1807,'wp-content/plugins/jetpack/modules/carousel/images/arrows-2x.png'),(1808,'wp-content/plugins/jetpack/modules/carousel/images/arrows.png'),(1809,'wp-content/plugins/jetpack/modules/carousel/images/carousel-likereblog-2x.png'),(1810,'wp-content/plugins/jetpack/modules/carousel/images/carousel-likereblog.png'),(1811,'wp-content/plugins/jetpack/modules/carousel/images/carousel-link-2x.png'),(1812,'wp-content/plugins/jetpack/modules/carousel/images/carousel-link.png'),(1813,'wp-content/plugins/jetpack/modules/carousel/images/carousel-sprite-2x.png'),(1814,'wp-content/plugins/jetpack/modules/carousel/images/carousel-sprite.png'),(1815,'wp-content/plugins/jetpack/modules/carousel/jetpack-carousel-ie8fix.css'),(1816,'wp-content/plugins/jetpack/modules/carousel/jetpack-carousel-rtl.css'),(1817,'wp-content/plugins/jetpack/modules/carousel/jetpack-carousel.css'),(1818,'wp-content/plugins/jetpack/modules/carousel/jetpack-carousel.js'),(1819,'wp-content/plugins/jetpack/modules/carousel/jetpack-carousel.php'),(1820,'wp-content/plugins/jetpack/modules/carousel/rtl/jetpack-carousel-rtl.css'),(1821,'wp-content/plugins/jetpack/modules/carousel.php'),(1822,'wp-content/plugins/jetpack/modules/comment-likes/admin-style.css'),(1823,'wp-content/plugins/jetpack/modules/comment-likes/comment-like-count.js'),(1824,'wp-content/plugins/jetpack/modules/comment-likes.php'),(1825,'wp-content/plugins/jetpack/modules/comments/admin.php'),(1826,'wp-content/plugins/jetpack/modules/comments/base.php'),(1827,'wp-content/plugins/jetpack/modules/comments/comments.php'),(1828,'wp-content/plugins/jetpack/modules/comments.php'),(1829,'wp-content/plugins/jetpack/modules/contact-form/admin.php'),(1830,'wp-content/plugins/jetpack/modules/contact-form/class-grunion-contact-form-endpoint.php'),(1831,'wp-content/plugins/jetpack/modules/contact-form/css/editor-inline-editing-style-rtl.css'),(1832,'wp-content/plugins/jetpack/modules/contact-form/css/editor-inline-editing-style-rtl.min.css'),(1833,'wp-content/plugins/jetpack/modules/contact-form/css/editor-inline-editing-style.css'),(1834,'wp-content/plugins/jetpack/modules/contact-form/css/editor-inline-editing-style.min.css'),(1835,'wp-content/plugins/jetpack/modules/contact-form/css/editor-style-rtl.css'),(1836,'wp-content/plugins/jetpack/modules/contact-form/css/editor-style-rtl.min.css'),(1837,'wp-content/plugins/jetpack/modules/contact-form/css/editor-style.css'),(1838,'wp-content/plugins/jetpack/modules/contact-form/css/editor-style.min.css'),(1839,'wp-content/plugins/jetpack/modules/contact-form/css/editor-ui-rtl.css'),(1840,'wp-content/plugins/jetpack/modules/contact-form/css/editor-ui-rtl.min.css'),(1841,'wp-content/plugins/jetpack/modules/contact-form/css/editor-ui.css'),(1842,'wp-content/plugins/jetpack/modules/contact-form/css/editor-ui.min.css'),(1843,'wp-content/plugins/jetpack/modules/contact-form/css/grunion-rtl.css'),(1844,'wp-content/plugins/jetpack/modules/contact-form/css/grunion.css'),(1845,'wp-content/plugins/jetpack/modules/contact-form/css/jquery-ui-datepicker.css'),(1846,'wp-content/plugins/jetpack/modules/contact-form/grunion-contact-form.php'),(1847,'wp-content/plugins/jetpack/modules/contact-form/grunion-editor-view.php'),(1848,'wp-content/plugins/jetpack/modules/contact-form/grunion-form-view.php'),(1849,'wp-content/plugins/jetpack/modules/contact-form/images/blank-screen-akismet.png'),(1850,'wp-content/plugins/jetpack/modules/contact-form/images/blank-screen-button.png'),(1851,'wp-content/plugins/jetpack/modules/contact-form/images/grunion-form-2x.png'),(1852,'wp-content/plugins/jetpack/modules/contact-form/images/grunion-form.png'),(1853,'wp-content/plugins/jetpack/modules/contact-form/images/grunion-remove-field-2x.png'),(1854,'wp-content/plugins/jetpack/modules/contact-form/images/grunion-remove-field-hover-2x.png'),(1855,'wp-content/plugins/jetpack/modules/contact-form/images/grunion-remove-field-hover.gif'),(1856,'wp-content/plugins/jetpack/modules/contact-form/images/grunion-remove-field.gif'),(1857,'wp-content/plugins/jetpack/modules/contact-form/images/grunion-remove-option-2x.png'),(1858,'wp-content/plugins/jetpack/modules/contact-form/images/grunion-remove-option-hover-2x.png'),(1859,'wp-content/plugins/jetpack/modules/contact-form/images/grunion-remove-option-hover.gif'),(1860,'wp-content/plugins/jetpack/modules/contact-form/images/grunion-remove-option.gif'),(1861,'wp-content/plugins/jetpack/modules/contact-form/js/editor-view.js'),(1862,'wp-content/plugins/jetpack/modules/contact-form/js/grunion-admin.js'),(1863,'wp-content/plugins/jetpack/modules/contact-form/js/grunion-frontend.js'),(1864,'wp-content/plugins/jetpack/modules/contact-form/js/grunion.js'),(1865,'wp-content/plugins/jetpack/modules/contact-form/js/tinymce-plugin-form-button.js'),(1866,'wp-content/plugins/jetpack/modules/contact-form.php'),(1867,'wp-content/plugins/jetpack/modules/custom-content-types.php'),(1868,'wp-content/plugins/jetpack/modules/custom-css/csstidy/class.csstidy.php'),(1869,'wp-content/plugins/jetpack/modules/custom-css/csstidy/class.csstidy_ctype.php'),(1870,'wp-content/plugins/jetpack/modules/custom-css/csstidy/class.csstidy_optimise.php'),(1871,'wp-content/plugins/jetpack/modules/custom-css/csstidy/class.csstidy_print.php'),(1872,'wp-content/plugins/jetpack/modules/custom-css/csstidy/cssparse-rtl.css'),(1873,'wp-content/plugins/jetpack/modules/custom-css/csstidy/cssparse-rtl.min.css'),(1874,'wp-content/plugins/jetpack/modules/custom-css/csstidy/cssparse.css'),(1875,'wp-content/plugins/jetpack/modules/custom-css/csstidy/cssparse.min.css'),(1876,'wp-content/plugins/jetpack/modules/custom-css/csstidy/cssparsed-rtl.css'),(1877,'wp-content/plugins/jetpack/modules/custom-css/csstidy/cssparsed-rtl.min.css'),(1878,'wp-content/plugins/jetpack/modules/custom-css/csstidy/cssparsed.css'),(1879,'wp-content/plugins/jetpack/modules/custom-css/csstidy/cssparsed.min.css'),(1880,'wp-content/plugins/jetpack/modules/custom-css/csstidy/data-wp.inc.php'),(1881,'wp-content/plugins/jetpack/modules/custom-css/csstidy/data.inc.php'),(1882,'wp-content/plugins/jetpack/modules/custom-css/csstidy/lang.inc.php'),(1883,'wp-content/plugins/jetpack/modules/custom-css/csstidy/wordpress-standard.tpl'),(1884,'wp-content/plugins/jetpack/modules/custom-css/custom-css/css/blank.css'),(1885,'wp-content/plugins/jetpack/modules/custom-css/custom-css/css/codemirror-rtl.css'),(1886,'wp-content/plugins/jetpack/modules/custom-css/custom-css/css/codemirror-rtl.min.css'),(1887,'wp-content/plugins/jetpack/modules/custom-css/custom-css/css/codemirror.css'),(1888,'wp-content/plugins/jetpack/modules/custom-css/custom-css/css/codemirror.min.css'),(1889,'wp-content/plugins/jetpack/modules/custom-css/custom-css/css/css-editor-rtl.css'),(1890,'wp-content/plugins/jetpack/modules/custom-css/custom-css/css/css-editor-rtl.min.css'),(1891,'wp-content/plugins/jetpack/modules/custom-css/custom-css/css/css-editor.css'),(1892,'wp-content/plugins/jetpack/modules/custom-css/custom-css/css/css-editor.min.css'),(1893,'wp-content/plugins/jetpack/modules/custom-css/custom-css/css/customizer-control.css'),(1894,'wp-content/plugins/jetpack/modules/custom-css/custom-css/css/rtl/codemirror-rtl.css'),(1895,'wp-content/plugins/jetpack/modules/custom-css/custom-css/css/use-codemirror-rtl.css'),(1896,'wp-content/plugins/jetpack/modules/custom-css/custom-css/css/use-codemirror-rtl.min.css'),(1897,'wp-content/plugins/jetpack/modules/custom-css/custom-css/css/use-codemirror.css'),(1898,'wp-content/plugins/jetpack/modules/custom-css/custom-css/css/use-codemirror.min.css'),(1899,'wp-content/plugins/jetpack/modules/custom-css/custom-css/js/codemirror.min.js'),(1900,'wp-content/plugins/jetpack/modules/custom-css/custom-css/js/core-customizer-css-preview.js'),(1901,'wp-content/plugins/jetpack/modules/custom-css/custom-css/js/core-customizer-css.core-4.9.js'),(1902,'wp-content/plugins/jetpack/modules/custom-css/custom-css/js/core-customizer-css.js'),(1903,'wp-content/plugins/jetpack/modules/custom-css/custom-css/js/css-editor.js'),(1904,'wp-content/plugins/jetpack/modules/custom-css/custom-css/js/use-codemirror.js'),(1905,'wp-content/plugins/jetpack/modules/custom-css/custom-css/preprocessors/lessc.inc.php'),(1906,'wp-content/plugins/jetpack/modules/custom-css/custom-css/preprocessors/scss.inc.php'),(1907,'wp-content/plugins/jetpack/modules/custom-css/custom-css/preprocessors.php'),(1908,'wp-content/plugins/jetpack/modules/custom-css/custom-css-4.7.php'),(1909,'wp-content/plugins/jetpack/modules/custom-css/custom-css.php'),(1910,'wp-content/plugins/jetpack/modules/custom-css/migrate-to-core.php'),(1911,'wp-content/plugins/jetpack/modules/custom-css.php'),(1912,'wp-content/plugins/jetpack/modules/custom-post-types/comics/admin.css'),(1913,'wp-content/plugins/jetpack/modules/custom-post-types/comics/comics-rtl.css'),(1914,'wp-content/plugins/jetpack/modules/custom-post-types/comics/comics-rtl.min.css'),(1915,'wp-content/plugins/jetpack/modules/custom-post-types/comics/comics.css'),(1916,'wp-content/plugins/jetpack/modules/custom-post-types/comics/comics.js'),(1917,'wp-content/plugins/jetpack/modules/custom-post-types/comics/comics.min.css'),(1918,'wp-content/plugins/jetpack/modules/custom-post-types/comics/rtl/comics-rtl.css'),(1919,'wp-content/plugins/jetpack/modules/custom-post-types/comics.php'),(1920,'wp-content/plugins/jetpack/modules/custom-post-types/css/edit-items.css'),(1921,'wp-content/plugins/jetpack/modules/custom-post-types/css/many-items.css'),(1922,'wp-content/plugins/jetpack/modules/custom-post-types/css/nova-font.css'),(1923,'wp-content/plugins/jetpack/modules/custom-post-types/css/nova.css'),(1924,'wp-content/plugins/jetpack/modules/custom-post-types/css/portfolio-shortcode.css'),(1925,'wp-content/plugins/jetpack/modules/custom-post-types/css/testimonial-shortcode.css'),(1926,'wp-content/plugins/jetpack/modules/custom-post-types/js/many-items.js'),(1927,'wp-content/plugins/jetpack/modules/custom-post-types/js/menu-checkboxes.js'),(1928,'wp-content/plugins/jetpack/modules/custom-post-types/js/nova-drag-drop.js'),(1929,'wp-content/plugins/jetpack/modules/custom-post-types/nova.php'),(1930,'wp-content/plugins/jetpack/modules/custom-post-types/portfolios.php'),(1931,'wp-content/plugins/jetpack/modules/custom-post-types/testimonial.php'),(1932,'wp-content/plugins/jetpack/modules/debug.php'),(1933,'wp-content/plugins/jetpack/modules/enhanced-distribution.php'),(1934,'wp-content/plugins/jetpack/modules/google-analytics/classes/wp-google-analytics-legacy.php'),(1935,'wp-content/plugins/jetpack/modules/google-analytics/classes/wp-google-analytics-options.php'),(1936,'wp-content/plugins/jetpack/modules/google-analytics/classes/wp-google-analytics-universal.php'),(1937,'wp-content/plugins/jetpack/modules/google-analytics/classes/wp-google-analytics-utils.php'),(1938,'wp-content/plugins/jetpack/modules/google-analytics/wp-google-analytics.php'),(1939,'wp-content/plugins/jetpack/modules/google-analytics.php'),(1940,'wp-content/plugins/jetpack/modules/gplus-authorship.php'),(1941,'wp-content/plugins/jetpack/modules/gravatar-hovercards.php'),(1942,'wp-content/plugins/jetpack/modules/holiday-snow/snowstorm.js'),(1943,'wp-content/plugins/jetpack/modules/holiday-snow.php'),(1944,'wp-content/plugins/jetpack/modules/infinite-scroll/infinity.css'),(1945,'wp-content/plugins/jetpack/modules/infinite-scroll/infinity.js'),(1946,'wp-content/plugins/jetpack/modules/infinite-scroll/infinity.php'),(1947,'wp-content/plugins/jetpack/modules/infinite-scroll/themes/twentyeleven.css'),(1948,'wp-content/plugins/jetpack/modules/infinite-scroll/themes/twentyeleven.php'),(1949,'wp-content/plugins/jetpack/modules/infinite-scroll/themes/twentyfifteen-rtl.css'),(1950,'wp-content/plugins/jetpack/modules/infinite-scroll/themes/twentyfifteen.css'),(1951,'wp-content/plugins/jetpack/modules/infinite-scroll/themes/twentyfifteen.php'),(1952,'wp-content/plugins/jetpack/modules/infinite-scroll/themes/twentyfourteen.css'),(1953,'wp-content/plugins/jetpack/modules/infinite-scroll/themes/twentyfourteen.php'),(1954,'wp-content/plugins/jetpack/modules/infinite-scroll/themes/twentyseventeen-rtl.css'),(1955,'wp-content/plugins/jetpack/modules/infinite-scroll/themes/twentyseventeen.css'),(1956,'wp-content/plugins/jetpack/modules/infinite-scroll/themes/twentyseventeen.php'),(1957,'wp-content/plugins/jetpack/modules/infinite-scroll/themes/twentysixteen-rtl.css'),(1958,'wp-content/plugins/jetpack/modules/infinite-scroll/themes/twentysixteen.css'),(1959,'wp-content/plugins/jetpack/modules/infinite-scroll/themes/twentysixteen.php'),(1960,'wp-content/plugins/jetpack/modules/infinite-scroll/themes/twentyten.css'),(1961,'wp-content/plugins/jetpack/modules/infinite-scroll/themes/twentyten.php'),(1962,'wp-content/plugins/jetpack/modules/infinite-scroll/themes/twentythirteen.css'),(1963,'wp-content/plugins/jetpack/modules/infinite-scroll/themes/twentythirteen.php'),(1964,'wp-content/plugins/jetpack/modules/infinite-scroll/themes/twentytwelve.css'),(1965,'wp-content/plugins/jetpack/modules/infinite-scroll/themes/twentytwelve.php'),(1966,'wp-content/plugins/jetpack/modules/infinite-scroll.php'),(1967,'wp-content/plugins/jetpack/modules/json-api.php'),(1968,'wp-content/plugins/jetpack/modules/latex.php'),(1969,'wp-content/plugins/jetpack/modules/lazy-images/images/1x1.trans.gif'),(1970,'wp-content/plugins/jetpack/modules/lazy-images/js/lazy-images.js'),(1971,'wp-content/plugins/jetpack/modules/lazy-images/lazy-images.php'),(1972,'wp-content/plugins/jetpack/modules/lazy-images.php'),(1973,'wp-content/plugins/jetpack/modules/likes/jetpack-likes-master-iframe.php'),(1974,'wp-content/plugins/jetpack/modules/likes/jetpack-likes-settings.php'),(1975,'wp-content/plugins/jetpack/modules/likes/post-count-jetpack.js'),(1976,'wp-content/plugins/jetpack/modules/likes/post-count.js'),(1977,'wp-content/plugins/jetpack/modules/likes/queuehandler.js'),(1978,'wp-content/plugins/jetpack/modules/likes/style.css'),(1979,'wp-content/plugins/jetpack/modules/likes.php'),(1980,'wp-content/plugins/jetpack/modules/manage/activate-admin.php'),(1981,'wp-content/plugins/jetpack/modules/manage/confirm-admin.php'),(1982,'wp-content/plugins/jetpack/modules/manage.php'),(1983,'wp-content/plugins/jetpack/modules/markdown/easy-markdown.php'),(1984,'wp-content/plugins/jetpack/modules/markdown.php'),(1985,'wp-content/plugins/jetpack/modules/masterbar/masterbar.php'),(1986,'wp-content/plugins/jetpack/modules/masterbar/overrides.css'),(1987,'wp-content/plugins/jetpack/modules/masterbar/rtl-admin-bar.php'),(1988,'wp-content/plugins/jetpack/modules/masterbar/tracks-events.js'),(1989,'wp-content/plugins/jetpack/modules/masterbar.php'),(1990,'wp-content/plugins/jetpack/modules/minileven/images/wp-app-devices.png'),(1991,'wp-content/plugins/jetpack/modules/minileven/minileven.php'),(1992,'wp-content/plugins/jetpack/modules/minileven/theme/pub/minileven/comments.php'),(1993,'wp-content/plugins/jetpack/modules/minileven/theme/pub/minileven/content-gallery.php'),(1994,'wp-content/plugins/jetpack/modules/minileven/theme/pub/minileven/content.php'),(1995,'wp-content/plugins/jetpack/modules/minileven/theme/pub/minileven/footer.php'),(1996,'wp-content/plugins/jetpack/modules/minileven/theme/pub/minileven/functions.php'),(1997,'wp-content/plugins/jetpack/modules/minileven/theme/pub/minileven/header.php'),(1998,'wp-content/plugins/jetpack/modules/minileven/theme/pub/minileven/image.php'),(1999,'wp-content/plugins/jetpack/modules/minileven/theme/pub/minileven/inc/custom-header.php'),(2000,'wp-content/plugins/jetpack/modules/minileven/theme/pub/minileven/inc/fonts/genericons-regular-webfont.eot'),(2001,'wp-content/plugins/jetpack/modules/minileven/theme/pub/minileven/inc/fonts/genericons-regular-webfont.svg'),(2002,'wp-content/plugins/jetpack/modules/minileven/theme/pub/minileven/inc/fonts/genericons-regular-webfont.ttf'),(2003,'wp-content/plugins/jetpack/modules/minileven/theme/pub/minileven/inc/fonts/genericons-regular-webfont.woff'),(2004,'wp-content/plugins/jetpack/modules/minileven/theme/pub/minileven/inc/template-tags.php'),(2005,'wp-content/plugins/jetpack/modules/minileven/theme/pub/minileven/inc/tweaks.php'),(2006,'wp-content/plugins/jetpack/modules/minileven/theme/pub/minileven/index.php'),(2007,'wp-content/plugins/jetpack/modules/minileven/theme/pub/minileven/js/small-menu.js'),(2008,'wp-content/plugins/jetpack/modules/minileven/theme/pub/minileven/page.php'),(2009,'wp-content/plugins/jetpack/modules/minileven/theme/pub/minileven/rtl.css'),(2010,'wp-content/plugins/jetpack/modules/minileven/theme/pub/minileven/screenshot.png'),(2011,'wp-content/plugins/jetpack/modules/minileven/theme/pub/minileven/searchform.php'),(2012,'wp-content/plugins/jetpack/modules/minileven/theme/pub/minileven/sidebar.php'),(2013,'wp-content/plugins/jetpack/modules/minileven/theme/pub/minileven/style.css'),(2014,'wp-content/plugins/jetpack/modules/minileven.php'),(2015,'wp-content/plugins/jetpack/modules/mobile-push.php'),(2016,'wp-content/plugins/jetpack/modules/module-extras.php'),(2017,'wp-content/plugins/jetpack/modules/module-headings.php'),(2018,'wp-content/plugins/jetpack/modules/module-info.php'),(2019,'wp-content/plugins/jetpack/modules/monitor.php'),(2020,'wp-content/plugins/jetpack/modules/notes.php'),(2021,'wp-content/plugins/jetpack/modules/omnisearch.php'),(2022,'wp-content/plugins/jetpack/modules/photon/photon.js'),(2023,'wp-content/plugins/jetpack/modules/photon.php'),(2024,'wp-content/plugins/jetpack/modules/post-by-email/post-by-email-rtl.css'),(2025,'wp-content/plugins/jetpack/modules/post-by-email/post-by-email-rtl.min.css'),(2026,'wp-content/plugins/jetpack/modules/post-by-email/post-by-email.css'),(2027,'wp-content/plugins/jetpack/modules/post-by-email/post-by-email.js'),(2028,'wp-content/plugins/jetpack/modules/post-by-email/post-by-email.min.css'),(2029,'wp-content/plugins/jetpack/modules/post-by-email.php'),(2030,'wp-content/plugins/jetpack/modules/protect/blocked-login-page.php'),(2031,'wp-content/plugins/jetpack/modules/protect/config-ui.php'),(2032,'wp-content/plugins/jetpack/modules/protect/math-fallback.php'),(2033,'wp-content/plugins/jetpack/modules/protect/protect-dashboard-widget-rtl.css'),(2034,'wp-content/plugins/jetpack/modules/protect/protect-dashboard-widget-rtl.min.css'),(2035,'wp-content/plugins/jetpack/modules/protect/protect-dashboard-widget.css'),(2036,'wp-content/plugins/jetpack/modules/protect/protect-dashboard-widget.min.css'),(2037,'wp-content/plugins/jetpack/modules/protect/protect.png'),(2038,'wp-content/plugins/jetpack/modules/protect/shared-functions.php'),(2039,'wp-content/plugins/jetpack/modules/protect/transient-cleanup.php'),(2040,'wp-content/plugins/jetpack/modules/protect.php'),(2041,'wp-content/plugins/jetpack/modules/publicize/assets/connected.gif'),(2042,'wp-content/plugins/jetpack/modules/publicize/assets/facebook-logo.png'),(2043,'wp-content/plugins/jetpack/modules/publicize/assets/linkedin-logo.png'),(2044,'wp-content/plugins/jetpack/modules/publicize/assets/path-logo.png'),(2045,'wp-content/plugins/jetpack/modules/publicize/assets/publicize-fb-2x.png'),(2046,'wp-content/plugins/jetpack/modules/publicize/assets/publicize-google-2x.png'),(2047,'wp-content/plugins/jetpack/modules/publicize/assets/publicize-linkedin-2x.png'),(2048,'wp-content/plugins/jetpack/modules/publicize/assets/publicize-path-2x.png'),(2049,'wp-content/plugins/jetpack/modules/publicize/assets/publicize-rtl.css'),(2050,'wp-content/plugins/jetpack/modules/publicize/assets/publicize-rtl.min.css'),(2051,'wp-content/plugins/jetpack/modules/publicize/assets/publicize-tumblr-2x.png'),(2052,'wp-content/plugins/jetpack/modules/publicize/assets/publicize-twitter-2x.png'),(2053,'wp-content/plugins/jetpack/modules/publicize/assets/publicize.css'),(2054,'wp-content/plugins/jetpack/modules/publicize/assets/publicize.js'),(2055,'wp-content/plugins/jetpack/modules/publicize/assets/publicize.min.css'),(2056,'wp-content/plugins/jetpack/modules/publicize/assets/rtl/publicize-rtl.css'),(2057,'wp-content/plugins/jetpack/modules/publicize/assets/spinner.gif'),(2058,'wp-content/plugins/jetpack/modules/publicize/assets/tumblr-logo.png'),(2059,'wp-content/plugins/jetpack/modules/publicize/assets/twitter-logo.png'),(2060,'wp-content/plugins/jetpack/modules/publicize/enhanced-open-graph.php'),(2061,'wp-content/plugins/jetpack/modules/publicize/publicize-jetpack.php'),(2062,'wp-content/plugins/jetpack/modules/publicize/publicize.php'),(2063,'wp-content/plugins/jetpack/modules/publicize/ui.php'),(2064,'wp-content/plugins/jetpack/modules/publicize.php'),(2065,'wp-content/plugins/jetpack/modules/pwa/class.jetpack-pwa-helpers.php'),(2066,'wp-content/plugins/jetpack/modules/pwa/class.jetpack-pwa-manifest.php'),(2067,'wp-content/plugins/jetpack/modules/pwa/images/wp-192.png'),(2068,'wp-content/plugins/jetpack/modules/pwa/images/wp-512.png'),(2069,'wp-content/plugins/jetpack/modules/pwa.php'),(2070,'wp-content/plugins/jetpack/modules/random-redirect.php'),(2071,'wp-content/plugins/jetpack/modules/related-posts/class.related-posts-customize.php'),(2072,'wp-content/plugins/jetpack/modules/related-posts/jetpack-related-posts.php'),(2073,'wp-content/plugins/jetpack/modules/related-posts/related-posts-customizer.js'),(2074,'wp-content/plugins/jetpack/modules/related-posts/related-posts-rtl.css'),(2075,'wp-content/plugins/jetpack/modules/related-posts/related-posts.css'),(2076,'wp-content/plugins/jetpack/modules/related-posts/related-posts.js'),(2077,'wp-content/plugins/jetpack/modules/related-posts/rtl/related-posts-rtl.css'),(2078,'wp-content/plugins/jetpack/modules/related-posts.php'),(2079,'wp-content/plugins/jetpack/modules/search/class.jetpack-search-helpers.php'),(2080,'wp-content/plugins/jetpack/modules/search/class.jetpack-search-template-tags.php'),(2081,'wp-content/plugins/jetpack/modules/search/class.jetpack-search.php'),(2082,'wp-content/plugins/jetpack/modules/search.php'),(2083,'wp-content/plugins/jetpack/modules/seo-tools/jetpack-seo-posts.php'),(2084,'wp-content/plugins/jetpack/modules/seo-tools/jetpack-seo-titles.php'),(2085,'wp-content/plugins/jetpack/modules/seo-tools/jetpack-seo-utils.php'),(2086,'wp-content/plugins/jetpack/modules/seo-tools/jetpack-seo.php'),(2087,'wp-content/plugins/jetpack/modules/seo-tools.php'),(2088,'wp-content/plugins/jetpack/modules/sharedaddy/admin-sharing-rtl.css'),(2089,'wp-content/plugins/jetpack/modules/sharedaddy/admin-sharing-rtl.min.css'),(2090,'wp-content/plugins/jetpack/modules/sharedaddy/admin-sharing.css'),(2091,'wp-content/plugins/jetpack/modules/sharedaddy/admin-sharing.js'),(2092,'wp-content/plugins/jetpack/modules/sharedaddy/admin-sharing.min.css'),(2093,'wp-content/plugins/jetpack/modules/sharedaddy/images/after-the-deadline@2x.png'),(2094,'wp-content/plugins/jetpack/modules/sharedaddy/images/comments@2x.png'),(2095,'wp-content/plugins/jetpack/modules/sharedaddy/images/contact-form@2x.png'),(2096,'wp-content/plugins/jetpack/modules/sharedaddy/images/custom.png'),(2097,'wp-content/plugins/jetpack/modules/sharedaddy/images/custom@2x.png'),(2098,'wp-content/plugins/jetpack/modules/sharedaddy/images/designfloat.png'),(2099,'wp-content/plugins/jetpack/modules/sharedaddy/images/digg.png'),(2100,'wp-content/plugins/jetpack/modules/sharedaddy/images/digg@2x.png'),(2101,'wp-content/plugins/jetpack/modules/sharedaddy/images/divider.png'),(2102,'wp-content/plugins/jetpack/modules/sharedaddy/images/divider@2x.png'),(2103,'wp-content/plugins/jetpack/modules/sharedaddy/images/draggy.png'),(2104,'wp-content/plugins/jetpack/modules/sharedaddy/images/draggy@2x.png'),(2105,'wp-content/plugins/jetpack/modules/sharedaddy/images/email.png'),(2106,'wp-content/plugins/jetpack/modules/sharedaddy/images/email@2x.png'),(2107,'wp-content/plugins/jetpack/modules/sharedaddy/images/ember.png'),(2108,'wp-content/plugins/jetpack/modules/sharedaddy/images/enhanced-distribution@2x.png'),(2109,'wp-content/plugins/jetpack/modules/sharedaddy/images/facebook.png'),(2110,'wp-content/plugins/jetpack/modules/sharedaddy/images/facebook@2x.png'),(2111,'wp-content/plugins/jetpack/modules/sharedaddy/images/feed.png'),(2112,'wp-content/plugins/jetpack/modules/sharedaddy/images/googleplus1.png'),(2113,'wp-content/plugins/jetpack/modules/sharedaddy/images/googleplus1@2x.png'),(2114,'wp-content/plugins/jetpack/modules/sharedaddy/images/icon-facebook-2x.png'),(2115,'wp-content/plugins/jetpack/modules/sharedaddy/images/icon-facebook.png'),(2116,'wp-content/plugins/jetpack/modules/sharedaddy/images/icon-googleplus-2x.png'),(2117,'wp-content/plugins/jetpack/modules/sharedaddy/images/icon-googleplus.png'),(2118,'wp-content/plugins/jetpack/modules/sharedaddy/images/icon-twitter-2x.png'),(2119,'wp-content/plugins/jetpack/modules/sharedaddy/images/icon-twitter.png'),(2120,'wp-content/plugins/jetpack/modules/sharedaddy/images/icon-wordpress-2x.png'),(2121,'wp-content/plugins/jetpack/modules/sharedaddy/images/icon-wordpress.png'),(2122,'wp-content/plugins/jetpack/modules/sharedaddy/images/kindle.png'),(2123,'wp-content/plugins/jetpack/modules/sharedaddy/images/kindle@2x.png'),(2124,'wp-content/plugins/jetpack/modules/sharedaddy/images/linkedin-horizontal.png'),(2125,'wp-content/plugins/jetpack/modules/sharedaddy/images/linkedin-horizontal@2x.png'),(2126,'wp-content/plugins/jetpack/modules/sharedaddy/images/linkedin-nocount.png'),(2127,'wp-content/plugins/jetpack/modules/sharedaddy/images/linkedin-nocount@2x.png'),(2128,'wp-content/plugins/jetpack/modules/sharedaddy/images/linkedin-smart.png'),(2129,'wp-content/plugins/jetpack/modules/sharedaddy/images/linkedin-smart@2x.png'),(2130,'wp-content/plugins/jetpack/modules/sharedaddy/images/linkedin-vertical.png'),(2131,'wp-content/plugins/jetpack/modules/sharedaddy/images/linkedin-vertical@2x.png'),(2132,'wp-content/plugins/jetpack/modules/sharedaddy/images/linkedin.png'),(2133,'wp-content/plugins/jetpack/modules/sharedaddy/images/linkedin@2x.png'),(2134,'wp-content/plugins/jetpack/modules/sharedaddy/images/loading.gif'),(2135,'wp-content/plugins/jetpack/modules/sharedaddy/images/more.png'),(2136,'wp-content/plugins/jetpack/modules/sharedaddy/images/more@2x.png'),(2137,'wp-content/plugins/jetpack/modules/sharedaddy/images/pinterest.png'),(2138,'wp-content/plugins/jetpack/modules/sharedaddy/images/pinterest@2x.png'),(2139,'wp-content/plugins/jetpack/modules/sharedaddy/images/pocket.png'),(2140,'wp-content/plugins/jetpack/modules/sharedaddy/images/pocket@2x.png'),(2141,'wp-content/plugins/jetpack/modules/sharedaddy/images/print.png'),(2142,'wp-content/plugins/jetpack/modules/sharedaddy/images/print@2x.png'),(2143,'wp-content/plugins/jetpack/modules/sharedaddy/images/reddit.png'),(2144,'wp-content/plugins/jetpack/modules/sharedaddy/images/reddit@2x.png'),(2145,'wp-content/plugins/jetpack/modules/sharedaddy/images/rss.png'),(2146,'wp-content/plugins/jetpack/modules/sharedaddy/images/rss@2x.png'),(2147,'wp-content/plugins/jetpack/modules/sharedaddy/images/share-bg.png'),(2148,'wp-content/plugins/jetpack/modules/sharedaddy/images/sharing-hidden.png'),(2149,'wp-content/plugins/jetpack/modules/sharedaddy/images/sharing-hidden@2x.png'),(2150,'wp-content/plugins/jetpack/modules/sharedaddy/images/smart-digg.png'),(2151,'wp-content/plugins/jetpack/modules/sharedaddy/images/smart-digg@2x.png'),(2152,'wp-content/plugins/jetpack/modules/sharedaddy/images/smart-facebook.png'),(2153,'wp-content/plugins/jetpack/modules/sharedaddy/images/smart-facebook@2x.png'),(2154,'wp-content/plugins/jetpack/modules/sharedaddy/images/smart-googleplus1.png'),(2155,'wp-content/plugins/jetpack/modules/sharedaddy/images/smart-googleplus1@2x.png'),(2156,'wp-content/plugins/jetpack/modules/sharedaddy/images/smart-like.png'),(2157,'wp-content/plugins/jetpack/modules/sharedaddy/images/smart-like@2x.png'),(2158,'wp-content/plugins/jetpack/modules/sharedaddy/images/smart-pinterest.png'),(2159,'wp-content/plugins/jetpack/modules/sharedaddy/images/smart-pinterest@2x.png'),(2160,'wp-content/plugins/jetpack/modules/sharedaddy/images/smart-pocket.png'),(2161,'wp-content/plugins/jetpack/modules/sharedaddy/images/smart-pocket@2x.png'),(2162,'wp-content/plugins/jetpack/modules/sharedaddy/images/smart-reddit.png'),(2163,'wp-content/plugins/jetpack/modules/sharedaddy/images/smart-reddit@2x.png'),(2164,'wp-content/plugins/jetpack/modules/sharedaddy/images/smart-skype.png'),(2165,'wp-content/plugins/jetpack/modules/sharedaddy/images/smart-skype@2x.png'),(2166,'wp-content/plugins/jetpack/modules/sharedaddy/images/smart-stumbleupon.png'),(2167,'wp-content/plugins/jetpack/modules/sharedaddy/images/smart-stumbleupon@2x.png'),(2168,'wp-content/plugins/jetpack/modules/sharedaddy/images/smart-tumblr.png'),(2169,'wp-content/plugins/jetpack/modules/sharedaddy/images/smart-tumblr@2x.png'),(2170,'wp-content/plugins/jetpack/modules/sharedaddy/images/smart-twitter.png'),(2171,'wp-content/plugins/jetpack/modules/sharedaddy/images/smart-twitter@2x.png'),(2172,'wp-content/plugins/jetpack/modules/sharedaddy/images/tumblr.png'),(2173,'wp-content/plugins/jetpack/modules/sharedaddy/images/tumblr@2x.png'),(2174,'wp-content/plugins/jetpack/modules/sharedaddy/images/twitter.png'),(2175,'wp-content/plugins/jetpack/modules/sharedaddy/images/twitter@2x.png'),(2176,'wp-content/plugins/jetpack/modules/sharedaddy/images/wordpress.png'),(2177,'wp-content/plugins/jetpack/modules/sharedaddy/images/wordpress@2x.png'),(2178,'wp-content/plugins/jetpack/modules/sharedaddy/recaptcha.php'),(2179,'wp-content/plugins/jetpack/modules/sharedaddy/sharedaddy.php'),(2180,'wp-content/plugins/jetpack/modules/sharedaddy/sharing-service.php'),(2181,'wp-content/plugins/jetpack/modules/sharedaddy/sharing-sources.php'),(2182,'wp-content/plugins/jetpack/modules/sharedaddy/sharing.css'),(2183,'wp-content/plugins/jetpack/modules/sharedaddy/sharing.js'),(2184,'wp-content/plugins/jetpack/modules/sharedaddy/sharing.php'),(2185,'wp-content/plugins/jetpack/modules/sharedaddy.php'),(2186,'wp-content/plugins/jetpack/modules/shortcodes/archiveorg-book.php'),(2187,'wp-content/plugins/jetpack/modules/shortcodes/archiveorg.php'),(2188,'wp-content/plugins/jetpack/modules/shortcodes/archives.php'),(2189,'wp-content/plugins/jetpack/modules/shortcodes/audio.php'),(2190,'wp-content/plugins/jetpack/modules/shortcodes/bandcamp.php'),(2191,'wp-content/plugins/jetpack/modules/shortcodes/brightcove.php'),(2192,'wp-content/plugins/jetpack/modules/shortcodes/cartodb.php'),(2193,'wp-content/plugins/jetpack/modules/shortcodes/class.filter-embedded-html-objects.php'),(2194,'wp-content/plugins/jetpack/modules/shortcodes/codepen.php'),(2195,'wp-content/plugins/jetpack/modules/shortcodes/css/quiz.css'),(2196,'wp-content/plugins/jetpack/modules/shortcodes/css/recipes-print-rtl.css'),(2197,'wp-content/plugins/jetpack/modules/shortcodes/css/recipes-print-rtl.min.css'),(2198,'wp-content/plugins/jetpack/modules/shortcodes/css/recipes-print.css'),(2199,'wp-content/plugins/jetpack/modules/shortcodes/css/recipes-print.min.css'),(2200,'wp-content/plugins/jetpack/modules/shortcodes/css/recipes-rtl.css'),(2201,'wp-content/plugins/jetpack/modules/shortcodes/css/recipes-rtl.min.css'),(2202,'wp-content/plugins/jetpack/modules/shortcodes/css/recipes.css'),(2203,'wp-content/plugins/jetpack/modules/shortcodes/css/recipes.min.css'),(2204,'wp-content/plugins/jetpack/modules/shortcodes/css/rtl/slideshow-shortcode-rtl.css'),(2205,'wp-content/plugins/jetpack/modules/shortcodes/css/slideshow-shortcode.css'),(2206,'wp-content/plugins/jetpack/modules/shortcodes/css/style.css'),(2207,'wp-content/plugins/jetpack/modules/shortcodes/dailymotion.php'),(2208,'wp-content/plugins/jetpack/modules/shortcodes/diggthis.php'),(2209,'wp-content/plugins/jetpack/modules/shortcodes/facebook.php'),(2210,'wp-content/plugins/jetpack/modules/shortcodes/flickr.php'),(2211,'wp-content/plugins/jetpack/modules/shortcodes/getty.php'),(2212,'wp-content/plugins/jetpack/modules/shortcodes/gist.php'),(2213,'wp-content/plugins/jetpack/modules/shortcodes/googleapps.php'),(2214,'wp-content/plugins/jetpack/modules/shortcodes/googlemaps.php'),(2215,'wp-content/plugins/jetpack/modules/shortcodes/googleplus.php'),(2216,'wp-content/plugins/jetpack/modules/shortcodes/googlevideo.php'),(2217,'wp-content/plugins/jetpack/modules/shortcodes/gravatar.php'),(2218,'wp-content/plugins/jetpack/modules/shortcodes/houzz.php'),(2219,'wp-content/plugins/jetpack/modules/shortcodes/hulu.php'),(2220,'wp-content/plugins/jetpack/modules/shortcodes/images/collapse.png'),(2221,'wp-content/plugins/jetpack/modules/shortcodes/images/expand.png'),(2222,'wp-content/plugins/jetpack/modules/shortcodes/images/slide-nav.png'),(2223,'wp-content/plugins/jetpack/modules/shortcodes/img/slideshow-controls-2x.png'),(2224,'wp-content/plugins/jetpack/modules/shortcodes/img/slideshow-controls.png'),(2225,'wp-content/plugins/jetpack/modules/shortcodes/img/slideshow-loader.gif'),(2226,'wp-content/plugins/jetpack/modules/shortcodes/instagram.php'),(2227,'wp-content/plugins/jetpack/modules/shortcodes/js/brightcove.js'),(2228,'wp-content/plugins/jetpack/modules/shortcodes/js/gist.js'),(2229,'wp-content/plugins/jetpack/modules/shortcodes/js/instagram.js'),(2230,'wp-content/plugins/jetpack/modules/shortcodes/js/jmpress.js'),(2231,'wp-content/plugins/jetpack/modules/shortcodes/js/jquery.cycle.min.js'),(2232,'wp-content/plugins/jetpack/modules/shortcodes/js/main.js'),(2233,'wp-content/plugins/jetpack/modules/shortcodes/js/quiz.js'),(2234,'wp-content/plugins/jetpack/modules/shortcodes/js/recipes-printthis.js'),(2235,'wp-content/plugins/jetpack/modules/shortcodes/js/recipes.js'),(2236,'wp-content/plugins/jetpack/modules/shortcodes/js/slideshow-shortcode.js'),(2237,'wp-content/plugins/jetpack/modules/shortcodes/kickstarter.php'),(2238,'wp-content/plugins/jetpack/modules/shortcodes/lytro.php'),(2239,'wp-content/plugins/jetpack/modules/shortcodes/mailchimp.php'),(2240,'wp-content/plugins/jetpack/modules/shortcodes/medium.php'),(2241,'wp-content/plugins/jetpack/modules/shortcodes/mixcloud.php'),(2242,'wp-content/plugins/jetpack/modules/shortcodes/pinterest.php'),(2243,'wp-content/plugins/jetpack/modules/shortcodes/polldaddy.php'),(2244,'wp-content/plugins/jetpack/modules/shortcodes/presentations.php'),(2245,'wp-content/plugins/jetpack/modules/shortcodes/quiz.php'),(2246,'wp-content/plugins/jetpack/modules/shortcodes/recipe.php'),(2247,'wp-content/plugins/jetpack/modules/shortcodes/scribd.php'),(2248,'wp-content/plugins/jetpack/modules/shortcodes/sitemap.php'),(2249,'wp-content/plugins/jetpack/modules/shortcodes/slideshare.php'),(2250,'wp-content/plugins/jetpack/modules/shortcodes/slideshow.php'),(2251,'wp-content/plugins/jetpack/modules/shortcodes/soundcloud.php'),(2252,'wp-content/plugins/jetpack/modules/shortcodes/spotify.php'),(2253,'wp-content/plugins/jetpack/modules/shortcodes/ted.php'),(2254,'wp-content/plugins/jetpack/modules/shortcodes/tweet.php'),(2255,'wp-content/plugins/jetpack/modules/shortcodes/twitchtv.php'),(2256,'wp-content/plugins/jetpack/modules/shortcodes/twitter-timeline.php'),(2257,'wp-content/plugins/jetpack/modules/shortcodes/unavailable.php'),(2258,'wp-content/plugins/jetpack/modules/shortcodes/untappd-menu.php'),(2259,'wp-content/plugins/jetpack/modules/shortcodes/upcoming-events.php'),(2260,'wp-content/plugins/jetpack/modules/shortcodes/ustream.php'),(2261,'wp-content/plugins/jetpack/modules/shortcodes/videopress.php'),(2262,'wp-content/plugins/jetpack/modules/shortcodes/vimeo.php'),(2263,'wp-content/plugins/jetpack/modules/shortcodes/vine.php'),(2264,'wp-content/plugins/jetpack/modules/shortcodes/vr.php'),(2265,'wp-content/plugins/jetpack/modules/shortcodes/wufoo.php'),(2266,'wp-content/plugins/jetpack/modules/shortcodes/youtube.php'),(2267,'wp-content/plugins/jetpack/modules/shortcodes.php'),(2268,'wp-content/plugins/jetpack/modules/shortlinks.php'),(2269,'wp-content/plugins/jetpack/modules/simple-payments/paypal-express-checkout.js'),(2270,'wp-content/plugins/jetpack/modules/simple-payments/simple-payments.css'),(2271,'wp-content/plugins/jetpack/modules/simple-payments/simple-payments.php'),(2272,'wp-content/plugins/jetpack/modules/site-icon/site-icon-functions.php'),(2273,'wp-content/plugins/jetpack/modules/site-icon.php'),(2274,'wp-content/plugins/jetpack/modules/sitemaps/sitemap-buffer-fallback.php'),(2275,'wp-content/plugins/jetpack/modules/sitemaps/sitemap-buffer-image-fallback.php'),(2276,'wp-content/plugins/jetpack/modules/sitemaps/sitemap-buffer-image.php'),(2277,'wp-content/plugins/jetpack/modules/sitemaps/sitemap-buffer-master-fallback.php'),(2278,'wp-content/plugins/jetpack/modules/sitemaps/sitemap-buffer-master.php'),(2279,'wp-content/plugins/jetpack/modules/sitemaps/sitemap-buffer-news-fallback.php'),(2280,'wp-content/plugins/jetpack/modules/sitemaps/sitemap-buffer-news.php'),(2281,'wp-content/plugins/jetpack/modules/sitemaps/sitemap-buffer-page-fallback.php'),(2282,'wp-content/plugins/jetpack/modules/sitemaps/sitemap-buffer-page.php'),(2283,'wp-content/plugins/jetpack/modules/sitemaps/sitemap-buffer-video-fallback.php'),(2284,'wp-content/plugins/jetpack/modules/sitemaps/sitemap-buffer-video.php'),(2285,'wp-content/plugins/jetpack/modules/sitemaps/sitemap-buffer.php'),(2286,'wp-content/plugins/jetpack/modules/sitemaps/sitemap-builder.php'),(2287,'wp-content/plugins/jetpack/modules/sitemaps/sitemap-constants.php'),(2288,'wp-content/plugins/jetpack/modules/sitemaps/sitemap-finder.php'),(2289,'wp-content/plugins/jetpack/modules/sitemaps/sitemap-librarian.php'),(2290,'wp-content/plugins/jetpack/modules/sitemaps/sitemap-logger.php'),(2291,'wp-content/plugins/jetpack/modules/sitemaps/sitemap-state.php'),(2292,'wp-content/plugins/jetpack/modules/sitemaps/sitemap-stylist.php'),(2293,'wp-content/plugins/jetpack/modules/sitemaps/sitemaps.php'),(2294,'wp-content/plugins/jetpack/modules/sitemaps.php'),(2295,'wp-content/plugins/jetpack/modules/social-links.php'),(2296,'wp-content/plugins/jetpack/modules/sso/class.jetpack-sso-helpers.php'),(2297,'wp-content/plugins/jetpack/modules/sso/class.jetpack-sso-notices.php'),(2298,'wp-content/plugins/jetpack/modules/sso/jetpack-sso-login-rtl.css'),(2299,'wp-content/plugins/jetpack/modules/sso/jetpack-sso-login-rtl.min.css'),(2300,'wp-content/plugins/jetpack/modules/sso/jetpack-sso-login.css'),(2301,'wp-content/plugins/jetpack/modules/sso/jetpack-sso-login.js'),(2302,'wp-content/plugins/jetpack/modules/sso/jetpack-sso-login.min.css'),(2303,'wp-content/plugins/jetpack/modules/sso.php'),(2304,'wp-content/plugins/jetpack/modules/stats.php'),(2305,'wp-content/plugins/jetpack/modules/subscriptions/subscriptions.css'),(2306,'wp-content/plugins/jetpack/modules/subscriptions.php'),(2307,'wp-content/plugins/jetpack/modules/theme-tools/compat/twentyfifteen-rtl.css'),(2308,'wp-content/plugins/jetpack/modules/theme-tools/compat/twentyfifteen.css'),(2309,'wp-content/plugins/jetpack/modules/theme-tools/compat/twentyfifteen.php'),(2310,'wp-content/plugins/jetpack/modules/theme-tools/compat/twentyfourteen-rtl.css'),(2311,'wp-content/plugins/jetpack/modules/theme-tools/compat/twentyfourteen.css'),(2312,'wp-content/plugins/jetpack/modules/theme-tools/compat/twentyfourteen.php'),(2313,'wp-content/plugins/jetpack/modules/theme-tools/compat/twentysixteen-rtl.css'),(2314,'wp-content/plugins/jetpack/modules/theme-tools/compat/twentysixteen.css'),(2315,'wp-content/plugins/jetpack/modules/theme-tools/compat/twentysixteen.php'),(2316,'wp-content/plugins/jetpack/modules/theme-tools/content-options/author-bio.php'),(2317,'wp-content/plugins/jetpack/modules/theme-tools/content-options/blog-display.php'),(2318,'wp-content/plugins/jetpack/modules/theme-tools/content-options/customizer.js'),(2319,'wp-content/plugins/jetpack/modules/theme-tools/content-options/customizer.php'),(2320,'wp-content/plugins/jetpack/modules/theme-tools/content-options/featured-images-fallback.php'),(2321,'wp-content/plugins/jetpack/modules/theme-tools/content-options/featured-images.php'),(2322,'wp-content/plugins/jetpack/modules/theme-tools/content-options/post-details.php'),(2323,'wp-content/plugins/jetpack/modules/theme-tools/content-options.php'),(2324,'wp-content/plugins/jetpack/modules/theme-tools/featured-content.php'),(2325,'wp-content/plugins/jetpack/modules/theme-tools/infinite-scroll.php'),(2326,'wp-content/plugins/jetpack/modules/theme-tools/js/suggest.js'),(2327,'wp-content/plugins/jetpack/modules/theme-tools/random-redirect.php'),(2328,'wp-content/plugins/jetpack/modules/theme-tools/responsive-videos/responsive-videos.css'),(2329,'wp-content/plugins/jetpack/modules/theme-tools/responsive-videos/responsive-videos.js'),(2330,'wp-content/plugins/jetpack/modules/theme-tools/responsive-videos/responsive-videos.min.js'),(2331,'wp-content/plugins/jetpack/modules/theme-tools/responsive-videos.php'),(2332,'wp-content/plugins/jetpack/modules/theme-tools/site-breadcrumbs.php'),(2333,'wp-content/plugins/jetpack/modules/theme-tools/site-logo/css/site-logo-control-rtl.css'),(2334,'wp-content/plugins/jetpack/modules/theme-tools/site-logo/css/site-logo-control-rtl.min.css'),(2335,'wp-content/plugins/jetpack/modules/theme-tools/site-logo/css/site-logo-control.css'),(2336,'wp-content/plugins/jetpack/modules/theme-tools/site-logo/css/site-logo-control.min.css'),(2337,'wp-content/plugins/jetpack/modules/theme-tools/site-logo/inc/class-site-logo-control.php'),(2338,'wp-content/plugins/jetpack/modules/theme-tools/site-logo/inc/class-site-logo.php'),(2339,'wp-content/plugins/jetpack/modules/theme-tools/site-logo/inc/compat.php'),(2340,'wp-content/plugins/jetpack/modules/theme-tools/site-logo/inc/functions.php'),(2341,'wp-content/plugins/jetpack/modules/theme-tools/site-logo/js/site-logo-control.js'),(2342,'wp-content/plugins/jetpack/modules/theme-tools/site-logo/js/site-logo-control.min.js'),(2343,'wp-content/plugins/jetpack/modules/theme-tools/site-logo/js/site-logo-header-text.js'),(2344,'wp-content/plugins/jetpack/modules/theme-tools/site-logo/js/site-logo-header-text.min.js'),(2345,'wp-content/plugins/jetpack/modules/theme-tools/site-logo/js/site-logo.js'),(2346,'wp-content/plugins/jetpack/modules/theme-tools/site-logo/js/site-logo.min.js'),(2347,'wp-content/plugins/jetpack/modules/theme-tools/site-logo.php'),(2348,'wp-content/plugins/jetpack/modules/theme-tools/social-links.php'),(2349,'wp-content/plugins/jetpack/modules/theme-tools/social-menu/icon-functions.php'),(2350,'wp-content/plugins/jetpack/modules/theme-tools/social-menu/social-menu.css'),(2351,'wp-content/plugins/jetpack/modules/theme-tools/social-menu/social-menu.svg'),(2352,'wp-content/plugins/jetpack/modules/theme-tools/social-menu.php'),(2353,'wp-content/plugins/jetpack/modules/theme-tools.php'),(2354,'wp-content/plugins/jetpack/modules/tiled-gallery/math/class-constrained-array-rounding.php'),(2355,'wp-content/plugins/jetpack/modules/tiled-gallery/tiled-gallery/rtl/tiled-gallery-rtl.css'),(2356,'wp-content/plugins/jetpack/modules/tiled-gallery/tiled-gallery/templates/carousel-container.php'),(2357,'wp-content/plugins/jetpack/modules/tiled-gallery/tiled-gallery/templates/circle-layout.php'),(2358,'wp-content/plugins/jetpack/modules/tiled-gallery/tiled-gallery/templates/partials/carousel-image-args.php'),(2359,'wp-content/plugins/jetpack/modules/tiled-gallery/tiled-gallery/templates/partials/item.php'),(2360,'wp-content/plugins/jetpack/modules/tiled-gallery/tiled-gallery/templates/rectangular-layout.php'),(2361,'wp-content/plugins/jetpack/modules/tiled-gallery/tiled-gallery/templates/square-layout.php'),(2362,'wp-content/plugins/jetpack/modules/tiled-gallery/tiled-gallery/tiled-gallery-circle.php'),(2363,'wp-content/plugins/jetpack/modules/tiled-gallery/tiled-gallery/tiled-gallery-item.php'),(2364,'wp-content/plugins/jetpack/modules/tiled-gallery/tiled-gallery/tiled-gallery-layout.php'),(2365,'wp-content/plugins/jetpack/modules/tiled-gallery/tiled-gallery/tiled-gallery-rectangular.php'),(2366,'wp-content/plugins/jetpack/modules/tiled-gallery/tiled-gallery/tiled-gallery-rtl.css'),(2367,'wp-content/plugins/jetpack/modules/tiled-gallery/tiled-gallery/tiled-gallery-shape.php'),(2368,'wp-content/plugins/jetpack/modules/tiled-gallery/tiled-gallery/tiled-gallery-square.php'),(2369,'wp-content/plugins/jetpack/modules/tiled-gallery/tiled-gallery/tiled-gallery.css'),(2370,'wp-content/plugins/jetpack/modules/tiled-gallery/tiled-gallery/tiled-gallery.js'),(2371,'wp-content/plugins/jetpack/modules/tiled-gallery/tiled-gallery.php'),(2372,'wp-content/plugins/jetpack/modules/tiled-gallery.php'),(2373,'wp-content/plugins/jetpack/modules/tonesque.php'),(2374,'wp-content/plugins/jetpack/modules/vaultpress.php'),(2375,'wp-content/plugins/jetpack/modules/verification-tools/blog-verification-tools.php'),(2376,'wp-content/plugins/jetpack/modules/verification-tools/verification-tools-utils.php'),(2377,'wp-content/plugins/jetpack/modules/verification-tools.php'),(2378,'wp-content/plugins/jetpack/modules/videopress/class.jetpack-videopress.php'),(2379,'wp-content/plugins/jetpack/modules/videopress/class.videopress-ajax.php'),(2380,'wp-content/plugins/jetpack/modules/videopress/class.videopress-cli.php'),(2381,'wp-content/plugins/jetpack/modules/videopress/class.videopress-edit-attachment.php'),(2382,'wp-content/plugins/jetpack/modules/videopress/class.videopress-options.php'),(2383,'wp-content/plugins/jetpack/modules/videopress/class.videopress-player.php'),(2384,'wp-content/plugins/jetpack/modules/videopress/class.videopress-scheduler.php'),(2385,'wp-content/plugins/jetpack/modules/videopress/class.videopress-video.php'),(2386,'wp-content/plugins/jetpack/modules/videopress/class.videopress-xmlrpc.php'),(2387,'wp-content/plugins/jetpack/modules/videopress/css/editor-rtl.css'),(2388,'wp-content/plugins/jetpack/modules/videopress/css/editor-rtl.min.css'),(2389,'wp-content/plugins/jetpack/modules/videopress/css/editor.css'),(2390,'wp-content/plugins/jetpack/modules/videopress/css/editor.min.css'),(2391,'wp-content/plugins/jetpack/modules/videopress/css/videopress-editor-style-rtl.css'),(2392,'wp-content/plugins/jetpack/modules/videopress/css/videopress-editor-style-rtl.min.css'),(2393,'wp-content/plugins/jetpack/modules/videopress/css/videopress-editor-style.css'),(2394,'wp-content/plugins/jetpack/modules/videopress/css/videopress-editor-style.min.css'),(2395,'wp-content/plugins/jetpack/modules/videopress/editor-media-view.php'),(2396,'wp-content/plugins/jetpack/modules/videopress/js/editor-view.js'),(2397,'wp-content/plugins/jetpack/modules/videopress/js/media-video-widget-extensions.js'),(2398,'wp-content/plugins/jetpack/modules/videopress/js/videopress-plupload.js'),(2399,'wp-content/plugins/jetpack/modules/videopress/js/videopress-uploader.js'),(2400,'wp-content/plugins/jetpack/modules/videopress/shortcode.php'),(2401,'wp-content/plugins/jetpack/modules/videopress/utility-functions.php'),(2402,'wp-content/plugins/jetpack/modules/videopress/videopress-admin-rtl.css'),(2403,'wp-content/plugins/jetpack/modules/videopress/videopress-admin-rtl.min.css'),(2404,'wp-content/plugins/jetpack/modules/videopress/videopress-admin.css'),(2405,'wp-content/plugins/jetpack/modules/videopress/videopress-admin.min.css'),(2406,'wp-content/plugins/jetpack/modules/videopress.php'),(2407,'wp-content/plugins/jetpack/modules/widget-visibility/widget-conditions/rtl/widget-conditions-rtl.css'),(2408,'wp-content/plugins/jetpack/modules/widget-visibility/widget-conditions/widget-conditions-rtl.css'),(2409,'wp-content/plugins/jetpack/modules/widget-visibility/widget-conditions/widget-conditions-rtl.min.css'),(2410,'wp-content/plugins/jetpack/modules/widget-visibility/widget-conditions/widget-conditions.css'),(2411,'wp-content/plugins/jetpack/modules/widget-visibility/widget-conditions/widget-conditions.js'),(2412,'wp-content/plugins/jetpack/modules/widget-visibility/widget-conditions/widget-conditions.min.css'),(2413,'wp-content/plugins/jetpack/modules/widget-visibility/widget-conditions.php'),(2414,'wp-content/plugins/jetpack/modules/widget-visibility.php'),(2415,'wp-content/plugins/jetpack/modules/widgets/authors/style.css'),(2416,'wp-content/plugins/jetpack/modules/widgets/authors.php'),(2417,'wp-content/plugins/jetpack/modules/widgets/blog-stats.php'),(2418,'wp-content/plugins/jetpack/modules/widgets/contact-info/contact-info-admin.js'),(2419,'wp-content/plugins/jetpack/modules/widgets/contact-info/contact-info-map.css'),(2420,'wp-content/plugins/jetpack/modules/widgets/contact-info.php'),(2421,'wp-content/plugins/jetpack/modules/widgets/customizer-controls.css'),(2422,'wp-content/plugins/jetpack/modules/widgets/customizer-utils.js'),(2423,'wp-content/plugins/jetpack/modules/widgets/eu-cookie-law/eu-cookie-law.js'),(2424,'wp-content/plugins/jetpack/modules/widgets/eu-cookie-law/form.php'),(2425,'wp-content/plugins/jetpack/modules/widgets/eu-cookie-law/style.css'),(2426,'wp-content/plugins/jetpack/modules/widgets/eu-cookie-law/widget.php'),(2427,'wp-content/plugins/jetpack/modules/widgets/eu-cookie-law.php'),(2428,'wp-content/plugins/jetpack/modules/widgets/facebook-likebox/style.css'),(2429,'wp-content/plugins/jetpack/modules/widgets/facebook-likebox.php'),(2430,'wp-content/plugins/jetpack/modules/widgets/flickr/form.php'),(2431,'wp-content/plugins/jetpack/modules/widgets/flickr/style.css'),(2432,'wp-content/plugins/jetpack/modules/widgets/flickr/widget.php'),(2433,'wp-content/plugins/jetpack/modules/widgets/flickr.php'),(2434,'wp-content/plugins/jetpack/modules/widgets/gallery/css/admin-rtl.css'),(2435,'wp-content/plugins/jetpack/modules/widgets/gallery/css/admin-rtl.min.css'),(2436,'wp-content/plugins/jetpack/modules/widgets/gallery/css/admin.css'),(2437,'wp-content/plugins/jetpack/modules/widgets/gallery/css/admin.min.css'),(2438,'wp-content/plugins/jetpack/modules/widgets/gallery/css/rtl/admin-rtl.css'),(2439,'wp-content/plugins/jetpack/modules/widgets/gallery/js/admin.js'),(2440,'wp-content/plugins/jetpack/modules/widgets/gallery/js/gallery.js'),(2441,'wp-content/plugins/jetpack/modules/widgets/gallery/templates/form.php'),(2442,'wp-content/plugins/jetpack/modules/widgets/gallery.php'),(2443,'wp-content/plugins/jetpack/modules/widgets/goodreads/css/goodreads.css'),(2444,'wp-content/plugins/jetpack/modules/widgets/goodreads/css/rtl/goodreads-rtl.css'),(2445,'wp-content/plugins/jetpack/modules/widgets/goodreads.php'),(2446,'wp-content/plugins/jetpack/modules/widgets/google-plus/js/admin.js'),(2447,'wp-content/plugins/jetpack/modules/widgets/google-translate/google-translate.js'),(2448,'wp-content/plugins/jetpack/modules/widgets/google-translate.php'),(2449,'wp-content/plugins/jetpack/modules/widgets/googleplus-badge.php'),(2450,'wp-content/plugins/jetpack/modules/widgets/gravatar-profile.css'),(2451,'wp-content/plugins/jetpack/modules/widgets/gravatar-profile.php'),(2452,'wp-content/plugins/jetpack/modules/widgets/image-widget/style.css'),(2453,'wp-content/plugins/jetpack/modules/widgets/image-widget.php'),(2454,'wp-content/plugins/jetpack/modules/widgets/internet-defense-league.php'),(2455,'wp-content/plugins/jetpack/modules/widgets/mailchimp.php'),(2456,'wp-content/plugins/jetpack/modules/widgets/migrate-to-core/gallery-widget.php'),(2457,'wp-content/plugins/jetpack/modules/widgets/migrate-to-core/image-widget.php'),(2458,'wp-content/plugins/jetpack/modules/widgets/milestone/admin.js'),(2459,'wp-content/plugins/jetpack/modules/widgets/milestone/milestone.js'),(2460,'wp-content/plugins/jetpack/modules/widgets/milestone/milestone.php'),(2461,'wp-content/plugins/jetpack/modules/widgets/milestone/style-admin.css'),(2462,'wp-content/plugins/jetpack/modules/widgets/milestone.php'),(2463,'wp-content/plugins/jetpack/modules/widgets/my-community/style.css'),(2464,'wp-content/plugins/jetpack/modules/widgets/my-community.php'),(2465,'wp-content/plugins/jetpack/modules/widgets/rsslinks-widget.php'),(2466,'wp-content/plugins/jetpack/modules/widgets/search/css/search-widget-admin-ui.css'),(2467,'wp-content/plugins/jetpack/modules/widgets/search/css/search-widget-frontend.css'),(2468,'wp-content/plugins/jetpack/modules/widgets/search/js/search-widget-admin.js'),(2469,'wp-content/plugins/jetpack/modules/widgets/search/js/search-widget.js'),(2470,'wp-content/plugins/jetpack/modules/widgets/search.php'),(2471,'wp-content/plugins/jetpack/modules/widgets/social-media-icons/style.css'),(2472,'wp-content/plugins/jetpack/modules/widgets/social-media-icons.php'),(2473,'wp-content/plugins/jetpack/modules/widgets/top-posts/style.css'),(2474,'wp-content/plugins/jetpack/modules/widgets/top-posts.php'),(2475,'wp-content/plugins/jetpack/modules/widgets/twitter-timeline-admin.js'),(2476,'wp-content/plugins/jetpack/modules/widgets/twitter-timeline.php'),(2477,'wp-content/plugins/jetpack/modules/widgets/upcoming-events.php'),(2478,'wp-content/plugins/jetpack/modules/widgets/wordpress-post-widget/style.css'),(2479,'wp-content/plugins/jetpack/modules/widgets/wordpress-post-widget.php'),(2480,'wp-content/plugins/jetpack/modules/widgets.php'),(2481,'wp-content/plugins/jetpack/modules/woocommerce-analytics/classes/wp-woocommerce-analytics-universal.php'),(2482,'wp-content/plugins/jetpack/modules/woocommerce-analytics/classes/wp-woocommerce-analytics-utils.php'),(2483,'wp-content/plugins/jetpack/modules/woocommerce-analytics/wp-woocommerce-analytics.php'),(2484,'wp-content/plugins/jetpack/modules/wordads/css/style.css'),(2485,'wp-content/plugins/jetpack/modules/wordads/php/admin.php'),(2486,'wp-content/plugins/jetpack/modules/wordads/php/api.php'),(2487,'wp-content/plugins/jetpack/modules/wordads/php/cron.php'),(2488,'wp-content/plugins/jetpack/modules/wordads/php/networks/amazon.php'),(2489,'wp-content/plugins/jetpack/modules/wordads/php/params.php'),(2490,'wp-content/plugins/jetpack/modules/wordads/php/widgets.php'),(2491,'wp-content/plugins/jetpack/modules/wordads/wordads.php'),(2492,'wp-content/plugins/jetpack/modules/wordads.php'),(2493,'wp-content/plugins/jetpack/modules/wpcc.php'),(2494,'wp-content/plugins/jetpack/modules/wpgroho.js'),(2495,'wp-content/plugins/jetpack/phpcs.xml'),(2496,'wp-content/plugins/jetpack/readme.txt'),(2497,'wp-content/plugins/jetpack/require-lib.php'),(2498,'wp-content/plugins/jetpack/sal/class.json-api-date.php'),(2499,'wp-content/plugins/jetpack/sal/class.json-api-links.php'),(2500,'wp-content/plugins/jetpack/sal/class.json-api-metadata.php'),(2501,'wp-content/plugins/jetpack/sal/class.json-api-platform-jetpack.php'),(2502,'wp-content/plugins/jetpack/sal/class.json-api-platform.php'),(2503,'wp-content/plugins/jetpack/sal/class.json-api-post-base.php'),(2504,'wp-content/plugins/jetpack/sal/class.json-api-post-jetpack.php'),(2505,'wp-content/plugins/jetpack/sal/class.json-api-site-base.php'),(2506,'wp-content/plugins/jetpack/sal/class.json-api-site-jetpack-base.php'),(2507,'wp-content/plugins/jetpack/sal/class.json-api-site-jetpack.php'),(2508,'wp-content/plugins/jetpack/sal/class.json-api-token.php'),(2509,'wp-content/plugins/jetpack/scss/_utilities/_accessibility.scss'),(2510,'wp-content/plugins/jetpack/scss/_utilities/_grid.scss'),(2511,'wp-content/plugins/jetpack/scss/_utilities/mixins/_breakpoint.scss'),(2512,'wp-content/plugins/jetpack/scss/atoms/_animations.scss'),(2513,'wp-content/plugins/jetpack/scss/atoms/_buttons.scss'),(2514,'wp-content/plugins/jetpack/scss/atoms/colors/_colors.scss'),(2515,'wp-content/plugins/jetpack/scss/atoms/icons/_automatticons.scss'),(2516,'wp-content/plugins/jetpack/scss/atoms/typography/_functions.scss'),(2517,'wp-content/plugins/jetpack/scss/atoms/typography/_variables.scss'),(2518,'wp-content/plugins/jetpack/scss/dashboard-widget.scss'),(2519,'wp-content/plugins/jetpack/scss/jetpack-admin-jitm.scss'),(2520,'wp-content/plugins/jetpack/scss/jetpack-admin.scss'),(2521,'wp-content/plugins/jetpack/scss/jetpack-banners.scss'),(2522,'wp-content/plugins/jetpack/scss/jetpack-icons.scss'),(2523,'wp-content/plugins/jetpack/scss/jetpack-idc-admin-bar.scss'),(2524,'wp-content/plugins/jetpack/scss/jetpack-idc.scss'),(2525,'wp-content/plugins/jetpack/scss/molecules/_nav-horizontal.scss'),(2526,'wp-content/plugins/jetpack/scss/organisms/_banners.scss'),(2527,'wp-content/plugins/jetpack/scss/pages/_manage.scss'),(2528,'wp-content/plugins/jetpack/scss/pages/_protect.scss'),(2529,'wp-content/plugins/jetpack/scss/templates/_connection-landing.scss'),(2530,'wp-content/plugins/jetpack/scss/templates/_main.scss'),(2531,'wp-content/plugins/jetpack/scss/templates/_settings.scss'),(2532,'wp-content/plugins/jetpack/sync/class.jetpack-sync-actions.php'),(2533,'wp-content/plugins/jetpack/sync/class.jetpack-sync-defaults.php'),(2534,'wp-content/plugins/jetpack/sync/class.jetpack-sync-functions.php'),(2535,'wp-content/plugins/jetpack/sync/class.jetpack-sync-json-deflate-array-codec.php'),(2536,'wp-content/plugins/jetpack/sync/class.jetpack-sync-listener.php'),(2537,'wp-content/plugins/jetpack/sync/class.jetpack-sync-module-attachments.php'),(2538,'wp-content/plugins/jetpack/sync/class.jetpack-sync-module-callables.php'),(2539,'wp-content/plugins/jetpack/sync/class.jetpack-sync-module-comments.php'),(2540,'wp-content/plugins/jetpack/sync/class.jetpack-sync-module-constants.php'),(2541,'wp-content/plugins/jetpack/sync/class.jetpack-sync-module-full-sync.php'),(2542,'wp-content/plugins/jetpack/sync/class.jetpack-sync-module-menus.php'),(2543,'wp-content/plugins/jetpack/sync/class.jetpack-sync-module-meta.php'),(2544,'wp-content/plugins/jetpack/sync/class.jetpack-sync-module-network-options.php'),(2545,'wp-content/plugins/jetpack/sync/class.jetpack-sync-module-options.php'),(2546,'wp-content/plugins/jetpack/sync/class.jetpack-sync-module-plugins.php'),(2547,'wp-content/plugins/jetpack/sync/class.jetpack-sync-module-posts.php'),(2548,'wp-content/plugins/jetpack/sync/class.jetpack-sync-module-protect.php'),(2549,'wp-content/plugins/jetpack/sync/class.jetpack-sync-module-stats.php'),(2550,'wp-content/plugins/jetpack/sync/class.jetpack-sync-module-terms.php'),(2551,'wp-content/plugins/jetpack/sync/class.jetpack-sync-module-themes.php'),(2552,'wp-content/plugins/jetpack/sync/class.jetpack-sync-module-updates.php'),(2553,'wp-content/plugins/jetpack/sync/class.jetpack-sync-module-users.php'),(2554,'wp-content/plugins/jetpack/sync/class.jetpack-sync-module-woocommerce.php'),(2555,'wp-content/plugins/jetpack/sync/class.jetpack-sync-module-wp-super-cache.php'),(2556,'wp-content/plugins/jetpack/sync/class.jetpack-sync-module.php'),(2557,'wp-content/plugins/jetpack/sync/class.jetpack-sync-modules.php'),(2558,'wp-content/plugins/jetpack/sync/class.jetpack-sync-queue.php'),(2559,'wp-content/plugins/jetpack/sync/class.jetpack-sync-sender.php'),(2560,'wp-content/plugins/jetpack/sync/class.jetpack-sync-server.php'),(2561,'wp-content/plugins/jetpack/sync/class.jetpack-sync-settings.php'),(2562,'wp-content/plugins/jetpack/sync/class.jetpack-sync-users.php'),(2563,'wp-content/plugins/jetpack/sync/class.jetpack-sync-wp-replicastore.php'),(2564,'wp-content/plugins/jetpack/sync/interface.jetpack-sync-codec.php'),(2565,'wp-content/plugins/jetpack/sync/interface.jetpack-sync-replicastore.php'),(2566,'wp-content/plugins/jetpack/uninstall.php'),(2567,'wp-content/plugins/jetpack/views/admin/must-connect-main-blog.php'),(2568,'wp-content/plugins/jetpack/views/admin/network-activated-notice.php'),(2569,'wp-content/plugins/jetpack/views/admin/network-admin-alert.php'),(2570,'wp-content/plugins/jetpack/views/admin/network-admin-footer.php'),(2571,'wp-content/plugins/jetpack/views/admin/network-admin-header.php'),(2572,'wp-content/plugins/jetpack/views/admin/network-settings.php'),(2573,'wp-content/plugins/jetpack/wpml-config.xml'),(2574,'wp-content/plugins/members/admin/class-addon.php'),(2575,'wp-content/plugins/members/admin/class-cap-control.php'),(2576,'wp-content/plugins/members/admin/class-cap-section.php'),(2577,'wp-content/plugins/members/admin/class-cap-tabs.php'),(2578,'wp-content/plugins/members/admin/class-manage-roles.php'),(2579,'wp-content/plugins/members/admin/class-manage-users.php'),(2580,'wp-content/plugins/members/admin/class-meta-box-content-permissions.php'),(2581,'wp-content/plugins/members/admin/class-meta-box-custom-cap.php'),(2582,'wp-content/plugins/members/admin/class-meta-box-publish-role.php'),(2583,'wp-content/plugins/members/admin/class-role-edit.php'),(2584,'wp-content/plugins/members/admin/class-role-list-table.php'),(2585,'wp-content/plugins/members/admin/class-role-new.php'),(2586,'wp-content/plugins/members/admin/class-roles.php'),(2587,'wp-content/plugins/members/admin/class-settings.php'),(2588,'wp-content/plugins/members/admin/class-user-edit.php'),(2589,'wp-content/plugins/members/admin/class-user-new.php'),(2590,'wp-content/plugins/members/admin/functions-addons.php'),(2591,'wp-content/plugins/members/admin/functions-admin.php'),(2592,'wp-content/plugins/members/admin/functions-help.php'),(2593,'wp-content/plugins/members/admin/functions-settings.php'),(2594,'wp-content/plugins/members/admin/tmpl/cap-control.php'),(2595,'wp-content/plugins/members/admin/tmpl/cap-section.php'),(2596,'wp-content/plugins/members/admin/views/class-view-addons.php'),(2597,'wp-content/plugins/members/admin/views/class-view-general.php'),(2598,'wp-content/plugins/members/admin/views/class-view.php'),(2599,'wp-content/plugins/members/changelog.md'),(2600,'wp-content/plugins/members/composer.json'),(2601,'wp-content/plugins/members/contributing.md'),(2602,'wp-content/plugins/members/css/admin.css'),(2603,'wp-content/plugins/members/css/admin.min.css'),(2604,'wp-content/plugins/members/img/icon-addon.png'),(2605,'wp-content/plugins/members/img/icon-members-role-hierarchy.png'),(2606,'wp-content/plugins/members/img/icon-members-role-levels.png'),(2607,'wp-content/plugins/members/inc/class-cap-group.php'),(2608,'wp-content/plugins/members/inc/class-capability.php'),(2609,'wp-content/plugins/members/inc/class-registry.php'),(2610,'wp-content/plugins/members/inc/class-role-group.php'),(2611,'wp-content/plugins/members/inc/class-role.php'),(2612,'wp-content/plugins/members/inc/class-widget-login.php'),(2613,'wp-content/plugins/members/inc/class-widget-users.php'),(2614,'wp-content/plugins/members/inc/functions-admin-bar.php'),(2615,'wp-content/plugins/members/inc/functions-cap-groups.php'),(2616,'wp-content/plugins/members/inc/functions-capabilities.php'),(2617,'wp-content/plugins/members/inc/functions-content-permissions.php'),(2618,'wp-content/plugins/members/inc/functions-deprecated.php'),(2619,'wp-content/plugins/members/inc/functions-options.php'),(2620,'wp-content/plugins/members/inc/functions-private-site.php'),(2621,'wp-content/plugins/members/inc/functions-role-groups.php'),(2622,'wp-content/plugins/members/inc/functions-roles.php'),(2623,'wp-content/plugins/members/inc/functions-shortcodes.php'),(2624,'wp-content/plugins/members/inc/functions-users.php'),(2625,'wp-content/plugins/members/inc/functions-widgets.php'),(2626,'wp-content/plugins/members/inc/functions.php'),(2627,'wp-content/plugins/members/inc/template.php'),(2628,'wp-content/plugins/members/js/edit-post.js'),(2629,'wp-content/plugins/members/js/edit-post.min.js'),(2630,'wp-content/plugins/members/js/edit-role.js'),(2631,'wp-content/plugins/members/js/edit-role.min.js'),(2632,'wp-content/plugins/members/js/settings.js'),(2633,'wp-content/plugins/members/js/settings.min.js'),(2634,'wp-content/plugins/members/lang/members.pot'),(2635,'wp-content/plugins/members/license.md'),(2636,'wp-content/plugins/members/members.php'),(2637,'wp-content/plugins/members/readme.md'),(2638,'wp-content/plugins/members/readme.txt'),(2639,'wp-content/plugins/members/screenshot-1.png'),(2640,'wp-content/plugins/members/screenshot-2.png'),(2641,'wp-content/plugins/members/screenshot-3.png'),(2642,'wp-content/plugins/members/screenshot-4.png'),(2643,'wp-content/plugins/members/screenshot-5.png'),(2644,'wp-content/plugins/members/templates/comments.php'),(2645,'wp-content/plugins/ml-slider/admin/Notices.php'),(2646,'wp-content/plugins/ml-slider/admin/Pages.php'),(2647,'wp-content/plugins/ml-slider/admin/Tour.php'),(2648,'wp-content/plugins/ml-slider/admin/assets/css/admin.css'),(2649,'wp-content/plugins/ml-slider/admin/assets/css/icon.css'),(2650,'wp-content/plugins/ml-slider/admin/assets/css/notices.css'),(2651,'wp-content/plugins/ml-slider/admin/assets/css/upgrade.css'),(2652,'wp-content/plugins/ml-slider/admin/assets/fonts/interface/Interface-Bold.woff'),(2653,'wp-content/plugins/ml-slider/admin/assets/fonts/interface/Interface-Bold.woff2'),(2654,'wp-content/plugins/ml-slider/admin/assets/fonts/interface/Interface-BoldItalic.woff'),(2655,'wp-content/plugins/ml-slider/admin/assets/fonts/interface/Interface-BoldItalic.woff2'),(2656,'wp-content/plugins/ml-slider/admin/assets/fonts/interface/Interface-Medium.woff'),(2657,'wp-content/plugins/ml-slider/admin/assets/fonts/interface/Interface-Medium.woff2'),(2658,'wp-content/plugins/ml-slider/admin/assets/fonts/interface/Interface-MediumItalic.woff'),(2659,'wp-content/plugins/ml-slider/admin/assets/fonts/interface/Interface-MediumItalic.woff2'),(2660,'wp-content/plugins/ml-slider/admin/assets/fonts/interface/Interface-Regular.woff'),(2661,'wp-content/plugins/ml-slider/admin/assets/fonts/interface/Interface-Regular.woff2'),(2662,'wp-content/plugins/ml-slider/admin/assets/fonts/interface/Interface-RegularItalic.woff'),(2663,'wp-content/plugins/ml-slider/admin/assets/fonts/interface/Interface-RegularItalic.woff2'),(2664,'wp-content/plugins/ml-slider/admin/assets/fonts/metaslider.eot'),(2665,'wp-content/plugins/ml-slider/admin/assets/fonts/metaslider.svg'),(2666,'wp-content/plugins/ml-slider/admin/assets/fonts/metaslider.ttf'),(2667,'wp-content/plugins/ml-slider/admin/assets/fonts/metaslider.woff'),(2668,'wp-content/plugins/ml-slider/admin/assets/js/admin.js'),(2669,'wp-content/plugins/ml-slider/admin/assets/js/tour.js'),(2670,'wp-content/plugins/ml-slider/admin/assets/tether/LICENSE'),(2671,'wp-content/plugins/ml-slider/admin/assets/tether/tether.js'),(2672,'wp-content/plugins/ml-slider/admin/assets/tether/tether.min.js'),(2673,'wp-content/plugins/ml-slider/admin/assets/tether-shepherd/LICENSE'),(2674,'wp-content/plugins/ml-slider/admin/assets/tether-shepherd/shepherd-theme-arrows-fix.css'),(2675,'wp-content/plugins/ml-slider/admin/assets/tether-shepherd/shepherd-theme-arrows-fix.min.css'),(2676,'wp-content/plugins/ml-slider/admin/assets/tether-shepherd/shepherd-theme-arrows-plain-buttons.css'),(2677,'wp-content/plugins/ml-slider/admin/assets/tether-shepherd/shepherd-theme-arrows-plain-buttons.min.css'),(2678,'wp-content/plugins/ml-slider/admin/assets/tether-shepherd/shepherd-theme-arrows.css'),(2679,'wp-content/plugins/ml-slider/admin/assets/tether-shepherd/shepherd-theme-arrows.min.css'),(2680,'wp-content/plugins/ml-slider/admin/assets/tether-shepherd/shepherd-theme-dark.css'),(2681,'wp-content/plugins/ml-slider/admin/assets/tether-shepherd/shepherd-theme-dark.min.css'),(2682,'wp-content/plugins/ml-slider/admin/assets/tether-shepherd/shepherd-theme-default.css'),(2683,'wp-content/plugins/ml-slider/admin/assets/tether-shepherd/shepherd-theme-default.min.css'),(2684,'wp-content/plugins/ml-slider/admin/assets/tether-shepherd/shepherd-theme-square-dark.css'),(2685,'wp-content/plugins/ml-slider/admin/assets/tether-shepherd/shepherd-theme-square-dark.min.css'),(2686,'wp-content/plugins/ml-slider/admin/assets/tether-shepherd/shepherd-theme-square.css'),(2687,'wp-content/plugins/ml-slider/admin/assets/tether-shepherd/shepherd-theme-square.min.css'),(2688,'wp-content/plugins/ml-slider/admin/assets/tether-shepherd/shepherd.js'),(2689,'wp-content/plugins/ml-slider/admin/assets/tether-shepherd/shepherd.min.js'),(2690,'wp-content/plugins/ml-slider/admin/assets/tether-shepherd/tether.js'),(2691,'wp-content/plugins/ml-slider/admin/assets/vendor/colorbox/colorbox.css'),(2692,'wp-content/plugins/ml-slider/admin/assets/vendor/colorbox/images/border.png'),(2693,'wp-content/plugins/ml-slider/admin/assets/vendor/colorbox/images/controls.png'),(2694,'wp-content/plugins/ml-slider/admin/assets/vendor/colorbox/images/ie6/borderBottomCenter.png'),(2695,'wp-content/plugins/ml-slider/admin/assets/vendor/colorbox/images/ie6/borderBottomLeft.png'),(2696,'wp-content/plugins/ml-slider/admin/assets/vendor/colorbox/images/ie6/borderBottomRight.png'),(2697,'wp-content/plugins/ml-slider/admin/assets/vendor/colorbox/images/ie6/borderMiddleLeft.png'),(2698,'wp-content/plugins/ml-slider/admin/assets/vendor/colorbox/images/ie6/borderMiddleRight.png'),(2699,'wp-content/plugins/ml-slider/admin/assets/vendor/colorbox/images/ie6/borderTopCenter.png'),(2700,'wp-content/plugins/ml-slider/admin/assets/vendor/colorbox/images/ie6/borderTopLeft.png'),(2701,'wp-content/plugins/ml-slider/admin/assets/vendor/colorbox/images/ie6/borderTopRight.png'),(2702,'wp-content/plugins/ml-slider/admin/assets/vendor/colorbox/images/loading.gif'),(2703,'wp-content/plugins/ml-slider/admin/assets/vendor/colorbox/images/loading_background.png'),(2704,'wp-content/plugins/ml-slider/admin/assets/vendor/colorbox/images/overlay.png'),(2705,'wp-content/plugins/ml-slider/admin/assets/vendor/colorbox/jquery.colorbox-min.js'),(2706,'wp-content/plugins/ml-slider/admin/assets/vendor/tipsy/jquery.tipsy.js'),(2707,'wp-content/plugins/ml-slider/admin/assets/vendor/tipsy/tipsy.css'),(2708,'wp-content/plugins/ml-slider/admin/images/features/auto-optimize.png'),(2709,'wp-content/plugins/ml-slider/admin/images/features/automatic-clean-ups.png'),(2710,'wp-content/plugins/ml-slider/admin/images/features/automatically cleans.png'),(2711,'wp-content/plugins/ml-slider/admin/images/features/choice-n-flexibility.png'),(2712,'wp-content/plugins/ml-slider/admin/images/features/displays-database-table-sta.png'),(2713,'wp-content/plugins/ml-slider/admin/images/features/enables-disables-trackbacks.png'),(2714,'wp-content/plugins/ml-slider/admin/images/features/enhanced-robustness.png'),(2715,'wp-content/plugins/ml-slider/admin/images/features/keyy_logo.png'),(2716,'wp-content/plugins/ml-slider/admin/images/features/logging-n-reporting.png'),(2717,'wp-content/plugins/ml-slider/admin/images/features/metaslider_logo.png'),(2718,'wp-content/plugins/ml-slider/admin/images/features/multisite-support.png'),(2719,'wp-content/plugins/ml-slider/admin/images/features/number_of_weeks.png'),(2720,'wp-content/plugins/ml-slider/admin/images/features/optimize-individual.png'),(2721,'wp-content/plugins/ml-slider/admin/images/features/premium-support.png'),(2722,'wp-content/plugins/ml-slider/admin/images/features/remove-unwanted-img.png'),(2723,'wp-content/plugins/ml-slider/admin/images/features/scheduling.png'),(2724,'wp-content/plugins/ml-slider/admin/images/features/updraftcentral_logo.png'),(2725,'wp-content/plugins/ml-slider/admin/images/features/updraftplus_logo.png'),(2726,'wp-content/plugins/ml-slider/admin/images/features/wpo_logo.png'),(2727,'wp-content/plugins/ml-slider/admin/images/keyy_logo.png'),(2728,'wp-content/plugins/ml-slider/admin/images/metaslider_logo.png'),(2729,'wp-content/plugins/ml-slider/admin/images/metaslider_logo3.png'),(2730,'wp-content/plugins/ml-slider/admin/images/metaslider_logo_large.png'),(2731,'wp-content/plugins/ml-slider/admin/images/notices/keyy_logo.png'),(2732,'wp-content/plugins/ml-slider/admin/images/notices/metaslider_logo.png'),(2733,'wp-content/plugins/ml-slider/admin/images/notices/updraft_logo.png'),(2734,'wp-content/plugins/ml-slider/admin/images/notices/wp_optimize_logo.png'),(2735,'wp-content/plugins/ml-slider/admin/images/seasonal/black_friday.png'),(2736,'wp-content/plugins/ml-slider/admin/images/seasonal/christmas.png'),(2737,'wp-content/plugins/ml-slider/admin/images/seasonal/new_year.png'),(2738,'wp-content/plugins/ml-slider/admin/images/seasonal/spring.png'),(2739,'wp-content/plugins/ml-slider/admin/images/seasonal/summer.png'),(2740,'wp-content/plugins/ml-slider/admin/images/updraft_logo.png'),(2741,'wp-content/plugins/ml-slider/admin/images/wp_optimize_logo.png'),(2742,'wp-content/plugins/ml-slider/admin/lib/Updraft_Notices.php'),(2743,'wp-content/plugins/ml-slider/admin/lib/helpers.php'),(2744,'wp-content/plugins/ml-slider/admin/views/notices/dashboard-notice.php'),(2745,'wp-content/plugins/ml-slider/admin/views/notices/header-notice.php'),(2746,'wp-content/plugins/ml-slider/admin/views/pages/upgrade.php'),(2747,'wp-content/plugins/ml-slider/admin/views/slides/tabs/crop.php'),(2748,'wp-content/plugins/ml-slider/admin/views/slides/tabs/general.php'),(2749,'wp-content/plugins/ml-slider/admin/views/slides/tabs/seo.php'),(2750,'wp-content/plugins/ml-slider/assets/easing/jQuery.easing.min.js'),(2751,'wp-content/plugins/ml-slider/assets/metaslider/edit.png'),(2752,'wp-content/plugins/ml-slider/assets/metaslider/matchalabs.png'),(2753,'wp-content/plugins/ml-slider/assets/metaslider/public.css'),(2754,'wp-content/plugins/ml-slider/assets/sliders/coinslider/coin-slider-styles.css'),(2755,'wp-content/plugins/ml-slider/assets/sliders/coinslider/coin-slider.min.js'),(2756,'wp-content/plugins/ml-slider/assets/sliders/flexslider/LICENSE.md'),(2757,'wp-content/plugins/ml-slider/assets/sliders/flexslider/bg_direction_nav.png'),(2758,'wp-content/plugins/ml-slider/assets/sliders/flexslider/flexslider.css'),(2759,'wp-content/plugins/ml-slider/assets/sliders/flexslider/flexslider.min.css'),(2760,'wp-content/plugins/ml-slider/assets/sliders/flexslider/jquery.flexslider.js'),(2761,'wp-content/plugins/ml-slider/assets/sliders/flexslider/jquery.flexslider.min.js'),(2762,'wp-content/plugins/ml-slider/assets/sliders/nivoslider/jquery.nivo.slider.pack.js'),(2763,'wp-content/plugins/ml-slider/assets/sliders/nivoslider/nivo-slider.css'),(2764,'wp-content/plugins/ml-slider/assets/sliders/nivoslider/themes/bar/arrows.png'),(2765,'wp-content/plugins/ml-slider/assets/sliders/nivoslider/themes/bar/bar.css'),(2766,'wp-content/plugins/ml-slider/assets/sliders/nivoslider/themes/bar/bullets.png'),(2767,'wp-content/plugins/ml-slider/assets/sliders/nivoslider/themes/bar/loading.gif'),(2768,'wp-content/plugins/ml-slider/assets/sliders/nivoslider/themes/dark/arrows.png'),(2769,'wp-content/plugins/ml-slider/assets/sliders/nivoslider/themes/dark/bullets.png'),(2770,'wp-content/plugins/ml-slider/assets/sliders/nivoslider/themes/dark/dark.css'),(2771,'wp-content/plugins/ml-slider/assets/sliders/nivoslider/themes/dark/loading.gif'),(2772,'wp-content/plugins/ml-slider/assets/sliders/nivoslider/themes/default/arrows.png'),(2773,'wp-content/plugins/ml-slider/assets/sliders/nivoslider/themes/default/bullets.png'),(2774,'wp-content/plugins/ml-slider/assets/sliders/nivoslider/themes/default/default.css'),(2775,'wp-content/plugins/ml-slider/assets/sliders/nivoslider/themes/default/loading.gif'),(2776,'wp-content/plugins/ml-slider/assets/sliders/nivoslider/themes/light/arrows.png'),(2777,'wp-content/plugins/ml-slider/assets/sliders/nivoslider/themes/light/bullets.png'),(2778,'wp-content/plugins/ml-slider/assets/sliders/nivoslider/themes/light/light.css'),(2779,'wp-content/plugins/ml-slider/assets/sliders/nivoslider/themes/light/loading.gif'),(2780,'wp-content/plugins/ml-slider/assets/sliders/responsiveslides/responsiveslides.css'),(2781,'wp-content/plugins/ml-slider/assets/sliders/responsiveslides/responsiveslides.min.js'),(2782,'wp-content/plugins/ml-slider/inc/metaslider.imagehelper.class.php'),(2783,'wp-content/plugins/ml-slider/inc/metaslider.systemcheck.class.php'),(2784,'wp-content/plugins/ml-slider/inc/metaslider.widget.class.php'),(2785,'wp-content/plugins/ml-slider/inc/slide/metaslide.class.php'),(2786,'wp-content/plugins/ml-slider/inc/slide/metaslide.image.class.php'),(2787,'wp-content/plugins/ml-slider/inc/slider/metaslider.class.php'),(2788,'wp-content/plugins/ml-slider/inc/slider/metaslider.coin.class.php'),(2789,'wp-content/plugins/ml-slider/inc/slider/metaslider.flex.class.php'),(2790,'wp-content/plugins/ml-slider/inc/slider/metaslider.nivo.class.php'),(2791,'wp-content/plugins/ml-slider/inc/slider/metaslider.responsive.class.php'),(2792,'wp-content/plugins/ml-slider/languages/ml-slider-de_DE.mo'),(2793,'wp-content/plugins/ml-slider/languages/ml-slider-de_DE.po'),(2794,'wp-content/plugins/ml-slider/languages/ml-slider-es_ES.mo'),(2795,'wp-content/plugins/ml-slider/languages/ml-slider-es_ES.po'),(2796,'wp-content/plugins/ml-slider/languages/ml-slider-fa_IR.mo'),(2797,'wp-content/plugins/ml-slider/languages/ml-slider-fa_IR.po'),(2798,'wp-content/plugins/ml-slider/languages/ml-slider-fr_FR.mo'),(2799,'wp-content/plugins/ml-slider/languages/ml-slider-fr_FR.po'),(2800,'wp-content/plugins/ml-slider/languages/ml-slider-he_IL.mo'),(2801,'wp-content/plugins/ml-slider/languages/ml-slider-he_IL.po'),(2802,'wp-content/plugins/ml-slider/languages/ml-slider-hr_HR.mo'),(2803,'wp-content/plugins/ml-slider/languages/ml-slider-hr_HR.po'),(2804,'wp-content/plugins/ml-slider/languages/ml-slider-hu_HU.mo'),(2805,'wp-content/plugins/ml-slider/languages/ml-slider-hu_HU.po'),(2806,'wp-content/plugins/ml-slider/languages/ml-slider-ja.mo'),(2807,'wp-content/plugins/ml-slider/languages/ml-slider-ja.po'),(2808,'wp-content/plugins/ml-slider/languages/ml-slider-nb_NO.mo'),(2809,'wp-content/plugins/ml-slider/languages/ml-slider-nb_NO.po'),(2810,'wp-content/plugins/ml-slider/languages/ml-slider-nl_NL.mo'),(2811,'wp-content/plugins/ml-slider/languages/ml-slider-nl_NL.po'),(2812,'wp-content/plugins/ml-slider/languages/ml-slider-pl_PL.mo'),(2813,'wp-content/plugins/ml-slider/languages/ml-slider-pl_PL.po'),(2814,'wp-content/plugins/ml-slider/languages/ml-slider-pt_BR.mo'),(2815,'wp-content/plugins/ml-slider/languages/ml-slider-pt_BR.po'),(2816,'wp-content/plugins/ml-slider/languages/ml-slider-ro_RO.mo'),(2817,'wp-content/plugins/ml-slider/languages/ml-slider-ro_RO.po'),(2818,'wp-content/plugins/ml-slider/languages/ml-slider-ru_RU.mo'),(2819,'wp-content/plugins/ml-slider/languages/ml-slider-ru_RU.po'),(2820,'wp-content/plugins/ml-slider/languages/ml-slider-uk.mo'),(2821,'wp-content/plugins/ml-slider/languages/ml-slider-uk.po'),(2822,'wp-content/plugins/ml-slider/languages/ml-slider-zh_CN.mo'),(2823,'wp-content/plugins/ml-slider/languages/ml-slider-zh_CN.po'),(2824,'wp-content/plugins/ml-slider/languages/ml-slider-zh_TW.mo'),(2825,'wp-content/plugins/ml-slider/languages/ml-slider-zh_TW.po'),(2826,'wp-content/plugins/ml-slider/languages/ml-slider.pot'),(2827,'wp-content/plugins/ml-slider/ml-slider.php'),(2828,'wp-content/plugins/ml-slider/readme.txt'),(2829,'wp-content/plugins/really-simple-ssl/class-admin.php'),(2830,'wp-content/plugins/really-simple-ssl/class-cache.php'),(2831,'wp-content/plugins/really-simple-ssl/class-front-end.php'),(2832,'wp-content/plugins/really-simple-ssl/class-help.php'),(2833,'wp-content/plugins/really-simple-ssl/class-mixed-content-fixer.php'),(2834,'wp-content/plugins/really-simple-ssl/class-multisite.php'),(2835,'wp-content/plugins/really-simple-ssl/class-server.php'),(2836,'wp-content/plugins/really-simple-ssl/class-url.php'),(2837,'wp-content/plugins/really-simple-ssl/css/index.php'),(2838,'wp-content/plugins/really-simple-ssl/css/main.css'),(2839,'wp-content/plugins/really-simple-ssl/force-deactivate.txt'),(2840,'wp-content/plugins/really-simple-ssl/img/check-icon.png'),(2841,'wp-content/plugins/really-simple-ssl/img/cross-icon.png'),(2842,'wp-content/plugins/really-simple-ssl/img/index.php'),(2843,'wp-content/plugins/really-simple-ssl/img/warning-icon.png'),(2844,'wp-content/plugins/really-simple-ssl/index.php'),(2845,'wp-content/plugins/really-simple-ssl/languages/index.php'),(2846,'wp-content/plugins/really-simple-ssl/languages/really-simple-ssl-fr_FR.mo'),(2847,'wp-content/plugins/really-simple-ssl/languages/really-simple-ssl-fr_FR.po'),(2848,'wp-content/plugins/really-simple-ssl/languages/really-simple-ssl-ru_RU.mo'),(2849,'wp-content/plugins/really-simple-ssl/languages/really-simple-ssl-ru_RU.po'),(2850,'wp-content/plugins/really-simple-ssl/languages/really-simple-ssl.po'),(2851,'wp-content/plugins/really-simple-ssl/readme.txt'),(2852,'wp-content/plugins/really-simple-ssl/rlrsssl-really-simple-ssl.php'),(2853,'wp-content/plugins/really-simple-ssl/ssl-test-page.php'),(2854,'wp-content/plugins/really-simple-ssl/testssl/cdn/.htaccess'),(2855,'wp-content/plugins/really-simple-ssl/testssl/cdn/ssl-test-page.html'),(2856,'wp-content/plugins/really-simple-ssl/testssl/cloudflare/.htaccess'),(2857,'wp-content/plugins/really-simple-ssl/testssl/cloudflare/ssl-test-page.html'),(2858,'wp-content/plugins/really-simple-ssl/testssl/cloudfront/.htaccess'),(2859,'wp-content/plugins/really-simple-ssl/testssl/cloudfront/ssl-test-page.html'),(2860,'wp-content/plugins/really-simple-ssl/testssl/envhttps/.htaccess'),(2861,'wp-content/plugins/really-simple-ssl/testssl/envhttps/ssl-test-page.html'),(2862,'wp-content/plugins/really-simple-ssl/testssl/loadbalancer/.htaccess'),(2863,'wp-content/plugins/really-simple-ssl/testssl/loadbalancer/ssl-test-page.html'),(2864,'wp-content/plugins/really-simple-ssl/testssl/serverhttps1/.htaccess'),(2865,'wp-content/plugins/really-simple-ssl/testssl/serverhttps1/ssl-test-page.html'),(2866,'wp-content/plugins/really-simple-ssl/testssl/serverhttpson/.htaccess'),(2867,'wp-content/plugins/really-simple-ssl/testssl/serverhttpson/ssl-test-page.html'),(2868,'wp-content/plugins/really-simple-ssl/testssl/serverport443/.htaccess'),(2869,'wp-content/plugins/really-simple-ssl/testssl/serverport443/ssl-test-page.html'),(2870,'wp-content/plugins/really-simple-ssl/uninstall.php'),(2871,'wp-content/plugins/simple-page-ordering/assets/css/scss/simple-page-ordering.scss'),(2872,'wp-content/plugins/simple-page-ordering/assets/css/simple-page-ordering.css'),(2873,'wp-content/plugins/simple-page-ordering/assets/css/simple-page-ordering.css.map'),(2874,'wp-content/plugins/simple-page-ordering/assets/js/simple-page-ordering.min.js'),(2875,'wp-content/plugins/simple-page-ordering/assets/js/src/simple-page-ordering.js'),(2876,'wp-content/plugins/simple-page-ordering/readme.txt'),(2877,'wp-content/plugins/simple-page-ordering/simple-page-ordering.php'),(2878,'wp-content/plugins/technicalities-maintenance-mode.php'),(2879,'wp-content/plugins/ubermenu/Gruntfile.js'),(2880,'wp-content/plugins/ubermenu/admin/admin.php'),(2881,'wp-content/plugins/ubermenu/admin/assets/admin.menu.js'),(2882,'wp-content/plugins/ubermenu/admin/assets/admin.settings.js'),(2883,'wp-content/plugins/ubermenu/admin/assets/customizer.js'),(2884,'wp-content/plugins/ubermenu/admin/assets/fontawesome/fonts/fontawesome-webfont.svg'),(2885,'wp-content/plugins/ubermenu/admin/custom.menu-item-types.php'),(2886,'wp-content/plugins/ubermenu/admin/migration.php'),(2887,'wp-content/plugins/ubermenu/admin/settings-api.class.php'),(2888,'wp-content/plugins/ubermenu/admin/settings.control-panel.php'),(2889,'wp-content/plugins/ubermenu/admin/settings.menu-item.php'),(2890,'wp-content/plugins/ubermenu/admin/settings.widget-manager.php'),(2891,'wp-content/plugins/ubermenu/assets/css/fontawesome/fonts/fontawesome-webfont.svg'),(2892,'wp-content/plugins/ubermenu/assets/js/ubermenu.js'),(2893,'wp-content/plugins/ubermenu/assets/js/ubermenu.min.js'),(2894,'wp-content/plugins/ubermenu/custom/custom-sample.js'),(2895,'wp-content/plugins/ubermenu/includes/UberMenuWalker.class.php'),(2896,'wp-content/plugins/ubermenu/includes/customizer/custom-styles.php'),(2897,'wp-content/plugins/ubermenu/includes/customizer/custom.menu-items.php'),(2898,'wp-content/plugins/ubermenu/includes/customizer/custom.menus.php'),(2899,'wp-content/plugins/ubermenu/includes/customizer/customizer.php'),(2900,'wp-content/plugins/ubermenu/includes/functions.php'),(2901,'wp-content/plugins/ubermenu/includes/icons.php'),(2902,'wp-content/plugins/ubermenu/includes/item-limit-detection.php'),(2903,'wp-content/plugins/ubermenu/includes/menuitems/UberMenuItem.class.php'),(2904,'wp-content/plugins/ubermenu/includes/menuitems/UberMenuItemColumn.class.php'),(2905,'wp-content/plugins/ubermenu/includes/menuitems/UberMenuItemDefault.class.php'),(2906,'wp-content/plugins/ubermenu/includes/menuitems/UberMenuItemRow.class.php'),(2907,'wp-content/plugins/ubermenu/includes/menuitems/UberMenu_dummy_item.class.php'),(2908,'wp-content/plugins/ubermenu/includes/menuitems/menuitems.php'),(2909,'wp-content/plugins/ubermenu/includes/shortcodes.php'),(2910,'wp-content/plugins/ubermenu/includes/ubermenu.api.php'),(2911,'wp-content/plugins/ubermenu/pro/admin/admin.pro.php'),(2912,'wp-content/plugins/ubermenu/pro/admin/custom.menu-item-types.pro.php'),(2913,'wp-content/plugins/ubermenu/pro/admin/settings.instance-manager.php'),(2914,'wp-content/plugins/ubermenu/pro/admin/settings.menu-item.pro.php'),(2915,'wp-content/plugins/ubermenu/pro/admin/settings.pro.php'),(2916,'wp-content/plugins/ubermenu/pro/diagnostics/diagnostics.js'),(2917,'wp-content/plugins/ubermenu/pro/diagnostics/diagnostics.php'),(2918,'wp-content/plugins/ubermenu/pro/diagnostics/diagnostics.tool.residualstyling.php'),(2919,'wp-content/plugins/ubermenu/pro/fonts.php'),(2920,'wp-content/plugins/ubermenu/pro/maps.php'),(2921,'wp-content/plugins/ubermenu/pro/menuitems/UberMenuItemCustom.class.php'),(2922,'wp-content/plugins/ubermenu/pro/menuitems/UberMenuItemDynamic.class.php'),(2923,'wp-content/plugins/ubermenu/pro/menuitems/UberMenuItemDynamicPosts.class.php'),(2924,'wp-content/plugins/ubermenu/pro/menuitems/UberMenuItemDynamicTerms.class.php'),(2925,'wp-content/plugins/ubermenu/pro/menuitems/UberMenuItemMenuSegment.class.php'),(2926,'wp-content/plugins/ubermenu/pro/menuitems/UberMenuItemTabs.class.php'),(2927,'wp-content/plugins/ubermenu/pro/menuitems/UberMenuItemTabs_relative.class.php'),(2928,'wp-content/plugins/ubermenu/pro/menuitems/UberMenuItemWidgetArea.class.php'),(2929,'wp-content/plugins/ubermenu/pro/menuitems/menuitems.pro.php'),(2930,'wp-content/plugins/ubermenu/pro/search.php'),(2931,'wp-content/plugins/ubermenu/pro/shortcodes.php'),(2932,'wp-content/plugins/ubermenu/pro/toolbar.php'),(2933,'wp-content/plugins/ubermenu/pro/ubermenu.pro.php'),(2934,'wp-content/plugins/ubermenu/pro/updates/backup.php'),(2935,'wp-content/plugins/ubermenu/pro/updates/debug-bar-panel.php'),(2936,'wp-content/plugins/ubermenu/pro/updates/debug-bar-plugin.php'),(2937,'wp-content/plugins/ubermenu/pro/updates/github-checker.php'),(2938,'wp-content/plugins/ubermenu/pro/updates/plugin-update-checker.php'),(2939,'wp-content/plugins/ubermenu/pro/updates/updater.php'),(2940,'wp-content/plugins/ubermenu/pro/widget.php'),(2941,'wp-content/plugins/ubermenu/pro/widgets.php'),(2942,'wp-content/plugins/ubermenu/ubermenu.php'),(2943,'wp-content/plugins/wordfence/css/activity-report-widget.1525275841.css'),(2944,'wp-content/plugins/wordfence/css/diff.1525275841.css'),(2945,'wp-content/plugins/wordfence/css/dt_table.1525275841.css'),(2946,'wp-content/plugins/wordfence/css/fullLog.1525275841.css'),(2947,'wp-content/plugins/wordfence/css/images/ui-bg_flat_0_aaaaaa_40x100.png'),(2948,'wp-content/plugins/wordfence/css/images/ui-bg_flat_100_1997c7_40x100.png'),(2949,'wp-content/plugins/wordfence/css/images/ui-bg_flat_100_222_40x100.png'),(2950,'wp-content/plugins/wordfence/css/images/ui-bg_flat_75_ffffff_40x100.png'),(2951,'wp-content/plugins/wordfence/css/images/ui-bg_glass_95_fef1ec_1x400.png'),(2952,'wp-content/plugins/wordfence/css/images/ui-bg_highlight-soft_75_a5a5a5_1x100.png'),(2953,'wp-content/plugins/wordfence/css/images/ui-icons_222222_256x240.png'),(2954,'wp-content/plugins/wordfence/css/images/ui-icons_cd0a0a_256x240.png'),(2955,'wp-content/plugins/wordfence/css/images/ui-icons_fbe569_256x240.png'),(2956,'wp-content/plugins/wordfence/css/images/ui-icons_fff_256x240.png'),(2957,'wp-content/plugins/wordfence/css/iptraf.1525275841.css'),(2958,'wp-content/plugins/wordfence/css/jquery-ui-timepicker-addon.1525275841.css'),(2959,'wp-content/plugins/wordfence/css/jquery-ui.min.1525275841.css'),(2960,'wp-content/plugins/wordfence/css/jquery-ui.structure.min.1525275841.css'),(2961,'wp-content/plugins/wordfence/css/jquery-ui.theme.min.1525275841.css'),(2962,'wp-content/plugins/wordfence/css/main.1525275841.css'),(2963,'wp-content/plugins/wordfence/css/phpinfo.1525275841.css'),(2964,'wp-content/plugins/wordfence/css/wf-adminbar.1525275841.css'),(2965,'wp-content/plugins/wordfence/css/wf-colorbox.1525275841.css'),(2966,'wp-content/plugins/wordfence/css/wf-font-awesome.1525275841.css'),(2967,'wp-content/plugins/wordfence/css/wf-ionicons.1525275841.css'),(2968,'wp-content/plugins/wordfence/css/wf-onboarding.1525275841.css'),(2969,'wp-content/plugins/wordfence/css/wfselect2.min.1525275841.css'),(2970,'wp-content/plugins/wordfence/css/wordfenceBox.1525275841.css'),(2971,'wp-content/plugins/wordfence/fonts/fontawesome-webfont.woff'),(2972,'wp-content/plugins/wordfence/fonts/ionicons.woff'),(2973,'wp-content/plugins/wordfence/images/2fa-whole.svg'),(2974,'wp-content/plugins/wordfence/images/2fa1.svg'),(2975,'wp-content/plugins/wordfence/images/2fa2.svg'),(2976,'wp-content/plugins/wordfence/images/back_disabled.jpg'),(2977,'wp-content/plugins/wordfence/images/back_enabled.jpg'),(2978,'wp-content/plugins/wordfence/images/blocking.svg'),(2979,'wp-content/plugins/wordfence/images/button-grad-grey.png'),(2980,'wp-content/plugins/wordfence/images/checkbox.png'),(2981,'wp-content/plugins/wordfence/images/flags/.png'),(2982,'wp-content/plugins/wordfence/images/flags/a1.png'),(2983,'wp-content/plugins/wordfence/images/flags/a2.png'),(2984,'wp-content/plugins/wordfence/images/flags/ad.png'),(2985,'wp-content/plugins/wordfence/images/flags/ae.png'),(2986,'wp-content/plugins/wordfence/images/flags/af.png'),(2987,'wp-content/plugins/wordfence/images/flags/ag.png'),(2988,'wp-content/plugins/wordfence/images/flags/ai.png'),(2989,'wp-content/plugins/wordfence/images/flags/al.png'),(2990,'wp-content/plugins/wordfence/images/flags/am.png'),(2991,'wp-content/plugins/wordfence/images/flags/an.png'),(2992,'wp-content/plugins/wordfence/images/flags/ao.png'),(2993,'wp-content/plugins/wordfence/images/flags/ap.png'),(2994,'wp-content/plugins/wordfence/images/flags/aq.png'),(2995,'wp-content/plugins/wordfence/images/flags/ar.png'),(2996,'wp-content/plugins/wordfence/images/flags/as.png'),(2997,'wp-content/plugins/wordfence/images/flags/at.png'),(2998,'wp-content/plugins/wordfence/images/flags/au.png'),(2999,'wp-content/plugins/wordfence/images/flags/aw.png'),(3000,'wp-content/plugins/wordfence/images/flags/ax.png'),(3001,'wp-content/plugins/wordfence/images/flags/az.png'),(3002,'wp-content/plugins/wordfence/images/flags/ba.png'),(3003,'wp-content/plugins/wordfence/images/flags/bb.png'),(3004,'wp-content/plugins/wordfence/images/flags/bd.png'),(3005,'wp-content/plugins/wordfence/images/flags/be.png'),(3006,'wp-content/plugins/wordfence/images/flags/bf.png'),(3007,'wp-content/plugins/wordfence/images/flags/bg.png'),(3008,'wp-content/plugins/wordfence/images/flags/bh.png'),(3009,'wp-content/plugins/wordfence/images/flags/bi.png'),(3010,'wp-content/plugins/wordfence/images/flags/bj.png'),(3011,'wp-content/plugins/wordfence/images/flags/bm.png'),(3012,'wp-content/plugins/wordfence/images/flags/bn.png'),(3013,'wp-content/plugins/wordfence/images/flags/bo.png'),(3014,'wp-content/plugins/wordfence/images/flags/br.png'),(3015,'wp-content/plugins/wordfence/images/flags/bs.png'),(3016,'wp-content/plugins/wordfence/images/flags/bt.png'),(3017,'wp-content/plugins/wordfence/images/flags/bv.png'),(3018,'wp-content/plugins/wordfence/images/flags/bw.png'),(3019,'wp-content/plugins/wordfence/images/flags/by.png'),(3020,'wp-content/plugins/wordfence/images/flags/bz.png'),(3021,'wp-content/plugins/wordfence/images/flags/ca.png'),(3022,'wp-content/plugins/wordfence/images/flags/cc.png'),(3023,'wp-content/plugins/wordfence/images/flags/cd.png'),(3024,'wp-content/plugins/wordfence/images/flags/cf.png'),(3025,'wp-content/plugins/wordfence/images/flags/cg.png'),(3026,'wp-content/plugins/wordfence/images/flags/ch.png'),(3027,'wp-content/plugins/wordfence/images/flags/ci.png'),(3028,'wp-content/plugins/wordfence/images/flags/ck.png'),(3029,'wp-content/plugins/wordfence/images/flags/cl.png'),(3030,'wp-content/plugins/wordfence/images/flags/cm.png'),(3031,'wp-content/plugins/wordfence/images/flags/cn.png'),(3032,'wp-content/plugins/wordfence/images/flags/co.png'),(3033,'wp-content/plugins/wordfence/images/flags/country-missing.svg'),(3034,'wp-content/plugins/wordfence/images/flags/cr.png'),(3035,'wp-content/plugins/wordfence/images/flags/cs.png'),(3036,'wp-content/plugins/wordfence/images/flags/cu.png'),(3037,'wp-content/plugins/wordfence/images/flags/cv.png'),(3038,'wp-content/plugins/wordfence/images/flags/cw.png'),(3039,'wp-content/plugins/wordfence/images/flags/cx.png'),(3040,'wp-content/plugins/wordfence/images/flags/cy.png'),(3041,'wp-content/plugins/wordfence/images/flags/cz.png'),(3042,'wp-content/plugins/wordfence/images/flags/de.png'),(3043,'wp-content/plugins/wordfence/images/flags/dj.png'),(3044,'wp-content/plugins/wordfence/images/flags/dk.png'),(3045,'wp-content/plugins/wordfence/images/flags/dm.png'),(3046,'wp-content/plugins/wordfence/images/flags/do.png'),(3047,'wp-content/plugins/wordfence/images/flags/dz.png'),(3048,'wp-content/plugins/wordfence/images/flags/ec.png'),(3049,'wp-content/plugins/wordfence/images/flags/ee.png'),(3050,'wp-content/plugins/wordfence/images/flags/eg.png'),(3051,'wp-content/plugins/wordfence/images/flags/eh.png'),(3052,'wp-content/plugins/wordfence/images/flags/england.png'),(3053,'wp-content/plugins/wordfence/images/flags/er.png'),(3054,'wp-content/plugins/wordfence/images/flags/es.png'),(3055,'wp-content/plugins/wordfence/images/flags/et.png'),(3056,'wp-content/plugins/wordfence/images/flags/eu.png'),(3057,'wp-content/plugins/wordfence/images/flags/fam.png'),(3058,'wp-content/plugins/wordfence/images/flags/fi.png'),(3059,'wp-content/plugins/wordfence/images/flags/fj.png'),(3060,'wp-content/plugins/wordfence/images/flags/fk.png'),(3061,'wp-content/plugins/wordfence/images/flags/fm.png'),(3062,'wp-content/plugins/wordfence/images/flags/fo.png'),(3063,'wp-content/plugins/wordfence/images/flags/fr.png'),(3064,'wp-content/plugins/wordfence/images/flags/ga.png'),(3065,'wp-content/plugins/wordfence/images/flags/gb.png'),(3066,'wp-content/plugins/wordfence/images/flags/gd.png'),(3067,'wp-content/plugins/wordfence/images/flags/ge.png'),(3068,'wp-content/plugins/wordfence/images/flags/gf.png'),(3069,'wp-content/plugins/wordfence/images/flags/gg.png'),(3070,'wp-content/plugins/wordfence/images/flags/gh.png'),(3071,'wp-content/plugins/wordfence/images/flags/gi.png'),(3072,'wp-content/plugins/wordfence/images/flags/gl.png'),(3073,'wp-content/plugins/wordfence/images/flags/gm.png'),(3074,'wp-content/plugins/wordfence/images/flags/gn.png'),(3075,'wp-content/plugins/wordfence/images/flags/gp.png'),(3076,'wp-content/plugins/wordfence/images/flags/gq.png'),(3077,'wp-content/plugins/wordfence/images/flags/gr.png'),(3078,'wp-content/plugins/wordfence/images/flags/gs.png'),(3079,'wp-content/plugins/wordfence/images/flags/gt.png'),(3080,'wp-content/plugins/wordfence/images/flags/gu.png'),(3081,'wp-content/plugins/wordfence/images/flags/gw.png'),(3082,'wp-content/plugins/wordfence/images/flags/gy.png'),(3083,'wp-content/plugins/wordfence/images/flags/hk.png'),(3084,'wp-content/plugins/wordfence/images/flags/hn.png'),(3085,'wp-content/plugins/wordfence/images/flags/hr.png'),(3086,'wp-content/plugins/wordfence/images/flags/ht.png'),(3087,'wp-content/plugins/wordfence/images/flags/hu.png'),(3088,'wp-content/plugins/wordfence/images/flags/id.png'),(3089,'wp-content/plugins/wordfence/images/flags/ie.png'),(3090,'wp-content/plugins/wordfence/images/flags/il.png'),(3091,'wp-content/plugins/wordfence/images/flags/im.png'),(3092,'wp-content/plugins/wordfence/images/flags/in.png'),(3093,'wp-content/plugins/wordfence/images/flags/io.png'),(3094,'wp-content/plugins/wordfence/images/flags/iq.png'),(3095,'wp-content/plugins/wordfence/images/flags/ir.png'),(3096,'wp-content/plugins/wordfence/images/flags/is.png'),(3097,'wp-content/plugins/wordfence/images/flags/it.png'),(3098,'wp-content/plugins/wordfence/images/flags/je.png'),(3099,'wp-content/plugins/wordfence/images/flags/jm.png'),(3100,'wp-content/plugins/wordfence/images/flags/jo.png'),(3101,'wp-content/plugins/wordfence/images/flags/jp.png'),(3102,'wp-content/plugins/wordfence/images/flags/ke.png'),(3103,'wp-content/plugins/wordfence/images/flags/kg.png'),(3104,'wp-content/plugins/wordfence/images/flags/kh.png'),(3105,'wp-content/plugins/wordfence/images/flags/ki.png'),(3106,'wp-content/plugins/wordfence/images/flags/km.png'),(3107,'wp-content/plugins/wordfence/images/flags/kn.png'),(3108,'wp-content/plugins/wordfence/images/flags/kp.png'),(3109,'wp-content/plugins/wordfence/images/flags/kr.png'),(3110,'wp-content/plugins/wordfence/images/flags/kw.png'),(3111,'wp-content/plugins/wordfence/images/flags/ky.png'),(3112,'wp-content/plugins/wordfence/images/flags/kz.png'),(3113,'wp-content/plugins/wordfence/images/flags/la.png'),(3114,'wp-content/plugins/wordfence/images/flags/lb.png'),(3115,'wp-content/plugins/wordfence/images/flags/lc.png'),(3116,'wp-content/plugins/wordfence/images/flags/li.png'),(3117,'wp-content/plugins/wordfence/images/flags/lk.png'),(3118,'wp-content/plugins/wordfence/images/flags/lr.png'),(3119,'wp-content/plugins/wordfence/images/flags/ls.png'),(3120,'wp-content/plugins/wordfence/images/flags/lt.png'),(3121,'wp-content/plugins/wordfence/images/flags/lu.png'),(3122,'wp-content/plugins/wordfence/images/flags/lv.png'),(3123,'wp-content/plugins/wordfence/images/flags/ly.png'),(3124,'wp-content/plugins/wordfence/images/flags/ma.png'),(3125,'wp-content/plugins/wordfence/images/flags/mc.png'),(3126,'wp-content/plugins/wordfence/images/flags/md.png'),(3127,'wp-content/plugins/wordfence/images/flags/me.png'),(3128,'wp-content/plugins/wordfence/images/flags/mg.png'),(3129,'wp-content/plugins/wordfence/images/flags/mh.png'),(3130,'wp-content/plugins/wordfence/images/flags/mk.png'),(3131,'wp-content/plugins/wordfence/images/flags/ml.png'),(3132,'wp-content/plugins/wordfence/images/flags/mm.png'),(3133,'wp-content/plugins/wordfence/images/flags/mn.png'),(3134,'wp-content/plugins/wordfence/images/flags/mo.png'),(3135,'wp-content/plugins/wordfence/images/flags/mp.png'),(3136,'wp-content/plugins/wordfence/images/flags/mq.png'),(3137,'wp-content/plugins/wordfence/images/flags/mr.png'),(3138,'wp-content/plugins/wordfence/images/flags/ms.png'),(3139,'wp-content/plugins/wordfence/images/flags/mt.png'),(3140,'wp-content/plugins/wordfence/images/flags/mu.png'),(3141,'wp-content/plugins/wordfence/images/flags/mv.png'),(3142,'wp-content/plugins/wordfence/images/flags/mw.png'),(3143,'wp-content/plugins/wordfence/images/flags/mx.png'),(3144,'wp-content/plugins/wordfence/images/flags/my.png'),(3145,'wp-content/plugins/wordfence/images/flags/mz.png'),(3146,'wp-content/plugins/wordfence/images/flags/na.png'),(3147,'wp-content/plugins/wordfence/images/flags/nc.png'),(3148,'wp-content/plugins/wordfence/images/flags/ne.png'),(3149,'wp-content/plugins/wordfence/images/flags/nf.png'),(3150,'wp-content/plugins/wordfence/images/flags/ng.png'),(3151,'wp-content/plugins/wordfence/images/flags/ni.png'),(3152,'wp-content/plugins/wordfence/images/flags/nl.png'),(3153,'wp-content/plugins/wordfence/images/flags/no.png'),(3154,'wp-content/plugins/wordfence/images/flags/np.png'),(3155,'wp-content/plugins/wordfence/images/flags/nr.png'),(3156,'wp-content/plugins/wordfence/images/flags/nu.png'),(3157,'wp-content/plugins/wordfence/images/flags/nz.png'),(3158,'wp-content/plugins/wordfence/images/flags/om.png'),(3159,'wp-content/plugins/wordfence/images/flags/pa.png'),(3160,'wp-content/plugins/wordfence/images/flags/pe.png'),(3161,'wp-content/plugins/wordfence/images/flags/pf.png'),(3162,'wp-content/plugins/wordfence/images/flags/pg.png'),(3163,'wp-content/plugins/wordfence/images/flags/ph.png'),(3164,'wp-content/plugins/wordfence/images/flags/pk.png'),(3165,'wp-content/plugins/wordfence/images/flags/pl.png'),(3166,'wp-content/plugins/wordfence/images/flags/pm.png'),(3167,'wp-content/plugins/wordfence/images/flags/pn.png'),(3168,'wp-content/plugins/wordfence/images/flags/pr.png'),(3169,'wp-content/plugins/wordfence/images/flags/ps.png'),(3170,'wp-content/plugins/wordfence/images/flags/pt.png'),(3171,'wp-content/plugins/wordfence/images/flags/pw.png'),(3172,'wp-content/plugins/wordfence/images/flags/py.png'),(3173,'wp-content/plugins/wordfence/images/flags/qa.png'),(3174,'wp-content/plugins/wordfence/images/flags/re.png'),(3175,'wp-content/plugins/wordfence/images/flags/ro.png'),(3176,'wp-content/plugins/wordfence/images/flags/rs.png'),(3177,'wp-content/plugins/wordfence/images/flags/ru.png'),(3178,'wp-content/plugins/wordfence/images/flags/rw.png'),(3179,'wp-content/plugins/wordfence/images/flags/sa.png'),(3180,'wp-content/plugins/wordfence/images/flags/sb.png'),(3181,'wp-content/plugins/wordfence/images/flags/sc.png'),(3182,'wp-content/plugins/wordfence/images/flags/scotland.png'),(3183,'wp-content/plugins/wordfence/images/flags/sd.png'),(3184,'wp-content/plugins/wordfence/images/flags/se.png'),(3185,'wp-content/plugins/wordfence/images/flags/sg.png'),(3186,'wp-content/plugins/wordfence/images/flags/sh.png'),(3187,'wp-content/plugins/wordfence/images/flags/si.png'),(3188,'wp-content/plugins/wordfence/images/flags/sk.png'),(3189,'wp-content/plugins/wordfence/images/flags/sl.png'),(3190,'wp-content/plugins/wordfence/images/flags/sm.png'),(3191,'wp-content/plugins/wordfence/images/flags/sn.png'),(3192,'wp-content/plugins/wordfence/images/flags/so.png'),(3193,'wp-content/plugins/wordfence/images/flags/sprite-des-128.png'),(3194,'wp-content/plugins/wordfence/images/flags/sprite-des-16.png'),(3195,'wp-content/plugins/wordfence/images/flags/sprite-des-256.png'),(3196,'wp-content/plugins/wordfence/images/flags/sprite-des-32.png'),(3197,'wp-content/plugins/wordfence/images/flags/sprite-des-64.png'),(3198,'wp-content/plugins/wordfence/images/flags/sprite-des.png'),(3199,'wp-content/plugins/wordfence/images/flags/sprite-des2.png'),(3200,'wp-content/plugins/wordfence/images/flags/sprite2.css'),(3201,'wp-content/plugins/wordfence/images/flags/sprite2.png'),(3202,'wp-content/plugins/wordfence/images/flags/sr.png'),(3203,'wp-content/plugins/wordfence/images/flags/st.png'),(3204,'wp-content/plugins/wordfence/images/flags/sv.png'),(3205,'wp-content/plugins/wordfence/images/flags/sy.png'),(3206,'wp-content/plugins/wordfence/images/flags/sz.png'),(3207,'wp-content/plugins/wordfence/images/flags/tc.png'),(3208,'wp-content/plugins/wordfence/images/flags/td.png'),(3209,'wp-content/plugins/wordfence/images/flags/tf.png'),(3210,'wp-content/plugins/wordfence/images/flags/tg.png'),(3211,'wp-content/plugins/wordfence/images/flags/th.png'),(3212,'wp-content/plugins/wordfence/images/flags/tj.png'),(3213,'wp-content/plugins/wordfence/images/flags/tk.png'),(3214,'wp-content/plugins/wordfence/images/flags/tl.png'),(3215,'wp-content/plugins/wordfence/images/flags/tm.png'),(3216,'wp-content/plugins/wordfence/images/flags/tn.png'),(3217,'wp-content/plugins/wordfence/images/flags/to.png'),(3218,'wp-content/plugins/wordfence/images/flags/tr.png'),(3219,'wp-content/plugins/wordfence/images/flags/tt.png'),(3220,'wp-content/plugins/wordfence/images/flags/tv.png'),(3221,'wp-content/plugins/wordfence/images/flags/tw.png'),(3222,'wp-content/plugins/wordfence/images/flags/tz.png'),(3223,'wp-content/plugins/wordfence/images/flags/ua.png'),(3224,'wp-content/plugins/wordfence/images/flags/ug.png'),(3225,'wp-content/plugins/wordfence/images/flags/uk.png'),(3226,'wp-content/plugins/wordfence/images/flags/um.png'),(3227,'wp-content/plugins/wordfence/images/flags/us.png'),(3228,'wp-content/plugins/wordfence/images/flags/uy.png'),(3229,'wp-content/plugins/wordfence/images/flags/uz.png'),(3230,'wp-content/plugins/wordfence/images/flags/va.png'),(3231,'wp-content/plugins/wordfence/images/flags/vc.png'),(3232,'wp-content/plugins/wordfence/images/flags/ve.png'),(3233,'wp-content/plugins/wordfence/images/flags/vg.png'),(3234,'wp-content/plugins/wordfence/images/flags/vi.png'),(3235,'wp-content/plugins/wordfence/images/flags/vn.png'),(3236,'wp-content/plugins/wordfence/images/flags/vu.png'),(3237,'wp-content/plugins/wordfence/images/flags/wales.png'),(3238,'wp-content/plugins/wordfence/images/flags/wf.png'),(3239,'wp-content/plugins/wordfence/images/flags/ws.png'),(3240,'wp-content/plugins/wordfence/images/flags/xk.png'),(3241,'wp-content/plugins/wordfence/images/flags/ye.png'),(3242,'wp-content/plugins/wordfence/images/flags/yt.png'),(3243,'wp-content/plugins/wordfence/images/flags/za.png'),(3244,'wp-content/plugins/wordfence/images/flags/zm.png'),(3245,'wp-content/plugins/wordfence/images/flags/zw.png'),(3246,'wp-content/plugins/wordfence/images/forward_disabled.jpg'),(3247,'wp-content/plugins/wordfence/images/forward_enabled.jpg'),(3248,'wp-content/plugins/wordfence/images/help.png'),(3249,'wp-content/plugins/wordfence/images/icons/ajax24.gif'),(3250,'wp-content/plugins/wordfence/images/icons/ajax3.gif'),(3251,'wp-content/plugins/wordfence/images/icons/ajaxRed16.gif'),(3252,'wp-content/plugins/wordfence/images/icons/ajaxScan.gif'),(3253,'wp-content/plugins/wordfence/images/icons/ajaxWhite32x32.gif'),(3254,'wp-content/plugins/wordfence/images/icons/arrow_refresh.png'),(3255,'wp-content/plugins/wordfence/images/icons/bullet_yellow.png'),(3256,'wp-content/plugins/wordfence/images/icons/email_go.png'),(3257,'wp-content/plugins/wordfence/images/icons/error128.png'),(3258,'wp-content/plugins/wordfence/images/icons/magnifier.png'),(3259,'wp-content/plugins/wordfence/images/icons/tick128.png'),(3260,'wp-content/plugins/wordfence/images/icons/warning128.png'),(3261,'wp-content/plugins/wordfence/images/icons/working-indicator.gif'),(3262,'wp-content/plugins/wordfence/images/lightbox-controls.png'),(3263,'wp-content/plugins/wordfence/images/loading.gif'),(3264,'wp-content/plugins/wordfence/images/loading_background.png'),(3265,'wp-content/plugins/wordfence/images/loading_large.gif'),(3266,'wp-content/plugins/wordfence/images/logo.png'),(3267,'wp-content/plugins/wordfence/images/options.svg'),(3268,'wp-content/plugins/wordfence/images/ratelimiting.svg'),(3269,'wp-content/plugins/wordfence/images/rr_premium.png'),(3270,'wp-content/plugins/wordfence/images/rr_sitecleaning.jpg'),(3271,'wp-content/plugins/wordfence/images/sort_asc.gif'),(3272,'wp-content/plugins/wordfence/images/sort_asc.png'),(3273,'wp-content/plugins/wordfence/images/sort_asc_disabled.gif'),(3274,'wp-content/plugins/wordfence/images/sort_asc_disabled.png'),(3275,'wp-content/plugins/wordfence/images/sort_both.gif'),(3276,'wp-content/plugins/wordfence/images/sort_both.png'),(3277,'wp-content/plugins/wordfence/images/sort_desc.gif'),(3278,'wp-content/plugins/wordfence/images/sort_desc.png'),(3279,'wp-content/plugins/wordfence/images/sort_desc_disabled.gif'),(3280,'wp-content/plugins/wordfence/images/sort_desc_disabled.png'),(3281,'wp-content/plugins/wordfence/images/support.svg'),(3282,'wp-content/plugins/wordfence/images/tools.svg'),(3283,'wp-content/plugins/wordfence/images/wordfence-logo-16x16.png'),(3284,'wp-content/plugins/wordfence/images/wordfence-logo-32x32.png'),(3285,'wp-content/plugins/wordfence/images/wordfence-logo-64x64.png'),(3286,'wp-content/plugins/wordfence/index.php'),(3287,'wp-content/plugins/wordfence/js/Chart.bundle.min.1525275841.js'),(3288,'wp-content/plugins/wordfence/js/admin.1525275841.js'),(3289,'wp-content/plugins/wordfence/js/admin.ajaxWatcher.1525275841.js'),(3290,'wp-content/plugins/wordfence/js/admin.liveTraffic.1525275841.js'),(3291,'wp-content/plugins/wordfence/js/date.1525275841.js'),(3292,'wp-content/plugins/wordfence/js/jquery-ui-timepicker-addon.1525275841.js'),(3293,'wp-content/plugins/wordfence/js/jquery.colorbox-min.1525275841.js'),(3294,'wp-content/plugins/wordfence/js/jquery.colorbox.1525275841.js'),(3295,'wp-content/plugins/wordfence/js/jquery.dataTables.min.1525275841.js'),(3296,'wp-content/plugins/wordfence/js/jquery.qrcode.min.1525275841.js'),(3297,'wp-content/plugins/wordfence/js/jquery.tmpl.min.1525275841.js'),(3298,'wp-content/plugins/wordfence/js/jquery.tools.min.1525275841.js'),(3299,'wp-content/plugins/wordfence/js/knockout-3.3.0.1525275841.js'),(3300,'wp-content/plugins/wordfence/js/perf.1525275841.js'),(3301,'wp-content/plugins/wordfence/js/wfdashboard.1525275841.js'),(3302,'wp-content/plugins/wordfence/js/wfdropdown.1525275841.js'),(3303,'wp-content/plugins/wordfence/js/wfglobal.1525275841.js'),(3304,'wp-content/plugins/wordfence/js/wfpopover.1525275841.js'),(3305,'wp-content/plugins/wordfence/js/wfselect2.min.1525275841.js'),(3306,'wp-content/plugins/wordfence/lib/.htaccess'),(3307,'wp-content/plugins/wordfence/lib/Diff/Renderer/Abstract.php'),(3308,'wp-content/plugins/wordfence/lib/Diff/Renderer/Html/Array.php'),(3309,'wp-content/plugins/wordfence/lib/Diff/Renderer/Html/SideBySide.php'),(3310,'wp-content/plugins/wordfence/lib/Diff/SequenceMatcher.php'),(3311,'wp-content/plugins/wordfence/lib/Diff.php'),(3312,'wp-content/plugins/wordfence/lib/GeoIP.dat'),(3313,'wp-content/plugins/wordfence/lib/GeoIPv6.dat'),(3314,'wp-content/plugins/wordfence/lib/IPTraf.php'),(3315,'wp-content/plugins/wordfence/lib/IPTrafList.php'),(3316,'wp-content/plugins/wordfence/lib/compat.php'),(3317,'wp-content/plugins/wordfence/lib/conntest.php'),(3318,'wp-content/plugins/wordfence/lib/cronview.php'),(3319,'wp-content/plugins/wordfence/lib/dashboard/widget_content_countries.php'),(3320,'wp-content/plugins/wordfence/lib/dashboard/widget_content_ips.php'),(3321,'wp-content/plugins/wordfence/lib/dashboard/widget_content_logins.php'),(3322,'wp-content/plugins/wordfence/lib/dashboard/widget_countries.php'),(3323,'wp-content/plugins/wordfence/lib/dashboard/widget_ips.php'),(3324,'wp-content/plugins/wordfence/lib/dashboard/widget_localattacks.php'),(3325,'wp-content/plugins/wordfence/lib/dashboard/widget_logins.php'),(3326,'wp-content/plugins/wordfence/lib/dashboard/widget_networkattacks.php'),(3327,'wp-content/plugins/wordfence/lib/dashboard/widget_notifications.php'),(3328,'wp-content/plugins/wordfence/lib/dashboard/widget_tdf.php'),(3329,'wp-content/plugins/wordfence/lib/dbview.php'),(3330,'wp-content/plugins/wordfence/lib/diffResult.php'),(3331,'wp-content/plugins/wordfence/lib/email_genericAlert.php'),(3332,'wp-content/plugins/wordfence/lib/email_newIssues.php'),(3333,'wp-content/plugins/wordfence/lib/email_unlockRequest.php'),(3334,'wp-content/plugins/wordfence/lib/live_activity.php'),(3335,'wp-content/plugins/wordfence/lib/menu_dashboard.php'),(3336,'wp-content/plugins/wordfence/lib/menu_dashboard_options.php'),(3337,'wp-content/plugins/wordfence/lib/menu_firewall.php'),(3338,'wp-content/plugins/wordfence/lib/menu_firewall_blocking.php'),(3339,'wp-content/plugins/wordfence/lib/menu_firewall_blocking_options.php'),(3340,'wp-content/plugins/wordfence/lib/menu_firewall_waf.php'),(3341,'wp-content/plugins/wordfence/lib/menu_firewall_waf_options.php'),(3342,'wp-content/plugins/wordfence/lib/menu_options.php'),(3343,'wp-content/plugins/wordfence/lib/menu_scanner.php'),(3344,'wp-content/plugins/wordfence/lib/menu_scanner_credentials.php'),(3345,'wp-content/plugins/wordfence/lib/menu_scanner_options.php'),(3346,'wp-content/plugins/wordfence/lib/menu_support.php'),(3347,'wp-content/plugins/wordfence/lib/menu_tools.php'),(3348,'wp-content/plugins/wordfence/lib/menu_tools_commentSpam.php'),(3349,'wp-content/plugins/wordfence/lib/menu_tools_diagnostic.php'),(3350,'wp-content/plugins/wordfence/lib/menu_tools_livetraffic.php'),(3351,'wp-content/plugins/wordfence/lib/menu_tools_twoFactor.php'),(3352,'wp-content/plugins/wordfence/lib/menu_tools_whois.php'),(3353,'wp-content/plugins/wordfence/lib/sysinfo.php'),(3354,'wp-content/plugins/wordfence/lib/unknownFiles.php'),(3355,'wp-content/plugins/wordfence/lib/viewFullActivityLog.php'),(3356,'wp-content/plugins/wordfence/lib/wf503.php'),(3357,'wp-content/plugins/wordfence/lib/wfAPI.php'),(3358,'wp-content/plugins/wordfence/lib/wfActivityReport.php'),(3359,'wp-content/plugins/wordfence/lib/wfAdminNoticeQueue.php'),(3360,'wp-content/plugins/wordfence/lib/wfArray.php'),(3361,'wp-content/plugins/wordfence/lib/wfBrowscap.php'),(3362,'wp-content/plugins/wordfence/lib/wfBrowscapCache.php'),(3363,'wp-content/plugins/wordfence/lib/wfBulkCountries.php'),(3364,'wp-content/plugins/wordfence/lib/wfCache.php'),(3365,'wp-content/plugins/wordfence/lib/wfConfig.php'),(3366,'wp-content/plugins/wordfence/lib/wfCountryMap.php'),(3367,'wp-content/plugins/wordfence/lib/wfCrawl.php'),(3368,'wp-content/plugins/wordfence/lib/wfCredentialsController.php'),(3369,'wp-content/plugins/wordfence/lib/wfCrypt.php'),(3370,'wp-content/plugins/wordfence/lib/wfDB.php'),(3371,'wp-content/plugins/wordfence/lib/wfDashboard.php'),(3372,'wp-content/plugins/wordfence/lib/wfDateLocalization.php'),(3373,'wp-content/plugins/wordfence/lib/wfDiagnostic.php'),(3374,'wp-content/plugins/wordfence/lib/wfDict.php'),(3375,'wp-content/plugins/wordfence/lib/wfDirectoryIterator.php'),(3376,'wp-content/plugins/wordfence/lib/wfGeoIP.php'),(3377,'wp-content/plugins/wordfence/lib/wfHelperBin.php'),(3378,'wp-content/plugins/wordfence/lib/wfHelperString.php'),(3379,'wp-content/plugins/wordfence/lib/wfIPWhitelist.php'),(3380,'wp-content/plugins/wordfence/lib/wfImportExportController.php'),(3381,'wp-content/plugins/wordfence/lib/wfIssues.php'),(3382,'wp-content/plugins/wordfence/lib/wfLockedOut.php'),(3383,'wp-content/plugins/wordfence/lib/wfLog.php'),(3384,'wp-content/plugins/wordfence/lib/wfMD5BloomFilter.php'),(3385,'wp-content/plugins/wordfence/lib/wfNotification.php'),(3386,'wp-content/plugins/wordfence/lib/wfOnboardingController.php'),(3387,'wp-content/plugins/wordfence/lib/wfPersistenceController.php'),(3388,'wp-content/plugins/wordfence/lib/wfRESTAPI.php'),(3389,'wp-content/plugins/wordfence/lib/wfScan.php'),(3390,'wp-content/plugins/wordfence/lib/wfScanEngine.php'),(3391,'wp-content/plugins/wordfence/lib/wfSchema.php'),(3392,'wp-content/plugins/wordfence/lib/wfStyle.php'),(3393,'wp-content/plugins/wordfence/lib/wfSupportController.php'),(3394,'wp-content/plugins/wordfence/lib/wfUnlockMsg.php'),(3395,'wp-content/plugins/wordfence/lib/wfUpdateCheck.php'),(3396,'wp-content/plugins/wordfence/lib/wfUtils.php'),(3397,'wp-content/plugins/wordfence/lib/wfVersionCheckController.php'),(3398,'wp-content/plugins/wordfence/lib/wfView.php'),(3399,'wp-content/plugins/wordfence/lib/wfViewResult.php'),(3400,'wp-content/plugins/wordfence/lib/wordfenceClass.php'),(3401,'wp-content/plugins/wordfence/lib/wordfenceConstants.php'),(3402,'wp-content/plugins/wordfence/lib/wordfenceHash.php'),(3403,'wp-content/plugins/wordfence/lib/wordfenceScanner.php'),(3404,'wp-content/plugins/wordfence/lib/wordfenceURLHoover.php'),(3405,'wp-content/plugins/wordfence/models/.htaccess'),(3406,'wp-content/plugins/wordfence/models/block/wfBlock.php'),(3407,'wp-content/plugins/wordfence/models/common/wfTab.php'),(3408,'wp-content/plugins/wordfence/models/firewall/wfFirewall.php'),(3409,'wp-content/plugins/wordfence/models/page/wfPage.php'),(3410,'wp-content/plugins/wordfence/models/scanner/wfScanner.php'),(3411,'wp-content/plugins/wordfence/readme.txt'),(3412,'wp-content/plugins/wordfence/tmp/.htaccess'),(3413,'wp-content/plugins/wordfence/vendor/autoload.php'),(3414,'wp-content/plugins/wordfence/vendor/composer/ClassLoader.php'),(3415,'wp-content/plugins/wordfence/vendor/composer/LICENSE'),(3416,'wp-content/plugins/wordfence/vendor/composer/autoload_classmap.php'),(3417,'wp-content/plugins/wordfence/vendor/composer/autoload_namespaces.php'),(3418,'wp-content/plugins/wordfence/vendor/composer/autoload_psr4.php'),(3419,'wp-content/plugins/wordfence/vendor/composer/autoload_real.php'),(3420,'wp-content/plugins/wordfence/vendor/composer/installed.json'),(3421,'wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/bootstrap-sample.php'),(3422,'wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/cacert.pem'),(3423,'wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/falsepositive.key'),(3424,'wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/init.php'),(3425,'wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/config.php'),(3426,'wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/http.php'),(3427,'wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/json.php'),(3428,'wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/parser/lexer.php'),(3429,'wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/parser/parser.php'),(3430,'wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/parser/sqli.php'),(3431,'wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/request.php'),(3432,'wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/rules.php'),(3433,'wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/storage/file.php'),(3434,'wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/storage.php'),(3435,'wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/utils.php'),(3436,'wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/view.php'),(3437,'wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/waf.php'),(3438,'wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/rules.key'),(3439,'wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/views/403-blacklist.php'),(3440,'wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/views/403-roadblock.php'),(3441,'wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/views/403.php'),(3442,'wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/views/503-lockout.php'),(3443,'wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/views/503.php'),(3444,'wp-content/plugins/wordfence/views/.htaccess'),(3445,'wp-content/plugins/wordfence/views/blocking/block-list.php'),(3446,'wp-content/plugins/wordfence/views/blocking/blocking-create.php'),(3447,'wp-content/plugins/wordfence/views/blocking/blocking-status.php'),(3448,'wp-content/plugins/wordfence/views/blocking/country-block-map.php'),(3449,'wp-content/plugins/wordfence/views/blocking/country-modal.php'),(3450,'wp-content/plugins/wordfence/views/blocking/option-bypass-cookie.php'),(3451,'wp-content/plugins/wordfence/views/blocking/option-bypass-redirect.php'),(3452,'wp-content/plugins/wordfence/views/blocking/options-group-advanced-country.php'),(3453,'wp-content/plugins/wordfence/views/common/block-navigation-option.php'),(3454,'wp-content/plugins/wordfence/views/common/indeterminate-progress.php'),(3455,'wp-content/plugins/wordfence/views/common/modal-prompt.php'),(3456,'wp-content/plugins/wordfence/views/common/page-fixed-tabbar.php'),(3457,'wp-content/plugins/wordfence/views/common/page-help.php'),(3458,'wp-content/plugins/wordfence/views/common/page-tabbar.php'),(3459,'wp-content/plugins/wordfence/views/common/page-title.php'),(3460,'wp-content/plugins/wordfence/views/common/section-subtitle.php'),(3461,'wp-content/plugins/wordfence/views/common/section-title.php'),(3462,'wp-content/plugins/wordfence/views/common/status-circular.php'),(3463,'wp-content/plugins/wordfence/views/common/status-critical.php'),(3464,'wp-content/plugins/wordfence/views/common/status-detail.php'),(3465,'wp-content/plugins/wordfence/views/common/status-tooltip.php'),(3466,'wp-content/plugins/wordfence/views/common/status-warning.php'),(3467,'wp-content/plugins/wordfence/views/dashboard/global-status.php'),(3468,'wp-content/plugins/wordfence/views/dashboard/option-howgetips.php'),(3469,'wp-content/plugins/wordfence/views/dashboard/options-group-alert.php'),(3470,'wp-content/plugins/wordfence/views/dashboard/options-group-dashboard.php'),(3471,'wp-content/plugins/wordfence/views/dashboard/options-group-email-summary.php'),(3472,'wp-content/plugins/wordfence/views/dashboard/options-group-general.php'),(3473,'wp-content/plugins/wordfence/views/dashboard/options-group-import.php'),(3474,'wp-content/plugins/wordfence/views/dashboard/options-group-license.php'),(3475,'wp-content/plugins/wordfence/views/dashboard/options-group-view-customization.php'),(3476,'wp-content/plugins/wordfence/views/dashboard/status-payment-expiring.php'),(3477,'wp-content/plugins/wordfence/views/dashboard/status-renewing.php'),(3478,'wp-content/plugins/wordfence/views/gdpr/banner.php'),(3479,'wp-content/plugins/wordfence/views/marketing/rightrail.php'),(3480,'wp-content/plugins/wordfence/views/onboarding/banner.php'),(3481,'wp-content/plugins/wordfence/views/onboarding/fresh-install.php'),(3482,'wp-content/plugins/wordfence/views/onboarding/modal-final-attempt.php'),(3483,'wp-content/plugins/wordfence/views/onboarding/overlay.php'),(3484,'wp-content/plugins/wordfence/views/onboarding/plugin-header.php'),(3485,'wp-content/plugins/wordfence/views/onboarding/tour-overlay.php'),(3486,'wp-content/plugins/wordfence/views/options/block-all-options-controls.php'),(3487,'wp-content/plugins/wordfence/views/options/block-controls.php'),(3488,'wp-content/plugins/wordfence/views/options/option-label.php'),(3489,'wp-content/plugins/wordfence/views/options/option-select.php'),(3490,'wp-content/plugins/wordfence/views/options/option-switch.php'),(3491,'wp-content/plugins/wordfence/views/options/option-text.php'),(3492,'wp-content/plugins/wordfence/views/options/option-textarea.php'),(3493,'wp-content/plugins/wordfence/views/options/option-toggled-boolean-switch.php'),(3494,'wp-content/plugins/wordfence/views/options/option-toggled-multiple.php'),(3495,'wp-content/plugins/wordfence/views/options/option-toggled-segmented.php'),(3496,'wp-content/plugins/wordfence/views/options/option-toggled-select.php'),(3497,'wp-content/plugins/wordfence/views/options/option-toggled-sub.php'),(3498,'wp-content/plugins/wordfence/views/options/option-toggled-textarea.php'),(3499,'wp-content/plugins/wordfence/views/options/option-toggled.php'),(3500,'wp-content/plugins/wordfence/views/options/option-token.php'),(3501,'wp-content/plugins/wordfence/views/options/options-title.php'),(3502,'wp-content/plugins/wordfence/views/reports/activity-report-email-inline.php'),(3503,'wp-content/plugins/wordfence/views/reports/activity-report-email.php'),(3504,'wp-content/plugins/wordfence/views/reports/activity-report.php'),(3505,'wp-content/plugins/wordfence/views/scanner/issue-base.php'),(3506,'wp-content/plugins/wordfence/views/scanner/issue-checkGSB.php'),(3507,'wp-content/plugins/wordfence/views/scanner/issue-checkHowGetIPs.php'),(3508,'wp-content/plugins/wordfence/views/scanner/issue-checkSpamIP.php'),(3509,'wp-content/plugins/wordfence/views/scanner/issue-commentBadURL.php'),(3510,'wp-content/plugins/wordfence/views/scanner/issue-configReadable.php'),(3511,'wp-content/plugins/wordfence/views/scanner/issue-control-edit-comment.php'),(3512,'wp-content/plugins/wordfence/views/scanner/issue-control-edit-post.php'),(3513,'wp-content/plugins/wordfence/views/scanner/issue-control-edit-user.php'),(3514,'wp-content/plugins/wordfence/views/scanner/issue-control-hide-file.php'),(3515,'wp-content/plugins/wordfence/views/scanner/issue-control-ignore.php'),(3516,'wp-content/plugins/wordfence/views/scanner/issue-control-repair.php'),(3517,'wp-content/plugins/wordfence/views/scanner/issue-control-show-details.php'),(3518,'wp-content/plugins/wordfence/views/scanner/issue-coreUnknown.php'),(3519,'wp-content/plugins/wordfence/views/scanner/issue-database.php'),(3520,'wp-content/plugins/wordfence/views/scanner/issue-diskSpace.php'),(3521,'wp-content/plugins/wordfence/views/scanner/issue-dnsChange.php'),(3522,'wp-content/plugins/wordfence/views/scanner/issue-easyPassword.php'),(3523,'wp-content/plugins/wordfence/views/scanner/issue-file.php'),(3524,'wp-content/plugins/wordfence/views/scanner/issue-geoipSupport.php'),(3525,'wp-content/plugins/wordfence/views/scanner/issue-knownfile.php'),(3526,'wp-content/plugins/wordfence/views/scanner/issue-optionBadURL.php'),(3527,'wp-content/plugins/wordfence/views/scanner/issue-postBadTitle.php'),(3528,'wp-content/plugins/wordfence/views/scanner/issue-postBadURL.php'),(3529,'wp-content/plugins/wordfence/views/scanner/issue-publiclyAccessible.php'),(3530,'wp-content/plugins/wordfence/views/scanner/issue-spamvertizeCheck.php'),(3531,'wp-content/plugins/wordfence/views/scanner/issue-suspiciousAdminUsers.php'),(3532,'wp-content/plugins/wordfence/views/scanner/issue-timelimit.php'),(3533,'wp-content/plugins/wordfence/views/scanner/issue-wfPluginAbandoned.php'),(3534,'wp-content/plugins/wordfence/views/scanner/issue-wfPluginRemoved.php'),(3535,'wp-content/plugins/wordfence/views/scanner/issue-wfPluginUpgrade.php'),(3536,'wp-content/plugins/wordfence/views/scanner/issue-wfPluginVulnerable.php'),(3537,'wp-content/plugins/wordfence/views/scanner/issue-wfThemeUpgrade.php'),(3538,'wp-content/plugins/wordfence/views/scanner/issue-wfUpgrade.php'),(3539,'wp-content/plugins/wordfence/views/scanner/issue-wpscan_directoryList.php'),(3540,'wp-content/plugins/wordfence/views/scanner/issue-wpscan_fullPathDiscl.php'),(3541,'wp-content/plugins/wordfence/views/scanner/no-issues.php'),(3542,'wp-content/plugins/wordfence/views/scanner/option-scan-signatures.php'),(3543,'wp-content/plugins/wordfence/views/scanner/options-group-advanced.php'),(3544,'wp-content/plugins/wordfence/views/scanner/options-group-basic.php'),(3545,'wp-content/plugins/wordfence/views/scanner/options-group-general.php'),(3546,'wp-content/plugins/wordfence/views/scanner/options-group-performance.php'),(3547,'wp-content/plugins/wordfence/views/scanner/options-group-scan-schedule.php'),(3548,'wp-content/plugins/wordfence/views/scanner/scan-failed.php'),(3549,'wp-content/plugins/wordfence/views/scanner/scan-progress-detailed.php'),(3550,'wp-content/plugins/wordfence/views/scanner/scan-progress-element.php'),(3551,'wp-content/plugins/wordfence/views/scanner/scan-progress.php'),(3552,'wp-content/plugins/wordfence/views/scanner/scan-results.php'),(3553,'wp-content/plugins/wordfence/views/scanner/scan-scheduling.php'),(3554,'wp-content/plugins/wordfence/views/scanner/scan-starter.php'),(3555,'wp-content/plugins/wordfence/views/scanner/scan-type.php'),(3556,'wp-content/plugins/wordfence/views/scanner/scanner-status.php'),(3557,'wp-content/plugins/wordfence/views/scanner/site-cleaning-beta-sigs.php'),(3558,'wp-content/plugins/wordfence/views/scanner/site-cleaning-bottom.php'),(3559,'wp-content/plugins/wordfence/views/scanner/site-cleaning-high-sense.php'),(3560,'wp-content/plugins/wordfence/views/scanner/site-cleaning.php'),(3561,'wp-content/plugins/wordfence/views/tools/options-group-2fa.php'),(3562,'wp-content/plugins/wordfence/views/tools/options-group-comment-spam.php'),(3563,'wp-content/plugins/wordfence/views/tools/options-group-live-traffic.php'),(3564,'wp-content/plugins/wordfence/views/waf/debug.php'),(3565,'wp-content/plugins/wordfence/views/waf/firewall-status.php'),(3566,'wp-content/plugins/wordfence/views/waf/option-rate-limit.php'),(3567,'wp-content/plugins/wordfence/views/waf/option-rules.php'),(3568,'wp-content/plugins/wordfence/views/waf/option-whitelist.php'),(3569,'wp-content/plugins/wordfence/views/waf/options-group-advanced-firewall.php'),(3570,'wp-content/plugins/wordfence/views/waf/options-group-basic-firewall.php'),(3571,'wp-content/plugins/wordfence/views/waf/options-group-brute-force.php'),(3572,'wp-content/plugins/wordfence/views/waf/options-group-rate-limiting.php'),(3573,'wp-content/plugins/wordfence/views/waf/options-group-whitelisted.php'),(3574,'wp-content/plugins/wordfence/views/waf/status-tooltip-learning-mode.php'),(3575,'wp-content/plugins/wordfence/views/waf/waf-install-manual.php'),(3576,'wp-content/plugins/wordfence/views/waf/waf-install-success.php'),(3577,'wp-content/plugins/wordfence/views/waf/waf-install.php'),(3578,'wp-content/plugins/wordfence/views/waf/waf-modal-wrapper.php'),(3579,'wp-content/plugins/wordfence/views/waf/waf-uninstall-success.php'),(3580,'wp-content/plugins/wordfence/views/waf/waf-uninstall.php'),(3581,'wp-content/plugins/wordfence/waf/bootstrap.php'),(3582,'wp-content/plugins/wordfence/waf/wfWAFGeoIP.php'),(3583,'wp-content/plugins/wordfence/waf/wfWAFIPBlocksController.php'),(3584,'wp-content/plugins/wordfence/waf/wfWAFUserIPRange.php'),(3585,'wp-content/plugins/wordfence/wordfence.php'),(3586,'wp-content/plugins/wp-db-backup/LICENSE'),(3587,'wp-content/plugins/wp-db-backup/README.markdown'),(3588,'wp-content/plugins/wp-db-backup/readme.txt'),(3589,'wp-content/plugins/wp-db-backup/wp-db-backup-ar.mo'),(3590,'wp-content/plugins/wp-db-backup/wp-db-backup-ar.po'),(3591,'wp-content/plugins/wp-db-backup/wp-db-backup-ca.mo'),(3592,'wp-content/plugins/wp-db-backup/wp-db-backup-ca.po'),(3593,'wp-content/plugins/wp-db-backup/wp-db-backup-de_DE.mo'),(3594,'wp-content/plugins/wp-db-backup/wp-db-backup-de_DE.po'),(3595,'wp-content/plugins/wp-db-backup/wp-db-backup-el.mo'),(3596,'wp-content/plugins/wp-db-backup/wp-db-backup-el.po'),(3597,'wp-content/plugins/wp-db-backup/wp-db-backup-es_ES.mo'),(3598,'wp-content/plugins/wp-db-backup/wp-db-backup-es_ES.po'),(3599,'wp-content/plugins/wp-db-backup/wp-db-backup-fa_IR.mo'),(3600,'wp-content/plugins/wp-db-backup/wp-db-backup-fa_IR.po'),(3601,'wp-content/plugins/wp-db-backup/wp-db-backup-fr_FR.mo'),(3602,'wp-content/plugins/wp-db-backup/wp-db-backup-fr_FR.po'),(3603,'wp-content/plugins/wp-db-backup/wp-db-backup-it_IT.mo'),(3604,'wp-content/plugins/wp-db-backup/wp-db-backup-it_IT.po'),(3605,'wp-content/plugins/wp-db-backup/wp-db-backup-ja.mo'),(3606,'wp-content/plugins/wp-db-backup/wp-db-backup-ja.po'),(3607,'wp-content/plugins/wp-db-backup/wp-db-backup-ko_KR.mo'),(3608,'wp-content/plugins/wp-db-backup/wp-db-backup-ko_KR.po'),(3609,'wp-content/plugins/wp-db-backup/wp-db-backup-nb_NO.mo'),(3610,'wp-content/plugins/wp-db-backup/wp-db-backup-nb_NO.po'),(3611,'wp-content/plugins/wp-db-backup/wp-db-backup-pt_BR.mo'),(3612,'wp-content/plugins/wp-db-backup/wp-db-backup-pt_BR.po'),(3613,'wp-content/plugins/wp-db-backup/wp-db-backup-ru_RU.mo'),(3614,'wp-content/plugins/wp-db-backup/wp-db-backup-ru_RU.po'),(3615,'wp-content/plugins/wp-db-backup/wp-db-backup-sv_SE.mo'),(3616,'wp-content/plugins/wp-db-backup/wp-db-backup-sv_SE.po'),(3617,'wp-content/plugins/wp-db-backup/wp-db-backup-tr_TR.mo'),(3618,'wp-content/plugins/wp-db-backup/wp-db-backup-tr_TR.po'),(3619,'wp-content/plugins/wp-db-backup/wp-db-backup-zh_CN.mo'),(3620,'wp-content/plugins/wp-db-backup/wp-db-backup-zh_CN.po'),(3621,'wp-content/plugins/wp-db-backup/wp-db-backup.php'),(3622,'wp-content/plugins/wp-db-backup/wp-db-backup.pot'),(3623,'wp-content/plugins/wp-editor/classes/WPEditor.php'),(3624,'wp-content/plugins/wp-editor/classes/WPEditorAdmin.php'),(3625,'wp-content/plugins/wp-editor/classes/WPEditorAjax.php'),(3626,'wp-content/plugins/wp-editor/classes/WPEditorBrowser.php'),(3627,'wp-content/plugins/wp-editor/classes/WPEditorException.php'),(3628,'wp-content/plugins/wp-editor/classes/WPEditorLog.php'),(3629,'wp-content/plugins/wp-editor/classes/WPEditorPlugins.php'),(3630,'wp-content/plugins/wp-editor/classes/WPEditorPosts.php'),(3631,'wp-content/plugins/wp-editor/classes/WPEditorSetting.php'),(3632,'wp-content/plugins/wp-editor/classes/WPEditorThemes.php'),(3633,'wp-content/plugins/wp-editor/extensions/attrchange/attrchange.js'),(3634,'wp-content/plugins/wp-editor/extensions/chosen/css/chosen-sprite.png'),(3635,'wp-content/plugins/wp-editor/extensions/chosen/css/chosen-sprite@2x.png'),(3636,'wp-content/plugins/wp-editor/extensions/chosen/css/chosen.min.css'),(3637,'wp-content/plugins/wp-editor/extensions/chosen/js/chosen.jquery.min.js'),(3638,'wp-content/plugins/wp-editor/extensions/codemirror/css/codemirror.css'),(3639,'wp-content/plugins/wp-editor/extensions/codemirror/css/dialog.css'),(3640,'wp-content/plugins/wp-editor/extensions/codemirror/css/fullscreen.css'),(3641,'wp-content/plugins/wp-editor/extensions/codemirror/js/clike.js'),(3642,'wp-content/plugins/wp-editor/extensions/codemirror/js/codemirror.js'),(3643,'wp-content/plugins/wp-editor/extensions/codemirror/js/css.js'),(3644,'wp-content/plugins/wp-editor/extensions/codemirror/js/dialog.js'),(3645,'wp-content/plugins/wp-editor/extensions/codemirror/js/foldcode.js'),(3646,'wp-content/plugins/wp-editor/extensions/codemirror/js/fullscreen.js'),(3647,'wp-content/plugins/wp-editor/extensions/codemirror/js/htmlembedded.js'),(3648,'wp-content/plugins/wp-editor/extensions/codemirror/js/htmlmixed.js'),(3649,'wp-content/plugins/wp-editor/extensions/codemirror/js/javascript.js'),(3650,'wp-content/plugins/wp-editor/extensions/codemirror/js/mustache.js'),(3651,'wp-content/plugins/wp-editor/extensions/codemirror/js/php.js'),(3652,'wp-content/plugins/wp-editor/extensions/codemirror/js/search.js'),(3653,'wp-content/plugins/wp-editor/extensions/codemirror/js/searchcursor.js'),(3654,'wp-content/plugins/wp-editor/extensions/codemirror/js/xml.js'),(3655,'wp-content/plugins/wp-editor/extensions/codemirror/theme/theme.css'),(3656,'wp-content/plugins/wp-editor/extensions/codemirror/themes/themes.css'),(3657,'wp-content/plugins/wp-editor/extensions/fancybox/images/blank.gif'),(3658,'wp-content/plugins/wp-editor/extensions/fancybox/images/fancy_close.png'),(3659,'wp-content/plugins/wp-editor/extensions/fancybox/images/fancy_loading.png'),(3660,'wp-content/plugins/wp-editor/extensions/fancybox/images/fancy_nav_left.png'),(3661,'wp-content/plugins/wp-editor/extensions/fancybox/images/fancy_nav_right.png'),(3662,'wp-content/plugins/wp-editor/extensions/fancybox/images/fancy_shadow_e.png'),(3663,'wp-content/plugins/wp-editor/extensions/fancybox/images/fancy_shadow_n.png'),(3664,'wp-content/plugins/wp-editor/extensions/fancybox/images/fancy_shadow_ne.png'),(3665,'wp-content/plugins/wp-editor/extensions/fancybox/images/fancy_shadow_nw.png'),(3666,'wp-content/plugins/wp-editor/extensions/fancybox/images/fancy_shadow_s.png'),(3667,'wp-content/plugins/wp-editor/extensions/fancybox/images/fancy_shadow_se.png'),(3668,'wp-content/plugins/wp-editor/extensions/fancybox/images/fancy_shadow_sw.png'),(3669,'wp-content/plugins/wp-editor/extensions/fancybox/images/fancy_shadow_w.png'),(3670,'wp-content/plugins/wp-editor/extensions/fancybox/images/fancy_title_left.png'),(3671,'wp-content/plugins/wp-editor/extensions/fancybox/images/fancy_title_main.png'),(3672,'wp-content/plugins/wp-editor/extensions/fancybox/images/fancy_title_over.png'),(3673,'wp-content/plugins/wp-editor/extensions/fancybox/images/fancy_title_right.png'),(3674,'wp-content/plugins/wp-editor/extensions/fancybox/images/fancybox-x.png'),(3675,'wp-content/plugins/wp-editor/extensions/fancybox/images/fancybox-y.png'),(3676,'wp-content/plugins/wp-editor/extensions/fancybox/images/fancybox.png'),(3677,'wp-content/plugins/wp-editor/extensions/fancybox/jquery.fancybox-1.3.4.css'),(3678,'wp-content/plugins/wp-editor/extensions/fancybox/js/jquery.fancybox-1.3.4.pack.js'),(3679,'wp-content/plugins/wp-editor/extensions/nivo-lightbox/css/nivo-lightbox.css'),(3680,'wp-content/plugins/wp-editor/extensions/nivo-lightbox/js/nivo-lightbox.min.js'),(3681,'wp-content/plugins/wp-editor/extensions/nivo-lightbox/themes/default/close.png'),(3682,'wp-content/plugins/wp-editor/extensions/nivo-lightbox/themes/default/close@2x.png'),(3683,'wp-content/plugins/wp-editor/extensions/nivo-lightbox/themes/default/default.css'),(3684,'wp-content/plugins/wp-editor/extensions/nivo-lightbox/themes/default/loading.gif'),(3685,'wp-content/plugins/wp-editor/extensions/nivo-lightbox/themes/default/loading@2x.gif'),(3686,'wp-content/plugins/wp-editor/extensions/nivo-lightbox/themes/default/next.png'),(3687,'wp-content/plugins/wp-editor/extensions/nivo-lightbox/themes/default/next@2x.png'),(3688,'wp-content/plugins/wp-editor/extensions/nivo-lightbox/themes/default/prev.png'),(3689,'wp-content/plugins/wp-editor/extensions/nivo-lightbox/themes/default/prev@2x.png'),(3690,'wp-content/plugins/wp-editor/images/css.png'),(3691,'wp-content/plugins/wp-editor/images/folder.png'),(3692,'wp-content/plugins/wp-editor/images/gif.png'),(3693,'wp-content/plugins/wp-editor/images/htm.png'),(3694,'wp-content/plugins/wp-editor/images/html.png'),(3695,'wp-content/plugins/wp-editor/images/jpeg.png'),(3696,'wp-content/plugins/wp-editor/images/jpg.png'),(3697,'wp-content/plugins/wp-editor/images/js.png'),(3698,'wp-content/plugins/wp-editor/images/less.png'),(3699,'wp-content/plugins/wp-editor/images/loader.gif'),(3700,'wp-content/plugins/wp-editor/images/php.png'),(3701,'wp-content/plugins/wp-editor/images/png.png'),(3702,'wp-content/plugins/wp-editor/images/po.png'),(3703,'wp-content/plugins/wp-editor/images/pot.png'),(3704,'wp-content/plugins/wp-editor/images/sql.png'),(3705,'wp-content/plugins/wp-editor/images/txt.png'),(3706,'wp-content/plugins/wp-editor/images/wpeditor_logo_16.png'),(3707,'wp-content/plugins/wp-editor/images/wpeditor_logo_32.png'),(3708,'wp-content/plugins/wp-editor/images/xml.png'),(3709,'wp-content/plugins/wp-editor/images/xml.psd'),(3710,'wp-content/plugins/wp-editor/js/posts-jquery.js'),(3711,'wp-content/plugins/wp-editor/js/quicktags.js'),(3712,'wp-content/plugins/wp-editor/js/wpeditor.js'),(3713,'wp-content/plugins/wp-editor/readme.txt'),(3714,'wp-content/plugins/wp-editor/screenshot-1.png'),(3715,'wp-content/plugins/wp-editor/screenshot-2.png'),(3716,'wp-content/plugins/wp-editor/screenshot-3.png'),(3717,'wp-content/plugins/wp-editor/screenshot-4.png'),(3718,'wp-content/plugins/wp-editor/screenshot-5.png'),(3719,'wp-content/plugins/wp-editor/sql/database.sql'),(3720,'wp-content/plugins/wp-editor/sql/uninstall.sql'),(3721,'wp-content/plugins/wp-editor/uninstall.php'),(3722,'wp-content/plugins/wp-editor/views/OLDsettings.php'),(3723,'wp-content/plugins/wp-editor/views/plugin-editor.php'),(3724,'wp-content/plugins/wp-editor/views/settings.php'),(3725,'wp-content/plugins/wp-editor/views/theme-editor.php'),(3726,'wp-content/plugins/wp-editor/wpeditor.css'),(3727,'wp-content/plugins/wp-editor/wpeditor.php'),(3728,'wp-content/plugins/wp-media-folder/assets/fonts/Material-Design-Iconic-Font.svg'),(3729,'wp-content/plugins/wp-media-folder/assets/fonts/flexslider-icon.svg'),(3730,'wp-content/plugins/wp-media-folder/assets/fonts/icomoon.svg'),(3731,'wp-content/plugins/wp-media-folder/assets/js/assign_image_folder_tree.js'),(3732,'wp-content/plugins/wp-media-folder/assets/js/display-gallery/admin_gallery.js'),(3733,'wp-content/plugins/wp-media-folder/assets/js/display-gallery/flexslider/jquery.flexslider.js'),(3734,'wp-content/plugins/wp-media-folder/assets/js/display-gallery/imagesloaded.pkgd.min.js'),(3735,'wp-content/plugins/wp-media-folder/assets/js/display-gallery/jquery.magnific-popup.min.js'),(3736,'wp-content/plugins/wp-media-folder/assets/js/display-gallery/site_gallery.js'),(3737,'wp-content/plugins/wp-media-folder/assets/js/duplicate-image.js'),(3738,'wp-content/plugins/wp-media-folder/assets/js/folder_tree.js'),(3739,'wp-content/plugins/wp-media-folder/assets/js/gif/jquery.spin.js'),(3740,'wp-content/plugins/wp-media-folder/assets/js/gif/play_gif.js'),(3741,'wp-content/plugins/wp-media-folder/assets/js/gif/spin.js'),(3742,'wp-content/plugins/wp-media-folder/assets/js/import_category.js'),(3743,'wp-content/plugins/wp-media-folder/assets/js/import_custom_order.js'),(3744,'wp-content/plugins/wp-media-folder/assets/js/import_size_filetype.js'),(3745,'wp-content/plugins/wp-media-folder/assets/js/jquery.form.js'),(3746,'wp-content/plugins/wp-media-folder/assets/js/jquery.qtip.min.js'),(3747,'wp-content/plugins/wp-media-folder/assets/js/jquery.textselect.js'),(3748,'wp-content/plugins/wp-media-folder/assets/js/media-filters.js'),(3749,'wp-content/plugins/wp-media-folder/assets/js/modal-dialog/material.min.js'),(3750,'wp-content/plugins/wp-media-folder/assets/js/modal-dialog/mdl-jquery-modal-dialog.js'),(3751,'wp-content/plugins/wp-media-folder/assets/js/open_link_dialog.js'),(3752,'wp-content/plugins/wp-media-folder/assets/js/pdf-embed/all-pdfemb-basic.min.js'),(3753,'wp-content/plugins/wp-media-folder/assets/js/pdf-embed/compatibility.js'),(3754,'wp-content/plugins/wp-media-folder/assets/js/pdf-embed/pdf.js'),(3755,'wp-content/plugins/wp-media-folder/assets/js/pdf-embed/pdf.worker.min.js'),(3756,'wp-content/plugins/wp-media-folder/assets/js/regenerate_thumbnails.js'),(3757,'wp-content/plugins/wp-media-folder/assets/js/replace-image.js'),(3758,'wp-content/plugins/wp-media-folder/assets/js/script-option.js'),(3759,'wp-content/plugins/wp-media-folder/assets/js/script.js'),(3760,'wp-content/plugins/wp-media-folder/assets/js/single-file.js'),(3761,'wp-content/plugins/wp-media-folder/assets/js/single_image_lightbox/image_lightbox.js'),(3762,'wp-content/plugins/wp-media-folder/assets/js/single_image_lightbox/single_image_lightbox.js'),(3763,'wp-content/plugins/wp-media-folder/assets/js/snackbar.js'),(3764,'wp-content/plugins/wp-media-folder/assets/js/sync_media/folder_tree_categories.js'),(3765,'wp-content/plugins/wp-media-folder/assets/js/sync_media/folder_tree_sync.js'),(3766,'wp-content/plugins/wp-media-folder/assets/js/tree_users_media.js'),(3767,'wp-content/plugins/wp-media-folder/assets/js/wpmf-display-media.js'),(3768,'wp-content/plugins/wp-media-folder/class/ForceUTF8/Encoding.php'),(3769,'wp-content/plugins/wp-media-folder/class/class-background-folder.php'),(3770,'wp-content/plugins/wp-media-folder/class/class-display-gallery.php'),(3771,'wp-content/plugins/wp-media-folder/class/class-duplicate-file.php'),(3772,'wp-content/plugins/wp-media-folder/class/class-filter-size.php'),(3773,'wp-content/plugins/wp-media-folder/class/class-helper.php'),(3774,'wp-content/plugins/wp-media-folder/class/class-image-watermark.php'),(3775,'wp-content/plugins/wp-media-folder/class/class-load-gif.php'),(3776,'wp-content/plugins/wp-media-folder/class/class-media-folder.php'),(3777,'wp-content/plugins/wp-media-folder/class/class-media-rename.php'),(3778,'wp-content/plugins/wp-media-folder/class/class-orderby-media.php'),(3779,'wp-content/plugins/wp-media-folder/class/class-pdf-embed.php'),(3780,'wp-content/plugins/wp-media-folder/class/class-replace-file.php'),(3781,'wp-content/plugins/wp-media-folder/class/class-single-file.php'),(3782,'wp-content/plugins/wp-media-folder/class/class-single-lightbox.php'),(3783,'wp-content/plugins/wp-media-folder/class/class-wp-folder-option.php'),(3784,'wp-content/plugins/wp-media-folder/class/pages/files_folders.php'),(3785,'wp-content/plugins/wp-media-folder/class/pages/ftp_import.php'),(3786,'wp-content/plugins/wp-media-folder/class/pages/gallery.php'),(3787,'wp-content/plugins/wp-media-folder/class/pages/general.php'),(3788,'wp-content/plugins/wp-media-folder/class/pages/image_compression.php'),(3789,'wp-content/plugins/wp-media-folder/class/pages/jutranslation.php'),(3790,'wp-content/plugins/wp-media-folder/class/pages/media_access.php'),(3791,'wp-content/plugins/wp-media-folder/class/pages/menus.php'),(3792,'wp-content/plugins/wp-media-folder/class/pages/regenerate_thumbnails.php'),(3793,'wp-content/plugins/wp-media-folder/class/pages/saved_info.php'),(3794,'wp-content/plugins/wp-media-folder/class/pages/submit_button.php'),(3795,'wp-content/plugins/wp-media-folder/class/pages/sync_media.php'),(3796,'wp-content/plugins/wp-media-folder/class/pages/wp-folder-options.php'),(3797,'wp-content/plugins/wp-media-folder/jutranslation/assets/images/radio.svg'),(3798,'wp-content/plugins/wp-media-folder/jutranslation/assets/js/jutranslation.js'),(3799,'wp-content/plugins/wp-media-folder/jutranslation/jutranslation.php'),(3800,'wp-content/plugins/wp-media-folder/juupdater/js/check_token.js'),(3801,'wp-content/plugins/wp-media-folder/juupdater/js/ju_update_core.js'),(3802,'wp-content/plugins/wp-media-folder/juupdater/juupdater.php'),(3803,'wp-content/plugins/wp-media-folder/themes-gallery/gallery-default.php'),(3804,'wp-content/plugins/wp-media-folder/themes-gallery/gallery-mansory.php'),(3805,'wp-content/plugins/wp-media-folder/themes-gallery/gallery-portfolio.php'),(3806,'wp-content/plugins/wp-media-folder/themes-gallery/gallery-slider.php'),(3807,'wp-content/plugins/wp-media-folder/wp-media-folder.php'),(3808,'wp-content/plugins/wp-mobile-detect/mobile-detect.php'),(3809,'wp-content/plugins/wp-mobile-detect/readme.txt'),(3810,'wp-content/plugins/wp-mobile-detect/wp-mobile-detect.php'),(3811,'wp-content/plugins/wp-simple-booking-calendar-premium/controllers/calendar/calendar-delete.php'),(3812,'wp-content/plugins/wp-simple-booking-calendar-premium/controllers/calendar/calendar-save.php'),(3813,'wp-content/plugins/wp-simple-booking-calendar-premium/controllers/calendar/legend-delete.php'),(3814,'wp-content/plugins/wp-simple-booking-calendar-premium/controllers/calendar/legend-save.php'),(3815,'wp-content/plugins/wp-simple-booking-calendar-premium/controllers/calendar/legend-set-default.php'),(3816,'wp-content/plugins/wp-simple-booking-calendar-premium/controllers/calendar/legend-set-order.php'),(3817,'wp-content/plugins/wp-simple-booking-calendar-premium/controllers/calendar/legend-set-visibility.php'),(3818,'wp-content/plugins/wp-simple-booking-calendar-premium/controllers/default-legend/legend-delete.php'),(3819,'wp-content/plugins/wp-simple-booking-calendar-premium/controllers/default-legend/legend-save.php'),(3820,'wp-content/plugins/wp-simple-booking-calendar-premium/controllers/default-legend/legend-set-default.php'),(3821,'wp-content/plugins/wp-simple-booking-calendar-premium/controllers/default-legend/legend-set-order.php'),(3822,'wp-content/plugins/wp-simple-booking-calendar-premium/controllers/default-legend/legend-set-visibility.php'),(3823,'wp-content/plugins/wp-simple-booking-calendar-premium/controllers/settings/save-settings.php'),(3824,'wp-content/plugins/wp-simple-booking-calendar-premium/include/calendarAdmin.php'),(3825,'wp-content/plugins/wp-simple-booking-calendar-premium/include/calendarAjax.php'),(3826,'wp-content/plugins/wp-simple-booking-calendar-premium/include/calendarCore.php'),(3827,'wp-content/plugins/wp-simple-booking-calendar-premium/include/calendarFunctions.php'),(3828,'wp-content/plugins/wp-simple-booking-calendar-premium/include/calendarLanguages.php'),(3829,'wp-content/plugins/wp-simple-booking-calendar-premium/include/createTables.php'),(3830,'wp-content/plugins/wp-simple-booking-calendar-premium/include/pluginShortcode.php'),(3831,'wp-content/plugins/wp-simple-booking-calendar-premium/include/pluginShortcodeButton.php'),(3832,'wp-content/plugins/wp-simple-booking-calendar-premium/include/pluginStructure.php'),(3833,'wp-content/plugins/wp-simple-booking-calendar-premium/include/pluginWidget.php'),(3834,'wp-content/plugins/wp-simple-booking-calendar-premium/js/colorpicker.js'),(3835,'wp-content/plugins/wp-simple-booking-calendar-premium/js/custom-select.js'),(3836,'wp-content/plugins/wp-simple-booking-calendar-premium/js/jquery-1.10.2.min.js'),(3837,'wp-content/plugins/wp-simple-booking-calendar-premium/js/wpsbc-admin.js'),(3838,'wp-content/plugins/wp-simple-booking-calendar-premium/js/wpsbc.js'),(3839,'wp-content/plugins/wp-simple-booking-calendar-premium/views/calendar/calendars.php'),(3840,'wp-content/plugins/wp-simple-booking-calendar-premium/views/calendar/edit-calendar.php'),(3841,'wp-content/plugins/wp-simple-booking-calendar-premium/views/calendar/edit-legend-item.php'),(3842,'wp-content/plugins/wp-simple-booking-calendar-premium/views/calendar/edit-legend.php'),(3843,'wp-content/plugins/wp-simple-booking-calendar-premium/views/default-legend/edit-legend-item.php'),(3844,'wp-content/plugins/wp-simple-booking-calendar-premium/views/default-legend/edit-legend.php'),(3845,'wp-content/plugins/wp-simple-booking-calendar-premium/views/settings/settings.php'),(3846,'wp-content/plugins/wp-simple-booking-calendar-premium/wp-simple-booking-calendar.php'),(3847,'wp-content/themes/genesis/404.php'),(3848,'wp-content/themes/genesis/comments.php'),(3849,'wp-content/themes/genesis/config/contributors.php'),(3850,'wp-content/themes/genesis/footer.php'),(3851,'wp-content/themes/genesis/functions.php'),(3852,'wp-content/themes/genesis/header.php'),(3853,'wp-content/themes/genesis/index.php'),(3854,'wp-content/themes/genesis/lib/admin/admin-functions.php'),(3855,'wp-content/themes/genesis/lib/admin/cpt-archive-settings.php'),(3856,'wp-content/themes/genesis/lib/admin/customizer.php'),(3857,'wp-content/themes/genesis/lib/admin/import-export.php'),(3858,'wp-content/themes/genesis/lib/admin/inpost-metaboxes.php'),(3859,'wp-content/themes/genesis/lib/admin/menu.php'),(3860,'wp-content/themes/genesis/lib/admin/seo-settings.php'),(3861,'wp-content/themes/genesis/lib/admin/term-meta.php'),(3862,'wp-content/themes/genesis/lib/admin/theme-settings.php'),(3863,'wp-content/themes/genesis/lib/admin/use-child-theme.php'),(3864,'wp-content/themes/genesis/lib/admin/user-meta.php'),(3865,'wp-content/themes/genesis/lib/admin/whats-new.php'),(3866,'wp-content/themes/genesis/lib/classes/admin.php'),(3867,'wp-content/themes/genesis/lib/classes/breadcrumb.php'),(3868,'wp-content/themes/genesis/lib/classes/class-genesis-admin-meta-boxes.php'),(3869,'wp-content/themes/genesis/lib/classes/class-genesis-contributor.php'),(3870,'wp-content/themes/genesis/lib/classes/class-genesis-contributors.php'),(3871,'wp-content/themes/genesis/lib/classes/class-genesis-script-loader.php'),(3872,'wp-content/themes/genesis/lib/classes/cli.php'),(3873,'wp-content/themes/genesis/lib/classes/sanitization.php'),(3874,'wp-content/themes/genesis/lib/css/fonts/genesis-icon.svg'),(3875,'wp-content/themes/genesis/lib/css/load-styles.php'),(3876,'wp-content/themes/genesis/lib/framework.php'),(3877,'wp-content/themes/genesis/lib/functions/breadcrumb.php'),(3878,'wp-content/themes/genesis/lib/functions/compat.php'),(3879,'wp-content/themes/genesis/lib/functions/deprecated.php'),(3880,'wp-content/themes/genesis/lib/functions/feed.php'),(3881,'wp-content/themes/genesis/lib/functions/formatting.php'),(3882,'wp-content/themes/genesis/lib/functions/general.php'),(3883,'wp-content/themes/genesis/lib/functions/head.php'),(3884,'wp-content/themes/genesis/lib/functions/image.php'),(3885,'wp-content/themes/genesis/lib/functions/layout.php'),(3886,'wp-content/themes/genesis/lib/functions/markup.php'),(3887,'wp-content/themes/genesis/lib/functions/menu.php'),(3888,'wp-content/themes/genesis/lib/functions/options.php'),(3889,'wp-content/themes/genesis/lib/functions/seo.php'),(3890,'wp-content/themes/genesis/lib/functions/toolbar.php'),(3891,'wp-content/themes/genesis/lib/functions/upgrade.php'),(3892,'wp-content/themes/genesis/lib/functions/widgetize.php'),(3893,'wp-content/themes/genesis/lib/init.php'),(3894,'wp-content/themes/genesis/lib/js/admin.js'),(3895,'wp-content/themes/genesis/lib/js/admin.min.js'),(3896,'wp-content/themes/genesis/lib/js/drop-down-menu.js'),(3897,'wp-content/themes/genesis/lib/js/html5shiv.js'),(3898,'wp-content/themes/genesis/lib/js/html5shiv.min.js'),(3899,'wp-content/themes/genesis/lib/js/load-scripts.php'),(3900,'wp-content/themes/genesis/lib/js/menu/superfish.args.js'),(3901,'wp-content/themes/genesis/lib/js/menu/superfish.args.min.js'),(3902,'wp-content/themes/genesis/lib/js/menu/superfish.compat.js'),(3903,'wp-content/themes/genesis/lib/js/menu/superfish.compat.min.js'),(3904,'wp-content/themes/genesis/lib/js/menu/superfish.js'),(3905,'wp-content/themes/genesis/lib/js/menu/superfish.min.js'),(3906,'wp-content/themes/genesis/lib/js/skip-links.js'),(3907,'wp-content/themes/genesis/lib/shortcodes/footer.php'),(3908,'wp-content/themes/genesis/lib/shortcodes/post.php'),(3909,'wp-content/themes/genesis/lib/structure/archive.php'),(3910,'wp-content/themes/genesis/lib/structure/comments.php'),(3911,'wp-content/themes/genesis/lib/structure/footer.php'),(3912,'wp-content/themes/genesis/lib/structure/header.php'),(3913,'wp-content/themes/genesis/lib/structure/layout.php'),(3914,'wp-content/themes/genesis/lib/structure/loops.php'),(3915,'wp-content/themes/genesis/lib/structure/menu.php'),(3916,'wp-content/themes/genesis/lib/structure/post.php'),(3917,'wp-content/themes/genesis/lib/structure/search.php'),(3918,'wp-content/themes/genesis/lib/structure/sidebar.php'),(3919,'wp-content/themes/genesis/lib/structure/xhtml.php'),(3920,'wp-content/themes/genesis/lib/views/help/cpt-archive-archive.php'),(3921,'wp-content/themes/genesis/lib/views/help/cpt-archive-layout.php'),(3922,'wp-content/themes/genesis/lib/views/help/cpt-archive-seo.php'),(3923,'wp-content/themes/genesis/lib/views/help/genesis-archives.php'),(3924,'wp-content/themes/genesis/lib/views/help/genesis-blog.php'),(3925,'wp-content/themes/genesis/lib/views/help/genesis-breadcrumbs.php'),(3926,'wp-content/themes/genesis/lib/views/help/genesis-comments.php'),(3927,'wp-content/themes/genesis/lib/views/help/genesis-feeds.php'),(3928,'wp-content/themes/genesis/lib/views/help/genesis-header.php'),(3929,'wp-content/themes/genesis/lib/views/help/genesis-home.php'),(3930,'wp-content/themes/genesis/lib/views/help/genesis-information.php'),(3931,'wp-content/themes/genesis/lib/views/help/genesis-inpost-seo.php'),(3932,'wp-content/themes/genesis/lib/views/help/genesis-layout.php'),(3933,'wp-content/themes/genesis/lib/views/help/genesis-navigation.php'),(3934,'wp-content/themes/genesis/lib/views/help/genesis-scripts.php'),(3935,'wp-content/themes/genesis/lib/views/help/genesis-theme-settings.php'),(3936,'wp-content/themes/genesis/lib/views/help/import-export-export.php'),(3937,'wp-content/themes/genesis/lib/views/help/import-export-general.php'),(3938,'wp-content/themes/genesis/lib/views/help/import-export-import.php'),(3939,'wp-content/themes/genesis/lib/views/help/seo-dochead.php'),(3940,'wp-content/themes/genesis/lib/views/help/seo-doctitle.php'),(3941,'wp-content/themes/genesis/lib/views/help/seo-homepage.php'),(3942,'wp-content/themes/genesis/lib/views/help/seo-robots.php'),(3943,'wp-content/themes/genesis/lib/views/help/seo-settings.php'),(3944,'wp-content/themes/genesis/lib/views/meta-boxes/genesis-cpt-archives-layout-settings.php'),(3945,'wp-content/themes/genesis/lib/views/meta-boxes/genesis-cpt-archives-seo-settings.php'),(3946,'wp-content/themes/genesis/lib/views/meta-boxes/genesis-cpt-archives-settings.php'),(3947,'wp-content/themes/genesis/lib/views/meta-boxes/genesis-inpost-layout-box.php'),(3948,'wp-content/themes/genesis/lib/views/meta-boxes/genesis-inpost-scripts-box.php'),(3949,'wp-content/themes/genesis/lib/views/meta-boxes/genesis-inpost-seo-box.php'),(3950,'wp-content/themes/genesis/lib/views/meta-boxes/genesis-seo-settings-dochead.php'),(3951,'wp-content/themes/genesis/lib/views/meta-boxes/genesis-seo-settings-homepage.php'),(3952,'wp-content/themes/genesis/lib/views/meta-boxes/genesis-seo-settings-robots.php'),(3953,'wp-content/themes/genesis/lib/views/meta-boxes/genesis-seo-settings-sitewide.php'),(3954,'wp-content/themes/genesis/lib/views/meta-boxes/genesis-term-meta-layout.php'),(3955,'wp-content/themes/genesis/lib/views/meta-boxes/genesis-term-meta-seo.php'),(3956,'wp-content/themes/genesis/lib/views/meta-boxes/genesis-term-meta-settings.php'),(3957,'wp-content/themes/genesis/lib/views/meta-boxes/genesis-theme-settings-blogpage.php'),(3958,'wp-content/themes/genesis/lib/views/meta-boxes/genesis-theme-settings-breadcrumb.php'),(3959,'wp-content/themes/genesis/lib/views/meta-boxes/genesis-theme-settings-comments.php'),(3960,'wp-content/themes/genesis/lib/views/meta-boxes/genesis-theme-settings-feeds.php'),(3961,'wp-content/themes/genesis/lib/views/meta-boxes/genesis-theme-settings-header.php'),(3962,'wp-content/themes/genesis/lib/views/meta-boxes/genesis-theme-settings-layout.php'),(3963,'wp-content/themes/genesis/lib/views/meta-boxes/genesis-theme-settings-nav.php'),(3964,'wp-content/themes/genesis/lib/views/meta-boxes/genesis-theme-settings-posts.php'),(3965,'wp-content/themes/genesis/lib/views/meta-boxes/genesis-theme-settings-scripts.php'),(3966,'wp-content/themes/genesis/lib/views/meta-boxes/genesis-theme-settings-style-selector.php'),(3967,'wp-content/themes/genesis/lib/views/meta-boxes/genesis-theme-settings-version.php'),(3968,'wp-content/themes/genesis/lib/views/meta-boxes/genesis-user-author.php'),(3969,'wp-content/themes/genesis/lib/views/meta-boxes/genesis-user-layout.php'),(3970,'wp-content/themes/genesis/lib/views/meta-boxes/genesis-user-seo.php'),(3971,'wp-content/themes/genesis/lib/views/meta-boxes/genesis-user-settings.php'),(3972,'wp-content/themes/genesis/lib/views/misc/genesis-admin-boxes-holder.php'),(3973,'wp-content/themes/genesis/lib/views/misc/use-child-theme-notice.php'),(3974,'wp-content/themes/genesis/lib/views/pages/genesis-admin-boxes.php'),(3975,'wp-content/themes/genesis/lib/views/pages/genesis-admin-form.php'),(3976,'wp-content/themes/genesis/lib/views/pages/genesis-admin-import-export.php'),(3977,'wp-content/themes/genesis/lib/views/pages/genesis-admin-upgraded.php'),(3978,'wp-content/themes/genesis/lib/widgets/featured-page-widget.php'),(3979,'wp-content/themes/genesis/lib/widgets/featured-post-widget.php'),(3980,'wp-content/themes/genesis/lib/widgets/user-profile-widget.php'),(3981,'wp-content/themes/genesis/lib/widgets/widgets.php'),(3982,'wp-content/themes/genesis/page.php'),(3983,'wp-content/themes/genesis/page_archive.php'),(3984,'wp-content/themes/genesis/page_blog.php'),(3985,'wp-content/themes/genesis/search.php'),(3986,'wp-content/themes/genesis/sidebar-alt.php'),(3987,'wp-content/themes/genesis/sidebar.php'),(3988,'wp-content/themes/genesis/single.php'),(3989,'wp-content/themes/index.php'),(3990,'wp-content/themes/twentyfifteen/404.php'),(3991,'wp-content/themes/twentyfifteen/archive.php'),(3992,'wp-content/themes/twentyfifteen/author-bio.php'),(3993,'wp-content/themes/twentyfifteen/comments.php'),(3994,'wp-content/themes/twentyfifteen/content-link.php'),(3995,'wp-content/themes/twentyfifteen/content-none.php'),(3996,'wp-content/themes/twentyfifteen/content-page.php'),(3997,'wp-content/themes/twentyfifteen/content-search.php'),(3998,'wp-content/themes/twentyfifteen/content.php'),(3999,'wp-content/themes/twentyfifteen/css/editor-style.css'),(4000,'wp-content/themes/twentyfifteen/css/ie.css'),(4001,'wp-content/themes/twentyfifteen/css/ie7.css'),(4002,'wp-content/themes/twentyfifteen/footer.php'),(4003,'wp-content/themes/twentyfifteen/functions.php'),(4004,'wp-content/themes/twentyfifteen/genericons/COPYING.txt'),(4005,'wp-content/themes/twentyfifteen/genericons/Genericons.eot'),(4006,'wp-content/themes/twentyfifteen/genericons/Genericons.svg'),(4007,'wp-content/themes/twentyfifteen/genericons/Genericons.ttf'),(4008,'wp-content/themes/twentyfifteen/genericons/Genericons.woff'),(4009,'wp-content/themes/twentyfifteen/genericons/LICENSE.txt'),(4010,'wp-content/themes/twentyfifteen/genericons/README.md'),(4011,'wp-content/themes/twentyfifteen/genericons/genericons.css'),(4012,'wp-content/themes/twentyfifteen/header.php'),(4013,'wp-content/themes/twentyfifteen/image.php'),(4014,'wp-content/themes/twentyfifteen/inc/back-compat.php'),(4015,'wp-content/themes/twentyfifteen/inc/custom-header.php'),(4016,'wp-content/themes/twentyfifteen/inc/customizer.php'),(4017,'wp-content/themes/twentyfifteen/inc/template-tags.php'),(4018,'wp-content/themes/twentyfifteen/index.php'),(4019,'wp-content/themes/twentyfifteen/js/color-scheme-control.js'),(4020,'wp-content/themes/twentyfifteen/js/customize-preview.js'),(4021,'wp-content/themes/twentyfifteen/js/functions.js'),(4022,'wp-content/themes/twentyfifteen/js/html5.js'),(4023,'wp-content/themes/twentyfifteen/js/keyboard-image-navigation.js'),(4024,'wp-content/themes/twentyfifteen/js/skip-link-focus-fix.js'),(4025,'wp-content/themes/twentyfifteen/page.php'),(4026,'wp-content/themes/twentyfifteen/readme.txt'),(4027,'wp-content/themes/twentyfifteen/rtl.css'),(4028,'wp-content/themes/twentyfifteen/screenshot.png'),(4029,'wp-content/themes/twentyfifteen/search.php'),(4030,'wp-content/themes/twentyfifteen/sidebar.php'),(4031,'wp-content/themes/twentyfifteen/single.php'),(4032,'wp-content/themes/twentyfifteen/style.css'),(4033,'wp-content/themes/twentyseventeen/404.php'),(4034,'wp-content/themes/twentyseventeen/README.txt'),(4035,'wp-content/themes/twentyseventeen/archive.php'),(4036,'wp-content/themes/twentyseventeen/assets/css/colors-dark.css'),(4037,'wp-content/themes/twentyseventeen/assets/css/editor-style.css'),(4038,'wp-content/themes/twentyseventeen/assets/css/ie8.css'),(4039,'wp-content/themes/twentyseventeen/assets/css/ie9.css'),(4040,'wp-content/themes/twentyseventeen/assets/images/coffee.jpg'),(4041,'wp-content/themes/twentyseventeen/assets/images/espresso.jpg'),(4042,'wp-content/themes/twentyseventeen/assets/images/header.jpg'),(4043,'wp-content/themes/twentyseventeen/assets/images/sandwich.jpg'),(4044,'wp-content/themes/twentyseventeen/assets/images/svg-icons.svg'),(4045,'wp-content/themes/twentyseventeen/assets/js/customize-controls.js'),(4046,'wp-content/themes/twentyseventeen/assets/js/customize-preview.js'),(4047,'wp-content/themes/twentyseventeen/assets/js/global.js'),(4048,'wp-content/themes/twentyseventeen/assets/js/html5.js'),(4049,'wp-content/themes/twentyseventeen/assets/js/jquery.scrollTo.js'),(4050,'wp-content/themes/twentyseventeen/assets/js/navigation.js'),(4051,'wp-content/themes/twentyseventeen/assets/js/skip-link-focus-fix.js'),(4052,'wp-content/themes/twentyseventeen/comments.php'),(4053,'wp-content/themes/twentyseventeen/footer.php'),(4054,'wp-content/themes/twentyseventeen/front-page.php'),(4055,'wp-content/themes/twentyseventeen/functions.php'),(4056,'wp-content/themes/twentyseventeen/header.php'),(4057,'wp-content/themes/twentyseventeen/inc/back-compat.php'),(4058,'wp-content/themes/twentyseventeen/inc/color-patterns.php'),(4059,'wp-content/themes/twentyseventeen/inc/custom-header.php'),(4060,'wp-content/themes/twentyseventeen/inc/customizer.php'),(4061,'wp-content/themes/twentyseventeen/inc/icon-functions.php'),(4062,'wp-content/themes/twentyseventeen/inc/template-functions.php'),(4063,'wp-content/themes/twentyseventeen/inc/template-tags.php'),(4064,'wp-content/themes/twentyseventeen/index.php'),(4065,'wp-content/themes/twentyseventeen/page.php'),(4066,'wp-content/themes/twentyseventeen/rtl.css'),(4067,'wp-content/themes/twentyseventeen/screenshot.png'),(4068,'wp-content/themes/twentyseventeen/search.php'),(4069,'wp-content/themes/twentyseventeen/searchform.php'),(4070,'wp-content/themes/twentyseventeen/sidebar.php'),(4071,'wp-content/themes/twentyseventeen/single.php'),(4072,'wp-content/themes/twentyseventeen/style.css'),(4073,'wp-content/themes/twentyseventeen/template-parts/footer/footer-widgets.php'),(4074,'wp-content/themes/twentyseventeen/template-parts/footer/site-info.php'),(4075,'wp-content/themes/twentyseventeen/template-parts/header/header-image.php'),(4076,'wp-content/themes/twentyseventeen/template-parts/header/site-branding.php'),(4077,'wp-content/themes/twentyseventeen/template-parts/navigation/navigation-top.php'),(4078,'wp-content/themes/twentyseventeen/template-parts/page/content-front-page-panels.php'),(4079,'wp-content/themes/twentyseventeen/template-parts/page/content-front-page.php'),(4080,'wp-content/themes/twentyseventeen/template-parts/page/content-page.php'),(4081,'wp-content/themes/twentyseventeen/template-parts/post/content-audio.php'),(4082,'wp-content/themes/twentyseventeen/template-parts/post/content-excerpt.php'),(4083,'wp-content/themes/twentyseventeen/template-parts/post/content-gallery.php'),(4084,'wp-content/themes/twentyseventeen/template-parts/post/content-image.php'),(4085,'wp-content/themes/twentyseventeen/template-parts/post/content-none.php'),(4086,'wp-content/themes/twentyseventeen/template-parts/post/content-video.php'),(4087,'wp-content/themes/twentyseventeen/template-parts/post/content.php'),(4088,'wp-content/themes/twentysixteen/404.php'),(4089,'wp-content/themes/twentysixteen/archive.php'),(4090,'wp-content/themes/twentysixteen/comments.php'),(4091,'wp-content/themes/twentysixteen/css/editor-style.css'),(4092,'wp-content/themes/twentysixteen/css/ie.css'),(4093,'wp-content/themes/twentysixteen/css/ie7.css'),(4094,'wp-content/themes/twentysixteen/css/ie8.css'),(4095,'wp-content/themes/twentysixteen/footer.php'),(4096,'wp-content/themes/twentysixteen/functions.php'),(4097,'wp-content/themes/twentysixteen/genericons/COPYING.txt'),(4098,'wp-content/themes/twentysixteen/genericons/Genericons.eot'),(4099,'wp-content/themes/twentysixteen/genericons/Genericons.svg'),(4100,'wp-content/themes/twentysixteen/genericons/Genericons.ttf'),(4101,'wp-content/themes/twentysixteen/genericons/Genericons.woff'),(4102,'wp-content/themes/twentysixteen/genericons/LICENSE.txt'),(4103,'wp-content/themes/twentysixteen/genericons/README.md'),(4104,'wp-content/themes/twentysixteen/genericons/genericons.css'),(4105,'wp-content/themes/twentysixteen/header.php'),(4106,'wp-content/themes/twentysixteen/image.php'),(4107,'wp-content/themes/twentysixteen/inc/back-compat.php'),(4108,'wp-content/themes/twentysixteen/inc/customizer.php'),(4109,'wp-content/themes/twentysixteen/inc/template-tags.php'),(4110,'wp-content/themes/twentysixteen/index.php'),(4111,'wp-content/themes/twentysixteen/js/color-scheme-control.js'),(4112,'wp-content/themes/twentysixteen/js/customize-preview.js'),(4113,'wp-content/themes/twentysixteen/js/functions.js'),(4114,'wp-content/themes/twentysixteen/js/html5.js'),(4115,'wp-content/themes/twentysixteen/js/keyboard-image-navigation.js'),(4116,'wp-content/themes/twentysixteen/js/skip-link-focus-fix.js'),(4117,'wp-content/themes/twentysixteen/page.php'),(4118,'wp-content/themes/twentysixteen/readme.txt'),(4119,'wp-content/themes/twentysixteen/rtl.css'),(4120,'wp-content/themes/twentysixteen/screenshot.png'),(4121,'wp-content/themes/twentysixteen/search.php'),(4122,'wp-content/themes/twentysixteen/searchform.php'),(4123,'wp-content/themes/twentysixteen/sidebar-content-bottom.php'),(4124,'wp-content/themes/twentysixteen/sidebar.php'),(4125,'wp-content/themes/twentysixteen/single.php'),(4126,'wp-content/themes/twentysixteen/style.css'),(4127,'wp-content/themes/twentysixteen/template-parts/biography.php'),(4128,'wp-content/themes/twentysixteen/template-parts/content-none.php'),(4129,'wp-content/themes/twentysixteen/template-parts/content-page.php'),(4130,'wp-content/themes/twentysixteen/template-parts/content-search.php'),(4131,'wp-content/themes/twentysixteen/template-parts/content-single.php'),(4132,'wp-content/themes/twentysixteen/template-parts/content.php'),(4133,'wp-content/themes/watch-hill-2017/functions.php'),(4134,'wp-content/themes/watch-hill-2017/js/jquery.matchHeight.min.js'),(4135,'wp-content/themes/watch-hill-2017/js/jquery.sticky-kit.min.js'),(4136,'wp-content/themes/watch-hill-2017/js/responsive-menus.js'),(4137,'wp-content/themes/watch-hill-2017/js/responsive-menus.min.js'),(4138,'wp-content/themes/watch-hill-2017/lib/customize.php'),(4139,'wp-content/themes/watch-hill-2017/lib/helper-functions.php'),(4140,'wp-content/themes/watch-hill-2017/lib/output.php'),(4141,'wp-content/themes/watch-hill-2017/lib/theme-defaults.php'),(4142,'wp-content/themes/watch-hill-2017/lib/woocommerce/js/notice-update.js'),(4143,'wp-content/themes/watch-hill-2017/lib/woocommerce/woocommerce-notice.php'),(4144,'wp-content/themes/watch-hill-2017/lib/woocommerce/woocommerce-output.php'),(4145,'wp-content/themes/watch-hill-2017/lib/woocommerce/woocommerce-setup.php'),(4146,'wp-content/themes/watch-hill-2017/page_landing.php'),(4147,'wp-content/wflogs/attack-data.php'),(4148,'wp-content/wflogs/config.php'),(4149,'wp-content/wflogs/ips.php'),(4150,'wp-content/wflogs/rules.php'),(4151,'wp-cron.php'),(4152,'wp-includes/ID3/getid3.lib.php'),(4153,'wp-includes/ID3/getid3.php'),(4154,'wp-includes/ID3/license.commercial.txt'),(4155,'wp-includes/ID3/license.txt'),(4156,'wp-includes/ID3/module.audio-video.asf.php'),(4157,'wp-includes/ID3/module.audio-video.flv.php'),(4158,'wp-includes/ID3/module.audio-video.matroska.php'),(4159,'wp-includes/ID3/module.audio-video.quicktime.php'),(4160,'wp-includes/ID3/module.audio-video.riff.php'),(4161,'wp-includes/ID3/module.audio.ac3.php'),(4162,'wp-includes/ID3/module.audio.dts.php'),(4163,'wp-includes/ID3/module.audio.flac.php'),(4164,'wp-includes/ID3/module.audio.mp3.php'),(4165,'wp-includes/ID3/module.audio.ogg.php'),(4166,'wp-includes/ID3/module.tag.apetag.php'),(4167,'wp-includes/ID3/module.tag.id3v1.php'),(4168,'wp-includes/ID3/module.tag.id3v2.php'),(4169,'wp-includes/ID3/module.tag.lyrics3.php'),(4170,'wp-includes/ID3/readme.txt'),(4171,'wp-includes/IXR/class-IXR-base64.php'),(4172,'wp-includes/IXR/class-IXR-client.php'),(4173,'wp-includes/IXR/class-IXR-clientmulticall.php'),(4174,'wp-includes/IXR/class-IXR-date.php'),(4175,'wp-includes/IXR/class-IXR-error.php'),(4176,'wp-includes/IXR/class-IXR-introspectionserver.php'),(4177,'wp-includes/IXR/class-IXR-message.php'),(4178,'wp-includes/IXR/class-IXR-request.php'),(4179,'wp-includes/IXR/class-IXR-server.php'),(4180,'wp-includes/IXR/class-IXR-value.php'),(4181,'wp-includes/Requests/Auth/Basic.php'),(4182,'wp-includes/Requests/Auth.php'),(4183,'wp-includes/Requests/Cookie/Jar.php'),(4184,'wp-includes/Requests/Cookie.php'),(4185,'wp-includes/Requests/Exception/HTTP/304.php'),(4186,'wp-includes/Requests/Exception/HTTP/305.php'),(4187,'wp-includes/Requests/Exception/HTTP/306.php'),(4188,'wp-includes/Requests/Exception/HTTP/400.php'),(4189,'wp-includes/Requests/Exception/HTTP/401.php'),(4190,'wp-includes/Requests/Exception/HTTP/402.php'),(4191,'wp-includes/Requests/Exception/HTTP/403.php'),(4192,'wp-includes/Requests/Exception/HTTP/404.php'),(4193,'wp-includes/Requests/Exception/HTTP/405.php'),(4194,'wp-includes/Requests/Exception/HTTP/406.php'),(4195,'wp-includes/Requests/Exception/HTTP/407.php'),(4196,'wp-includes/Requests/Exception/HTTP/408.php'),(4197,'wp-includes/Requests/Exception/HTTP/409.php'),(4198,'wp-includes/Requests/Exception/HTTP/410.php'),(4199,'wp-includes/Requests/Exception/HTTP/411.php'),(4200,'wp-includes/Requests/Exception/HTTP/412.php'),(4201,'wp-includes/Requests/Exception/HTTP/413.php'),(4202,'wp-includes/Requests/Exception/HTTP/414.php'),(4203,'wp-includes/Requests/Exception/HTTP/415.php'),(4204,'wp-includes/Requests/Exception/HTTP/416.php'),(4205,'wp-includes/Requests/Exception/HTTP/417.php'),(4206,'wp-includes/Requests/Exception/HTTP/418.php'),(4207,'wp-includes/Requests/Exception/HTTP/428.php'),(4208,'wp-includes/Requests/Exception/HTTP/429.php'),(4209,'wp-includes/Requests/Exception/HTTP/431.php'),(4210,'wp-includes/Requests/Exception/HTTP/500.php'),(4211,'wp-includes/Requests/Exception/HTTP/501.php'),(4212,'wp-includes/Requests/Exception/HTTP/502.php'),(4213,'wp-includes/Requests/Exception/HTTP/503.php'),(4214,'wp-includes/Requests/Exception/HTTP/504.php'),(4215,'wp-includes/Requests/Exception/HTTP/505.php'),(4216,'wp-includes/Requests/Exception/HTTP/511.php'),(4217,'wp-includes/Requests/Exception/HTTP/Unknown.php'),(4218,'wp-includes/Requests/Exception/HTTP.php'),(4219,'wp-includes/Requests/Exception/Transport/cURL.php'),(4220,'wp-includes/Requests/Exception/Transport.php'),(4221,'wp-includes/Requests/Exception.php'),(4222,'wp-includes/Requests/Hooker.php'),(4223,'wp-includes/Requests/Hooks.php'),(4224,'wp-includes/Requests/IDNAEncoder.php'),(4225,'wp-includes/Requests/IPv6.php'),(4226,'wp-includes/Requests/IRI.php'),(4227,'wp-includes/Requests/Proxy/HTTP.php'),(4228,'wp-includes/Requests/Proxy.php'),(4229,'wp-includes/Requests/Response/Headers.php'),(4230,'wp-includes/Requests/Response.php'),(4231,'wp-includes/Requests/SSL.php'),(4232,'wp-includes/Requests/Session.php'),(4233,'wp-includes/Requests/Transport/cURL.php'),(4234,'wp-includes/Requests/Transport/fsockopen.php'),(4235,'wp-includes/Requests/Transport.php'),(4236,'wp-includes/Requests/Utility/CaseInsensitiveDictionary.php'),(4237,'wp-includes/Requests/Utility/FilteredIterator.php'),(4238,'wp-includes/SimplePie/Author.php'),(4239,'wp-includes/SimplePie/Cache/Base.php'),(4240,'wp-includes/SimplePie/Cache/DB.php'),(4241,'wp-includes/SimplePie/Cache/File.php'),(4242,'wp-includes/SimplePie/Cache/Memcache.php'),(4243,'wp-includes/SimplePie/Cache/MySQL.php'),(4244,'wp-includes/SimplePie/Cache.php'),(4245,'wp-includes/SimplePie/Caption.php'),(4246,'wp-includes/SimplePie/Category.php'),(4247,'wp-includes/SimplePie/Content/Type/Sniffer.php'),(4248,'wp-includes/SimplePie/Copyright.php'),(4249,'wp-includes/SimplePie/Core.php'),(4250,'wp-includes/SimplePie/Credit.php'),(4251,'wp-includes/SimplePie/Decode/HTML/Entities.php'),(4252,'wp-includes/SimplePie/Enclosure.php'),(4253,'wp-includes/SimplePie/Exception.php'),(4254,'wp-includes/SimplePie/File.php'),(4255,'wp-includes/SimplePie/HTTP/Parser.php'),(4256,'wp-includes/SimplePie/IRI.php'),(4257,'wp-includes/SimplePie/Item.php'),(4258,'wp-includes/SimplePie/Locator.php'),(4259,'wp-includes/SimplePie/Misc.php'),(4260,'wp-includes/SimplePie/Net/IPv6.php'),(4261,'wp-includes/SimplePie/Parse/Date.php'),(4262,'wp-includes/SimplePie/Parser.php'),(4263,'wp-includes/SimplePie/Rating.php'),(4264,'wp-includes/SimplePie/Registry.php'),(4265,'wp-includes/SimplePie/Restriction.php'),(4266,'wp-includes/SimplePie/Sanitize.php'),(4267,'wp-includes/SimplePie/Source.php'),(4268,'wp-includes/SimplePie/XML/Declaration/Parser.php'),(4269,'wp-includes/SimplePie/gzdecode.php'),(4270,'wp-includes/Text/Diff/Engine/native.php'),(4271,'wp-includes/Text/Diff/Engine/shell.php'),(4272,'wp-includes/Text/Diff/Engine/string.php'),(4273,'wp-includes/Text/Diff/Engine/xdiff.php'),(4274,'wp-includes/Text/Diff/Renderer/inline.php'),(4275,'wp-includes/Text/Diff/Renderer.php'),(4276,'wp-includes/Text/Diff.php'),(4277,'wp-includes/admin-bar.php'),(4278,'wp-includes/atomlib.php'),(4279,'wp-includes/author-template.php'),(4280,'wp-includes/bookmark-template.php'),(4281,'wp-includes/bookmark.php'),(4282,'wp-includes/cache.php'),(4283,'wp-includes/canonical.php'),(4284,'wp-includes/capabilities.php'),(4285,'wp-includes/category-template.php'),(4286,'wp-includes/category.php'),(4287,'wp-includes/certificates/ca-bundle.crt'),(4288,'wp-includes/class-IXR.php'),(4289,'wp-includes/class-feed.php'),(4290,'wp-includes/class-http.php'),(4291,'wp-includes/class-json.php'),(4292,'wp-includes/class-oembed.php'),(4293,'wp-includes/class-phpass.php'),(4294,'wp-includes/class-phpmailer.php'),(4295,'wp-includes/class-pop3.php'),(4296,'wp-includes/class-requests.php'),(4297,'wp-includes/class-simplepie.php'),(4298,'wp-includes/class-smtp.php'),(4299,'wp-includes/class-snoopy.php'),(4300,'wp-includes/class-walker-category-dropdown.php'),(4301,'wp-includes/class-walker-category.php'),(4302,'wp-includes/class-walker-comment.php'),(4303,'wp-includes/class-walker-nav-menu.php'),(4304,'wp-includes/class-walker-page-dropdown.php'),(4305,'wp-includes/class-walker-page.php'),(4306,'wp-includes/class-wp-admin-bar.php'),(4307,'wp-includes/class-wp-ajax-response.php'),(4308,'wp-includes/class-wp-comment-query.php'),(4309,'wp-includes/class-wp-comment.php'),(4310,'wp-includes/class-wp-customize-control.php'),(4311,'wp-includes/class-wp-customize-manager.php'),(4312,'wp-includes/class-wp-customize-nav-menus.php'),(4313,'wp-includes/class-wp-customize-panel.php'),(4314,'wp-includes/class-wp-customize-section.php'),(4315,'wp-includes/class-wp-customize-setting.php'),(4316,'wp-includes/class-wp-customize-widgets.php'),(4317,'wp-includes/class-wp-dependency.php'),(4318,'wp-includes/class-wp-editor.php'),(4319,'wp-includes/class-wp-embed.php'),(4320,'wp-includes/class-wp-error.php'),(4321,'wp-includes/class-wp-feed-cache-transient.php'),(4322,'wp-includes/class-wp-feed-cache.php'),(4323,'wp-includes/class-wp-hook.php'),(4324,'wp-includes/class-wp-http-cookie.php'),(4325,'wp-includes/class-wp-http-curl.php'),(4326,'wp-includes/class-wp-http-encoding.php'),(4327,'wp-includes/class-wp-http-ixr-client.php'),(4328,'wp-includes/class-wp-http-proxy.php'),(4329,'wp-includes/class-wp-http-requests-hooks.php'),(4330,'wp-includes/class-wp-http-requests-response.php'),(4331,'wp-includes/class-wp-http-response.php'),(4332,'wp-includes/class-wp-http-streams.php'),(4333,'wp-includes/class-wp-image-editor-gd.php'),(4334,'wp-includes/class-wp-image-editor-imagick.php'),(4335,'wp-includes/class-wp-image-editor.php'),(4336,'wp-includes/class-wp-list-util.php'),(4337,'wp-includes/class-wp-locale-switcher.php'),(4338,'wp-includes/class-wp-locale.php'),(4339,'wp-includes/class-wp-matchesmapregex.php'),(4340,'wp-includes/class-wp-meta-query.php'),(4341,'wp-includes/class-wp-metadata-lazyloader.php'),(4342,'wp-includes/class-wp-network-query.php'),(4343,'wp-includes/class-wp-network.php'),(4344,'wp-includes/class-wp-oembed-controller.php'),(4345,'wp-includes/class-wp-post-type.php'),(4346,'wp-includes/class-wp-post.php'),(4347,'wp-includes/class-wp-query.php'),(4348,'wp-includes/class-wp-rewrite.php'),(4349,'wp-includes/class-wp-role.php'),(4350,'wp-includes/class-wp-roles.php'),(4351,'wp-includes/class-wp-session-tokens.php'),(4352,'wp-includes/class-wp-simplepie-file.php'),(4353,'wp-includes/class-wp-simplepie-sanitize-kses.php'),(4354,'wp-includes/class-wp-site-query.php'),(4355,'wp-includes/class-wp-site.php'),(4356,'wp-includes/class-wp-tax-query.php'),(4357,'wp-includes/class-wp-taxonomy.php'),(4358,'wp-includes/class-wp-term-query.php'),(4359,'wp-includes/class-wp-term.php'),(4360,'wp-includes/class-wp-text-diff-renderer-inline.php'),(4361,'wp-includes/class-wp-text-diff-renderer-table.php'),(4362,'wp-includes/class-wp-theme.php'),(4363,'wp-includes/class-wp-user-meta-session-tokens.php'),(4364,'wp-includes/class-wp-user-query.php'),(4365,'wp-includes/class-wp-user.php'),(4366,'wp-includes/class-wp-walker.php'),(4367,'wp-includes/class-wp-widget-factory.php'),(4368,'wp-includes/class-wp-widget.php'),(4369,'wp-includes/class-wp-xmlrpc-server.php'),(4370,'wp-includes/class-wp.php'),(4371,'wp-includes/class.wp-dependencies.php'),(4372,'wp-includes/class.wp-scripts.php'),(4373,'wp-includes/class.wp-styles.php'),(4374,'wp-includes/comment-template.php'),(4375,'wp-includes/comment.php'),(4376,'wp-includes/compat.php'),(4377,'wp-includes/cron.php'),(4378,'wp-includes/css/admin-bar-rtl.css'),(4379,'wp-includes/css/admin-bar-rtl.min.css'),(4380,'wp-includes/css/admin-bar.css'),(4381,'wp-includes/css/admin-bar.min.css'),(4382,'wp-includes/css/buttons-rtl.css'),(4383,'wp-includes/css/buttons-rtl.min.css'),(4384,'wp-includes/css/buttons.css'),(4385,'wp-includes/css/buttons.min.css'),(4386,'wp-includes/css/customize-preview-rtl.css'),(4387,'wp-includes/css/customize-preview-rtl.min.css'),(4388,'wp-includes/css/customize-preview.css'),(4389,'wp-includes/css/customize-preview.min.css'),(4390,'wp-includes/css/dashicons.css'),(4391,'wp-includes/css/dashicons.min.css'),(4392,'wp-includes/css/editor-rtl.css'),(4393,'wp-includes/css/editor-rtl.min.css'),(4394,'wp-includes/css/editor.css'),(4395,'wp-includes/css/editor.min.css'),(4396,'wp-includes/css/jquery-ui-dialog-rtl.css'),(4397,'wp-includes/css/jquery-ui-dialog-rtl.min.css'),(4398,'wp-includes/css/jquery-ui-dialog.css'),(4399,'wp-includes/css/jquery-ui-dialog.min.css'),(4400,'wp-includes/css/media-views-rtl.css'),(4401,'wp-includes/css/media-views-rtl.min.css'),(4402,'wp-includes/css/media-views.css'),(4403,'wp-includes/css/media-views.min.css'),(4404,'wp-includes/css/wp-auth-check-rtl.css'),(4405,'wp-includes/css/wp-auth-check-rtl.min.css'),(4406,'wp-includes/css/wp-auth-check.css'),(4407,'wp-includes/css/wp-auth-check.min.css'),(4408,'wp-includes/css/wp-embed-template-ie.css'),(4409,'wp-includes/css/wp-embed-template-ie.min.css'),(4410,'wp-includes/css/wp-embed-template.css'),(4411,'wp-includes/css/wp-embed-template.min.css'),(4412,'wp-includes/css/wp-pointer-rtl.css'),(4413,'wp-includes/css/wp-pointer-rtl.min.css'),(4414,'wp-includes/css/wp-pointer.css'),(4415,'wp-includes/css/wp-pointer.min.css'),(4416,'wp-includes/customize/class-wp-customize-background-image-control.php'),(4417,'wp-includes/customize/class-wp-customize-background-image-setting.php'),(4418,'wp-includes/customize/class-wp-customize-background-position-control.php'),(4419,'wp-includes/customize/class-wp-customize-code-editor-control.php'),(4420,'wp-includes/customize/class-wp-customize-color-control.php'),(4421,'wp-includes/customize/class-wp-customize-cropped-image-control.php'),(4422,'wp-includes/customize/class-wp-customize-custom-css-setting.php'),(4423,'wp-includes/customize/class-wp-customize-date-time-control.php'),(4424,'wp-includes/customize/class-wp-customize-filter-setting.php'),(4425,'wp-includes/customize/class-wp-customize-header-image-control.php'),(4426,'wp-includes/customize/class-wp-customize-header-image-setting.php'),(4427,'wp-includes/customize/class-wp-customize-image-control.php'),(4428,'wp-includes/customize/class-wp-customize-media-control.php'),(4429,'wp-includes/customize/class-wp-customize-nav-menu-auto-add-control.php'),(4430,'wp-includes/customize/class-wp-customize-nav-menu-control.php'),(4431,'wp-includes/customize/class-wp-customize-nav-menu-item-control.php'),(4432,'wp-includes/customize/class-wp-customize-nav-menu-item-setting.php'),(4433,'wp-includes/customize/class-wp-customize-nav-menu-location-control.php'),(4434,'wp-includes/customize/class-wp-customize-nav-menu-locations-control.php'),(4435,'wp-includes/customize/class-wp-customize-nav-menu-name-control.php'),(4436,'wp-includes/customize/class-wp-customize-nav-menu-section.php'),(4437,'wp-includes/customize/class-wp-customize-nav-menu-setting.php'),(4438,'wp-includes/customize/class-wp-customize-nav-menus-panel.php'),(4439,'wp-includes/customize/class-wp-customize-new-menu-control.php'),(4440,'wp-includes/customize/class-wp-customize-new-menu-section.php'),(4441,'wp-includes/customize/class-wp-customize-partial.php'),(4442,'wp-includes/customize/class-wp-customize-selective-refresh.php'),(4443,'wp-includes/customize/class-wp-customize-sidebar-section.php'),(4444,'wp-includes/customize/class-wp-customize-site-icon-control.php'),(4445,'wp-includes/customize/class-wp-customize-theme-control.php'),(4446,'wp-includes/customize/class-wp-customize-themes-panel.php'),(4447,'wp-includes/customize/class-wp-customize-themes-section.php'),(4448,'wp-includes/customize/class-wp-customize-upload-control.php'),(4449,'wp-includes/customize/class-wp-widget-area-customize-control.php'),(4450,'wp-includes/customize/class-wp-widget-form-customize-control.php'),(4451,'wp-includes/date.php'),(4452,'wp-includes/default-constants.php'),(4453,'wp-includes/default-filters.php'),(4454,'wp-includes/default-widgets.php'),(4455,'wp-includes/deprecated.php'),(4456,'wp-includes/embed-template.php'),(4457,'wp-includes/embed.php'),(4458,'wp-includes/error_log'),(4459,'wp-includes/feed-atom-comments.php'),(4460,'wp-includes/feed-atom.php'),(4461,'wp-includes/feed-rdf.php'),(4462,'wp-includes/feed-rss.php'),(4463,'wp-includes/feed-rss2-comments.php'),(4464,'wp-includes/feed-rss2.php'),(4465,'wp-includes/feed.php'),(4466,'wp-includes/fonts/dashicons.eot'),(4467,'wp-includes/fonts/dashicons.svg'),(4468,'wp-includes/fonts/dashicons.ttf'),(4469,'wp-includes/fonts/dashicons.woff'),(4470,'wp-includes/formatting.php'),(4471,'wp-includes/functions.php'),(4472,'wp-includes/functions.wp-scripts.php'),(4473,'wp-includes/functions.wp-styles.php'),(4474,'wp-includes/general-template.php'),(4475,'wp-includes/http.php'),(4476,'wp-includes/images/admin-bar-sprite-2x.png'),(4477,'wp-includes/images/admin-bar-sprite.png'),(4478,'wp-includes/images/arrow-pointer-blue-2x.png'),(4479,'wp-includes/images/arrow-pointer-blue.png'),(4480,'wp-includes/images/blank.gif'),(4481,'wp-includes/images/crystal/archive.png'),(4482,'wp-includes/images/crystal/audio.png'),(4483,'wp-includes/images/crystal/code.png'),(4484,'wp-includes/images/crystal/default.png'),(4485,'wp-includes/images/crystal/document.png'),(4486,'wp-includes/images/crystal/interactive.png'),(4487,'wp-includes/images/crystal/license.txt'),(4488,'wp-includes/images/crystal/spreadsheet.png'),(4489,'wp-includes/images/crystal/text.png'),(4490,'wp-includes/images/crystal/video.png'),(4491,'wp-includes/images/down_arrow-2x.gif'),(4492,'wp-includes/images/down_arrow.gif'),(4493,'wp-includes/images/icon-pointer-flag-2x.png'),(4494,'wp-includes/images/icon-pointer-flag.png'),(4495,'wp-includes/images/media/archive.png'),(4496,'wp-includes/images/media/audio.png'),(4497,'wp-includes/images/media/code.png'),(4498,'wp-includes/images/media/default.png'),(4499,'wp-includes/images/media/document.png'),(4500,'wp-includes/images/media/interactive.png'),(4501,'wp-includes/images/media/spreadsheet.png'),(4502,'wp-includes/images/media/text.png'),(4503,'wp-includes/images/media/video.png'),(4504,'wp-includes/images/rss-2x.png'),(4505,'wp-includes/images/rss.png'),(4506,'wp-includes/images/smilies/frownie.png'),(4507,'wp-includes/images/smilies/icon_arrow.gif'),(4508,'wp-includes/images/smilies/icon_biggrin.gif'),(4509,'wp-includes/images/smilies/icon_confused.gif'),(4510,'wp-includes/images/smilies/icon_cool.gif'),(4511,'wp-includes/images/smilies/icon_cry.gif'),(4512,'wp-includes/images/smilies/icon_eek.gif'),(4513,'wp-includes/images/smilies/icon_evil.gif'),(4514,'wp-includes/images/smilies/icon_exclaim.gif'),(4515,'wp-includes/images/smilies/icon_idea.gif'),(4516,'wp-includes/images/smilies/icon_lol.gif'),(4517,'wp-includes/images/smilies/icon_mad.gif'),(4518,'wp-includes/images/smilies/icon_mrgreen.gif'),(4519,'wp-includes/images/smilies/icon_neutral.gif'),(4520,'wp-includes/images/smilies/icon_question.gif'),(4521,'wp-includes/images/smilies/icon_razz.gif'),(4522,'wp-includes/images/smilies/icon_redface.gif'),(4523,'wp-includes/images/smilies/icon_rolleyes.gif'),(4524,'wp-includes/images/smilies/icon_sad.gif'),(4525,'wp-includes/images/smilies/icon_smile.gif'),(4526,'wp-includes/images/smilies/icon_surprised.gif'),(4527,'wp-includes/images/smilies/icon_twisted.gif'),(4528,'wp-includes/images/smilies/icon_wink.gif'),(4529,'wp-includes/images/smilies/mrgreen.png'),(4530,'wp-includes/images/smilies/rolleyes.png'),(4531,'wp-includes/images/smilies/simple-smile.png'),(4532,'wp-includes/images/spinner-2x.gif'),(4533,'wp-includes/images/spinner.gif'),(4534,'wp-includes/images/toggle-arrow-2x.png'),(4535,'wp-includes/images/toggle-arrow.png'),(4536,'wp-includes/images/uploader-icons-2x.png'),(4537,'wp-includes/images/uploader-icons.png'),(4538,'wp-includes/images/w-logo-blue.png'),(4539,'wp-includes/images/wlw/wp-comments.png'),(4540,'wp-includes/images/wlw/wp-icon.png'),(4541,'wp-includes/images/wlw/wp-watermark.png'),(4542,'wp-includes/images/wpicons-2x.png'),(4543,'wp-includes/images/wpicons.png'),(4544,'wp-includes/images/wpspin-2x.gif'),(4545,'wp-includes/images/wpspin.gif'),(4546,'wp-includes/images/xit-2x.gif'),(4547,'wp-includes/images/xit.gif'),(4548,'wp-includes/js/admin-bar.js'),(4549,'wp-includes/js/admin-bar.min.js'),(4550,'wp-includes/js/api-request.js'),(4551,'wp-includes/js/api-request.min.js'),(4552,'wp-includes/js/autosave.js'),(4553,'wp-includes/js/autosave.min.js'),(4554,'wp-includes/js/backbone.min.js'),(4555,'wp-includes/js/codemirror/codemirror.min.css'),(4556,'wp-includes/js/codemirror/codemirror.min.js'),(4557,'wp-includes/js/codemirror/csslint.js'),(4558,'wp-includes/js/codemirror/htmlhint-kses.js'),(4559,'wp-includes/js/codemirror/htmlhint.js'),(4560,'wp-includes/js/codemirror/jshint.js'),(4561,'wp-includes/js/codemirror/jsonlint.js'),(4562,'wp-includes/js/colorpicker.js'),(4563,'wp-includes/js/colorpicker.min.js'),(4564,'wp-includes/js/comment-reply.js'),(4565,'wp-includes/js/comment-reply.min.js'),(4566,'wp-includes/js/crop/cropper.css'),(4567,'wp-includes/js/crop/cropper.js'),(4568,'wp-includes/js/crop/marqueeHoriz.gif'),(4569,'wp-includes/js/crop/marqueeVert.gif'),(4570,'wp-includes/js/customize-base.js'),(4571,'wp-includes/js/customize-base.min.js'),(4572,'wp-includes/js/customize-loader.js'),(4573,'wp-includes/js/customize-loader.min.js'),(4574,'wp-includes/js/customize-models.js'),(4575,'wp-includes/js/customize-models.min.js'),(4576,'wp-includes/js/customize-preview-nav-menus.js'),(4577,'wp-includes/js/customize-preview-nav-menus.min.js'),(4578,'wp-includes/js/customize-preview-widgets.js'),(4579,'wp-includes/js/customize-preview-widgets.min.js'),(4580,'wp-includes/js/customize-preview.js'),(4581,'wp-includes/js/customize-preview.min.js'),(4582,'wp-includes/js/customize-selective-refresh.js'),(4583,'wp-includes/js/customize-selective-refresh.min.js'),(4584,'wp-includes/js/customize-views.js'),(4585,'wp-includes/js/customize-views.min.js'),(4586,'wp-includes/js/heartbeat.js'),(4587,'wp-includes/js/heartbeat.min.js'),(4588,'wp-includes/js/hoverIntent.js'),(4589,'wp-includes/js/hoverIntent.min.js'),(4590,'wp-includes/js/imagesloaded.min.js'),(4591,'wp-includes/js/imgareaselect/border-anim-h.gif'),(4592,'wp-includes/js/imgareaselect/border-anim-v.gif'),(4593,'wp-includes/js/imgareaselect/imgareaselect.css'),(4594,'wp-includes/js/imgareaselect/jquery.imgareaselect.js'),(4595,'wp-includes/js/imgareaselect/jquery.imgareaselect.min.js'),(4596,'wp-includes/js/jcrop/Jcrop.gif'),(4597,'wp-includes/js/jcrop/jquery.Jcrop.min.css'),(4598,'wp-includes/js/jcrop/jquery.Jcrop.min.js'),(4599,'wp-includes/js/jquery/jquery-migrate.js'),(4600,'wp-includes/js/jquery/jquery-migrate.min.js'),(4601,'wp-includes/js/jquery/jquery.color.min.js'),(4602,'wp-includes/js/jquery/jquery.form.js'),(4603,'wp-includes/js/jquery/jquery.form.min.js'),(4604,'wp-includes/js/jquery/jquery.hotkeys.js'),(4605,'wp-includes/js/jquery/jquery.hotkeys.min.js'),(4606,'wp-includes/js/jquery/jquery.js'),(4607,'wp-includes/js/jquery/jquery.masonry.min.js'),(4608,'wp-includes/js/jquery/jquery.query.js'),(4609,'wp-includes/js/jquery/jquery.schedule.js'),(4610,'wp-includes/js/jquery/jquery.serialize-object.js'),(4611,'wp-includes/js/jquery/jquery.table-hotkeys.js'),(4612,'wp-includes/js/jquery/jquery.table-hotkeys.min.js'),(4613,'wp-includes/js/jquery/jquery.ui.touch-punch.js'),(4614,'wp-includes/js/jquery/suggest.js'),(4615,'wp-includes/js/jquery/suggest.min.js'),(4616,'wp-includes/js/jquery/ui/accordion.min.js'),(4617,'wp-includes/js/jquery/ui/autocomplete.min.js'),(4618,'wp-includes/js/jquery/ui/button.min.js'),(4619,'wp-includes/js/jquery/ui/core.min.js'),(4620,'wp-includes/js/jquery/ui/datepicker.min.js'),(4621,'wp-includes/js/jquery/ui/dialog.min.js'),(4622,'wp-includes/js/jquery/ui/draggable.min.js'),(4623,'wp-includes/js/jquery/ui/droppable.min.js'),(4624,'wp-includes/js/jquery/ui/effect-blind.min.js'),(4625,'wp-includes/js/jquery/ui/effect-bounce.min.js'),(4626,'wp-includes/js/jquery/ui/effect-clip.min.js'),(4627,'wp-includes/js/jquery/ui/effect-drop.min.js'),(4628,'wp-includes/js/jquery/ui/effect-explode.min.js'),(4629,'wp-includes/js/jquery/ui/effect-fade.min.js'),(4630,'wp-includes/js/jquery/ui/effect-fold.min.js'),(4631,'wp-includes/js/jquery/ui/effect-highlight.min.js'),(4632,'wp-includes/js/jquery/ui/effect-puff.min.js'),(4633,'wp-includes/js/jquery/ui/effect-pulsate.min.js'),(4634,'wp-includes/js/jquery/ui/effect-scale.min.js'),(4635,'wp-includes/js/jquery/ui/effect-shake.min.js'),(4636,'wp-includes/js/jquery/ui/effect-size.min.js'),(4637,'wp-includes/js/jquery/ui/effect-slide.min.js'),(4638,'wp-includes/js/jquery/ui/effect-transfer.min.js'),(4639,'wp-includes/js/jquery/ui/effect.min.js'),(4640,'wp-includes/js/jquery/ui/menu.min.js'),(4641,'wp-includes/js/jquery/ui/mouse.min.js'),(4642,'wp-includes/js/jquery/ui/position.min.js'),(4643,'wp-includes/js/jquery/ui/progressbar.min.js'),(4644,'wp-includes/js/jquery/ui/resizable.min.js'),(4645,'wp-includes/js/jquery/ui/selectable.min.js'),(4646,'wp-includes/js/jquery/ui/selectmenu.min.js'),(4647,'wp-includes/js/jquery/ui/slider.min.js'),(4648,'wp-includes/js/jquery/ui/sortable.min.js'),(4649,'wp-includes/js/jquery/ui/spinner.min.js'),(4650,'wp-includes/js/jquery/ui/tabs.min.js'),(4651,'wp-includes/js/jquery/ui/tooltip.min.js'),(4652,'wp-includes/js/jquery/ui/widget.min.js'),(4653,'wp-includes/js/json2.js'),(4654,'wp-includes/js/json2.min.js'),(4655,'wp-includes/js/masonry.min.js'),(4656,'wp-includes/js/mce-view.js'),(4657,'wp-includes/js/mce-view.min.js'),(4658,'wp-includes/js/media-audiovideo.js'),(4659,'wp-includes/js/media-audiovideo.min.js'),(4660,'wp-includes/js/media-editor.js'),(4661,'wp-includes/js/media-editor.min.js'),(4662,'wp-includes/js/media-grid.js'),(4663,'wp-includes/js/media-grid.min.js'),(4664,'wp-includes/js/media-models.js'),(4665,'wp-includes/js/media-models.min.js'),(4666,'wp-includes/js/media-views.js'),(4667,'wp-includes/js/media-views.min.js'),(4668,'wp-includes/js/mediaelement/mediaelement-and-player.js'),(4669,'wp-includes/js/mediaelement/mediaelement-and-player.min.js'),(4670,'wp-includes/js/mediaelement/mediaelement-migrate.js'),(4671,'wp-includes/js/mediaelement/mediaelement-migrate.min.js'),(4672,'wp-includes/js/mediaelement/mediaelement.js'),(4673,'wp-includes/js/mediaelement/mediaelement.min.js'),(4674,'wp-includes/js/mediaelement/mediaelementplayer-legacy.css'),(4675,'wp-includes/js/mediaelement/mediaelementplayer-legacy.min.css'),(4676,'wp-includes/js/mediaelement/mediaelementplayer.css'),(4677,'wp-includes/js/mediaelement/mediaelementplayer.min.css'),(4678,'wp-includes/js/mediaelement/mejs-controls.png'),(4679,'wp-includes/js/mediaelement/mejs-controls.svg'),(4680,'wp-includes/js/mediaelement/renderers/vimeo.js'),(4681,'wp-includes/js/mediaelement/renderers/vimeo.min.js'),(4682,'wp-includes/js/mediaelement/wp-mediaelement.css'),(4683,'wp-includes/js/mediaelement/wp-mediaelement.js'),(4684,'wp-includes/js/mediaelement/wp-mediaelement.min.css'),(4685,'wp-includes/js/mediaelement/wp-mediaelement.min.js'),(4686,'wp-includes/js/mediaelement/wp-playlist.js'),(4687,'wp-includes/js/mediaelement/wp-playlist.min.js'),(4688,'wp-includes/js/plupload/handlers.js'),(4689,'wp-includes/js/plupload/handlers.min.js'),(4690,'wp-includes/js/plupload/license.txt'),(4691,'wp-includes/js/plupload/moxie.js'),(4692,'wp-includes/js/plupload/moxie.min.js'),(4693,'wp-includes/js/plupload/plupload.js'),(4694,'wp-includes/js/plupload/plupload.min.js'),(4695,'wp-includes/js/plupload/wp-plupload.js'),(4696,'wp-includes/js/plupload/wp-plupload.min.js'),(4697,'wp-includes/js/quicktags.js'),(4698,'wp-includes/js/quicktags.min.js'),(4699,'wp-includes/js/shortcode.js'),(4700,'wp-includes/js/shortcode.min.js'),(4701,'wp-includes/js/swfobject.js'),(4702,'wp-includes/js/swfupload/handlers.js'),(4703,'wp-includes/js/swfupload/handlers.min.js'),(4704,'wp-includes/js/swfupload/license.txt'),(4705,'wp-includes/js/swfupload/swfupload.js'),(4706,'wp-includes/js/thickbox/loadingAnimation.gif'),(4707,'wp-includes/js/thickbox/macFFBgHack.png'),(4708,'wp-includes/js/thickbox/thickbox.css'),(4709,'wp-includes/js/thickbox/thickbox.js'),(4710,'wp-includes/js/tinymce/langs/wp-langs-en.js'),(4711,'wp-includes/js/tinymce/license.txt'),(4712,'wp-includes/js/tinymce/plugins/charmap/plugin.js'),(4713,'wp-includes/js/tinymce/plugins/charmap/plugin.min.js'),(4714,'wp-includes/js/tinymce/plugins/colorpicker/plugin.js'),(4715,'wp-includes/js/tinymce/plugins/colorpicker/plugin.min.js'),(4716,'wp-includes/js/tinymce/plugins/compat3x/css/dialog.css'),(4717,'wp-includes/js/tinymce/plugins/compat3x/plugin.js'),(4718,'wp-includes/js/tinymce/plugins/compat3x/plugin.min.js'),(4719,'wp-includes/js/tinymce/plugins/directionality/plugin.js'),(4720,'wp-includes/js/tinymce/plugins/directionality/plugin.min.js'),(4721,'wp-includes/js/tinymce/plugins/fullscreen/plugin.js'),(4722,'wp-includes/js/tinymce/plugins/fullscreen/plugin.min.js'),(4723,'wp-includes/js/tinymce/plugins/hr/plugin.js'),(4724,'wp-includes/js/tinymce/plugins/hr/plugin.min.js'),(4725,'wp-includes/js/tinymce/plugins/image/plugin.js'),(4726,'wp-includes/js/tinymce/plugins/image/plugin.min.js'),(4727,'wp-includes/js/tinymce/plugins/link/plugin.js'),(4728,'wp-includes/js/tinymce/plugins/link/plugin.min.js'),(4729,'wp-includes/js/tinymce/plugins/lists/plugin.js'),(4730,'wp-includes/js/tinymce/plugins/lists/plugin.min.js'),(4731,'wp-includes/js/tinymce/plugins/media/plugin.js'),(4732,'wp-includes/js/tinymce/plugins/media/plugin.min.js'),(4733,'wp-includes/js/tinymce/plugins/paste/plugin.js'),(4734,'wp-includes/js/tinymce/plugins/paste/plugin.min.js'),(4735,'wp-includes/js/tinymce/plugins/tabfocus/plugin.js'),(4736,'wp-includes/js/tinymce/plugins/tabfocus/plugin.min.js'),(4737,'wp-includes/js/tinymce/plugins/textcolor/plugin.js'),(4738,'wp-includes/js/tinymce/plugins/textcolor/plugin.min.js'),(4739,'wp-includes/js/tinymce/plugins/wordpress/plugin.js'),(4740,'wp-includes/js/tinymce/plugins/wordpress/plugin.min.js'),(4741,'wp-includes/js/tinymce/plugins/wpautoresize/plugin.js'),(4742,'wp-includes/js/tinymce/plugins/wpautoresize/plugin.min.js'),(4743,'wp-includes/js/tinymce/plugins/wpdialogs/plugin.js'),(4744,'wp-includes/js/tinymce/plugins/wpdialogs/plugin.min.js'),(4745,'wp-includes/js/tinymce/plugins/wpeditimage/plugin.js'),(4746,'wp-includes/js/tinymce/plugins/wpeditimage/plugin.min.js'),(4747,'wp-includes/js/tinymce/plugins/wpemoji/plugin.js'),(4748,'wp-includes/js/tinymce/plugins/wpemoji/plugin.min.js'),(4749,'wp-includes/js/tinymce/plugins/wpgallery/plugin.js'),(4750,'wp-includes/js/tinymce/plugins/wpgallery/plugin.min.js'),(4751,'wp-includes/js/tinymce/plugins/wplink/plugin.js'),(4752,'wp-includes/js/tinymce/plugins/wplink/plugin.min.js'),(4753,'wp-includes/js/tinymce/plugins/wptextpattern/plugin.js'),(4754,'wp-includes/js/tinymce/plugins/wptextpattern/plugin.min.js'),(4755,'wp-includes/js/tinymce/plugins/wpview/plugin.js'),(4756,'wp-includes/js/tinymce/plugins/wpview/plugin.min.js'),(4757,'wp-includes/js/tinymce/skins/lightgray/content.inline.min.css'),(4758,'wp-includes/js/tinymce/skins/lightgray/content.min.css'),(4759,'wp-includes/js/tinymce/skins/lightgray/fonts/tinymce-small.eot'),(4760,'wp-includes/js/tinymce/skins/lightgray/fonts/tinymce-small.svg'),(4761,'wp-includes/js/tinymce/skins/lightgray/fonts/tinymce-small.ttf'),(4762,'wp-includes/js/tinymce/skins/lightgray/fonts/tinymce-small.woff'),(4763,'wp-includes/js/tinymce/skins/lightgray/fonts/tinymce.eot'),(4764,'wp-includes/js/tinymce/skins/lightgray/fonts/tinymce.svg'),(4765,'wp-includes/js/tinymce/skins/lightgray/fonts/tinymce.ttf'),(4766,'wp-includes/js/tinymce/skins/lightgray/fonts/tinymce.woff'),(4767,'wp-includes/js/tinymce/skins/lightgray/img/anchor.gif'),(4768,'wp-includes/js/tinymce/skins/lightgray/img/loader.gif'),(4769,'wp-includes/js/tinymce/skins/lightgray/img/object.gif'),(4770,'wp-includes/js/tinymce/skins/lightgray/img/trans.gif'),(4771,'wp-includes/js/tinymce/skins/lightgray/skin.min.css'),(4772,'wp-includes/js/tinymce/skins/wordpress/images/audio.png'),(4773,'wp-includes/js/tinymce/skins/wordpress/images/dashicon-edit.png'),(4774,'wp-includes/js/tinymce/skins/wordpress/images/dashicon-no.png'),(4775,'wp-includes/js/tinymce/skins/wordpress/images/embedded.png'),(4776,'wp-includes/js/tinymce/skins/wordpress/images/gallery-2x.png'),(4777,'wp-includes/js/tinymce/skins/wordpress/images/gallery.png'),(4778,'wp-includes/js/tinymce/skins/wordpress/images/more-2x.png'),(4779,'wp-includes/js/tinymce/skins/wordpress/images/more.png'),(4780,'wp-includes/js/tinymce/skins/wordpress/images/pagebreak-2x.png'),(4781,'wp-includes/js/tinymce/skins/wordpress/images/pagebreak.png'),(4782,'wp-includes/js/tinymce/skins/wordpress/images/playlist-audio.png'),(4783,'wp-includes/js/tinymce/skins/wordpress/images/playlist-video.png'),(4784,'wp-includes/js/tinymce/skins/wordpress/images/video.png'),(4785,'wp-includes/js/tinymce/skins/wordpress/wp-content.css'),(4786,'wp-includes/js/tinymce/themes/inlite/theme.js'),(4787,'wp-includes/js/tinymce/themes/inlite/theme.min.js'),(4788,'wp-includes/js/tinymce/themes/modern/theme.js'),(4789,'wp-includes/js/tinymce/themes/modern/theme.min.js'),(4790,'wp-includes/js/tinymce/tiny_mce_popup.js'),(4791,'wp-includes/js/tinymce/tinymce.min.js'),(4792,'wp-includes/js/tinymce/utils/editable_selects.js'),(4793,'wp-includes/js/tinymce/utils/form_utils.js'),(4794,'wp-includes/js/tinymce/utils/mctabs.js'),(4795,'wp-includes/js/tinymce/utils/validate.js'),(4796,'wp-includes/js/tinymce/wp-tinymce.js.gz'),(4797,'wp-includes/js/tinymce/wp-tinymce.php'),(4798,'wp-includes/js/tw-sack.js'),(4799,'wp-includes/js/tw-sack.min.js'),(4800,'wp-includes/js/twemoji.js'),(4801,'wp-includes/js/twemoji.min.js'),(4802,'wp-includes/js/underscore.min.js'),(4803,'wp-includes/js/utils.js'),(4804,'wp-includes/js/utils.min.js'),(4805,'wp-includes/js/wp-a11y.js'),(4806,'wp-includes/js/wp-a11y.min.js'),(4807,'wp-includes/js/wp-ajax-response.js'),(4808,'wp-includes/js/wp-ajax-response.min.js'),(4809,'wp-includes/js/wp-api.js'),(4810,'wp-includes/js/wp-api.min.js'),(4811,'wp-includes/js/wp-auth-check.js'),(4812,'wp-includes/js/wp-auth-check.min.js'),(4813,'wp-includes/js/wp-backbone.js'),(4814,'wp-includes/js/wp-backbone.min.js'),(4815,'wp-includes/js/wp-custom-header.js'),(4816,'wp-includes/js/wp-custom-header.min.js'),(4817,'wp-includes/js/wp-embed-template.js'),(4818,'wp-includes/js/wp-embed-template.min.js'),(4819,'wp-includes/js/wp-embed.js'),(4820,'wp-includes/js/wp-embed.min.js'),(4821,'wp-includes/js/wp-emoji-loader.js'),(4822,'wp-includes/js/wp-emoji-loader.min.js'),(4823,'wp-includes/js/wp-emoji-release.min.js'),(4824,'wp-includes/js/wp-emoji.js'),(4825,'wp-includes/js/wp-emoji.min.js'),(4826,'wp-includes/js/wp-list-revisions.js'),(4827,'wp-includes/js/wp-list-revisions.min.js'),(4828,'wp-includes/js/wp-lists.js'),(4829,'wp-includes/js/wp-lists.min.js'),(4830,'wp-includes/js/wp-pointer.js'),(4831,'wp-includes/js/wp-pointer.min.js'),(4832,'wp-includes/js/wp-sanitize.js'),(4833,'wp-includes/js/wp-sanitize.min.js'),(4834,'wp-includes/js/wp-util.js'),(4835,'wp-includes/js/wp-util.min.js'),(4836,'wp-includes/js/wpdialog.js'),(4837,'wp-includes/js/wpdialog.min.js'),(4838,'wp-includes/js/wplink.js'),(4839,'wp-includes/js/wplink.min.js'),(4840,'wp-includes/js/zxcvbn-async.js'),(4841,'wp-includes/js/zxcvbn-async.min.js'),(4842,'wp-includes/js/zxcvbn.min.js'),(4843,'wp-includes/kses.php'),(4844,'wp-includes/l10n.php'),(4845,'wp-includes/link-template.php'),(4846,'wp-includes/load.php'),(4847,'wp-includes/locale.php'),(4848,'wp-includes/media-template.php'),(4849,'wp-includes/media.php'),(4850,'wp-includes/meta.php'),(4851,'wp-includes/ms-blogs.php'),(4852,'wp-includes/ms-default-constants.php'),(4853,'wp-includes/ms-default-filters.php'),(4854,'wp-includes/ms-deprecated.php'),(4855,'wp-includes/ms-files.php'),(4856,'wp-includes/ms-functions.php'),(4857,'wp-includes/ms-load.php'),(4858,'wp-includes/ms-settings.php'),(4859,'wp-includes/nav-menu-template.php'),(4860,'wp-includes/nav-menu.php'),(4861,'wp-includes/option.php'),(4862,'wp-includes/pluggable-deprecated.php'),(4863,'wp-includes/pluggable.php'),(4864,'wp-includes/plugin.php'),(4865,'wp-includes/pomo/entry.php'),(4866,'wp-includes/pomo/mo.php'),(4867,'wp-includes/pomo/plural-forms.php'),(4868,'wp-includes/pomo/po.php'),(4869,'wp-includes/pomo/streams.php'),(4870,'wp-includes/pomo/translations.php'),(4871,'wp-includes/post-formats.php'),(4872,'wp-includes/post-template.php'),(4873,'wp-includes/post-thumbnail-template.php'),(4874,'wp-includes/post.php'),(4875,'wp-includes/query.php'),(4876,'wp-includes/random_compat/byte_safe_strings.php'),(4877,'wp-includes/random_compat/cast_to_int.php'),(4878,'wp-includes/random_compat/error_polyfill.php'),(4879,'wp-includes/random_compat/random.php'),(4880,'wp-includes/random_compat/random_bytes_com_dotnet.php'),(4881,'wp-includes/random_compat/random_bytes_dev_urandom.php'),(4882,'wp-includes/random_compat/random_bytes_libsodium.php'),(4883,'wp-includes/random_compat/random_bytes_libsodium_legacy.php'),(4884,'wp-includes/random_compat/random_bytes_mcrypt.php'),(4885,'wp-includes/random_compat/random_bytes_openssl.php'),(4886,'wp-includes/random_compat/random_int.php'),(4887,'wp-includes/registration-functions.php'),(4888,'wp-includes/registration.php'),(4889,'wp-includes/rest-api/class-wp-rest-request.php'),(4890,'wp-includes/rest-api/class-wp-rest-response.php'),(4891,'wp-includes/rest-api/class-wp-rest-server.php'),(4892,'wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php'),(4893,'wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php'),(4894,'wp-includes/rest-api/endpoints/class-wp-rest-controller.php'),(4895,'wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php'),(4896,'wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php'),(4897,'wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php'),(4898,'wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php'),(4899,'wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php'),(4900,'wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php'),(4901,'wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php'),(4902,'wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php'),(4903,'wp-includes/rest-api/fields/class-wp-rest-comment-meta-fields.php'),(4904,'wp-includes/rest-api/fields/class-wp-rest-meta-fields.php'),(4905,'wp-includes/rest-api/fields/class-wp-rest-post-meta-fields.php'),(4906,'wp-includes/rest-api/fields/class-wp-rest-term-meta-fields.php'),(4907,'wp-includes/rest-api/fields/class-wp-rest-user-meta-fields.php'),(4908,'wp-includes/rest-api.php'),(4909,'wp-includes/revision.php'),(4910,'wp-includes/rewrite.php'),(4911,'wp-includes/rss-functions.php'),(4912,'wp-includes/rss.php'),(4913,'wp-includes/script-loader.php'),(4914,'wp-includes/session.php'),(4915,'wp-includes/shortcodes.php'),(4916,'wp-includes/spl-autoload-compat.php'),(4917,'wp-includes/taxonomy.php'),(4918,'wp-includes/template-loader.php'),(4919,'wp-includes/template.php'),(4920,'wp-includes/theme-compat/comments.php'),(4921,'wp-includes/theme-compat/embed-404.php'),(4922,'wp-includes/theme-compat/embed-content.php'),(4923,'wp-includes/theme-compat/embed.php'),(4924,'wp-includes/theme-compat/footer-embed.php'),(4925,'wp-includes/theme-compat/footer.php'),(4926,'wp-includes/theme-compat/header-embed.php'),(4927,'wp-includes/theme-compat/header.php'),(4928,'wp-includes/theme-compat/sidebar.php'),(4929,'wp-includes/theme.php'),(4930,'wp-includes/update.php'),(4931,'wp-includes/user.php'),(4932,'wp-includes/vars.php'),(4933,'wp-includes/version.php'),(4934,'wp-includes/widgets/class-wp-nav-menu-widget.php'),(4935,'wp-includes/widgets/class-wp-widget-archives.php'),(4936,'wp-includes/widgets/class-wp-widget-calendar.php'),(4937,'wp-includes/widgets/class-wp-widget-categories.php'),(4938,'wp-includes/widgets/class-wp-widget-custom-html.php'),(4939,'wp-includes/widgets/class-wp-widget-links.php'),(4940,'wp-includes/widgets/class-wp-widget-media-audio.php'),(4941,'wp-includes/widgets/class-wp-widget-media-gallery.php'),(4942,'wp-includes/widgets/class-wp-widget-media-image.php'),(4943,'wp-includes/widgets/class-wp-widget-media-video.php'),(4944,'wp-includes/widgets/class-wp-widget-media.php'),(4945,'wp-includes/widgets/class-wp-widget-meta.php'),(4946,'wp-includes/widgets/class-wp-widget-pages.php'),(4947,'wp-includes/widgets/class-wp-widget-recent-comments.php'),(4948,'wp-includes/widgets/class-wp-widget-recent-posts.php'),(4949,'wp-includes/widgets/class-wp-widget-rss.php'),(4950,'wp-includes/widgets/class-wp-widget-search.php'),(4951,'wp-includes/widgets/class-wp-widget-tag-cloud.php'),(4952,'wp-includes/widgets/class-wp-widget-text.php'),(4953,'wp-includes/widgets.php'),(4954,'wp-includes/wlwmanifest.xml'),(4955,'wp-includes/wp-db.php'),(4956,'wp-includes/wp-diff.php'),(4957,'wp-links-opml.php'),(4958,'wp-load.php'),(4959,'wp-login.php'),(4960,'wp-mail.php'),(4961,'wp-settings.php'),(4962,'wp-signup.php'),(4963,'wp-trackback.php'),(4964,'xmlrpc.php');
/*!40000 ALTER TABLE `wh_wfKnownFileList` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wh_wfLeechers`
--

DROP TABLE IF EXISTS `wh_wfLeechers`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wh_wfLeechers` (
  `eMin` int(10) unsigned NOT NULL,
  `IP` binary(16) NOT NULL DEFAULT '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',
  `hits` int(10) unsigned NOT NULL,
  PRIMARY KEY (`eMin`,`IP`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wh_wfLeechers`
--

LOCK TABLES `wh_wfLeechers` WRITE;
/*!40000 ALTER TABLE `wh_wfLeechers` DISABLE KEYS */;
INSERT INTO `wh_wfLeechers` VALUES (25430490,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1),(25430489,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1),(25430488,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1),(25430443,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1),(25429629,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1),(25430265,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1),(25429620,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1),(25429619,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1),(25429596,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',3),(25429509,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1),(25429955,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1),(25429928,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1),(25429905,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',3),(25429904,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',2),(25429901,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1),(25429900,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1),(25430442,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',5),(25430441,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1),(25430440,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',2),(25430384,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1),(25430383,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1),(25430363,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1),(25430342,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',2),(25430341,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',3),(25430316,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1),(25430290,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',3),(25430289,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1),(25430266,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',2),(25429438,'\0\0\0\0\0\0\0\0\0\0ÿÿÇG®Ì',1),(25429437,'\0\0\0\0\0\0\0\0\0\0ÿÿÇG®Ì',2),(25429236,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',2),(25429235,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1),(25429150,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',3),(25429148,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',2),(25429147,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',2),(25429146,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1),(25429889,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1),(25429888,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1),(25429887,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',2),(25429886,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',3),(25429830,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',2),(25429145,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',3),(25429131,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1),(25429022,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1),(25429015,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',4),(25429013,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1),(25429012,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1),(25430264,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',2),(25430174,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',3),(25430173,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',2),(25430171,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1),(25430003,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1),(25429829,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1),(25429979,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',3),(25429978,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',2),(25429977,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1),(25429975,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',4),(25429770,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1),(25428828,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1),(25428946,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1),(25428945,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',2),(25428944,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',6),(25428943,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',8),(25429768,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',5),(25428942,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',11),(25428941,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',11),(25428940,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',3),(25428939,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',3),(25428938,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',3),(25428937,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1),(25428915,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1),(25429751,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1),(25428913,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',2),(25428911,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',2),(25428901,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1),(25428890,'\0\0\0\0\0\0\0\0\0\0ÿÿBfj',1),(25428886,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1),(25428829,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1),(25428507,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1),(25428479,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1),(25428413,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1),(25428345,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',2),(25429750,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1),(25429749,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',2),(25429661,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1),(25428818,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',2),(25428797,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',3),(25428789,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',2),(25428788,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1),(25428769,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1),(25428277,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1),(25428129,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',2),(25428109,'\0\0\0\0\0\0\0\0\0\0ÿÿBfh',1),(25428052,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1),(25427885,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1),(25427843,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',2),(25427695,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1),(25427684,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1),(25427673,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',3),(25427672,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1),(25427671,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',2),(25427622,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1),(25427473,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1),(25427460,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',2),(25428768,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',7),(25428762,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1),(25428761,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',3),(25428722,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',3),(25428721,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1),(25428720,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1),(25430646,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1),(25430588,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',2),(25430587,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1),(25430586,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1),(25430569,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1),(25430558,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1),(25430539,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1),(25430502,'\0\0\0\0\0\0\0\0\0\0ÿÿBfl',1),(25430499,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1),(25430498,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',2),(25430497,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1),(25430496,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',2),(25430170,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',2),(25430160,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',3),(25430158,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1),(25430129,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',3),(25430128,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',3),(25430123,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1),(25430119,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',3),(25430118,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',2),(25430100,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1),(25430099,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',2),(25430098,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',2),(25430097,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1),(25430078,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1),(25430062,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1),(25430061,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1),(25430059,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1),(25430058,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1),(25430056,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',2),(25430022,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1),(25430012,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1),(25428691,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1),(25428689,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',2),(25428688,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',3),(25428680,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',3),(25428668,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',4),(25428667,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1),(25427450,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1),(25427449,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1),(25430011,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1),(25430010,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',3),(25430008,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',2),(25430007,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1),(25428644,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1),(25428641,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',2),(25428638,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',2),(25428612,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',3),(25428605,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',3),(25428604,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',3),(25428593,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1),(25428549,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',2),(25427335,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1),(25427313,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1),(25427312,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',2),(25427295,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1),(25427294,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',4),(25427293,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',2),(25427292,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1),(25427291,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',3),(25427271,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',3),(25430005,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1),(25430004,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1);
/*!40000 ALTER TABLE `wh_wfLeechers` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wh_wfLiveTrafficHuman`
--

DROP TABLE IF EXISTS `wh_wfLiveTrafficHuman`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wh_wfLiveTrafficHuman` (
  `IP` binary(16) NOT NULL DEFAULT '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',
  `identifier` binary(32) NOT NULL DEFAULT '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',
  `expiration` int(10) unsigned NOT NULL,
  PRIMARY KEY (`IP`,`identifier`),
  KEY `expiration` (`expiration`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wh_wfLiveTrafficHuman`
--

LOCK TABLES `wh_wfLiveTrafficHuman` WRITE;
/*!40000 ALTER TABLE `wh_wfLiveTrafficHuman` DISABLE KEYS */;
INSERT INTO `wh_wfLiveTrafficHuman` VALUES ('\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z','Öß¤‡ÂúŸ·|!-/ÃõÏ¹˜M¥Ãn˜êS',1525892363),('\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z','þÀâ‚ãßÞ‰««Žá¦AY°å]EdÃlÊ	^DQQ',1525840561),('\0\0\0\0\0\0\0\0\0\0ÿÿ­üTV','Öß¤‡ÂúŸ·|!-/ÃõÏ¹˜M¥Ãn˜êS',1525846600),('\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z','ø\r¯}}µõ/¼µ£Þ{’ ŸT¯Ž:no_:|O&kwß',1525915791),('\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z','².¸BcQ$Â_m$Ýû\rËpdX+d.aÀ¼Ã®',1525895912),('\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z','é:Mw?•F¤ªÎ\\fD~z†ÙøpC‘³w<\0\Z®',1525893526),('\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z','ÞG½@’¿[PéÎ;¡’ŠÁïy6Æ£ä¤ÊS',1525921619),('\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z','¹fZû”ª=û\Z\\ë·õ±ý/¥YÚ”xúì',1525919284),('\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z','[¨¥@ò¼}–q/Täƒ:ØHÑ´°´KWm,2',1525916197),('\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z','Éås-ñàbì@“@hnƒqz KIåáËÊo³ôž\r#p',1525898579),('\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z','ïÙ\0ÕºMÉRKL;MÜ×®.\rDFâAGÂ×,WÙ',1525906879),('\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z','1™.Ö’\nD[eá…ì@$¸*faƒæýÒõy¼‚Êô',1525902255),('\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z','uÈäñmðÈ“ÈóÝ£Ðâ÷à0CxTò®x%%\n¨Õr',1525903794),('\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z','ìö öÇ3rÏó¥Á@>ä$±L20l–ù´YÜ',1525909432),('\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z','‡ÙàÆòâ/ë‰µªò±W*§HÎ1¬lbY„©ÞLÈ„>c',1525912845),('\0\0\0\0\0\0\0\0\0\0ÿÿÇG®Ì','“GìÍÑX:FèÂ¥v;^ÓGi8ÂÐ¿!Oü',1525852640),('\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z','r@¤h*ÿŠ×7ÑõÌ<éÙÅÁ¶(Xú³+N2HRC',1525862173),('\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z','r—Hþ“Z«¦3¤°8>Ðàªùp$Ü‘ŒšÌ-BT',1525871374),('\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z','‘ãá\rÂUKMÐM¹º23^°åÐ}æ•C9ýb«¥å#',1525872517),('\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z','ìJ	ä–Tä$»JŒ\ZÙwqŠ°uõÛ`V»ê¯gÏÏ&',1525880452),('\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z','¯·Ñ½K§µ/ÄÊ©á_ÞË‡6Ëad(%›ŠqqÕK',1525882116),('\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z','tÎP½VÔ:ÁÅÏT¿~L*Í©#þFw´ÙMðÏ¡Ì',1525885124);
/*!40000 ALTER TABLE `wh_wfLiveTrafficHuman` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wh_wfLockedOut`
--

DROP TABLE IF EXISTS `wh_wfLockedOut`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wh_wfLockedOut` (
  `IP` binary(16) NOT NULL DEFAULT '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',
  `blockedTime` bigint(20) NOT NULL,
  `reason` varchar(255) NOT NULL,
  `lastAttempt` int(10) unsigned DEFAULT '0',
  `blockedHits` int(10) unsigned DEFAULT '0',
  PRIMARY KEY (`IP`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wh_wfLockedOut`
--

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

--
-- Table structure for table `wh_wfLocs`
--

DROP TABLE IF EXISTS `wh_wfLocs`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wh_wfLocs` (
  `IP` binary(16) NOT NULL DEFAULT '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',
  `ctime` int(10) unsigned NOT NULL,
  `failed` tinyint(3) unsigned NOT NULL,
  `city` varchar(255) DEFAULT '',
  `region` varchar(255) DEFAULT '',
  `countryName` varchar(255) DEFAULT '',
  `countryCode` char(2) DEFAULT '',
  `lat` float(10,7) DEFAULT '0.0000000',
  `lon` float(10,7) DEFAULT '0.0000000',
  PRIMARY KEY (`IP`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wh_wfLocs`
--

LOCK TABLES `wh_wfLocs` WRITE;
/*!40000 ALTER TABLE `wh_wfLocs` DISABLE KEYS */;
INSERT INTO `wh_wfLocs` VALUES ('\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1525798784,0,'Vancouver','British Columbia','Canada','CA',49.2865982,-123.1157990);
/*!40000 ALTER TABLE `wh_wfLocs` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wh_wfLogins`
--

DROP TABLE IF EXISTS `wh_wfLogins`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wh_wfLogins` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `hitID` int(11) DEFAULT NULL,
  `ctime` double(17,6) unsigned NOT NULL,
  `fail` tinyint(3) unsigned NOT NULL,
  `action` varchar(40) NOT NULL,
  `username` varchar(255) NOT NULL,
  `userID` int(10) unsigned NOT NULL,
  `IP` binary(16) DEFAULT NULL,
  `UA` text,
  PRIMARY KEY (`id`),
  KEY `k1` (`IP`,`fail`),
  KEY `hitID` (`hitID`)
) ENGINE=MyISAM AUTO_INCREMENT=262 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wh_wfLogins`
--

LOCK TABLES `wh_wfLogins` WRITE;
/*!40000 ALTER TABLE `wh_wfLogins` DISABLE KEYS */;
INSERT INTO `wh_wfLogins` VALUES (1,1,1488807081.339859,0,'logout','webadmin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ¥šdG','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:51.0) Gecko/20100101 Firefox/51.0'),(2,7,1488897375.756293,0,'loginOK','webadmin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ¥šdG','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:51.0) Gecko/20100101 Firefox/51.0'),(3,9,1488923483.286191,0,'logout','webadmin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ¥šdG','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:51.0) Gecko/20100101 Firefox/51.0'),(4,15,1488991154.661161,0,'loginOK','webadmin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ¥šdG','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:52.0) Gecko/20100101 Firefox/52.0'),(5,36,1489002463.492309,0,'logout','webadmin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ¥šdG','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:52.0) Gecko/20100101 Firefox/52.0'),(6,38,1489002469.325394,0,'loginOK','webadmin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ¥šdG','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:52.0) Gecko/20100101 Firefox/52.0'),(7,40,1489007931.603529,0,'loginOK','webadmin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ¥šdG','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:52.0) Gecko/20100101 Firefox/52.0'),(8,42,1489008799.442220,0,'logout','webadmin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ¥šdG','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:52.0) Gecko/20100101 Firefox/52.0'),(9,45,1489509188.332483,0,'loginOK','saskia',3,'\0\0\0\0\0\0\0\0\0\0ÿÿ¸—$e','Mozilla/5.0 (Windows NT 10.0; WOW64; rv:52.0) Gecko/20100101 Firefox/52.0'),(10,50,1489587035.527175,0,'loginOK','saskia',3,'\0\0\0\0\0\0\0\0\0\0ÿÿ¸—$e','Mozilla/5.0 (Windows NT 10.0; WOW64; rv:52.0) Gecko/20100101 Firefox/52.0'),(11,54,1489612492.137553,0,'loginOK','webadmin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ¥šdG','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:52.0) Gecko/20100101 Firefox/52.0'),(12,55,1489612968.223405,0,'logout','webadmin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ¥šdG','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:52.0) Gecko/20100101 Firefox/52.0'),(13,57,1489674324.589985,0,'loginOK','saskia',3,'\0\0\0\0\0\0\0\0\0\0ÿÿ¸—$e','Mozilla/5.0 (Windows NT 10.0; WOW64; rv:52.0) Gecko/20100101 Firefox/52.0'),(14,64,1490116749.749821,0,'loginOK','saskia',3,'\0\0\0\0\0\0\0\0\0\0ÿÿ¸—$e','Mozilla/5.0 (Windows NT 10.0; WOW64; rv:52.0) Gecko/20100101 Firefox/52.0'),(15,78,1490285695.360731,0,'loginOK','saskia',3,'\0\0\0\0\0\0\0\0\0\0ÿÿCF=Ë','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/57.0.2987.98 Safari/537.36'),(16,80,1490289561.139460,0,'loginOK','saskia',3,'\0\0\0\0\0\0\0\0\0\0ÿÿCF=Ë','Mozilla/5.0 (Windows NT 10.0; WOW64; rv:52.0) Gecko/20100101 Firefox/52.0'),(17,85,1490620512.883095,0,'loginOK','saskia',3,'\0\0\0\0\0\0\0\0\0\0ÿÿ¸—?™','Mozilla/5.0 (Windows NT 10.0; WOW64; rv:52.0) Gecko/20100101 Firefox/52.0'),(18,88,1490620752.980620,0,'loginOK','Richard',4,'\0\0\0\0\0\0\0\0\0\0ÿÿ¸—?™','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/57.0.2987.98 Safari/537.36'),(19,92,1490624333.928811,0,'loginOK','webadmin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ¥šdG','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:52.0) Gecko/20100101 Firefox/52.0'),(20,95,1490624470.771989,0,'loginOK','Richard',4,'\0\0\0\0\0\0\0\0\0\0ÿÿ¥šdG','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/57.0.2987.110 Safari/537.36'),(21,96,1490624817.732667,0,'logout','webadmin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ¥šdG','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:52.0) Gecko/20100101 Firefox/52.0'),(22,98,1490624819.996336,0,'logout','Richard',4,'\0\0\0\0\0\0\0\0\0\0ÿÿ¥šdG','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/57.0.2987.110 Safari/537.36'),(23,101,1490644111.225188,0,'logout','saskia',3,'\0\0\0\0\0\0\0\0\0\0ÿÿ¸—?™','Mozilla/5.0 (Windows NT 10.0; WOW64; rv:52.0) Gecko/20100101 Firefox/52.0'),(24,104,1490725426.407103,0,'loginOK','saskia',3,'\0\0\0\0\0\0\0\0\0\0ÿÿCF=Ë','Mozilla/5.0 (Windows NT 10.0; WOW64; rv:52.0) Gecko/20100101 Firefox/52.0'),(25,110,1490805076.016887,0,'loginOK','Richard',4,'\0\0\0\0\0\0\0\0\0\0ÿÿ¸—%r','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/57.0.2987.98 Safari/537.36'),(26,111,1490805091.959494,0,'logout','Richard',4,'\0\0\0\0\0\0\0\0\0\0ÿÿ¸—%r','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/57.0.2987.98 Safari/537.36'),(27,115,1490805196.023833,0,'logout','saskia',3,'\0\0\0\0\0\0\0\0\0\0ÿÿ¸—%r','Mozilla/5.0 (Windows NT 10.0; WOW64; rv:52.0) Gecko/20100101 Firefox/52.0'),(28,119,1490805212.920409,0,'loginOK','saskia',3,'\0\0\0\0\0\0\0\0\0\0ÿÿ¸—%r','Mozilla/5.0 (Windows NT 10.0; WOW64; rv:52.0) Gecko/20100101 Firefox/52.0'),(29,124,1490807000.836510,0,'loginOK','Richard',4,'\0\0\0\0\0\0\0\0\0\0ÿÿçK„','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36'),(30,127,1490808008.777923,0,'loginOK','Sue',5,'\0\0\0\0\0\0\0\0\0\0ÿÿ¸—%r','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/57.0.2987.98 Safari/537.36'),(31,128,1490808016.891364,0,'logout','Sue',5,'\0\0\0\0\0\0\0\0\0\0ÿÿ¸—%r','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/57.0.2987.98 Safari/537.36'),(32,132,1490808589.325824,0,'loginOK','Sue',5,'\0\0\0\0\0\0\0\0\0\0ÿÿçK„','Mozilla/5.0 (iPad; CPU OS 10_2_1 like Mac OS X) AppleWebKit/602.4.6 (KHTML, like Gecko) Version/10.0 Mobile/14D27 Safari/602.1'),(33,135,1490809926.264621,0,'loginOK','Sue',5,'\0\0\0\0\0\0\0\0\0\0ÿÿçK„','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/603.1.30 (KHTML, like Gecko) Version/10.1 Safari/603.1.30'),(34,136,1490810942.503459,0,'loginOK','Sue',5,'\0\0\0\0\0\0\0\0\0\0ÿÿ¸—%r','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/57.0.2987.98 Safari/537.36'),(35,141,1490814651.064322,0,'logout','Sue',5,'\0\0\0\0\0\0\0\0\0\0ÿÿçK„','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/603.1.30 (KHTML, like Gecko) Version/10.1 Safari/603.1.30'),(36,145,1490814787.140440,0,'loginOK','Sue',5,'\0\0\0\0\0\0\0\0\0\0ÿÿçK„','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/603.1.30 (KHTML, like Gecko) Version/10.1 Safari/603.1.30'),(37,146,1490824774.567372,0,'logout','Richard',4,'\0\0\0\0\0\0\0\0\0\0ÿÿçK„','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36'),(38,148,1490824820.802612,0,'loginOK','Richard',4,'\0\0\0\0\0\0\0\0\0\0ÿÿçK„','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36'),(39,154,1490825089.013415,0,'loginOK','Richard',4,'\0\0\0\0\0\0\0\0\0\0ÿÿçK„','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36'),(40,158,1490881539.417517,0,'loginOK','webadmin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿCF=Ë','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:52.0) Gecko/20100101 Firefox/52.0'),(41,159,1490886478.188776,0,'logout','webadmin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿCF=Ë','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:52.0) Gecko/20100101 Firefox/52.0'),(42,164,1490982739.343220,0,'logout','Sue',5,'\0\0\0\0\0\0\0\0\0\0ÿÿ¸—%r','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/57.0.2987.98 Safari/537.36'),(43,172,1491064902.134326,0,'loginOK','webadmin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ¥šdG','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:52.0) Gecko/20100101 Firefox/52.0'),(44,174,1491066735.887995,0,'logout','webadmin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ¥šdG','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:52.0) Gecko/20100101 Firefox/52.0'),(45,177,1491144178.241882,0,'loginOK','saskia',3,'\0\0\0\0\0\0\0\0\0\0ÿÿ¸—%÷','Mozilla/5.0 (Windows NT 10.0; WOW64; rv:52.0) Gecko/20100101 Firefox/52.0'),(46,182,1491162824.597635,0,'loginOK','webadmin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ¥šdG','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:52.0) Gecko/20100101 Firefox/52.0'),(47,184,1491179493.933951,0,'logout','webadmin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ¥šdG','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:52.0) Gecko/20100101 Firefox/52.0'),(48,191,1491179827.781034,0,'loginOK','webadmin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ¥šdG','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:52.0) Gecko/20100101 Firefox/52.0'),(49,216,1491180986.627825,0,'logout','webadmin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ¥šdG','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:52.0) Gecko/20100101 Firefox/52.0'),(50,221,1491181150.091448,0,'loginOK','webadmin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ¥šdG','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:52.0) Gecko/20100101 Firefox/52.0'),(51,224,1491181357.906257,0,'logout','webadmin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ¥šdG','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:52.0) Gecko/20100101 Firefox/52.0'),(52,240,1491217355.520824,1,'loginFailValidUsername','Richard',4,'\0\0\0\0\0\0\0\0\0\0ÿÿçK„','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36'),(53,241,1491217400.781575,1,'loginFailValidUsername','Richard',4,'\0\0\0\0\0\0\0\0\0\0ÿÿçK„','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36'),(54,253,1491227036.052045,0,'loginOK','Richard',4,'\0\0\0\0\0\0\0\0\0\0ÿÿçK„','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36'),(55,1548,1492091886.749807,0,'loginOK','webadmin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ®\\eÝ','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/57.0.2987.133 Safari/537.36'),(56,1551,1492091981.079484,0,'logout','webadmin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ®\\eÝ','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/57.0.2987.133 Safari/537.36'),(57,1641,1492181802.402441,0,'loginOK','Richard',4,'\0\0\0\0\0\0\0\0\0\0ÿÿçK„','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/57.0.2987.133 Safari/537.36'),(58,1936,1492542922.396502,0,'loginOK','Richard',4,'\0\0\0\0\0\0\0\0\0\0ÿÿA˜§ë','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/57.0.2987.133 Safari/537.36'),(59,2337,1493138132.121267,0,'loginOK','saskia',3,'\0\0\0\0\0\0\0\0\0\0ÿÿ®\\eÝ','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/57.0.2987.133 Safari/537.36'),(60,2379,1493146850.111924,0,'logout','saskia',3,'\0\0\0\0\0\0\0\0\0\0ÿÿ®\\eÝ','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/57.0.2987.133 Safari/537.36'),(61,2423,1493224764.208509,0,'loginOK','saskia',3,'\0\0\0\0\0\0\0\0\0\0ÿÿ®\\eÝ','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/57.0.2987.133 Safari/537.36'),(62,2533,1493301658.890852,0,'logout','saskia',3,'\0\0\0\0\0\0\0\0\0\0ÿÿ®\\eÝ','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/57.0.2987.133 Safari/537.36'),(63,2535,1493301745.770324,0,'loginOK','Sue',5,'\0\0\0\0\0\0\0\0\0\0ÿÿ®\\eÝ','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/57.0.2987.133 Safari/537.36'),(64,2538,1493301771.025338,0,'logout','Sue',5,'\0\0\0\0\0\0\0\0\0\0ÿÿ®\\eÝ','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/57.0.2987.133 Safari/537.36'),(65,2540,1493301836.681850,0,'loginOK','saskia',3,'\0\0\0\0\0\0\0\0\0\0ÿÿ®\\eÝ','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/57.0.2987.133 Safari/537.36'),(66,2557,1493313741.928632,0,'loginOK','webadmin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ®\\eÝ','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.81 Safari/537.36'),(67,2576,1493319593.766356,0,'logout','webadmin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ®\\eÝ','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.81 Safari/537.36'),(68,2680,1493517871.777732,1,'loginFailValidUsername','richard',4,'\0\0\0\0\0\0\0\0\0\0ÿÿçK„','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.81 Safari/537.36'),(69,2681,1493517926.425751,1,'loginFailValidUsername','richard',4,'\0\0\0\0\0\0\0\0\0\0ÿÿçK„','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.81 Safari/537.36'),(70,2685,1493519779.097322,0,'loginOK','Richard',4,'\0\0\0\0\0\0\0\0\0\0ÿÿçK„','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.81 Safari/537.36'),(71,3466,1494514329.174846,0,'loginOK','saskia',3,'\0\0\0\0\0\0\0\0\0\0ÿÿCF?Q','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/57.0.2987.133 Safari/537.36'),(72,3532,1494526750.241130,0,'logout','saskia',3,'\0\0\0\0\0\0\0\0\0\0ÿÿCF?Q','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/57.0.2987.133 Safari/537.36'),(73,3655,1494665351.128123,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0ÿÿÀéð','Mechanize/2.7.3 Ruby/1.9.3p551 (http://github.com/sparklemotion/mechanize/)'),(74,3771,1494780254.848995,0,'loginOK','Richard',4,'\0\0\0\0\0\0\0\0\0\0ÿÿçK„','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.96 Safari/537.36'),(75,3845,1494833757.426209,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0ÿÿÆbzé','Mechanize/2.7.3 Ruby/1.9.3p551 (http://github.com/sparklemotion/mechanize/)'),(76,3938,1494944557.527875,0,'loginOK','saskia',3,'\0\0\0\0\0\0\0\0\0\0ÿÿCF?Q','Mozilla/5.0 (Windows NT 10.0; WOW64; rv:53.0) Gecko/20100101 Firefox/53.0'),(77,3970,1494958395.472129,0,'logout','saskia',3,'\0\0\0\0\0\0\0\0\0\0ÿÿCF?Q','Mozilla/5.0 (Windows NT 10.0; WOW64; rv:53.0) Gecko/20100101 Firefox/53.0'),(78,5153,1495991212.597432,0,'loginOK','Richard',4,'\0\0\0\0\0\0\0\0\0\0ÿÿŠ¹+','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.36'),(79,6912,1497217525.472132,0,'loginOK','Richard',4,'\0\0\0\0\0\0\0\0\0\0ÿÿŠ¹+','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.36'),(80,7030,1497313282.857473,0,'loginOK','Richard',4,'\0\0\0\0\0\0\0\0\0\0ÿÿŠ¹+','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.36'),(81,7605,1497622521.510352,0,'loginOK','saskia',3,'\0\0\0\0\0\0\0\0\0\0ÿÿ¸—$È','Mozilla/5.0 (Windows NT 10.0; WOW64; rv:53.0) Gecko/20100101 Firefox/53.0'),(82,8165,1497872903.761254,0,'loginOK','saskia',3,'\0\0\0\0\0\0\0\0\0\0ÿÿ¸—$','Mozilla/5.0 (Windows NT 10.0; WOW64; rv:53.0) Gecko/20100101 Firefox/53.0'),(83,8220,1497882672.584284,0,'logout','saskia',3,'\0\0\0\0\0\0\0\0\0\0ÿÿ¸—$','Mozilla/5.0 (Windows NT 10.0; WOW64; rv:53.0) Gecko/20100101 Firefox/53.0'),(84,8610,1498047431.678100,0,'loginOK','saskia',3,'\0\0\0\0\0\0\0\0\0\0ÿÿ¸—$j','Mozilla/5.0 (Windows NT 10.0; WOW64; rv:53.0) Gecko/20100101 Firefox/53.0'),(85,8620,1498049939.187211,0,'logout','saskia',3,'\0\0\0\0\0\0\0\0\0\0ÿÿ¸—$j','Mozilla/5.0 (Windows NT 10.0; WOW64; rv:53.0) Gecko/20100101 Firefox/53.0'),(86,9522,1498503946.236538,0,'loginOK','Richard',4,'\0\0\0\0\0\0\0\0\0\0ÿÿŠ¹+','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.36'),(87,9664,1498581349.704492,0,'loginOK','saskia',3,'\0\0\0\0\0\0\0\0\0\0ÿÿ¸—$Ò','Mozilla/5.0 (Windows NT 10.0; WOW64; rv:54.0) Gecko/20100101 Firefox/54.0'),(88,9734,1498611617.133589,0,'loginOK','webadmin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿrPý','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/59.0.3071.109 Safari/537.36'),(89,9735,1498611681.168953,0,'logout','webadmin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿrPý','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/59.0.3071.109 Safari/537.36'),(90,9966,1498767598.170908,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0ÿÿÆGPå','Mechanize/2.7.3 Ruby/1.9.3p551 (http://github.com/sparklemotion/mechanize/)'),(91,10049,1498815175.997042,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0ÿÿÆ`>','Mechanize/2.7.3 Ruby/1.9.3p551 (http://github.com/sparklemotion/mechanize/)'),(92,10538,1499042065.526713,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0ÿÿXj£','Mechanize/2.7.3 Ruby/1.9.3p551 (http://github.com/sparklemotion/mechanize/)'),(93,12572,1499721804.896579,0,'loginOK','Richard',4,'\0\0\0\0\0\0\0\0\0\0ÿÿŠ¹+','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/59.0.3071.115 Safari/537.36'),(94,13629,1500146493.223698,0,'loginOK','Richard',4,'\0\0\0\0\0\0\0\0\0\0ÿÿŠ¹+','Mozilla/5.0 (Linux; Android 6.0.1; SM-G903W Build/MMB29K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/59.0.3071.125 Mobile Safari/537.36'),(95,13630,1500146686.447485,0,'loginOK','Richard',4,'\0\0\0\0\0\0\0\0\0\0ÿÿŠ¹+','Mozilla/5.0 (Linux; Android 6.0.1; SM-G903W Build/MMB29K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/59.0.3071.125 Mobile Safari/537.36'),(96,14074,1500308574.163922,0,'loginOK','webadmin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ¸—%Ž','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/59.0.3071.115 Safari/537.36'),(97,14075,1500308649.656193,0,'logout','webadmin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ¸—%Ž','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/59.0.3071.115 Safari/537.36'),(98,14079,1500308707.710464,0,'loginOK','webadmin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ¸—%Ž','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/59.0.3071.115 Safari/537.36'),(99,14080,1500308728.591695,0,'logout','webadmin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ¸—%Ž','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/59.0.3071.115 Safari/537.36'),(100,15608,1500940450.361396,0,'loginOK','Richard',4,'\0\0\0\0\0\0\0\0\0\0ÿÿŠ¹+','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/59.0.3071.115 Safari/537.36'),(101,17361,1501569503.697862,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ|š!ó','Mozilla/5.0 (Macintosh; U; PPC Mac OS X 10_46_93) AppleWebKit/532.87.34 (KHTML, like Gecko) Chrome/56.3.7683.2310 Safari/533.27 Edge/37.11329'),(102,18324,1501882251.837546,0,'loginOK','Richard',4,'\0\0\0\0\0\0\0\0\0\0ÿÿÐ`T','Mozilla/5.0 (Linux; Android 6.0.1; SM-G903W Build/MMB29K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/59.0.3071.125 Mobile Safari/537.36'),(103,19591,1502321420.913994,0,'loginOK','Richard',4,'\0\0\0\0\0\0\0\0\0\0ÿÿÐ`T','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/59.0.3071.115 Safari/537.36'),(104,19906,1502401614.333088,0,'loginOK','saskia',3,'\0\0\0\0\0\0\0\0\0\0ÿÿ¸—$','Mozilla/5.0 (Windows NT 10.0; WOW64; rv:55.0) Gecko/20100101 Firefox/55.0'),(105,19912,1502402193.298015,0,'loginOK','webadmin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿKwû-','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.90 Safari/537.36'),(106,19926,1502403584.672283,0,'logout','webadmin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿKwû-','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.90 Safari/537.36'),(107,20859,1502733169.376309,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ]2[','Mozilla/5.0 (Windows NT 6.2; WOW64; x64) AppleWebKit/531.88.31 (KHTML, like Gecko) Chrome/56.3.9983.4256 Safari/534.48 OPR/44.5.0706.5078'),(108,22061,1503159469.674698,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0ÿÿR,w¨','Mozilla/5.0 (Windows NT 5.0; rv:52.52.09) Gecko/20140587 Firefox/52.52.09'),(109,22716,1503441019.634168,0,'loginOK','Richard',4,'\0\0\0\0\0\0\0\0\0\0ÿÿÐ`T','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.101 Safari/537.36'),(110,22837,1503491324.237446,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0ÿÿv*|¬','Mozilla/5.0 (Windows NT 5.1; WOW64; x64) AppleWebKit/532.86.39 (KHTML, like Gecko) Chrome/57.4.9863.4135 Safari/534.56 OPR/44.5.0586.6858'),(111,22924,1503516767.904701,1,'loginFailValidUsername','Richard',4,'\0\0\0\0\0\0\0\0\0\0ÿÿÐ`T','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.101 Safari/537.36'),(112,22925,1503516780.957301,1,'loginFailValidUsername','Richard',4,'\0\0\0\0\0\0\0\0\0\0ÿÿÐ`T','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.101 Safari/537.36'),(113,22926,1503516915.542182,0,'loginOK','Richard',4,'\0\0\0\0\0\0\0\0\0\0ÿÿÐ`T','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.101 Safari/537.36'),(114,22960,1503528055.931611,1,'loginFailValidUsername','Richard',4,'\0\0\0\0\0\0\0\0\0\0ÿÿÐ`T','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.101 Safari/537.36'),(115,22962,1503528085.795389,0,'loginOK','Richard',4,'\0\0\0\0\0\0\0\0\0\0ÿÿÐ`T','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.101 Safari/537.36'),(116,23184,1503607068.448200,0,'loginOK','Richard',4,'\0\0\0\0\0\0\0\0\0\0ÿÿÐ`T','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.101 Safari/537.36'),(117,23248,1503622723.486668,0,'loginOK','Richard',4,'\0\0\0\0\0\0\0\0\0\0ÿÿÐ`T','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.101 Safari/537.36'),(118,23551,1503781897.396822,0,'loginOK','Richard',4,'\0\0\0\0\0\0\0\0\0\0ÿÿÐ`T','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.101 Safari/537.36'),(119,24053,1504022697.035092,0,'loginOK','Richard',4,'\0\0\0\0\0\0\0\0\0\0ÿÿÐ`T','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36'),(120,24704,1504194468.204216,0,'loginOK','saskia',3,'\0\0\0\0\0\0\0\0\0\0ÿÿ¸—$U','Mozilla/5.0 (Windows NT 10.0; WOW64; rv:55.0) Gecko/20100101 Firefox/55.0'),(121,24751,1504206672.888761,0,'loginOK','Richard',4,'\0\0\0\0\0\0\0\0\0\0ÿÿÐ`T','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36'),(122,24922,1504294380.199945,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0ÿÿi0G','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(123,27196,1504298526.151096,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0ÿÿYÍ}ö','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(124,27788,1504299707.219038,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0ÿÿn%â&','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(125,28125,1504300249.965006,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ)Nw','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(126,30529,1504304178.096839,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0ÿÿšIW','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(127,30649,1504304401.386735,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ¿!û)','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(128,30708,1504304483.617227,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0ÿÿn,Ô','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(129,31146,1504305231.178531,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0ÿÿºûJŸ','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(130,31769,1504306387.583685,1,'loginFailInvalidUsername','test',0,'\0\0\0\0\0\0\0\0\0\0ÿÿµ©¿<','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(131,31778,1504306413.903015,1,'loginFailInvalidUsername','test',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ.c£ÿ','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(132,32874,1504308276.196637,1,'loginFailInvalidUsername','test',0,'\0\0\0\0\0\0\0\0\0\0ÿÿÕéËh','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(133,34123,1504310500.283260,1,'loginFailInvalidUsername','test',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ¯žØ:','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(134,34227,1504310658.398423,1,'loginFailInvalidUsername','test',0,'\0\0\0\0\0\0\0\0\0\0ÿÿÊ	+n','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(135,34927,1504311817.919884,1,'loginFailInvalidUsername','test',0,'\0\0\0\0\0\0\0\0\0\0ÿÿÔÈG5','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(136,35072,1504312007.971802,1,'loginFailInvalidUsername','test',0,'\0\0\0\0\0\0\0\0\0\0ÿÿÉûó','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(137,35310,1504312460.189096,1,'loginFailInvalidUsername','test',0,'\0\0\0\0\0\0\0\0\0\0ÿÿiI‰','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(138,35540,1504312834.386750,1,'loginFailInvalidUsername','test',0,'\0\0\0\0\0\0\0\0\0\0ÿÿÊˆ\\(','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(139,37891,1504316734.302491,1,'loginFailInvalidUsername','test',0,'\0\0\0\0\0\0\0\0\0\0ÿÿœÌo3','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(140,38137,1504317055.854041,1,'loginFailInvalidUsername','test',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ.c0ƒ','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(141,38719,1504317889.214875,1,'loginFailInvalidUsername','watchhill',0,'\0\0\0\0\0\0\0\0\0\0ÿÿs²\ZÇ','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(142,39426,1504319130.217827,1,'loginFailInvalidUsername','watchhill',0,'\0\0\0\0\0\0\0\0\0\0ÿÿx*','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(143,39428,1504319132.530287,1,'loginFailInvalidUsername','watchhill',0,'\0\0\0\0\0\0\0\0\0\0ÿÿšIW','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(144,39514,1504319240.441453,1,'loginFailInvalidUsername','test',0,'\0\0\0\0\0\0\0\0\0\0ÿÿuÉA‡','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(145,40029,1504320226.894349,1,'loginFailInvalidUsername','watchhill',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ¹¿¤@','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(146,40194,1504320547.236895,1,'loginFailInvalidUsername','watchhill',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ”ÿ …','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(147,40358,1504320804.903085,1,'loginFailInvalidUsername','watchhill',0,'\0\0\0\0\0\0\0\0\0\0ÿÿuÛÙ§','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(148,42857,1504325102.516216,1,'loginFailInvalidUsername','watchhill',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ1äã„','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(149,42893,1504325176.319803,1,'loginFailInvalidUsername','watchhill',0,'\0\0\0\0\0\0\0\0\0\0ÿÿÊ	+n','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(150,42992,1504325366.327799,1,'loginFailInvalidUsername','watchhill',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ¯žØ','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(151,44002,1504326846.537013,1,'loginFailInvalidUsername','watchhill',0,'\0\0\0\0\0\0\0\0\0\0ÿÿÊ	+{','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(152,44082,1504327006.654486,1,'loginFailInvalidUsername','watchhill',0,'\0\0\0\0\0\0\0\0\0\0ÿÿzåH','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(153,44130,1504327056.218137,1,'loginFailInvalidUsername','watchhill',0,'\0\0\0\0\0\0\0\0\0\0ÿÿgª[','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(154,44170,1504327116.450404,1,'loginFailInvalidUsername','watchhill',0,'\0\0\0\0\0\0\0\0\0\0ÿÿÍñù','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(155,44507,1504327604.690842,1,'loginFailInvalidUsername','watchhill',0,'\0\0\0\0\0\0\0\0\0\0ÿÿp†,','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(156,45143,1504328655.722073,1,'loginFailInvalidUsername','watchhill',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ|ÞY','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(157,45484,1504329212.587767,1,'loginFailInvalidUsername','watchhill',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ‹§v','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(158,45498,1504329273.553832,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ%M}=','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(159,45510,1504329317.263038,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ^»Z\n','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(160,45607,1504329458.002206,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0ÿÿÊ3L7','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(161,45756,1504329668.776180,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0ÿÿgQÖ”','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(162,46500,1504330940.405832,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0ÿÿyÈ?µ','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(163,47177,1504332048.181943,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0ÿÿgÑ¸','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(164,47252,1504332122.524412,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0ÿÿÞ^','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(165,47389,1504332266.738517,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0ÿÿs²\ZÇ','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(166,47667,1504332712.511698,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0ÿÿgNŸ=','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(167,47876,1504333133.560378,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0ÿÿÊ	+','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(168,48958,1504335032.107711,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0ÿÿn$æ','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(169,50225,1504337268.493336,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ;_Š¾','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(170,50295,1504337488.177852,1,'loginFailInvalidUsername','test',0,'\0\0\0\0\0\0\0\0\0\0ÿÿZj¥Þ','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(171,51329,1504339102.592815,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0ÿÿM.‹u','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(172,51766,1504339716.523363,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0ÿÿn,}','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(173,52585,1504341279.893936,1,'loginFailInvalidUsername','test',0,'\0\0\0\0\0\0\0\0\0\0ÿÿË–Œ','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(174,52643,1504341326.766962,1,'loginFailInvalidUsername','test',0,'\0\0\0\0\0\0\0\0\0\0ÿÿWt¼ö','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(175,53093,1504342126.944528,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0ÿÿuã\n4','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(176,53188,1504342347.022567,1,'loginFailInvalidUsername','test',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ–„T','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(177,53619,1504342950.093834,1,'loginFailInvalidUsername','test',0,'\0\0\0\0\0\0\0\0\0\0ÿÿgÜÌ','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(178,54204,1504343741.115019,1,'loginFailInvalidUsername','test',0,'\0\0\0\0\0\0\0\0\0\0ÿÿgRÒZ','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(179,54300,1504343944.409202,1,'loginFailInvalidUsername','test',0,'\0\0\0\0\0\0\0\0\0\0ÿÿn$ík','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(180,54660,1504344479.507600,1,'loginFailInvalidUsername','test',0,'\0\0\0\0\0\0\0\0\0\0ÿÿYÍ}ö','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(181,55387,1504345434.327757,1,'loginFailInvalidUsername','test',0,'\0\0\0\0\0\0\0\0\0\0ÿÿQè\nU','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(182,55563,1504345739.214175,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ_1I!','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(183,55600,1504345753.226234,1,'loginFailInvalidUsername','test',0,'\0\0\0\0\0\0\0\0\0\0ÿÿÜžV','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(184,56259,1504346989.801897,1,'loginFailInvalidUsername','test',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ²O4','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(185,56356,1504347095.768788,1,'loginFailInvalidUsername','test',0,'\0\0\0\0\0\0\0\0\0\0ÿÿSÔe€','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(186,56366,1504347120.288156,1,'loginFailInvalidUsername','test',0,'\0\0\0\0\0\0\0\0\0\0ÿÿuö]Î','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(187,56555,1504347431.128833,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0ÿÿVà¸','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(188,57608,1504348995.571091,1,'loginFailInvalidUsername','test',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ³º-À','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(189,59758,1504352567.612716,1,'loginFailInvalidUsername','watchhill',0,'\0\0\0\0\0\0\0\0\0\0ÿÿŠŽ†','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(190,59953,1504352880.529838,1,'loginFailInvalidUsername','watchhill',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ\'%¥š','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(191,59990,1504353029.073151,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0ÿÿNŽ','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(192,60325,1504353555.941518,1,'loginFailInvalidUsername','watchhill',0,'\0\0\0\0\0\0\0\0\0\0ÿÿÅ3š½','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(193,61390,1504355428.094276,1,'loginFailInvalidUsername','watchhill',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ¹F','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(194,61866,1504356324.987533,1,'loginFailInvalidUsername','watchhill',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ‰;U','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(195,62112,1504356768.428896,1,'loginFailInvalidUsername','test',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ\0-ò','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(196,62898,1504358108.996502,1,'loginFailInvalidUsername','watchhill',0,'\0\0\0\0\0\0\0\0\0\0ÿÿß¸\r$','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(197,64056,1504360003.310476,1,'loginFailInvalidUsername','watchhill',0,'\0\0\0\0\0\0\0\0\0\0ÿÿºm»','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(198,64617,1504361145.797428,1,'loginFailInvalidUsername','watchhill',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ)×•Š','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(199,65409,1504362398.663834,1,'loginFailInvalidUsername','test',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ\'.aœ','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(200,65648,1504362798.826425,1,'loginFailInvalidUsername','watchhill',0,'\0\0\0\0\0\0\0\0\0\0ÿÿÞ^','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(201,65656,1504362800.854168,1,'loginFailInvalidUsername','watchhill',0,'\0\0\0\0\0\0\0\0\0\0ÿÿgÙî','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(202,66677,1504371034.102089,1,'loginFailInvalidUsername','test',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ|•‰\Z','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(203,66708,1504373322.722539,1,'loginFailInvalidUsername','test',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ±;','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(204,66787,1504383588.942874,1,'loginFailInvalidUsername','watchhill',0,'\0\0\0\0\0\0\0\0\0\0ÿÿif\rÂ','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(205,66810,1504386208.125911,1,'loginFailInvalidUsername','test',0,'\0\0\0\0\0\0\0\0\0\0ÿÿpË‹','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(206,66873,1504395487.878433,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ)*³5','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(207,67235,1504513503.724809,1,'loginFailInvalidUsername','test',0,'\0\0\0\0\0\0\0\0\0\0ÿÿVz>ü','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(208,67729,1504718905.131841,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0ÿÿX§ÁÌ','Mozilla/5.0 (Macintosh; U; PPC Mac OS X 10_49_96) AppleWebKit/532.80.37 (KHTML, like Gecko) Chrome/56.2.7997.2625 Safari/533.10 Edge/36.14468'),(209,69357,1505422771.352452,0,'loginOK','Richard',4,'\0\0\0\0\0\0\0\0\0\0ÿÿÐ`T','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36'),(210,69756,1505569489.393658,0,'loginOK','Richard',4,'\0\0\0\0\0\0\0\0\0\0ÿÿÐ`T','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36'),(211,70072,1505753216.289654,0,'loginOK','saskia',3,'\0\0\0\0\0\0\0\0\0\0ÿÿ¸—$¨','Mozilla/5.0 (Windows NT 10.0; WOW64; rv:55.0) Gecko/20100101 Firefox/55.0'),(212,72292,1506434188.500878,0,'loginOK','saskia',3,'\0\0\0\0\0\0\0\0\0\0ÿÿ®\\g\\','Mozilla/5.0 (Windows NT 10.0; WOW64; rv:55.0) Gecko/20100101 Firefox/55.0'),(213,72307,1506439891.878365,0,'logout','saskia',3,'\0\0\0\0\0\0\0\0\0\0ÿÿ®\\g\\','Mozilla/5.0 (Windows NT 10.0; WOW64; rv:55.0) Gecko/20100101 Firefox/55.0'),(214,74157,1507222433.698493,0,'loginOK','Richard',4,'\0\0\0\0\0\0\0\0\0\0ÿÿÐ`T','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.100 Safari/537.36'),(215,75400,1507838027.943723,0,'loginOK','webadmin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿKwû-','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.100 Safari/537.36'),(216,75401,1507838124.307350,0,'logout','webadmin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿKwû-','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.100 Safari/537.36'),(217,76502,1508447660.786164,0,'loginOK','Richard',4,'\0\0\0\0\0\0\0\0\0\0ÿÿÐ`T','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.100 Safari/537.36'),(218,76790,1508607940.509356,0,'loginOK','Richard',4,'\0\0\0\0\0\0\0\0\0\0ÿÿÐ`T','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.100 Safari/537.36'),(219,77299,1508851811.356195,0,'loginOK','Richard',4,'\0\0\0\0\0\0\0\0\0\0ÿÿÐ`T','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.100 Safari/537.36'),(220,77632,1509037100.836266,0,'loginOK','saskia',3,'\0\0\0\0\0\0\0\0\0\0ÿÿ¸—%®','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:56.0) Gecko/20100101 Firefox/56.0'),(221,78803,1509717369.560249,0,'loginOK','saskia',3,'\0\0\0\0\0\0\0\0\0\0ÿÿ¸—%Ò','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:56.0) Gecko/20100101 Firefox/56.0'),(222,78807,1509718650.701186,0,'logout','saskia',3,'\0\0\0\0\0\0\0\0\0\0ÿÿ¸—%Ò','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:56.0) Gecko/20100101 Firefox/56.0'),(223,79471,1510192061.505449,0,'loginOK','Richard',4,'\0\0\0\0\0\0\0\0\0\0ÿÿÐ`T','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.100 Safari/537.36'),(224,79481,1510193479.002394,0,'loginOK','Richard',4,'\0\0\0\0\0\0\0\0\0\0ÿÿÐ`T','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.100 Safari/537.36'),(225,85065,1513023822.017974,0,'loginOK','Richard',4,'\0\0\0\0\0\0\0\0\0\0ÿÿØ.Ê','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/63.0.3239.84 Safari/537.36'),(226,87418,1514497287.003569,0,'loginOK','Richard',4,'\0\0\0\0\0\0\0\0\0\0ÿÿÐ`T','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/63.0.3239.84 Safari/537.36'),(227,87869,1514644731.939780,0,'loginOK','Richard',4,'\0\0\0\0\0\0\0\0\0\0ÿÿÐ`T','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/63.0.3239.84 Safari/537.36'),(228,90178,1516029156.482439,0,'loginOK','Richard',4,'\0\0\0\0\0\0\0\0\0\0ÿÿÐ`T','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/63.0.3239.132 Safari/537.36'),(229,91700,1516576818.937814,0,'loginOK','Richard',4,'\0\0\0\0\0\0\0\0\0\0ÿÿÏÂ','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_2) AppleWebKit/604.4.7 (KHTML, like Gecko) Version/11.0.2 Safari/604.4.7'),(230,93392,1517511896.641863,0,'loginOK','Richard',4,'\0\0\0\0\0\0\0\0\0\0ÿÿÐ`T','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/63.0.3239.132 Safari/537.36'),(231,93715,1517669579.254549,0,'loginOK','Richard',4,'\0\0\0\0\0\0\0\0\0\0ÿÿÐ`T','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/63.0.3239.132 Safari/537.36'),(232,93798,1517716877.705067,0,'loginOK','Richard',4,'\0\0\0\0\0\0\0\0\0\0ÿÿÏÂ','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_2) AppleWebKit/604.4.7 (KHTML, like Gecko) Version/11.0.2 Safari/604.4.7'),(233,93801,1517716998.966886,0,'logout','Richard',4,'\0\0\0\0\0\0\0\0\0\0ÿÿÏÂ','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_2) AppleWebKit/604.4.7 (KHTML, like Gecko) Version/11.0.2 Safari/604.4.7'),(234,93813,1517717503.385366,1,'loginFailValidUsername','richard',4,'\0\0\0\0\0\0\0\0\0\0ÿÿÏÂ','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/64.0.3282.140 Safari/537.36'),(235,93814,1517717549.907448,0,'loginOK','Richard',4,'\0\0\0\0\0\0\0\0\0\0ÿÿÏÂ','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_2) AppleWebKit/604.4.7 (KHTML, like Gecko) Version/11.0.2 Safari/604.4.7'),(236,94151,1517858311.593220,0,'loginOK','Richard',4,'\0\0\0\0\0\0\0\0\0\0ÿÿÏÂ','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_2) AppleWebKit/604.4.7 (KHTML, like Gecko) Version/11.0.2 Safari/604.4.7'),(237,94541,1517943590.328055,0,'loginOK','Richard',4,'\0\0\0\0\0\0\0\0\0\0ÿÿÏÂ','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_2) AppleWebKit/604.4.7 (KHTML, like Gecko) Version/11.0.2 Safari/604.4.7'),(238,95086,1518213502.088846,0,'loginOK','Richard',4,'\0\0\0\0\0\0\0\0\0\0ÿÿÏÂ','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_2) AppleWebKit/604.4.7 (KHTML, like Gecko) Version/11.0.2 Safari/604.4.7'),(239,95423,1518460556.319283,0,'loginOK','webadmin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿKwû-','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:58.0) Gecko/20100101 Firefox/58.0'),(240,95424,1518462292.917398,0,'logout','webadmin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿKwû-','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:58.0) Gecko/20100101 Firefox/58.0'),(241,95538,1518538726.822485,0,'loginOK','Richard',4,'\0\0\0\0\0\0\0\0\0\0ÿÿÐ`T','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/63.0.3239.132 Safari/537.36'),(242,95540,1518539009.334790,0,'loginOK','webadmin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿKwû-','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:58.0) Gecko/20100101 Firefox/58.0'),(243,95546,1518539339.672400,0,'loginOK','James',6,'\0\0\0\0\0\0\0\0\0\0ÿÿKwû-','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:58.0) Gecko/20100101 Firefox/58.0'),(244,95547,1518539362.221805,0,'logout','James',6,'\0\0\0\0\0\0\0\0\0\0ÿÿKwû-','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:58.0) Gecko/20100101 Firefox/58.0'),(245,95549,1518539720.847453,0,'logout','webadmin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿKwû-','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:58.0) Gecko/20100101 Firefox/58.0'),(246,95594,1518551519.669392,0,'loginOK','James',6,'\0\0\0\0\0\0\0\0\0\0ÿÿÏÂ','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_2) AppleWebKit/604.4.7 (KHTML, like Gecko) Version/11.0.2 Safari/604.4.7'),(247,95933,1518743376.929768,0,'loginOK','webadmin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿKwû-','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:58.0) Gecko/20100101 Firefox/58.0'),(248,95934,1518743470.935420,0,'logout','webadmin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿKwû-','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:58.0) Gecko/20100101 Firefox/58.0'),(249,96110,1518819985.217923,0,'loginOK','Richard',4,'\0\0\0\0\0\0\0\0\0\0ÿÿÐ`T','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/63.0.3239.132 Safari/537.36'),(250,98964,1520101539.015549,1,'loginFailInvalidUsername','watchhill',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ) ‰,','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:49.0) Gecko/20100101 Firefox/49.0'),(251,99981,1520514859.303690,0,'loginOK','Richard',4,'\0\0\0\0\0\0\0\0\0\0ÿÿ`Užq','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.146 Safari/537.36'),(252,101394,1521046197.708447,0,'loginOK','James',6,'\0\0\0\0\0\0\0\0\0\0ÿÿÏÂ','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_3) AppleWebKit/604.5.6 (KHTML, like Gecko) Version/11.0.3 Safari/604.5.6'),(253,103053,1521752319.325771,0,'loginOK','Richard',4,'\0\0\0\0\0\0\0\0\0\0ÿÿÐ`T','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.36'),(254,104195,1522229205.877785,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0ÿÿqŠy','Mozilla/5.0 (iPad; CPU OS 8_1_1 like Mac OS X; sl-SI) AppleWebKit/535.19.1 (KHTML, like Gecko) Version/4.0.5 Mobile/8B117 Safari/6535.19.1'),(255,106325,1523040029.238908,0,'loginOK','Richard',4,'\0\0\0\0\0\0\0\0\0\0ÿÿÐ`T','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.36'),(256,106343,1523050254.154630,0,'loginOK','Richard',4,'\0\0\0\0\0\0\0\0\0\0ÿÿÐ`T','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.36'),(257,106870,1523293480.956499,0,'loginOK','Richard',4,'\0\0\0\0\0\0\0\0\0\0ÿÿÐ`T','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.36'),(258,107302,1523473473.597744,0,'loginOK','James',6,'\0\0\0\0\0\0\0\0\0\0ÿÿÏÂ','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_4) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/11.1 Safari/605.1.15'),(259,108209,1524075659.424072,0,'loginOK','Richard',4,'\0\0\0\0\0\0\0\0\0\0ÿÿÐ`T','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.117 Safari/537.36'),(260,109019,1524574745.138752,0,'loginOK','Richard',4,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.117 Safari/537.36'),(261,110740,1525798784.571574,0,'loginOK','Richard',4,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.139 Safari/537.36');
/*!40000 ALTER TABLE `wh_wfLogins` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wh_wfNet404s`
--

DROP TABLE IF EXISTS `wh_wfNet404s`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wh_wfNet404s` (
  `sig` binary(16) NOT NULL,
  `ctime` int(10) unsigned NOT NULL,
  `URI` varchar(1000) NOT NULL,
  PRIMARY KEY (`sig`),
  KEY `k1` (`ctime`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wh_wfNet404s`
--

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

--
-- Table structure for table `wh_wfNotifications`
--

DROP TABLE IF EXISTS `wh_wfNotifications`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wh_wfNotifications` (
  `id` varchar(32) NOT NULL DEFAULT '',
  `new` tinyint(3) unsigned NOT NULL DEFAULT '1',
  `category` varchar(255) NOT NULL,
  `priority` int(11) NOT NULL DEFAULT '1000',
  `ctime` int(10) unsigned NOT NULL,
  `html` text NOT NULL,
  `links` text NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wh_wfNotifications`
--

LOCK TABLES `wh_wfNotifications` WRITE;
/*!40000 ALTER TABLE `wh_wfNotifications` DISABLE KEYS */;
INSERT INTO `wh_wfNotifications` VALUES ('network-GB',0,'release630',400,1488800927,'<div style=\"padding:1rem 0px;\"><b>Announcing Wordfence 6.3.0 - Exciting Improvements</b><br>\nThis morning we are officially releasing Wordfence 6.3.0. If you have Wordfence auto-update enabled, your site may have already been updated automatically. This is a very exciting release for us with a host of improvements. The user interface has changed and we have added a new \'Dashboard\' menu option. You\'ll also notice the Wordfence menu structure has changed. <br><br>\n\nWe have tried to keep everything familiar, but easier to find and access. You can find the help documentation for the new dashboard <a href=\"https://docs.wordfence.com/en/Wordfence_Dashboard\">here</a>.<br><br>\n\n<a href=\"https://www.wordfence.com/blog/2017/01/wordfence-6-3-0/\">You can find the full announcement and details of the changes on our blog....</a></div>','[]'),('network-GC',0,'digest201701',1000,1488800927,'<div style=\"padding:1rem 0px;\">\n		<p style=\"font-weight:bold;font-size:0.8rem;color:#11967A;margin-top: 0;\">Recent Blog Highlights</p>\n		<div style=\"display:flex;flex-direction:row;max-width:100%;overflow-x:auto;flex-basis:auto;\">\n			<div style=\"margin: 0 0.5rem 1rem;padding: 1rem;border:1px solid #e9eff3;width:200px;flex-shrink:0;display:flex;flex-direction:column;margin-bottom:0.5rem;\">\n				<a href=\"https://www.wordfence.com/blog/2017/01/xmlrpc-wp-login-brute-force/?utm_source=plugin&amp;utm_campaign=bd020117&amp;utm_medium=pluginalert\" style=\"display:block;font-weight:bold;text-decoration:none;color:#00709e;margin-bottom:1rem;\">XMLRPC or WP-Login: Which do Brute Force Attackers Prefer</a>\n				<div style=\"font-size:0.9rem;color:#2d2d2d;\">A close look at brute force attack targets yielded some surprising results.</div>\n			</div>\n			<div style=\"margin: 0 0.5rem 1rem;padding: 1rem;border:1px solid #e9eff3;width:200px;flex-shrink:0;display:flex;flex-direction:column;margin-bottom:0.5rem;\">\n				<a href=\"https://www.wordfence.com/blog/2017/01/wordpress-security-plugin/?utm_source=plugin&amp;utm_campaign=bd020117&amp;utm_medium=pluginalert\" style=\"display:block;font-weight:bold;text-decoration:none;color:#00709e;margin-bottom:1rem;\">Do you Need a WordPress Security Plugin?</a>\n\n				<div style=\"font-size:0.9rem;color:#2d2d2d;\">This easy to follow post makes the clear case for running both a malware scanner and firewall on your WordPress site.</div>\n			</div>\n\n			<div style=\"margin: 0 0.5rem 1rem;padding: 1rem;border:1px solid #e9eff3;width:200px;flex-shrink:0;display:flex;flex-direction:column;margin-bottom:0.5rem;\">\n				<a href=\"https://www.wordfence.com/blog/2017/01/wordpress-botnet-monetization/?utm_source=plugin&amp;utm_campaign=bd020117&amp;utm_medium=pluginalert\" style=\"display:block;font-weight:bold;text-decoration:none;color:#00709e;margin-bottom:1rem;\">Analysis: Methods and Monetization of a Botnet Attacking WordPress</a>\n\n				<div style=\"font-size:0.9rem;color:#2d2d2d;\">\n				A deep dive on the methods and profit motive of an active Botnet.\n				</div>\n			</div>\n\n			<div style=\"margin: 0 0.5rem 1rem;padding: 1rem;border:1px solid #e9eff3;width:200px;flex-shrink:0;display:flex;flex-direction:column;margin-bottom:0.5rem;\">\n				<a href=\"https://www.wordfence.com/blog/2017/01/chrome-56-ssl-https-wordpress/?utm_source=plugin&amp;utm_campaign=bd020117&amp;utm_medium=pluginalert\" style=\"display:block;font-weight:bold;text-decoration:none;color:#00709e;margin-bottom:1rem;\">Imminent: Non-HTTPS Sites Labeled â€œNot Secureâ€ by Chrome</a>\n\n				<div style=\"font-size:0.9rem;color:#2d2d2d;\">\n				An overview of changes to Google Chrome that will impact non-https site owners.\n				</div>\n			</div>\n\n			<div style=\"margin: 0 0.5rem 1rem;padding: 1rem;border:1px solid #e9eff3;width:200px;flex-shrink:0;display:flex;flex-direction:column;margin-bottom:0.5rem;\">\n				<a href=\"https://www.wordfence.com/blog/2017/01/gmail-phishing-data-uri/?utm_source=plugin&amp;utm_campaign=bd020117&amp;utm_medium=pluginalert\" style=\"display:block;font-weight:bold;text-decoration:none;color:#00709e;margin-bottom:1rem;\">Wide Impact: Highly Effective Gmail Phishing Technique Being Exploited</a>\n\n				<div style=\"font-size:0.9rem;color:#2d2d2d;\">\n				We profile a new phishing technique that is fooling even experienced technical users.\n				</div>\n			</div>\n\n			<div style=\"margin: 0 0.5rem 1rem;padding: 1rem;border:1px solid #e9eff3;width:200px;flex-shrink:0;display:flex;flex-direction:column;margin-bottom:0.5rem;\">\n				<a href=\"https://www.wordfence.com/blog/2017/01/how-wordpress-firewall-works/?utm_source=plugin&amp;utm_campaign=bd020117&amp;utm_medium=pluginalert\" style=\"display:block;font-weight:bold;text-decoration:none;color:#00709e;margin-bottom:1rem;\">How the Wordfence Firewall Works</a>\n\n				<div style=\"font-size:0.9rem;color:#2d2d2d;\">\n				We explain how the Wordfence firewall protects your website from attacks.\n				</div>\n			</div>\n\n			<div style=\"margin: 0 0.5rem 1rem;padding: 1rem;border:1px solid #e9eff3;width:200px;flex-shrink:0;display:flex;flex-direction:column;margin-bottom:0.5rem;\">\n				<a href=\"https://www.wordfence.com/blog/2017/01/december-2016-wordpress-attack-activity-report/?utm_source=plugin&amp;utm_campaign=bd020117&amp;utm_medium=pluginalert\" style=\"display:block;font-weight:bold;text-decoration:none;color:#00709e;margin-bottom:1rem;\">The December 2016 WordPress Attack Activity Report</a>\n\n				<div style=\"font-size:0.9rem;color:#2d2d2d;\">\n				Stats and insights from Wordfence Network from December.\n				</div>\n                </div>\n		</div>\n	</div><script type=\"application/javascript\">jQuery(\'.wf-dashboard-item-list-title\').css(\'min-width\', 0);</script>','[]'),('site-AEAAAAA',0,'wfplugin_scan',500,1488897378,'<a href=\"http://www.watchhill.ca/wp-admin/admin.php?page=WordfenceScan\">1 issue found in most recent scan</a>','[]'),('site-AIAAAAA',0,'wfplugin_updates',1000,1488897387,'<a href=\"http://www.watchhill.ca/wp-admin/update-core.php\">An update is available for 1 plugin</a>','[]'),('site-AQAAAAA',0,'wfplugin_updates',1000,1489587039,'<a href=\"https://www.watchhill.ca/wp-admin/update-core.php\">Updates are available for 4 plugins</a>','[]'),('site-AYAAAAA',0,'wfplugin_scan',500,1489712206,'<a href=\"https://www.watchhill.ca/wp-admin/admin.php?page=WordfenceScan\">8 issues found in most recent scan</a>','[]'),('site-BYAAAAA',0,'wfplugin_updates',1000,1490620510,'<a href=\"https://www.watchhill.ca/wp-admin/update-core.php\">An update is available for 1 plugin</a>','[]'),('site-B4AAAAA',0,'wfplugin_scan',500,1490624338,'<a href=\"https://www.watchhill.ca/wp-admin/admin.php?page=WordfenceScan\">1 issue found in most recent scan</a>','[]'),('site-CYAAAAA',0,'wfplugin_scan',500,1491227020,'<a href=\"https://www.watchhill.ca/wp-admin/admin.php?page=WordfenceScan\">1 issue found in most recent scan</a>','[]'),('site-C4AAAAA',0,'wfplugin_updates',1000,1492091878,'<a href=\"https://www.watchhill.ca/wp-admin/update-core.php\">Updates are available for 2 plugins</a>','[]'),('site-DAAAAAA',0,'wfplugin_scan',500,1491888283,'<a href=\"https://www.watchhill.ca/wp-admin/admin.php?page=WordfenceScan\">1 issue found in most recent scan</a>','[]'),('site-F4AAAAA',0,'wfplugin_scan',500,1492162874,'<a href=\"https://www.watchhill.ca/wp-admin/admin.php?page=WordfenceScan\">2 issues found in most recent scan</a>','[]'),('site-HAAAAAA',0,'wfplugin_scan',500,1492245059,'<a href=\"https://www.watchhill.ca/wp-admin/admin.php?page=WordfenceScan\">3 issues found in most recent scan</a>','[]'),('site-HIAAAAA',0,'wfplugin_updates',1000,1493313795,'<a href=\"https://www.watchhill.ca/wp-admin/update-core.php\">An update is available for 1 theme</a>','[]'),('site-HMAAAAA',0,'wfplugin_scan',500,1492474849,'<a href=\"https://www.watchhill.ca/wp-admin/admin.php?page=WordfenceScan\">3 issues found in most recent scan</a>','[]'),('site-IQAAAAA',0,'wfplugin_scan',500,1493313795,'<a href=\"https://www.watchhill.ca/wp-admin/admin.php?page=WordfenceScan\">1 issue found in most recent scan</a>','[]'),('site-OQAAAAA',0,'wfplugin_updates',502,1518460627,'<a href=\"https://www.watchhill.ca/wp-admin/update-core.php\">Updates are available for WordPress (v4.9.4) and 1 theme</a>','[]'),('site-OUAAAAA',0,'wfplugin_scan',500,1493797792,'<a href=\"https://www.watchhill.ca/wp-admin/admin.php?page=WordfenceScan\">5 issues found in most recent scan</a>','[]'),('site-QUAAAAA',0,'wfplugin_scan',500,1494019577,'<a href=\"https://www.watchhill.ca/wp-admin/admin.php?page=WordfenceScan\">5 issues found in most recent scan</a>','[]'),('site-R4AAAAA',0,'wfplugin_scan',500,1494078606,'<a href=\"https://www.watchhill.ca/wp-admin/admin.php?page=WordfenceScan\">5 issues found in most recent scan</a>','[]'),('site-SEAAAAA',0,'wfplugin_scan',500,1494757615,'<a href=\"https://www.watchhill.ca/wp-admin/admin.php?page=WordfenceScan\">7 issues found in most recent scan</a>','[]'),('site-VUAAAAA',0,'wfplugin_scan',500,1495059384,'<a href=\"https://www.watchhill.ca/wp-admin/admin.php?page=WordfenceScan\">8 issues found in most recent scan</a>','[]'),('site-XYAAAAA',0,'wfplugin_scan',502,1495550130,'<a href=\"https://www.watchhill.ca/wp-admin/admin.php?page=WordfenceScan\">7 issues found in most recent scan</a>','[]'),('network-GD',0,'gravityscan',300,1498495117,'<p><strong>Say hello to Gravityscan, the free malware and vulnerability scanner for any website</strong></p>\n\n<p>Today we are excited to share a new product we have been working on for the last year. It is free to use, works on any website and you donâ€™t need to install anything to use it. We think youâ€™ll find it to be a great complement to the WordPress protection youâ€™re already getting with Wordfence. And we know that for a lot of you WordPress isnâ€™t the only platform you need to secure, so we built Gravityscan to work with all of your sites.</p>\n\n<p><a href=\"https://www.gravityscan.com?utm_source=plugin&utm_medium=pluginalert&utm_campaign=la061817\" target=\"_blank\" class=\"wf-btn wf-btn-primary\">Scan your site now</a></p>','[]'),('site-2IAAAAA',0,'wfplugin_scan',502,1495807280,'<a href=\"https://www.watchhill.ca/wp-admin/admin.php?page=WordfenceScan\">7 issues found in most recent scan</a>','[]'),('network-GE',0,'siteaudit',400,1498495117,'<p><strong>Announcing New Site Security Audit Service</strong></p>\n<p>We are very excited to announce that we have officially launched a new WordPress Site Security Audit Service.</p>\n<p>We have been providing this service to select customers for several weeks prior to the official launch. We are now live with the service and making it available to all of our customers.</p>\n<p>We have written about the service on our blog, where we explain a few of the benefits of having our dedicated Security Services Team evaluate and secure your site.</p>\n<p><a href=\"https://www.wordfence.com/blog/2017/05/wordpress-security-audit/?utm_source=plugin&utm_medium=pluginalert&utm_campaign=sa052517\" target=\"_blank\">You can find the full announcement on our blog...</a></p>','[]'),('site-3MAAAAA',0,'wfplugin_scan',502,1496203644,'<a href=\"https://www.watchhill.ca/wp-admin/admin.php?page=WordfenceScan\">7 issues found in most recent scan</a>','[]'),('site-5IAAAAA',0,'wfplugin_scan',502,1499189427,'<a href=\"https://www.watchhill.ca/wp-admin/admin.php?page=WordfenceScan\">4 issues found in most recent scan</a>','[]'),('site-PEAQAAA',0,'wfplugin_scan',502,1500031894,'<a href=\"https://www.watchhill.ca/wp-admin/admin.php?page=WordfenceScan\">7 issues found in most recent scan</a>','[]'),('site-UEAQAAA',0,'wfplugin_scan',502,1518743450,'<a href=\"https://www.watchhill.ca/wp-admin/admin.php?page=WordfenceScan\">1 issue found in most recent scan</a>','[]'),('network-GF',0,'gravityscanbadge',500,1501348486,'<p><strong style=\"color:#00709E;\">Introducing a Free Trust Badge With Blacklist and SEO Monitoring</strong></p>\n<p>Today we are excited to officially launch the Gravityscan trust badge program. As you know, Gravityscan is a project by the Wordfence team to bring malware and vulnerability scanning to all websites. Until now, daily monitoring had been a paid feature of Gravityscan, priced at around $120 per year.  The new badge program provides free daily security monitoring for any website.</p>\n<p>The Gravityscan trust badge checks your website daily against over 20 blacklists and ensures that your content does not contain links to malicious sites. The program also includes a comprehensive daily scan for malware.</p>\n<p>The Gravityscan trust badge also helps improve conversion rates and visitor confidence in your website. To learn more about this exciting and completely free program, you can find the <a href=\"https://www.gravityscan.com/blog/gravityscan-badge?utm_source=plugin&utm_medium=pluginalert&utm_campaign=072617\" target=\"_blank\">full details on the Gravityscan blog</a>.</p>\n<p class=\"wf-center\"><a href=\"https://www.gravityscan.com/sign-up?plan=free-monitoring&utm_source=plugin&utm_medium=pluginalert&utm_campaign=072617\" target=\"_blank\" style=\"text-align: center;text-transform: uppercase;font-weight: bold;background-color: #11967A;height: 44px;line-height: 44px;padding: 0px 20px;color: #ffffff;text-decoration: none;display: inline-block;border-radius: 3px;\">Get Free Trust Badge</a></p>','[]'),('network-GG',0,'blogpost082917',400,1505409321,'<p><strong>Better Data Means Better Protection</strong></p>\n<p>Mission-critical sites rely on the real-time protection provided by Wordfence Premium. Learn how the 30-strong team at Wordfence stays on top of the latest threats, providing Premium customers with the real-time threat intelligence they need to stay safe.</p>\n<p><a href=\"https://www.wordfence.com/blog/2017/08/benefits-wordfence-premium/?utm_source=plugin&amp;utm_medium=pluginalert&amp;utm_campaign=bp082917\" class=\"wf-btn wf-btn-callout wf-btn-primary\" target=\"_blank\">Learn More</a></p>','[]'),('site-WYCAAAA',1,'wfplugin_scan',502,1525800205,'<a href=\"https://www.watchhill.ca/wp-admin/admin.php?page=WordfenceScan\">9 issues found in most recent scan</a>','[]'),('site-W4CAAAA',0,'wfplugin_updates',502,1519230924,'<a href=\"https://www.watchhill.ca/wp-admin/update-core.php\">An update is available for 1 plugin</a>','[]'),('site-YQCAAAA',1,'wfplugin_updates',502,1525800200,'<a href=\"https://www.watchhill.ca/wp-admin/update-core.php\">Updates are available for 6 plugins and 2 themes</a>','[]');
/*!40000 ALTER TABLE `wh_wfNotifications` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wh_wfPendingIssues`
--

DROP TABLE IF EXISTS `wh_wfPendingIssues`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wh_wfPendingIssues` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `time` int(10) unsigned NOT NULL,
  `lastUpdated` int(10) unsigned NOT NULL,
  `status` varchar(10) NOT NULL,
  `type` varchar(20) NOT NULL,
  `severity` tinyint(3) unsigned NOT NULL,
  `ignoreP` char(32) NOT NULL,
  `ignoreC` char(32) NOT NULL,
  `shortMsg` varchar(255) NOT NULL,
  `longMsg` text,
  `data` text,
  PRIMARY KEY (`id`),
  KEY `lastUpdated` (`lastUpdated`),
  KEY `status` (`status`),
  KEY `ignoreP` (`ignoreP`),
  KEY `ignoreC` (`ignoreC`)
) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wh_wfPendingIssues`
--

LOCK TABLES `wh_wfPendingIssues` WRITE;
/*!40000 ALTER TABLE `wh_wfPendingIssues` DISABLE KEYS */;
INSERT INTO `wh_wfPendingIssues` VALUES (1,1525594855,1525594855,'new','knownfile',1,'b377e8a9aa3f4bf4dde676e8d32b4f4a','7b2f45aea25690fe306369af2a315073','WordPress core file modified: wp-content/plugins/hello.php','This WordPress core file has been modified and differs from the original file distributed with this version of WordPress.','a:6:{s:4:\"file\";s:28:\"wp-content/plugins/hello.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:1;s:6:\"canFix\";b:1;s:9:\"canDelete\";b:0;s:10:\"haveIssues\";s:4:\"core\";}');
/*!40000 ALTER TABLE `wh_wfPendingIssues` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wh_wfReverseCache`
--

DROP TABLE IF EXISTS `wh_wfReverseCache`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wh_wfReverseCache` (
  `IP` binary(16) NOT NULL DEFAULT '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',
  `host` varchar(255) NOT NULL,
  `lastUpdate` int(10) unsigned NOT NULL,
  PRIMARY KEY (`IP`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wh_wfReverseCache`
--

LOCK TABLES `wh_wfReverseCache` WRITE;
/*!40000 ALTER TABLE `wh_wfReverseCache` DISABLE KEYS */;
INSERT INTO `wh_wfReverseCache` VALUES ('\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z','cwh27.canadianwebhosting.com',1525798784);
/*!40000 ALTER TABLE `wh_wfReverseCache` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wh_wfSNIPCache`
--

DROP TABLE IF EXISTS `wh_wfSNIPCache`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wh_wfSNIPCache` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `IP` varchar(45) NOT NULL DEFAULT '',
  `expiration` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
  `body` varchar(255) NOT NULL DEFAULT '',
  `count` int(10) unsigned NOT NULL DEFAULT '0',
  `type` int(10) unsigned NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`),
  KEY `expiration` (`expiration`),
  KEY `IP` (`IP`),
  KEY `type` (`type`)
) ENGINE=MyISAM AUTO_INCREMENT=159 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wh_wfSNIPCache`
--

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

--
-- Table structure for table `wh_wfScanners`
--

DROP TABLE IF EXISTS `wh_wfScanners`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wh_wfScanners` (
  `eMin` int(10) unsigned NOT NULL,
  `IP` binary(16) NOT NULL DEFAULT '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',
  `hits` smallint(5) unsigned NOT NULL,
  PRIMARY KEY (`eMin`,`IP`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wh_wfScanners`
--

LOCK TABLES `wh_wfScanners` WRITE;
/*!40000 ALTER TABLE `wh_wfScanners` DISABLE KEYS */;
INSERT INTO `wh_wfScanners` VALUES (25428867,'\0\0\0\0\0\0\0\0\0\0ÿÿo@\Z',1);
/*!40000 ALTER TABLE `wh_wfScanners` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wh_wfStatus`
--

DROP TABLE IF EXISTS `wh_wfStatus`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wh_wfStatus` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `ctime` double(17,6) unsigned NOT NULL,
  `level` tinyint(3) unsigned NOT NULL,
  `type` char(5) NOT NULL,
  `msg` varchar(1000) NOT NULL,
  PRIMARY KEY (`id`),
  KEY `k1` (`ctime`),
  KEY `k2` (`type`)
) ENGINE=MyISAM AUTO_INCREMENT=47540 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wh_wfStatus`
--

LOCK TABLES `wh_wfStatus` WRITE;
/*!40000 ALTER TABLE `wh_wfStatus` DISABLE KEYS */;
INSERT INTO `wh_wfStatus` VALUES (47166,1525335015.517688,2,'info','Analyzed 1400 files containing 17.02 MB of data so far'),(47046,1525076105.967446,2,'info','Scanned contents of 328 additional files at 7.71 per second'),(47047,1525076107.018019,2,'info','Scanned contents of 343 additional files at 7.86 per second'),(46987,1525076028.461807,2,'info','Analyzed 3400 files containing 43.55 MB of data so far'),(46988,1525076029.746367,2,'info','Analyzed 3500 files containing 44.98 MB of data so far'),(46645,1524559609.347179,2,'info','Scanned contents of 284 additional files at 7.51 per second'),(46644,1524559608.331802,2,'info','Scanned contents of 266 additional files at 7.22 per second'),(46802,1524816137.264434,2,'info','Analyzed 4800 files containing 67.1 MB of data so far'),(46801,1524816135.131227,2,'info','Analyzed 4700 files containing 65.35 MB of data so far'),(47244,1525335122.219021,2,'info','Scanned contents of 263 additional files at 5.28 per second'),(46391,1524296608.119653,2,'info','Analyzed 3800 files containing 50.25 MB of data so far'),(46392,1524296608.695615,2,'info','Analyzed 3900 files containing 50.98 MB of data so far'),(46796,1524816125.522421,2,'info','Analyzed 4200 files containing 56.43 MB of data so far'),(47515,1525594951.683673,10,'info','SUM_FINAL:Scan complete. You have 9 new issues to fix. 1 ignored issue was also detected. See below.'),(47514,1525594951.683357,1,'info','Scan Complete. Scanned 4964 files, 19 plugins, 5 themes, 16 posts, 1 comments and 376 URLs in 2 minutes 19 seconds.'),(47227,1525335094.360704,2,'info','Scanned contents of 146 additional files at 6.66 per second'),(46618,1524559574.123252,2,'info','Scanned contents of 20 additional files at 7.65 per second'),(46844,1524816178.994272,2,'info','Scanned contents of 275 additional files at 7.18 per second'),(46843,1524816177.989319,2,'info','Scanned contents of 259 additional files at 6.95 per second'),(47022,1525076073.852563,2,'info','Scanned contents of 79 additional files at 7.56 per second'),(47028,1525076084.543435,2,'info','Scanned contents of 124 additional files at 5.86 per second'),(47240,1525335115.219968,2,'info','Scanned contents of 222 additional files at 5.19 per second'),(46399,1524296624.726126,2,'info','Analyzed 4600 files containing 63.2 MB of data so far'),(46828,1524816159.801652,2,'info','Scanned contents of 108 additional files at 5.65 per second'),(46971,1525076002.813911,2,'info','Analyzed 1800 files containing 24.58 MB of data so far'),(46970,1525075999.500028,2,'info','Analyzed 1700 files containing 21.4 MB of data so far'),(46568,1524559502.839055,2,'info','Analyzed 1200 files containing 13.45 MB of data so far'),(46729,1524816052.880024,2,'info','Getting plugin list from WordPress'),(46367,1524296558.319880,2,'info','Analyzed 1400 files containing 17.02 MB of data so far'),(47369,1525594845.586397,10,'info','SUM_START:Comparing plugins against WordPress.org originals'),(46744,1524816053.397278,2,'info','500 files indexed'),(47471,1525594929.685772,2,'info','Scanned contents of 246 additional files at 6.92 per second'),(46928,1525075968.472654,2,'info','Getting plugin list from WordPress'),(46840,1524816174.728053,2,'info','Scanned contents of 229 additional files at 6.73 per second'),(47356,1525594845.077287,10,'info','SUM_ENDOK:Checking for future GeoIP support'),(47355,1525594845.075147,10,'info','SUM_START:Checking for future GeoIP support'),(46817,1524816144.396559,2,'info','Scanned contents of 26 additional files at 7.04 per second'),(47486,1525594947.563418,2,'info','Done file contents scan'),(46385,1524296591.265640,2,'info','Analyzed 3200 files containing 37.34 MB of data so far'),(46816,1524816143.386727,2,'info','Scanned contents of 20 additional files at 7.45 per second'),(46962,1525075984.223530,2,'info','Analyzed 900 files containing 10.5 MB of data so far'),(47206,1525335071.923135,10,'info','SUM_ENDOK:Check for publicly accessible configuration files, backup files and logs'),(46402,1524296631.470237,2,'info','Analyzed 4900 files containing 69.73 MB of data so far'),(46997,1525076048.941707,2,'info','Analyzed 4400 files containing 60.1 MB of data so far'),(46945,1525075969.208930,2,'info','1500 files indexed'),(46946,1525075969.242892,2,'info','2000 files indexed'),(46947,1525075969.277904,2,'info','2500 files indexed'),(46948,1525075969.420295,2,'info','3000 files indexed'),(47510,1525594951.676464,2,'info','Done examining URLs'),(47511,1525594951.677522,10,'info','SUM_ENDOK:Scanning for suspicious site options'),(47509,1525594951.676004,2,'info','Examining URLs found in the options we scanned for dangerous websites'),(46944,1525075969.173353,2,'info','1000 files indexed'),(47440,1525594893.469424,10,'info','SUM_START:Scanning file contents for infections and vulnerabilities'),(46623,1524559581.861491,2,'info','Scanned contents of 62 additional files at 5.99 per second'),(47531,1525712984.843134,10,'info','SUM_FINAL:Scan complete. You have 8 new issues to fix. See below.'),(47532,1525800205.057250,10,'info','SUM_PREP:Preparing a new scan.'),(47469,1525594927.619002,2,'info','Scanned contents of 225 additional files at 6.72 per second'),(47470,1525594928.670173,2,'info','Scanned contents of 233 additional files at 6.74 per second'),(46781,1524816100.378103,2,'info','Analyzed 2700 files containing 33.47 MB of data so far'),(46968,1525075995.868827,2,'info','Analyzed 1500 files containing 18.3 MB of data so far'),(46967,1525075995.005285,2,'info','Analyzed 1400 files containing 17.02 MB of data so far'),(46966,1525075993.805384,2,'info','Analyzed 1300 files containing 15.98 MB of data so far'),(46965,1525075987.794571,2,'info','Analyzed 1200 files containing 13.45 MB of data so far'),(46369,1524296560.491778,2,'info','Analyzed 1600 files containing 19.39 MB of data so far'),(46730,1524816052.881570,2,'info','Found 17 plugins'),(47172,1525335025.838144,2,'info','Analyzed 2000 files containing 26.3 MB of data so far'),(46746,1524816053.484695,2,'info','1500 files indexed'),(47450,1525594904.616019,2,'info','Scanned contents of 56 additional files at 5.33 per second'),(47449,1525594903.585336,2,'info','Scanned contents of 46 additional files at 4.86 per second'),(47403,1525594863.538382,2,'info','Analyzed 2100 files containing 27.02 MB of data so far'),(46502,1524416976.465990,2,'info','Wordfence used 512 KB of memory for scan. Server peak memory usage was: 77 MB'),(46621,1524559579.803456,2,'info','Scanned contents of 45 additional files at 5.43 per second'),(46620,1524559578.456505,2,'info','Scanned contents of 31 additional files at 4.46 per second'),(47388,1525594852.276685,2,'info','Analyzed 600 files containing 7.27 MB of data so far'),(46651,1524559622.709279,2,'info','Scanned contents of 352 additional files at 6.87 per second'),(47246,1525335124.398513,2,'info','Scanned contents of 287 additional files at 5.52 per second'),(47247,1525335125.400592,2,'info','Scanned contents of 301 additional files at 5.68 per second'),(46952,1525075972.944522,2,'info','4644 files indexed'),(47210,1525335073.456148,2,'info','Scanned contents of 14 additional files at 13.82 per second'),(47095,1525194990.646384,1,'info','Initiating quick scan'),(46704,1524764884.611707,1,'info','Initiating quick scan'),(46421,1524296644.016000,2,'info','Scanned contents of 55 additional files at 5.23 per second'),(46422,1524296645.046294,2,'info','Scanned contents of 67 additional files at 5.80 per second'),(46420,1524296642.993293,2,'info','Scanned contents of 46 additional files at 4.85 per second'),(47395,1525594857.699499,2,'info','Analyzed 1300 files containing 15.98 MB of data so far'),(46394,1524296613.464641,2,'info','Analyzed 4100 files containing 53.56 MB of data so far'),(47516,1525626527.284774,10,'info','SUM_PREP:Preparing a new scan.'),(47517,1525626527.286811,1,'info','Initiating quick scan'),(47518,1525626527.319471,10,'info','SUM_START:Scanning for old themes, plugins and core files'),(46700,1524678193.237025,2,'info','Wordfence used 512 KB of memory for scan. Server peak memory usage was: 77.75 MB'),(46654,1524559622.890096,2,'info','Done host key check.'),(46765,1524816074.322017,2,'info','Analyzed 1100 files containing 12.81 MB of data so far'),(47185,1525335043.663902,2,'info','Analyzed 3300 files containing 41.4 MB of data so far'),(46829,1524816160.840143,2,'info','Scanned contents of 120 additional files at 5.96 per second'),(46830,1524816161.840660,2,'info','Scanned contents of 123 additional files at 5.82 per second'),(46624,1524559582.936372,2,'info','Scanned contents of 70 additional files at 6.13 per second'),(46957,1525075978.764899,2,'info','Analyzed 400 files containing 5.83 MB of data so far'),(46956,1525075976.872954,2,'info','Analyzed 300 files containing 3.74 MB of data so far'),(46588,1524559534.814728,2,'info','Analyzed 3200 files containing 37.34 MB of data so far'),(47398,1525594859.140501,2,'info','Analyzed 1600 files containing 19.39 MB of data so far'),(47397,1525594858.464352,2,'info','Analyzed 1500 files containing 18.3 MB of data so far'),(47442,1525594894.111603,2,'info','Starting scan of file contents'),(46756,1524816060.303506,2,'info','Analyzed 200 files containing 2.42 MB of data so far'),(46755,1524816058.958199,2,'info','Analyzed 100 files containing 1.35 MB of data so far'),(46776,1524816093.006799,2,'info','Analyzed 2200 files containing 27.3 MB of data so far'),(47048,1525076113.953234,2,'info','Scanned contents of 348 additional files at 6.88 per second'),(46770,1524816081.019401,2,'info','Analyzed 1600 files containing 19.39 MB of data so far'),(46400,1524296627.477473,2,'info','Analyzed 4700 files containing 65.35 MB of data so far'),(46963,1525075985.727175,2,'info','Analyzed 1000 files containing 11.65 MB of data so far'),(46606,1524559569.986509,2,'info','Analyzed 4962 files containing 70.71 MB of data.'),(46996,1525076047.512752,2,'info','Analyzed 4300 files containing 57.96 MB of data so far'),(46900,1524935538.326935,1,'info','Quick Scan Complete. Scanned in less than 1 second.'),(47412,1525594872.184918,2,'info','Analyzed 3000 files containing 37.01 MB of data so far'),(46498,1524416976.396868,1,'info','Initiating quick scan'),(47507,1525594951.665705,10,'info','SUM_ENDBAD:Scanning for admin users not created through WordPress'),(47508,1525594951.671644,10,'info','SUM_START:Scanning for suspicious site options'),(47393,1525594855.071198,2,'info','Analyzed 1100 files containing 12.81 MB of data so far'),(46381,1524296586.916311,2,'info','Analyzed 2800 files containing 34.04 MB of data so far'),(47506,1525594951.654086,10,'info','SUM_START:Scanning for admin users not created through WordPress'),(47505,1525594951.645972,10,'info','SUM_ENDBAD:Scanning for old themes, plugins and core files'),(47329,1525455415.425419,1,'info','Quick Scan Complete. Scanned in less than 1 second.'),(46603,1524559565.884393,2,'info','Analyzed 4700 files containing 65.35 MB of data so far'),(46602,1524559563.543183,2,'info','Analyzed 4600 files containing 63.2 MB of data so far'),(47504,1525594947.973381,10,'info','SUM_START:Scanning for old themes, plugins and core files'),(47503,1525594947.967215,10,'info','SUM_ENDOK:Scanning for weak passwords'),(46383,1524296589.842293,2,'info','Analyzed 3000 files containing 37.01 MB of data so far'),(46838,1524816172.534923,2,'info','Scanned contents of 212 additional files at 6.66 per second'),(47487,1525594947.574456,10,'info','SUM_ENDOK:Scanning file contents for infections and vulnerabilities'),(46438,1524296666.638380,2,'info','Scanned contents of 209 additional files at 6.31 per second'),(46372,1524296569.814959,2,'info','Analyzed 1900 files containing 25.45 MB of data so far'),(46823,1524816153.284143,2,'info','Scanned contents of 78 additional files at 6.20 per second'),(47208,1525335071.936170,10,'info','SUM_START:Scanning file contents for URLs on a domain blacklist'),(47144,1525334989.954588,2,'info','1000 files indexed'),(47024,1525076077.279436,2,'info','Scanned contents of 100 additional files at 7.20 per second'),(46386,1524296593.468448,2,'info','Analyzed 3300 files containing 38.3 MB of data so far'),(46387,1524296597.724842,2,'info','Analyzed 3400 files containing 43.55 MB of data so far'),(47050,1525076114.982513,2,'info','Scanned contents of 352 additional files at 6.82 per second'),(47049,1525076114.975971,2,'info','Scanned contents of 352 additional files at 6.82 per second'),(46780,1524816096.085226,2,'info','Analyzed 2600 files containing 29.39 MB of data so far'),(47498,1525594947.780164,2,'info','Checking 4 host keys against Wordfence scanning servers.'),(46852,1524816194.726762,2,'info','Checking 598 host keys against Wordfence scanning servers.'),(46851,1524816194.723193,2,'info','Asking Wordfence to check URLs against malware list.'),(46630,1524559591.142009,2,'info','Scanned contents of 121 additional files at 6.16 per second'),(47165,1525335014.263566,2,'info','Analyzed 1300 files containing 15.98 MB of data so far'),(47164,1525335011.222961,2,'info','Analyzed 1200 files containing 13.45 MB of data so far'),(46990,1525076033.792499,2,'info','Analyzed 3700 files containing 46.64 MB of data so far'),(46989,1525076030.494930,2,'info','Analyzed 3600 files containing 45.56 MB of data so far'),(47326,1525455415.418159,10,'info','SUM_ENDBAD:Scanning for old themes, plugins and core files'),(47325,1525455415.313378,10,'info','SUM_START:Scanning for old themes, plugins and core files'),(46693,1524590136.292506,1,'info','Quick Scan Complete. Scanned in less than 1 second.'),(47394,1525594855.432600,2,'info','Analyzed 1200 files containing 13.45 MB of data so far'),(46985,1525076020.897135,2,'info','Analyzed 3200 files containing 37.34 MB of data so far'),(46986,1525076022.222182,2,'info','Analyzed 3300 files containing 38.3 MB of data so far'),(47122,1525334989.299436,10,'info','SUM_START:Scanning to check available disk space'),(47030,1525076086.605515,2,'info','Scanned contents of 144 additional files at 6.21 per second'),(47181,1525335040.619493,2,'info','Analyzed 2900 files containing 35.81 MB of data so far'),(47182,1525335041.417864,2,'info','Analyzed 3000 files containing 37.22 MB of data so far'),(46792,1524816119.606042,2,'info','Analyzed 3800 files containing 50.25 MB of data so far'),(47501,1525594947.922895,10,'info','SUM_START:Scanning for weak passwords'),(46647,1524559613.243421,2,'info','Scanned contents of 309 additional files at 7.40 per second'),(47362,1525594845.560435,10,'info','SUM_ENDSUCCESS:Fetching core, theme and plugin file signatures from Wordfence'),(47363,1525594845.565727,10,'info','SUM_START:Fetching list of known malware files from Wordfence'),(47364,1525594845.569267,10,'info','SUM_ENDSUCCESS:Fetching list of known malware files from Wordfence'),(46600,1524559560.473334,2,'info','Analyzed 4400 files containing 60.1 MB of data so far'),(46786,1524816105.141359,2,'info','Analyzed 3200 files containing 37.34 MB of data so far'),(46899,1524935538.320191,2,'info','Wordfence used 512 KB of memory for scan. Server peak memory usage was: 77.25 MB'),(47354,1525594845.069737,10,'info','SUM_ENDOK:Scanning to check available disk space'),(46397,1524296617.818046,2,'info','Analyzed 4400 files containing 60.1 MB of data so far'),(46436,1524296664.383871,2,'info','Scanned contents of 184 additional files at 5.96 per second'),(47485,1525594947.558153,2,'info','Done URL check.'),(47156,1525334999.962316,2,'info','Analyzed 400 files containing 5.83 MB of data so far'),(46827,1524816158.791687,2,'info','Scanned contents of 101 additional files at 5.58 per second'),(46584,1524559530.927384,2,'info','Analyzed 2800 files containing 34.04 MB of data so far'),(47241,1525335118.290121,2,'info','Scanned contents of 226 additional files at 4.93 per second'),(47036,1525076092.765966,2,'info','Scanned contents of 213 additional files at 7.25 per second'),(47401,1525594862.965233,2,'info','Analyzed 1900 files containing 25.45 MB of data so far'),(46790,1524816114.799376,2,'info','Analyzed 3600 files containing 45.56 MB of data so far'),(46443,1524296671.824558,2,'info','Scanned contents of 254 additional files at 6.63 per second'),(46586,1524559533.762155,2,'info','Analyzed 3000 files containing 37.01 MB of data so far'),(46585,1524559532.587621,2,'info','Analyzed 2900 files containing 35.81 MB of data so far'),(46943,1525075969.122075,2,'info','500 files indexed'),(46605,1524559569.562827,2,'info','Analyzed 4900 files containing 69.73 MB of data so far'),(46604,1524559568.040644,2,'info','Analyzed 4800 files containing 67.1 MB of data so far'),(47458,1525594914.647764,2,'info','Scanned contents of 121 additional files at 5.89 per second'),(47457,1525594913.606449,2,'info','Scanned contents of 109 additional files at 5.59 per second'),(47124,1525334989.326747,2,'info','The disk has 2681760.22 MB available'),(46649,1524559615.422040,2,'info','Scanned contents of 339 additional files at 7.72 per second'),(47245,1525335123.231180,2,'info','Scanned contents of 276 additional files at 5.43 per second'),(47387,1525594852.016396,2,'info','Analyzed 500 files containing 6.59 MB of data so far'),(47386,1525594851.678609,2,'info','Analyzed 400 files containing 5.83 MB of data so far'),(47199,1525335070.919670,2,'info','Analyzed 4618 files containing 65.76 MB of data.'),(47198,1525335070.631429,2,'info','Analyzed 4600 files containing 65.47 MB of data so far'),(46766,1524816074.900721,2,'info','Analyzed 1200 files containing 13.45 MB of data so far'),(46767,1524816077.851491,2,'info','Analyzed 1300 files containing 15.98 MB of data so far'),(47197,1525335069.968723,2,'info','Analyzed 4500 files containing 63.41 MB of data so far'),(46617,1524559572.808853,2,'info','Scanned contents of 15 additional files at 11.54 per second'),(46616,1524559571.506100,2,'info','Starting scan of file contents'),(46633,1524559596.330502,2,'info','Scanned contents of 142 additional files at 5.72 per second'),(46634,1524559597.451177,2,'info','Scanned contents of 148 additional files at 5.71 per second'),(47499,1525594947.913964,2,'info','Done host key check.'),(47500,1525594947.915417,10,'info','SUM_ENDOK:Scanning comments for URLs on a domain blacklist'),(46804,1524816139.219781,2,'info','Analyzed 4962 files containing 70.71 MB of data.'),(47045,1525076104.956001,2,'info','Scanned contents of 319 additional files at 7.68 per second'),(47160,1525335004.409558,2,'info','Analyzed 800 files containing 9.72 MB of data so far'),(47159,1525335003.043463,2,'info','Analyzed 700 files containing 8.06 MB of data so far'),(46370,1524296562.141526,2,'info','Analyzed 1700 files containing 21.4 MB of data so far'),(46709,1524764884.696549,1,'info','Quick Scan Complete. Scanned in less than 1 second.'),(47475,1525594934.043596,2,'info','Scanned contents of 299 additional files at 7.49 per second'),(46795,1524816123.435345,2,'info','Analyzed 4100 files containing 53.56 MB of data so far'),(47148,1525334992.246031,2,'info','2804 files indexed'),(47149,1525334992.701515,2,'info','3304 files indexed'),(46534,1524559483.616744,2,'info','Found 5 themes'),(47410,1525594870.543577,2,'info','Analyzed 2800 files containing 34.04 MB of data so far'),(46958,1525075979.873864,2,'info','Analyzed 500 files containing 6.59 MB of data so far'),(46959,1525075980.765535,2,'info','Analyzed 600 files containing 7.27 MB of data so far'),(47211,1525335074.744284,2,'info','Scanned contents of 19 additional files at 8.26 per second'),(47192,1525335057.466763,2,'info','Analyzed 4000 files containing 53.76 MB of data so far'),(47512,1525594951.682427,1,'info','-------------------'),(46646,1524559610.387587,2,'info','Scanned contents of 299 additional files at 7.69 per second'),(47100,1525194990.788341,1,'info','Quick Scan Complete. Scanned in less than 1 second.'),(46994,1525076041.958180,2,'info','Analyzed 4100 files containing 53.56 MB of data so far'),(46993,1525076038.631831,2,'info','Analyzed 4000 files containing 51.34 MB of data so far'),(46361,1524296544.854595,2,'info','Analyzed 800 files containing 9.72 MB of data so far'),(46362,1524296548.195065,2,'info','Analyzed 900 files containing 10.5 MB of data so far'),(46992,1525076037.993655,2,'info','Analyzed 3900 files containing 50.98 MB of data so far'),(47193,1525335059.269113,2,'info','Analyzed 4100 files containing 55.36 MB of data so far'),(46923,1525075968.452686,2,'info','Total disk space: 2.71 TB -- Free disk space: 2.56 TB'),(46842,1524816176.888047,2,'info','Scanned contents of 253 additional files at 6.99 per second'),(46841,1524816175.750997,2,'info','Scanned contents of 238 additional files at 6.79 per second'),(46556,1524559487.870372,2,'info','4962 files indexed'),(47217,1525335083.452028,2,'info','Scanned contents of 65 additional files at 5.90 per second'),(47316,1525367547.731566,1,'info','Initiating quick scan'),(46413,1524296633.498297,2,'info','Starting scan of file contents'),(47315,1525367547.729310,10,'info','SUM_PREP:Preparing a new scan.'),(47143,1525334989.899413,2,'info','500 files indexed'),(46778,1524816094.590826,2,'info','Analyzed 2400 files containing 28.41 MB of data so far'),(46444,1524296674.734949,2,'info','Scanned contents of 255 additional files at 6.18 per second'),(47055,1525076115.339619,2,'info','Done URL check.'),(47056,1525076117.558932,2,'info','Done file contents scan'),(46636,1524559599.474066,2,'info','Scanned contents of 177 additional files at 6.33 per second'),(46393,1524296609.603110,2,'info','Analyzed 4000 files containing 51.34 MB of data so far'),(46637,1524559600.524312,2,'info','Scanned contents of 188 additional files at 6.48 per second'),(46638,1524559601.591858,2,'info','Scanned contents of 203 additional files at 6.75 per second'),(46639,1524559602.676662,2,'info','Scanned contents of 214 additional files at 6.87 per second'),(47232,1525335102.242780,2,'info','Scanned contents of 176 additional files at 5.91 per second'),(47358,1525594845.083983,2,'info','Found 17 plugins'),(46583,1524559530.105913,2,'info','Analyzed 2700 files containing 33.47 MB of data so far'),(46589,1524559536.143680,2,'info','Analyzed 3300 files containing 38.3 MB of data so far'),(46590,1524559542.809033,2,'info','Analyzed 3400 files containing 43.55 MB of data so far'),(46627,1524559587.356379,2,'info','Scanned contents of 100 additional files at 6.31 per second'),(46824,1524816154.470768,2,'info','Scanned contents of 91 additional files at 6.61 per second'),(47460,1525594916.692358,2,'info','Scanned contents of 130 additional files at 5.76 per second'),(46839,1524816173.639373,2,'info','Scanned contents of 222 additional files at 6.74 per second'),(46797,1524816126.488010,2,'info','Analyzed 4300 files containing 57.95 MB of data so far'),(46977,1525076010.518421,2,'info','Analyzed 2400 files containing 28.41 MB of data so far'),(46363,1524296550.079642,2,'info','Analyzed 1000 files containing 11.65 MB of data so far'),(46572,1524559511.135475,2,'info','Analyzed 1600 files containing 19.39 MB of data so far'),(46501,1524416976.465008,1,'info','-------------------'),(46380,1524296585.882437,2,'info','Analyzed 2700 files containing 33.47 MB of data so far'),(46819,1524816148.370137,2,'info','Scanned contents of 36 additional files at 4.70 per second'),(46379,1524296577.979406,2,'info','Analyzed 2600 files containing 29.39 MB of data so far'),(46772,1524816085.981777,2,'info','Analyzed 1800 files containing 24.58 MB of data so far'),(47034,1525076090.736330,2,'info','Scanned contents of 189 additional files at 6.91 per second'),(46800,1524816132.797860,2,'info','Analyzed 4600 files containing 63.2 MB of data so far'),(46355,1524296535.343318,2,'info','Analyzed 200 files containing 2.42 MB of data so far'),(47013,1525076061.196843,2,'info','Starting scan of file contents'),(46991,1525076037.347501,2,'info','Analyzed 3800 files containing 50.25 MB of data so far'),(47459,1525594915.691681,2,'info','Scanned contents of 124 additional files at 5.75 per second'),(46416,1524296638.764068,2,'info','Scanned contents of 20 additional files at 3.80 per second'),(46415,1524296635.579975,2,'info','Scanned contents of 18 additional files at 8.66 per second'),(46999,1525076052.088679,2,'info','Analyzed 4600 files containing 63.2 MB of data so far'),(47202,1525335070.932544,10,'info','SUM_ENDOK:Comparing plugins against WordPress.org originals'),(47357,1525594845.082325,2,'info','Getting plugin list from WordPress'),(47330,1525455415.426108,10,'info','SUM_FINAL:Scan complete. You have 8 new issues to fix. See below.'),(47230,1525335097.483852,2,'info','Scanned contents of 164 additional files at 6.55 per second'),(46382,1524296588.541787,2,'info','Analyzed 2900 files containing 35.81 MB of data so far'),(47134,1525334989.836061,10,'info','SUM_START:Fetching list of known malware files from Wordfence'),(47478,1525594939.332362,2,'info','Scanned contents of 343 additional files at 7.59 per second'),(47477,1525594938.263843,2,'info','Scanned contents of 325 additional files at 7.36 per second'),(47229,1525335096.426802,2,'info','Scanned contents of 158 additional files at 6.59 per second'),(46561,1524559494.828395,2,'info','Analyzed 500 files containing 6.59 MB of data so far'),(47396,1525594858.041177,2,'info','Analyzed 1400 files containing 17.02 MB of data so far'),(46757,1524816061.572571,2,'info','Analyzed 300 files containing 3.74 MB of data so far'),(46366,1524296557.000387,2,'info','Analyzed 1300 files containing 15.98 MB of data so far'),(46365,1524296553.277116,2,'info','Analyzed 1200 files containing 13.45 MB of data so far'),(46903,1525024827.450036,1,'info','Initiating quick scan'),(46490,1524331511.525079,1,'info','Initiating quick scan'),(47405,1525594863.975294,2,'info','Analyzed 2300 files containing 27.85 MB of data so far'),(47406,1525594866.409110,2,'info','Analyzed 2400 files containing 28.41 MB of data so far'),(47051,1525076114.982854,2,'info','Asking Wordfence to check URLs against malware list.'),(47447,1525594899.729660,2,'info','Scanned contents of 35 additional files at 6.23 per second'),(47446,1525594898.727508,2,'info','Scanned contents of 29 additional files at 6.29 per second'),(46357,1524296539.465362,2,'info','Analyzed 400 files containing 5.83 MB of data so far'),(47220,1525335086.782092,2,'info','Scanned contents of 85 additional files at 5.93 per second'),(47147,1525334992.147043,2,'info','2304 files indexed'),(47136,1525334989.843099,10,'info','SUM_START:Fetching list of known core files from Wordfence'),(46771,1524816082.655469,2,'info','Analyzed 1700 files containing 21.4 MB of data so far'),(46551,1524559484.436041,2,'info','3000 files indexed'),(47135,1525334989.839264,10,'info','SUM_ENDSUCCESS:Fetching list of known malware files from Wordfence'),(46546,1524559484.152369,2,'info','500 files indexed'),(46547,1524559484.200885,2,'info','1000 files indexed'),(46548,1524559484.233665,2,'info','1500 files indexed'),(46549,1524559484.264462,2,'info','2000 files indexed'),(46550,1524559484.296252,2,'info','2500 files indexed'),(47207,1525335071.933921,10,'info','SUM_START:Scanning file contents for infections and vulnerabilities'),(47404,1525594863.744131,2,'info','Analyzed 2200 files containing 27.3 MB of data so far'),(47139,1525334989.850939,10,'info','SUM_START:Comparing open source themes against WordPress.org originals'),(46950,1525075969.872540,2,'info','4000 files indexed'),(46951,1525075970.004389,2,'info','4144 files indexed'),(46592,1524559545.036643,2,'info','Analyzed 3600 files containing 45.56 MB of data so far'),(46764,1524816070.564548,2,'info','Analyzed 1000 files containing 11.65 MB of data so far'),(46758,1524816063.323076,2,'info','Analyzed 400 files containing 5.83 MB of data so far'),(46759,1524816064.368047,2,'info','Analyzed 500 files containing 6.59 MB of data so far'),(47014,1525076064.401667,2,'info','Scanned contents of 13 additional files at 12.97 per second'),(47140,1525334989.854137,10,'info','SUM_START:Comparing plugins against WordPress.org originals'),(47141,1525334989.857304,10,'info','SUM_START:Scanning for known malware files'),(47142,1525334989.860437,10,'info','SUM_START:Scanning for unknown files in wp-admin and wp-includes'),(46494,1524331511.611270,2,'info','Wordfence used 512 KB of memory for scan. Server peak memory usage was: 78 MB'),(47324,1525455415.299278,1,'info','Initiating quick scan'),(46493,1524331511.609871,1,'info','-------------------'),(46414,1524296634.508932,2,'info','Scanned contents of 12 additional files at 11.90 per second'),(47054,1525076115.165671,2,'info','Checking 12 URLs from 6 sources.'),(47225,1525335092.274745,2,'info','Scanned contents of 133 additional files at 6.71 per second'),(46820,1524816149.821045,2,'info','Scanned contents of 46 additional files at 5.04 per second'),(47242,1525335120.176793,2,'info','Scanned contents of 233 additional files at 4.88 per second'),(46924,1525075968.453001,2,'info','The disk has 2687187.66 MB available'),(47243,1525335121.177123,2,'info','Scanned contents of 250 additional files at 5.13 per second'),(47402,1525594863.266369,2,'info','Analyzed 2000 files containing 26.3 MB of data so far'),(47157,1525335001.101920,2,'info','Analyzed 500 files containing 6.59 MB of data so far'),(46699,1524678193.235499,1,'info','-------------------'),(47174,1525335030.483136,2,'info','Analyzed 2200 files containing 27.3 MB of data so far'),(46557,1524559489.453411,2,'info','Analyzed 100 files containing 1.35 MB of data so far'),(47103,1525280911.143631,1,'info','Initiating quick scan'),(47526,1525712984.752892,10,'info','SUM_START:Scanning for old themes, plugins and core files'),(47527,1525712984.831438,10,'info','SUM_ENDBAD:Scanning for old themes, plugins and core files'),(46773,1524816087.113690,2,'info','Analyzed 1900 files containing 25.45 MB of data so far'),(47392,1525594854.424612,2,'info','Analyzed 1000 files containing 11.65 MB of data so far'),(47391,1525594853.916586,2,'info','Analyzed 900 files containing 10.5 MB of data so far'),(46826,1524816156.981521,2,'info','Scanned contents of 100 additional files at 6.14 per second'),(47179,1525335037.857031,2,'info','Analyzed 2700 files containing 33.47 MB of data so far'),(47052,1525076114.986771,2,'info','Checking 598 host keys against Wordfence scanning servers.'),(47195,1525335064.660380,2,'info','Analyzed 4300 files containing 58.56 MB of data so far'),(47194,1525335060.089971,2,'info','Analyzed 4200 files containing 56.5 MB of data so far'),(46814,1524816140.699480,2,'info','Starting scan of file contents'),(46815,1524816142.045815,2,'info','Scanned contents of 15 additional files at 11.17 per second'),(46949,1525075969.451230,2,'info','3500 files indexed'),(46632,1524559595.298104,2,'info','Scanned contents of 129 additional files at 5.42 per second'),(46429,1524296656.470398,2,'info','Scanned contents of 116 additional files at 5.05 per second'),(47187,1525335050.207093,2,'info','Analyzed 3500 files containing 45.65 MB of data so far'),(46565,1524559499.288119,2,'info','Analyzed 900 files containing 10.5 MB of data so far'),(46564,1524559498.178716,2,'info','Analyzed 800 files containing 9.72 MB of data so far'),(46972,1525076003.961688,2,'info','Analyzed 1900 files containing 25.45 MB of data so far'),(46563,1524559496.739438,2,'info','Analyzed 700 files containing 8.06 MB of data so far'),(47178,1525335033.576223,2,'info','Analyzed 2600 files containing 29.39 MB of data so far'),(46435,1524296663.303139,2,'info','Scanned contents of 174 additional files at 5.84 per second'),(47021,1525076072.612548,2,'info','Scanned contents of 69 additional files at 7.49 per second'),(47175,1525335031.137276,2,'info','Analyzed 2300 files containing 27.85 MB of data so far'),(47176,1525335032.110043,2,'info','Analyzed 2400 files containing 28.41 MB of data so far'),(47177,1525335033.005195,2,'info','Analyzed 2500 files containing 28.89 MB of data so far'),(47053,1525076115.163513,2,'info','Done host key check.'),(47448,1525594902.270372,2,'info','Scanned contents of 39 additional files at 4.78 per second'),(46793,1524816120.192874,2,'info','Analyzed 3900 files containing 50.98 MB of data so far'),(46794,1524816120.830830,2,'info','Analyzed 4000 files containing 51.34 MB of data so far'),(47031,1525076087.641087,2,'info','Scanned contents of 150 additional files at 6.19 per second'),(47168,1525335017.841263,2,'info','Analyzed 1600 files containing 19.39 MB of data so far'),(47169,1525335020.141616,2,'info','Analyzed 1700 files containing 21.4 MB of data so far'),(47170,1525335023.460438,2,'info','Analyzed 1800 files containing 24.58 MB of data so far'),(47171,1525335024.595867,2,'info','Analyzed 1900 files containing 25.45 MB of data so far'),(46433,1524296661.185830,2,'info','Scanned contents of 148 additional files at 5.35 per second'),(47467,1525594925.524338,2,'info','Scanned contents of 207 additional files at 6.59 per second'),(47184,1525335042.493303,2,'info','Analyzed 3200 files containing 40.14 MB of data so far'),(46931,1525075968.539606,2,'info','Found 5 themes'),(46930,1525075968.489348,2,'info','Getting theme list from WordPress'),(47368,1525594845.583133,10,'info','SUM_START:Comparing open source themes against WordPress.org originals'),(47365,1525594845.572420,10,'info','SUM_START:Fetching list of known core files from Wordfence'),(47366,1525594845.574035,10,'info','SUM_ENDSUCCESS:Fetching list of known core files from Wordfence'),(47367,1525594845.577895,10,'info','SUM_START:Comparing core WordPress files against originals in repository'),(46648,1524559614.393034,2,'info','Scanned contents of 322 additional files at 7.51 per second'),(46791,1524816116.141672,2,'info','Analyzed 3700 files containing 46.64 MB of data so far'),(47044,1525076103.923451,2,'info','Scanned contents of 305 additional files at 7.53 per second'),(46782,1524816101.262331,2,'info','Analyzed 2800 files containing 34.04 MB of data so far'),(46653,1524559622.713231,2,'info','Checking 598 host keys against Wordfence scanning servers.'),(46396,1524296616.620202,2,'info','Analyzed 4300 files containing 57.95 MB of data so far'),(46980,1525076016.217158,2,'info','Analyzed 2700 files containing 33.47 MB of data so far'),(47183,1525335041.746696,2,'info','Analyzed 3100 files containing 39.49 MB of data so far'),(46425,1524296648.253543,2,'info','Scanned contents of 92 additional files at 6.24 per second'),(47438,1525594892.495757,10,'info','SUM_START:Check for publicly accessible configuration files, backup files and logs'),(47399,1525594860.504755,2,'info','Analyzed 1700 files containing 21.4 MB of data so far'),(46373,1524296571.756469,2,'info','Analyzed 2000 files containing 26.3 MB of data so far'),(46591,1524559544.260980,2,'info','Analyzed 3500 files containing 44.98 MB of data so far'),(47173,1525335029.696700,2,'info','Analyzed 2100 files containing 27.02 MB of data so far'),(47476,1525594935.093163,2,'info','Scanned contents of 316 additional files at 7.71 per second'),(47015,1525076065.734773,2,'info','Scanned contents of 19 additional files at 8.13 per second'),(47016,1525076066.845905,2,'info','Scanned contents of 23 additional files at 6.67 per second'),(47180,1525335038.995436,2,'info','Analyzed 2800 files containing 34.04 MB of data so far'),(46784,1524816104.076144,2,'info','Analyzed 3000 files containing 37.01 MB of data so far'),(46783,1524816102.946249,2,'info','Analyzed 2900 files containing 35.81 MB of data so far'),(46594,1524559550.011635,2,'info','Analyzed 3800 files containing 50.25 MB of data so far'),(46595,1524559550.637104,2,'info','Analyzed 3900 files containing 50.98 MB of data so far'),(46593,1524559546.497141,2,'info','Analyzed 3700 files containing 46.64 MB of data so far'),(46596,1524559551.263433,2,'info','Analyzed 4000 files containing 51.34 MB of data so far'),(46597,1524559553.865784,2,'info','Analyzed 4100 files containing 53.56 MB of data so far'),(47492,1525594947.622555,2,'info','Examining URLs found in posts we scanned for dangerous websites'),(47493,1525594947.622990,2,'info','Checking 27 host keys against Wordfence scanning servers.'),(46973,1525076005.155999,2,'info','Analyzed 2000 files containing 26.3 MB of data so far'),(46974,1525076006.166986,2,'info','Analyzed 2100 files containing 27.02 MB of data so far'),(46975,1525076006.890889,2,'info','Analyzed 2200 files containing 27.3 MB of data so far'),(46887,1524851976.373329,1,'info','Initiating quick scan'),(47338,1525542535.571295,10,'info','SUM_FINAL:Scan complete. You have 8 new issues to fix. See below.'),(46579,1524559523.541940,2,'info','Analyzed 2300 files containing 27.85 MB of data so far'),(47226,1525335093.318070,2,'info','Scanned contents of 140 additional files at 6.71 per second'),(47411,1525594871.496598,2,'info','Analyzed 2900 files containing 35.81 MB of data so far'),(46835,1524816169.475168,2,'info','Scanned contents of 178 additional files at 6.19 per second'),(47502,1525594947.925761,2,'info','Starting password strength check on 6 users.'),(46427,1524296652.269359,2,'info','Scanned contents of 101 additional files at 5.38 per second'),(47484,1525594947.378752,2,'info','Checking 12 URLs from 6 sources.'),(46849,1524816193.752546,2,'info','Scanned contents of 348 additional files at 6.56 per second'),(46848,1524816186.406153,2,'info','Scanned contents of 335 additional files at 7.33 per second'),(46364,1524296552.262412,2,'info','Analyzed 1100 files containing 12.81 MB of data so far'),(47239,1525335114.018967,2,'info','Scanned contents of 217 additional files at 5.22 per second'),(47204,1525335070.940025,10,'info','SUM_ENDOK:Scanning for known malware files'),(47205,1525335070.953021,10,'info','SUM_START:Check for publicly accessible configuration files, backup files and logs'),(47530,1525712984.842801,1,'info','Quick Scan Complete. Scanned in less than 1 second.'),(47098,1525194990.783551,1,'info','-------------------'),(47099,1525194990.787809,2,'info','Wordfence used 512 KB of memory for scan. Server peak memory usage was: 77 MB'),(47020,1525076071.208077,2,'info','Scanned contents of 56 additional files at 7.17 per second'),(47002,1525076058.181257,2,'info','Analyzed 4900 files containing 69.73 MB of data so far'),(46622,1524559580.833325,2,'info','Scanned contents of 50 additional files at 5.36 per second'),(47003,1525076059.690338,2,'info','Analyzed 4962 files containing 70.71 MB of data.'),(46657,1524559623.074054,2,'info','Done file contents scan'),(47535,1525800205.141325,10,'info','SUM_ENDBAD:Scanning for old themes, plugins and core files'),(46711,1524816015.939597,1,'info','Scheduled Wordfence scan starting at Friday 27th of April 2018 04:00:15 AM'),(47455,1525594910.769761,2,'info','Scanned contents of 100 additional files at 6.00 per second'),(47456,1525594912.570227,2,'info','Scanned contents of 101 additional files at 5.47 per second'),(46836,1524816170.484336,2,'info','Scanned contents of 188 additional files at 6.31 per second'),(46969,1525075997.235734,2,'info','Analyzed 1600 files containing 19.39 MB of data so far'),(46577,1524559520.091659,2,'info','Analyzed 2100 files containing 27.02 MB of data so far'),(47323,1525455415.289449,10,'info','SUM_PREP:Preparing a new scan.'),(46906,1525024827.555526,1,'info','-------------------'),(47359,1525594845.084268,2,'info','Getting theme list from WordPress'),(47360,1525594845.090767,2,'info','Found 5 themes'),(46774,1524816088.318813,2,'info','Analyzed 2000 files containing 26.3 MB of data so far'),(46395,1524296615.609308,2,'info','Analyzed 4200 files containing 56.43 MB of data so far'),(46978,1525076011.386691,2,'info','Analyzed 2500 files containing 28.89 MB of data so far'),(47212,1525335075.855551,2,'info','Scanned contents of 23 additional files at 6.74 per second'),(46769,1524816079.856262,2,'info','Analyzed 1500 files containing 18.3 MB of data so far'),(46929,1525075968.474310,2,'info','Found 17 plugins'),(47331,1525542535.485866,10,'info','SUM_PREP:Preparing a new scan.'),(47332,1525542535.488306,1,'info','Initiating quick scan'),(46895,1524935538.221502,1,'info','Initiating quick scan'),(46798,1524816127.573040,2,'info','Analyzed 4400 files containing 60.1 MB of data so far'),(46983,1525076019.834821,2,'info','Analyzed 3000 files containing 37.01 MB of data so far'),(46984,1525076020.260807,2,'info','Analyzed 3100 files containing 37.05 MB of data so far'),(46403,1524296631.936906,2,'info','Analyzed 4962 files containing 70.71 MB of data.'),(47407,1525594866.609467,2,'info','Analyzed 2500 files containing 28.89 MB of data so far'),(46571,1524559509.946588,2,'info','Analyzed 1500 files containing 18.3 MB of data so far'),(46570,1524559509.088857,2,'info','Analyzed 1400 files containing 17.02 MB of data so far'),(46569,1524559507.834819,2,'info','Analyzed 1300 files containing 15.98 MB of data so far'),(46566,1524559500.733806,2,'info','Analyzed 1000 files containing 11.65 MB of data so far'),(47186,1525335048.197875,2,'info','Analyzed 3400 files containing 43.49 MB of data so far'),(46777,1524816093.567374,2,'info','Analyzed 2300 files containing 27.85 MB of data so far'),(46440,1524296668.766839,2,'info','Scanned contents of 226 additional files at 6.41 per second'),(47154,1525334997.045058,2,'info','Analyzed 200 files containing 2.42 MB of data so far'),(46526,1524559483.589383,2,'info','Total disk space: 2.71 TB -- Free disk space: 2.58 TB'),(46527,1524559483.589770,2,'info','The disk has 2704040.21 MB available'),(47162,1525335007.008572,2,'info','Analyzed 1000 files containing 11.65 MB of data so far'),(46779,1524816095.528714,2,'info','Analyzed 2500 files containing 28.89 MB of data so far'),(47130,1525334989.345477,2,'info','Getting theme list from WordPress'),(47129,1525334989.345208,2,'info','Found 17 plugins'),(47125,1525334989.327056,10,'info','SUM_ENDOK:Scanning to check available disk space'),(47126,1525334989.336320,10,'info','SUM_START:Checking for future GeoIP support'),(47127,1525334989.338647,10,'info','SUM_ENDOK:Checking for future GeoIP support'),(47128,1525334989.343716,2,'info','Getting plugin list from WordPress'),(47123,1525334989.326406,2,'info','Total disk space: 2.71 TB -- Free disk space: 2.56 TB'),(46635,1524559598.451345,2,'info','Scanned contents of 163 additional files at 6.05 per second'),(47214,1525335077.944947,2,'info','Scanned contents of 39 additional files at 7.09 per second'),(47215,1525335079.220074,2,'info','Scanned contents of 46 additional files at 6.79 per second'),(46375,1524296573.556465,2,'info','Analyzed 2200 files containing 27.3 MB of data so far'),(46626,1524559585.175429,2,'info','Scanned contents of 92 additional files at 6.73 per second'),(47158,1525335002.024262,2,'info','Analyzed 600 files containing 7.27 MB of data so far'),(46761,1524816066.405200,2,'info','Analyzed 700 files containing 8.06 MB of data so far'),(46762,1524816067.806416,2,'info','Analyzed 800 files containing 9.72 MB of data so far'),(46763,1524816069.071217,2,'info','Analyzed 900 files containing 10.5 MB of data so far'),(47236,1525335110.099820,2,'info','Scanned contents of 194 additional files at 5.15 per second'),(46845,1524816180.003848,2,'info','Scanned contents of 292 additional files at 7.43 per second'),(46846,1524816181.072079,2,'info','Scanned contents of 307 additional files at 7.60 per second'),(46641,1524559604.863133,2,'info','Scanned contents of 231 additional files at 6.93 per second'),(46640,1524559603.844952,2,'info','Scanned contents of 224 additional files at 6.93 per second'),(46825,1524816155.492050,2,'info','Scanned contents of 99 additional files at 6.69 per second'),(46601,1524559561.313263,2,'info','Analyzed 4500 files containing 61.39 MB of data so far'),(46964,1525075987.215057,2,'info','Analyzed 1100 files containing 12.81 MB of data so far'),(46358,1524296541.525214,2,'info','Analyzed 500 files containing 6.59 MB of data so far'),(46359,1524296542.467788,2,'info','Analyzed 600 files containing 7.27 MB of data so far'),(47452,1525594906.847662,2,'info','Scanned contents of 74 additional files at 5.81 per second'),(47453,1525594907.897751,2,'info','Scanned contents of 86 additional files at 6.24 per second'),(47454,1525594908.979095,2,'info','Scanned contents of 95 additional files at 6.39 per second'),(46384,1524296590.527194,2,'info','Analyzed 3100 files containing 37.05 MB of data so far'),(46567,1524559502.232196,2,'info','Analyzed 1100 files containing 12.81 MB of data so far'),(47203,1525335070.936777,10,'info','SUM_ENDOK:Scanning for unknown files in wp-admin and wp-includes'),(47025,1525076081.408238,2,'info','Scanned contents of 101 additional files at 5.61 per second'),(47151,1525334994.090119,2,'info','4304 files indexed'),(47152,1525334994.111315,2,'info','4618 files indexed'),(47513,1525594951.682993,2,'info','Wordfence used 32.25 MB of memory for scan. Server peak memory usage was: 109 MB'),(47033,1525076089.660906,2,'info','Scanned contents of 178 additional files at 6.78 per second'),(47138,1525334989.847562,10,'info','SUM_START:Comparing core WordPress files against originals in repository'),(47137,1525334989.844562,10,'info','SUM_ENDSUCCESS:Fetching list of known core files from Wordfence'),(46442,1524296670.770720,2,'info','Scanned contents of 243 additional files at 6.52 per second'),(46368,1524296559.244563,2,'info','Analyzed 1500 files containing 18.3 MB of data so far'),(46643,1524559607.305534,2,'info','Scanned contents of 255 additional files at 7.12 per second'),(46642,1524559605.896939,2,'info','Scanned contents of 242 additional files at 7.04 per second'),(46847,1524816185.350803,2,'info','Scanned contents of 321 additional files at 7.19 per second'),(46850,1524816194.722714,2,'info','Scanned contents of 352 additional files at 6.52 per second'),(46580,1524559524.441989,2,'info','Analyzed 2400 files containing 28.41 MB of data so far'),(46976,1525076009.629495,2,'info','Analyzed 2300 files containing 27.85 MB of data so far'),(46775,1524816089.324351,2,'info','Analyzed 2100 files containing 27.02 MB of data so far'),(47451,1525594905.619221,2,'info','Scanned contents of 68 additional files at 5.91 per second'),(46628,1524559589.097835,2,'info','Scanned contents of 101 additional files at 5.74 per second'),(46629,1524559590.112970,2,'info','Scanned contents of 109 additional files at 5.86 per second'),(47035,1525076091.764881,2,'info','Scanned contents of 203 additional files at 7.16 per second'),(46434,1524296662.187715,2,'info','Scanned contents of 160 additional files at 5.58 per second'),(47466,1525594924.523541,2,'info','Scanned contents of 195 additional files at 6.41 per second'),(47238,1525335112.426845,2,'info','Scanned contents of 210 additional files at 5.25 per second'),(46998,1525076049.788779,2,'info','Analyzed 4500 files containing 61.39 MB of data so far'),(46753,1524816057.380454,2,'info','4821 files indexed'),(46754,1524816057.387759,2,'info','4962 files indexed'),(46752,1524816057.339299,2,'info','4321 files indexed'),(47413,1525594872.369636,2,'info','Analyzed 3100 files containing 37.05 MB of data so far'),(46818,1524816145.462196,2,'info','Scanned contents of 31 additional files at 6.51 per second'),(46360,1524296543.421959,2,'info','Analyzed 700 files containing 8.06 MB of data so far'),(46692,1524590136.292173,2,'info','Wordfence used 512 KB of memory for scan. Server peak memory usage was: 77 MB'),(47231,1525335101.168389,2,'info','Scanned contents of 166 additional files at 5.78 per second'),(47465,1525594923.493138,2,'info','Scanned contents of 179 additional files at 6.09 per second'),(47463,1525594921.467376,2,'info','Scanned contents of 153 additional files at 5.59 per second'),(47464,1525594922.467499,2,'info','Scanned contents of 170 additional files at 6.00 per second'),(47146,1525334990.007878,2,'info','1804 files indexed'),(46388,1524296599.994527,2,'info','Analyzed 3500 files containing 44.98 MB of data so far'),(46389,1524296603.318640,2,'info','Analyzed 3600 files containing 45.56 MB of data so far'),(46390,1524296604.638709,2,'info','Analyzed 3700 files containing 46.64 MB of data so far'),(47439,1525594893.459803,10,'info','SUM_ENDOK:Check for publicly accessible configuration files, backup files and logs'),(47163,1525335010.618147,2,'info','Analyzed 1100 files containing 12.81 MB of data so far'),(46832,1524816166.399788,2,'info','Scanned contents of 144 additional files at 5.60 per second'),(47150,1525334994.046105,2,'info','3804 files indexed'),(46531,1524559483.607644,2,'info','Getting plugin list from WordPress'),(46532,1524559483.609707,2,'info','Found 17 plugins'),(46533,1524559483.610029,2,'info','Getting theme list from WordPress'),(47026,1525076082.423146,2,'info','Scanned contents of 108 additional files at 5.68 per second'),(47027,1525076083.455149,2,'info','Scanned contents of 120 additional files at 5.98 per second'),(46587,1524559534.178180,2,'info','Analyzed 3100 files containing 37.05 MB of data so far'),(46424,1524296647.213134,2,'info','Scanned contents of 81 additional files at 5.91 per second'),(46423,1524296646.116466,2,'info','Scanned contents of 73 additional files at 5.79 per second'),(46981,1525076017.095019,2,'info','Analyzed 2800 files containing 34.04 MB of data so far'),(46982,1525076018.714371,2,'info','Analyzed 2900 files containing 35.81 MB of data so far'),(47131,1525334989.391768,2,'info','Found 5 themes'),(47327,1525455415.423124,1,'info','-------------------'),(47133,1525334989.819510,10,'info','SUM_ENDSUCCESS:Fetching core, theme and plugin file signatures from Wordfence'),(47490,1525594947.586863,10,'info','SUM_ENDOK:Scanning for publicly accessible quarantined files'),(47491,1525594947.592475,10,'info','SUM_START:Scanning posts for URLs on a domain blacklist'),(46837,1524816171.497551,2,'info','Scanned contents of 202 additional files at 6.56 per second'),(46430,1524296657.807460,2,'info','Scanned contents of 122 additional files at 5.02 per second'),(47153,1525334995.697274,2,'info','Analyzed 100 files containing 1.35 MB of data so far'),(46751,1524816054.008525,2,'info','3821 files indexed'),(47472,1525594930.957064,2,'info','Scanned contents of 255 additional files at 6.92 per second'),(47222,1525335089.190126,2,'info','Scanned contents of 102 additional files at 6.09 per second'),(47223,1525335090.224576,2,'info','Scanned contents of 112 additional files at 6.30 per second'),(47224,1525335091.254307,2,'info','Scanned contents of 125 additional files at 6.65 per second'),(46374,1524296572.788352,2,'info','Analyzed 2100 files containing 27.02 MB of data so far'),(47000,1525076054.460411,2,'info','Analyzed 4700 files containing 65.35 MB of data so far'),(47219,1525335085.471661,2,'info','Scanned contents of 82 additional files at 6.29 per second'),(46559,1524559491.826550,2,'info','Analyzed 300 files containing 3.74 MB of data so far'),(47001,1525076056.653110,2,'info','Analyzed 4800 files containing 67.11 MB of data so far'),(46558,1524559490.799753,2,'info','Analyzed 200 files containing 2.42 MB of data so far'),(46955,1525075975.847226,2,'info','Analyzed 200 files containing 2.42 MB of data so far'),(46560,1524559493.729439,2,'info','Analyzed 400 files containing 5.83 MB of data so far'),(46432,1524296659.920715,2,'info','Scanned contents of 141 additional files at 5.34 per second'),(46419,1524296641.939681,2,'info','Scanned contents of 43 additional files at 5.10 per second'),(47372,1525594845.628231,2,'info','500 files indexed'),(47373,1525594845.677067,2,'info','1000 files indexed'),(47374,1525594845.709964,2,'info','1500 files indexed'),(47375,1525594845.740169,2,'info','2000 files indexed'),(47495,1525594947.757616,2,'info','Done examining URLs'),(46747,1524816053.516831,2,'info','2000 files indexed'),(46748,1524816053.550898,2,'info','2500 files indexed'),(46749,1524816053.691366,2,'info','3000 files indexed'),(47237,1525335111.417581,2,'info','Scanned contents of 199 additional files at 5.11 per second'),(46377,1524296575.670874,2,'info','Analyzed 2400 files containing 28.41 MB of data so far'),(47489,1525594947.584677,10,'info','SUM_START:Scanning for publicly accessible quarantined files'),(47488,1525594947.578777,10,'info','SUM_ENDOK:Scanning file contents for URLs on a domain blacklist'),(46855,1524816195.079554,2,'info','Done URL check.'),(46856,1524816195.084804,2,'info','Done file contents scan'),(46803,1524816138.782018,2,'info','Analyzed 4900 files containing 69.73 MB of data so far'),(47380,1525594849.458614,2,'info','4252 files indexed'),(47032,1525076088.652038,2,'info','Scanned contents of 165 additional files at 6.53 per second'),(47213,1525335076.888810,2,'info','Scanned contents of 30 additional files at 6.75 per second'),(46576,1524559519.029546,2,'info','Analyzed 2000 files containing 26.3 MB of data so far'),(46575,1524559517.642129,2,'info','Analyzed 1900 files containing 25.45 MB of data so far'),(46441,1524296669.767899,2,'info','Scanned contents of 233 additional files at 6.42 per second'),(47132,1525334989.397378,10,'info','SUM_START:Fetching core, theme and plugin file signatures from Wordfence'),(47037,1525076093.795924,2,'info','Scanned contents of 222 additional files at 7.30 per second'),(46578,1524559520.832117,2,'info','Analyzed 2200 files containing 27.3 MB of data so far'),(47461,1525594917.762511,2,'info','Scanned contents of 144 additional files at 6.09 per second'),(47462,1525594920.382744,2,'info','Scanned contents of 145 additional files at 5.52 per second'),(47042,1525076101.785397,2,'info','Scanned contents of 275 additional files at 7.16 per second'),(47041,1525076100.760346,2,'info','Scanned contents of 259 additional files at 6.93 per second'),(46799,1524816130.561270,2,'info','Analyzed 4500 files containing 61.39 MB of data so far'),(46688,1524590136.240132,1,'info','Initiating quick scan'),(47106,1525280911.226224,1,'info','-------------------'),(47525,1525712984.735973,1,'info','Initiating quick scan'),(46691,1524590136.291229,1,'info','-------------------'),(46696,1524678193.159599,1,'info','Initiating quick scan'),(47528,1525712984.834477,1,'info','-------------------'),(47529,1525712984.842450,2,'info','Wordfence used 512 KB of memory for scan. Server peak memory usage was: 77.5 MB'),(46445,1524296675.791050,2,'info','Scanned contents of 265 additional files at 6.27 per second'),(46787,1524816106.436635,2,'info','Analyzed 3300 files containing 38.3 MB of data so far'),(46701,1524678193.237505,1,'info','Quick Scan Complete. Scanned in less than 1 second.'),(47155,1525334998.068338,2,'info','Analyzed 300 files containing 3.74 MB of data so far'),(47145,1525334989.990605,2,'info','1500 files indexed'),(46834,1524816168.425099,2,'info','Scanned contents of 164 additional files at 5.92 per second'),(46833,1524816167.407776,2,'info','Scanned contents of 149 additional files at 5.58 per second'),(47209,1525335072.440403,2,'info','Starting scan of file contents'),(47019,1525076070.176587,2,'info','Scanned contents of 46 additional files at 6.79 per second'),(47201,1525335070.926792,10,'info','SUM_ENDOK:Comparing open source themes against WordPress.org originals'),(47400,1525594862.569430,2,'info','Analyzed 1800 files containing 24.58 MB of data so far'),(46760,1524816065.313237,2,'info','Analyzed 600 files containing 7.27 MB of data so far'),(46655,1524559622.891503,2,'info','Checking 12 URLs from 6 sources.'),(47408,1525594866.798577,2,'info','Analyzed 2600 files containing 29.39 MB of data so far'),(47409,1525594870.213111,2,'info','Analyzed 2700 files containing 33.47 MB of data so far'),(46750,1524816053.720683,2,'info','3500 files indexed'),(46554,1524559485.004149,2,'info','4144 files indexed'),(46552,1524559484.464023,2,'info','3500 files indexed'),(46553,1524559484.876583,2,'info','4000 files indexed'),(46431,1524296658.873326,2,'info','Scanned contents of 129 additional files at 5.08 per second'),(46371,1524296567.996483,2,'info','Analyzed 1800 files containing 24.58 MB of data so far'),(46785,1524816104.501174,2,'info','Analyzed 3100 files containing 37.05 MB of data so far'),(46656,1524559623.068406,2,'info','Done URL check.'),(47381,1525594849.497947,2,'info','4752 files indexed'),(47382,1525594849.509053,2,'info','4964 files indexed'),(47383,1525594850.164599,2,'info','Analyzed 100 files containing 1.35 MB of data so far'),(47480,1525594947.188561,2,'info','Scanned contents of 352 additional files at 6.63 per second'),(47479,1525594946.227986,2,'info','Scanned contents of 348 additional files at 6.68 per second'),(46625,1524559584.024190,2,'info','Scanned contents of 79 additional files at 6.31 per second'),(47039,1525076095.924318,2,'info','Scanned contents of 239 additional files at 7.35 per second'),(47038,1525076094.885439,2,'info','Scanned contents of 229 additional files at 7.27 per second'),(47384,1525594850.617022,2,'info','Analyzed 200 files containing 2.42 MB of data so far'),(47385,1525594850.835298,2,'info','Analyzed 300 files containing 3.74 MB of data so far'),(46745,1524816053.449750,2,'info','1000 files indexed'),(47417,1525594877.441831,2,'info','Analyzed 3500 files containing 44.96 MB of data so far'),(47418,1525594877.650489,2,'info','Analyzed 3600 files containing 45.55 MB of data so far'),(46581,1524559525.306772,2,'info','Analyzed 2500 files containing 28.89 MB of data so far'),(46428,1524296653.273793,2,'info','Scanned contents of 107 additional files at 5.41 per second'),(46437,1524296665.439964,2,'info','Scanned contents of 198 additional files at 6.20 per second'),(47414,1525594872.700522,2,'info','Analyzed 3200 files containing 37.34 MB of data so far'),(47043,1525076102.868898,2,'info','Scanned contents of 292 additional files at 7.40 per second'),(46574,1524559516.433875,2,'info','Analyzed 1800 files containing 24.58 MB of data so far'),(46573,1524559513.047795,2,'info','Analyzed 1700 files containing 21.4 MB of data so far'),(46401,1524296629.758486,2,'info','Analyzed 4800 files containing 67.1 MB of data so far'),(47441,1525594893.471707,10,'info','SUM_START:Scanning file contents for URLs on a domain blacklist'),(47196,1525335067.398512,2,'info','Analyzed 4400 files containing 60.97 MB of data so far'),(46731,1524816052.881883,2,'info','Getting theme list from WordPress'),(46732,1524816052.888462,2,'info','Found 5 themes'),(46652,1524559622.709729,2,'info','Asking Wordfence to check URLs against malware list.'),(46495,1524331511.612037,1,'info','Quick Scan Complete. Scanned in less than 1 second.'),(47496,1525594947.759346,10,'info','SUM_ENDOK:Scanning posts for URLs on a domain blacklist'),(47497,1525594947.768733,10,'info','SUM_START:Scanning comments for URLs on a domain blacklist'),(46789,1524816114.019845,2,'info','Analyzed 3500 files containing 44.98 MB of data so far'),(46788,1524816112.726639,2,'info','Analyzed 3400 files containing 43.55 MB of data so far'),(47023,1525076075.031615,2,'info','Scanned contents of 92 additional files at 7.91 per second'),(46979,1525076011.978869,2,'info','Analyzed 2600 files containing 29.39 MB of data so far'),(47483,1525594947.376990,2,'info','Done host key check.'),(47167,1525335016.389470,2,'info','Analyzed 1500 files containing 18.3 MB of data so far'),(46995,1525076046.378851,2,'info','Analyzed 4200 files containing 56.43 MB of data so far'),(47161,1525335005.533880,2,'info','Analyzed 900 files containing 10.5 MB of data so far'),(47437,1525594892.483907,10,'info','SUM_ENDOK:Scanning for known malware files'),(47216,1525335082.399509,2,'info','Scanned contents of 54 additional files at 5.42 per second'),(46599,1524559559.291231,2,'info','Analyzed 4300 files containing 57.95 MB of data so far'),(46598,1524559556.034138,2,'info','Analyzed 4200 files containing 56.43 MB of data so far'),(46582,1524559525.823925,2,'info','Analyzed 2600 files containing 29.39 MB of data so far'),(47233,1525335103.259778,2,'info','Scanned contents of 183 additional files at 5.94 per second'),(47416,1525594877.006737,2,'info','Analyzed 3400 files containing 43.55 MB of data so far'),(47018,1525076068.908190,2,'info','Scanned contents of 39 additional files at 7.08 per second'),(47017,1525076067.870110,2,'info','Scanned contents of 30 additional files at 6.71 per second'),(46768,1524816079.006078,2,'info','Analyzed 1400 files containing 17.02 MB of data so far'),(47473,1525594931.971105,2,'info','Scanned contents of 266 additional files at 7.03 per second'),(47474,1525594932.997131,2,'info','Scanned contents of 284 additional files at 7.30 per second'),(46378,1524296576.996141,2,'info','Analyzed 2500 files containing 28.89 MB of data so far'),(46426,1524296650.524042,2,'info','Scanned contents of 100 additional files at 5.87 per second'),(47218,1525335084.466323,2,'info','Scanned contents of 71 additional files at 5.91 per second'),(47029,1525076085.544665,2,'info','Scanned contents of 130 additional files at 5.87 per second'),(46853,1524816194.903800,2,'info','Done host key check.'),(47221,1525335088.026831,2,'info','Scanned contents of 92 additional files at 5.90 per second'),(46631,1524559592.159335,2,'info','Scanned contents of 124 additional files at 6.00 per second'),(47040,1525076099.638090,2,'info','Scanned contents of 253 additional files at 6.98 per second'),(47328,1525455415.424947,2,'info','Wordfence used 512 KB of memory for scan. Server peak memory usage was: 77.75 MB'),(46898,1524935538.319133,1,'info','-------------------'),(47415,1525594873.423606,2,'info','Analyzed 3300 files containing 38.3 MB of data so far'),(46503,1524416976.467245,1,'info','Quick Scan Complete. Scanned in less than 1 second.'),(46953,1525075972.968745,2,'info','4962 files indexed'),(46954,1525075974.494871,2,'info','Analyzed 100 files containing 1.35 MB of data so far'),(47482,1525594947.192866,2,'info','Checking 598 host keys against Wordfence scanning servers.'),(47481,1525594947.189028,2,'info','Asking Wordfence to check URLs against malware list.'),(46418,1524296640.889653,2,'info','Scanned contents of 31 additional files at 4.20 per second'),(46417,1524296639.789688,2,'info','Scanned contents of 26 additional files at 4.13 per second'),(46854,1524816194.905442,2,'info','Checking 12 URLs from 6 sources.'),(47200,1525335070.920243,10,'info','SUM_ENDOK:Comparing core WordPress files against originals in repository'),(47234,1525335104.814597,2,'info','Scanned contents of 184 additional files at 5.68 per second'),(47371,1525594845.592907,10,'info','SUM_START:Scanning for unknown files in wp-admin and wp-includes'),(47370,1525594845.589657,10,'info','SUM_START:Scanning for known malware files'),(47494,1525594947.757021,2,'info','Done host key check.'),(46555,1524559487.849466,2,'info','4644 files indexed'),(47443,1525594895.125958,2,'info','Scanned contents of 12 additional files at 11.87 per second'),(46356,1524296536.918997,2,'info','Analyzed 300 files containing 3.74 MB of data so far'),(47444,1525594896.216766,2,'info','Scanned contents of 18 additional files at 8.56 per second'),(47445,1525594897.523950,2,'info','Scanned contents of 22 additional files at 6.45 per second'),(46961,1525075983.074149,2,'info','Analyzed 800 files containing 9.72 MB of data so far'),(46960,1525075981.711920,2,'info','Analyzed 700 files containing 8.06 MB of data so far'),(46650,1524559621.763947,2,'info','Scanned contents of 348 additional files at 6.92 per second'),(47235,1525335106.196899,2,'info','Scanned contents of 190 additional files at 5.63 per second'),(46506,1524506285.267311,1,'info','Initiating quick scan'),(46562,1524559495.719883,2,'info','Analyzed 600 files containing 7.27 MB of data so far'),(47361,1525594845.096054,10,'info','SUM_START:Fetching core, theme and plugin file signatures from Wordfence'),(46354,1524296532.844174,2,'info','Analyzed 100 files containing 1.35 MB of data so far'),(46831,1524816162.941991,2,'info','Scanned contents of 130 additional files at 5.85 per second'),(47468,1525594926.535948,2,'info','Scanned contents of 218 additional files at 6.72 per second'),(46398,1524296621.720349,2,'info','Analyzed 4500 files containing 61.39 MB of data so far'),(46439,1524296667.703588,2,'info','Scanned contents of 221 additional files at 6.46 per second'),(46376,1524296574.164740,2,'info','Analyzed 2300 files containing 27.85 MB of data so far'),(46619,1524559577.387370,2,'info','Scanned contents of 26 additional files at 4.42 per second'),(47376,1525594845.772505,2,'info','2500 files indexed'),(47377,1525594845.910930,2,'info','3000 files indexed'),(47378,1525594845.939248,2,'info','3500 files indexed'),(47379,1525594846.006318,2,'info','3752 files indexed'),(47188,1525335050.624914,2,'info','Analyzed 3600 files containing 46.21 MB of data so far'),(47189,1525335052.651890,2,'info','Analyzed 3700 files containing 47.85 MB of data so far'),(47190,1525335054.494384,2,'info','Analyzed 3800 files containing 49.3 MB of data so far'),(47191,1525335055.994769,2,'info','Analyzed 3900 files containing 51.63 MB of data so far'),(46708,1524764884.696100,2,'info','Wordfence used 512 KB of memory for scan. Server peak memory usage was: 77.75 MB'),(47533,1525800205.059755,1,'info','Initiating quick scan'),(47534,1525800205.077310,10,'info','SUM_START:Scanning for old themes, plugins and core files'),(46707,1524764884.694239,1,'info','-------------------'),(47228,1525335095.396897,2,'info','Scanned contents of 155 additional files at 6.75 per second'),(46822,1524816152.280114,2,'info','Scanned contents of 69 additional files at 5.96 per second'),(46821,1524816150.830594,2,'info','Scanned contents of 56 additional files at 5.53 per second'),(47436,1525594892.480268,10,'info','SUM_ENDOK:Scanning for unknown files in wp-admin and wp-includes'),(47435,1525594892.476613,10,'info','SUM_ENDOK:Comparing plugins against WordPress.org originals'),(47434,1525594892.472966,10,'info','SUM_ENDOK:Comparing open source themes against WordPress.org originals'),(47433,1525594892.469148,10,'info','SUM_ENDOK:Comparing core WordPress files against originals in repository'),(47432,1525594892.468772,2,'info','Analyzed 4964 files containing 70.73 MB of data.'),(47431,1525594892.168577,2,'info','Analyzed 4900 files containing 69.67 MB of data so far'),(47430,1525594891.138626,2,'info','Analyzed 4800 files containing 67.1 MB of data so far'),(47429,1525594889.811283,2,'info','Analyzed 4700 files containing 65.35 MB of data so far'),(47428,1525594888.254494,2,'info','Analyzed 4600 files containing 63.17 MB of data so far'),(47427,1525594886.822464,2,'info','Analyzed 4500 files containing 61.4 MB of data so far'),(47426,1525594886.434567,2,'info','Analyzed 4400 files containing 60.03 MB of data so far'),(47425,1525594886.072952,2,'info','Analyzed 4300 files containing 57.95 MB of data so far'),(46523,1524559483.575808,2,'info','Scanning DNS MX record for watchhill.ca'),(46522,1524559483.487937,2,'info','Scanning DNS A record for watchhill.ca'),(46521,1524559483.374545,2,'info','Scanning CNAME DNS record for www.watchhill.ca'),(46520,1524559483.331097,2,'info','Starting DNS scan for www.watchhill.ca'),(47335,1525542535.567535,1,'info','-------------------'),(47336,1525542535.570258,2,'info','Wordfence used 512 KB of memory for scan. Server peak memory usage was: 77.75 MB'),(47337,1525542535.570885,1,'info','Quick Scan Complete. Scanned in less than 1 second.'),(47334,1525542535.553931,10,'info','SUM_ENDBAD:Scanning for old themes, plugins and core files'),(46890,1524851976.466833,1,'info','-------------------'),(47424,1525594885.859301,2,'info','Analyzed 4200 files containing 56.45 MB of data so far'),(46891,1524851976.468757,2,'info','Wordfence used 768 KB of memory for scan. Server peak memory usage was: 77.25 MB'),(47423,1525594885.174982,2,'info','Analyzed 4100 files containing 53.54 MB of data so far'),(46892,1524851976.469219,1,'info','Quick Scan Complete. Scanned in less than 1 second.'),(46515,1524559450.959131,1,'info','Contacting Wordfence to initiate scan'),(46513,1524559448.368662,1,'info','Scheduled Wordfence scan starting at Tuesday 24th of April 2018 04:44:08 AM'),(47333,1525542535.499862,10,'info','SUM_START:Scanning for old themes, plugins and core files'),(46511,1524506287.197761,1,'info','Quick Scan Complete. Scanned in 2 seconds.'),(47422,1525594881.296086,2,'info','Analyzed 4000 files containing 51.35 MB of data so far'),(47421,1525594881.100654,2,'info','Analyzed 3900 files containing 50.99 MB of data so far'),(47420,1525594880.822468,2,'info','Analyzed 3800 files containing 50.2 MB of data so far'),(47419,1525594878.233104,2,'info','Analyzed 3700 files containing 46.65 MB of data so far'),(46509,1524506287.196355,1,'info','-------------------'),(46510,1524506287.197404,2,'info','Wordfence used 768 KB of memory for scan. Server peak memory usage was: 77.75 MB'),(47389,1525594852.799488,2,'info','Analyzed 700 files containing 8.06 MB of data so far'),(46725,1524816052.861856,2,'info','The disk has 2699767.66 MB available'),(46724,1524816052.861476,2,'info','Total disk space: 2.71 TB -- Free disk space: 2.57 TB'),(47390,1525594853.490078,2,'info','Analyzed 800 files containing 9.72 MB of data so far'),(47538,1525800205.149916,1,'info','Quick Scan Complete. Scanned in less than 1 second.'),(47539,1525800205.150246,10,'info','SUM_FINAL:Scan complete. You have 8 new issues to fix. See below.'),(46721,1524816052.848198,2,'info','Scanning DNS MX record for watchhill.ca'),(46720,1524816052.726708,2,'info','Scanning DNS A record for watchhill.ca'),(46719,1524816052.639020,2,'info','Scanning CNAME DNS record for www.watchhill.ca'),(46718,1524816052.531067,2,'info','Starting DNS scan for www.watchhill.ca'),(47087,1525108185.545016,1,'info','Initiating quick scan'),(47536,1525800205.147320,1,'info','-------------------'),(47537,1525800205.148931,2,'info','Wordfence used 512 KB of memory for scan. Server peak memory usage was: 77.75 MB'),(47090,1525108185.650976,1,'info','-------------------'),(47091,1525108185.651930,2,'info','Wordfence used 768 KB of memory for scan. Server peak memory usage was: 77.25 MB'),(47092,1525108185.652242,1,'info','Quick Scan Complete. Scanned in less than 1 second.'),(46713,1524816020.017576,1,'info','Contacting Wordfence to initiate scan'),(46446,1524296676.819583,2,'info','Scanned contents of 280 additional files at 6.46 per second'),(46447,1524296677.881082,2,'info','Scanned contents of 294 additional files at 6.62 per second'),(46448,1524296678.903585,2,'info','Scanned contents of 307 additional files at 6.76 per second'),(46449,1524296680.029138,2,'info','Scanned contents of 321 additional files at 6.90 per second'),(46450,1524296681.093408,2,'info','Scanned contents of 333 additional files at 7.00 per second'),(46451,1524296682.125398,2,'info','Scanned contents of 347 additional files at 7.14 per second'),(46452,1524296687.935863,2,'info','Scanned contents of 348 additional files at 6.39 per second'),(46453,1524296688.940057,2,'info','Scanned contents of 352 additional files at 6.35 per second'),(46454,1524296688.940417,2,'info','Asking Wordfence to check URLs against malware list.'),(46455,1524296688.944394,2,'info','Checking 598 host keys against Wordfence scanning servers.'),(46456,1524296689.123231,2,'info','Done host key check.'),(46457,1524296689.124885,2,'info','Checking 12 URLs from 6 sources.'),(46458,1524296689.297191,2,'info','Done URL check.'),(46459,1524296689.302211,2,'info','Done file contents scan'),(46920,1525075968.436998,2,'info','Scanning DNS MX record for watchhill.ca'),(46919,1525075968.270852,2,'info','Scanning DNS A record for watchhill.ca'),(46918,1525075968.146493,2,'info','Scanning CNAME DNS record for www.watchhill.ca'),(46917,1525075968.103353,2,'info','Starting DNS scan for www.watchhill.ca'),(47317,1525367547.751093,10,'info','SUM_START:Scanning for old themes, plugins and core files'),(46465,1524296689.362769,2,'info','Examining URLs found in posts we scanned for dangerous websites'),(46466,1524296689.363291,2,'info','Checking 27 host keys against Wordfence scanning servers.'),(46467,1524296689.491492,2,'info','Done host key check.'),(46468,1524296689.492098,2,'info','Done examining URLs'),(47318,1525367547.798469,10,'info','SUM_ENDBAD:Scanning for old themes, plugins and core files'),(46471,1524296689.512686,2,'info','Checking 4 host keys against Wordfence scanning servers.'),(46472,1524296689.641401,2,'info','Done host key check.'),(47319,1525367547.805047,1,'info','-------------------'),(47320,1525367547.819431,2,'info','Wordfence used 512 KB of memory for scan. Server peak memory usage was: 78 MB'),(46475,1524296689.655445,2,'info','Starting password strength check on 6 users.'),(46912,1525075935.507541,1,'info','Contacting Wordfence to initiate scan'),(47321,1525367547.819798,1,'info','Quick Scan Complete. Scanned in less than 1 second.'),(46910,1525075930.278203,1,'info','Scheduled Wordfence scan starting at Monday 30th of April 2018 04:12:10 AM'),(47322,1525367547.820126,10,'info','SUM_FINAL:Scan complete. You have 8 new issues to fix. See below.'),(46482,1524296695.991498,2,'info','Examining URLs found in the options we scanned for dangerous websites'),(46483,1524296695.992161,2,'info','Done examining URLs'),(46908,1525024827.557757,1,'info','Quick Scan Complete. Scanned in less than 1 second.'),(46485,1524296696.000533,1,'info','-------------------'),(46486,1524296696.001375,2,'info','Wordfence used 32.25 MB of memory for scan. Server peak memory usage was: 108.75 MB'),(46487,1524296696.001813,1,'info','Scan Complete. Scanned 4962 files, 19 plugins, 5 themes, 16 posts, 1 comments and 376 URLs in 3 minutes 24 seconds.'),(46907,1525024827.557308,2,'info','Wordfence used 512 KB of memory for scan. Server peak memory usage was: 77.25 MB'),(47120,1525334989.289326,2,'info','Scanning DNS MX record for watchhill.ca'),(47119,1525334989.202542,2,'info','Scanning DNS A record for watchhill.ca'),(47118,1525334989.079538,2,'info','Scanning CNAME DNS record for www.watchhill.ca'),(47117,1525334989.036189,2,'info','Starting DNS scan for www.watchhill.ca'),(47519,1525626527.383073,10,'info','SUM_ENDBAD:Scanning for old themes, plugins and core files'),(46663,1524559623.147803,2,'info','Examining URLs found in posts we scanned for dangerous websites'),(46664,1524559623.148536,2,'info','Checking 27 host keys against Wordfence scanning servers.'),(46665,1524559623.277181,2,'info','Done host key check.'),(46666,1524559623.277550,2,'info','Done examining URLs'),(47520,1525626527.395534,1,'info','-------------------'),(47521,1525626527.396644,2,'info','Wordfence used 512 KB of memory for scan. Server peak memory usage was: 77.75 MB'),(46669,1524559623.293560,2,'info','Checking 4 host keys against Wordfence scanning servers.'),(46670,1524559623.422584,2,'info','Done host key check.'),(47522,1525626527.397014,1,'info','Quick Scan Complete. Scanned in less than 1 second.'),(46673,1524559623.437788,2,'info','Starting password strength check on 6 users.'),(47112,1525334957.448042,1,'info','Contacting Wordfence to initiate scan'),(47110,1525334951.443446,1,'info','Scheduled Wordfence scan starting at Thursday 3rd of May 2018 04:09:11 AM'),(47523,1525626527.397356,10,'info','SUM_FINAL:Scan complete. You have 8 new issues to fix. See below.'),(47524,1525712984.716490,10,'info','SUM_PREP:Preparing a new scan.'),(46680,1524559627.752108,2,'info','Examining URLs found in the options we scanned for dangerous websites'),(46681,1524559627.752563,2,'info','Done examining URLs'),(47108,1525280911.240643,1,'info','Quick Scan Complete. Scanned in less than 1 second.'),(46683,1524559627.758042,1,'info','-------------------'),(46684,1524559627.758567,2,'info','Wordfence used 32.75 MB of memory for scan. Server peak memory usage was: 109.25 MB'),(46685,1524559627.758940,1,'info','Scan Complete. Scanned 4962 files, 19 plugins, 5 themes, 16 posts, 1 comments and 376 URLs in 2 minutes 56 seconds.'),(47107,1525280911.227245,2,'info','Wordfence used 512 KB of memory for scan. Server peak memory usage was: 77.5 MB'),(47353,1525594845.069456,2,'info','The disk has 2635699.01 MB available'),(47352,1525594845.069126,2,'info','Total disk space: 2.71 TB -- Free disk space: 2.51 TB'),(47351,1525594845.066161,10,'info','SUM_START:Scanning to check available disk space'),(47350,1525594845.057007,10,'info','SUM_ENDOK:Scanning DNS for unauthorized changes'),(47349,1525594845.055494,2,'info','Scanning DNS MX record for watchhill.ca'),(46862,1524816195.151125,2,'info','Examining URLs found in posts we scanned for dangerous websites'),(46863,1524816195.151624,2,'info','Checking 27 host keys against Wordfence scanning servers.'),(46864,1524816195.281898,2,'info','Done host key check.'),(46865,1524816195.282374,2,'info','Done examining URLs'),(47348,1525594844.968604,2,'info','Scanning DNS A record for watchhill.ca'),(47347,1525594844.924229,2,'info','Scanning CNAME DNS record for www.watchhill.ca'),(46868,1524816195.301932,2,'info','Checking 4 host keys against Wordfence scanning servers.'),(46869,1524816195.429445,2,'info','Done host key check.'),(47346,1525594844.880390,2,'info','Starting DNS scan for www.watchhill.ca'),(46872,1524816195.444381,2,'info','Starting password strength check on 6 users.'),(47345,1525594844.877150,10,'info','SUM_START:Scanning DNS for unauthorized changes'),(47344,1525594844.866677,10,'info','SUM_ENDFAILED:Checking for the most secure way to get IPs'),(47343,1525594814.856579,10,'info','SUM_START:Checking for the most secure way to get IPs'),(47342,1525594812.849157,10,'info','SUM_PAIDONLY:Checking if your site is on a domain blacklist is for paid members only'),(47341,1525594811.231812,1,'info','Contacting Wordfence to initiate scan'),(46879,1524816199.329951,2,'info','Examining URLs found in the options we scanned for dangerous websites'),(46880,1524816199.330401,2,'info','Done examining URLs'),(47340,1525594811.224998,10,'info','SUM_PREP:Preparing a new scan.'),(46882,1524816199.336080,1,'info','-------------------'),(46883,1524816199.336789,2,'info','Wordfence used 32 MB of memory for scan. Server peak memory usage was: 109 MB'),(46884,1524816199.337136,1,'info','Scan Complete. Scanned 4962 files, 19 plugins, 5 themes, 16 posts, 1 comments and 376 URLs in 2 minutes 59 seconds.'),(47339,1525594808.185155,1,'info','Scheduled Wordfence scan starting at Sunday 6th of May 2018 04:20:08 AM'),(47062,1525076117.653977,2,'info','Examining URLs found in posts we scanned for dangerous websites'),(47063,1525076117.654595,2,'info','Checking 27 host keys against Wordfence scanning servers.'),(47064,1525076117.818404,2,'info','Done host key check.'),(47065,1525076117.818994,2,'info','Done examining URLs'),(47068,1525076117.836553,2,'info','Checking 4 host keys against Wordfence scanning servers.'),(47069,1525076117.965677,2,'info','Done host key check.'),(47072,1525076117.977859,2,'info','Starting password strength check on 6 users.'),(47079,1525076122.374435,2,'info','Examining URLs found in the options we scanned for dangerous websites'),(47080,1525076122.374957,2,'info','Done examining URLs'),(47082,1525076122.380484,1,'info','-------------------'),(47083,1525076122.381102,2,'info','Wordfence used 32.25 MB of memory for scan. Server peak memory usage was: 109 MB'),(47084,1525076122.381455,1,'info','Scan Complete. Scanned 4962 files, 19 plugins, 5 themes, 16 posts, 1 comments and 376 URLs in 3 minutes 6 seconds.'),(47248,1525335126.461426,2,'info','Scanned contents of 320 additional files at 5.92 per second'),(47249,1525335127.467735,2,'info','Scanned contents of 336 additional files at 6.11 per second'),(47250,1525335128.505416,2,'info','Scanned contents of 347 additional files at 6.19 per second'),(47251,1525335129.544371,2,'info','Scanned contents of 356 additional files at 6.23 per second'),(47252,1525335130.728089,2,'info','Scanned contents of 367 additional files at 6.30 per second'),(47253,1525335131.875759,2,'info','Scanned contents of 376 additional files at 6.33 per second'),(47254,1525335133.049981,2,'info','Scanned contents of 389 additional files at 6.42 per second'),(47255,1525335137.592293,2,'info','Scanned contents of 397 additional files at 6.09 per second'),(47256,1525335139.392636,2,'info','Scanned contents of 398 additional files at 5.94 per second'),(47257,1525335140.399174,2,'info','Scanned contents of 405 additional files at 5.96 per second'),(47258,1525335141.431579,2,'info','Scanned contents of 417 additional files at 6.04 per second'),(47259,1525335142.520947,2,'info','Scanned contents of 421 additional files at 6.01 per second'),(47260,1525335143.572804,2,'info','Scanned contents of 428 additional files at 6.02 per second'),(47261,1525335144.586632,2,'info','Scanned contents of 441 additional files at 6.11 per second'),(47262,1525335145.624734,2,'info','Scanned contents of 447 additional files at 6.11 per second'),(47263,1525335146.658935,2,'info','Scanned contents of 463 additional files at 6.24 per second'),(47264,1525335148.001491,2,'info','Scanned contents of 476 additional files at 6.30 per second'),(47265,1525335149.057342,2,'info','Scanned contents of 492 additional files at 6.42 per second'),(47266,1525335150.060327,2,'info','Scanned contents of 504 additional files at 6.49 per second'),(47267,1525335151.074992,2,'info','Scanned contents of 515 additional files at 6.55 per second'),(47268,1525335154.265338,2,'info','Scanned contents of 521 additional files at 6.37 per second'),(47269,1525335155.354167,2,'info','Scanned contents of 528 additional files at 6.37 per second'),(47270,1525335156.397642,2,'info','Scanned contents of 539 additional files at 6.42 per second'),(47271,1525335157.817160,2,'info','Scanned contents of 552 additional files at 6.47 per second'),(47272,1525335158.843155,2,'info','Scanned contents of 563 additional files at 6.52 per second'),(47273,1525335159.865791,2,'info','Scanned contents of 581 additional files at 6.65 per second'),(47274,1525335160.877687,2,'info','Scanned contents of 595 additional files at 6.73 per second'),(47275,1525335161.893563,2,'info','Scanned contents of 611 additional files at 6.83 per second'),(47276,1525335162.916424,2,'info','Scanned contents of 622 additional files at 6.87 per second'),(47277,1525335163.969830,2,'info','Scanned contents of 640 additional files at 6.99 per second'),(47278,1525335173.327928,2,'info','Scanned contents of 645 additional files at 6.39 per second'),(47279,1525335174.312671,2,'info','Scanned contents of 649 additional files at 6.37 per second'),(47280,1525335174.313184,2,'info','Asking Wordfence to check URLs against malware list.'),(47281,1525335174.320694,2,'info','Checking 1080 host keys against Wordfence scanning servers.'),(47282,1525335174.512951,2,'info','Done host key check.'),(47283,1525335174.514618,2,'info','Checking 12 URLs from 6 sources.'),(47284,1525335174.694354,2,'info','Done URL check.'),(47285,1525335174.700276,2,'info','Done file contents scan'),(47286,1525335174.711384,10,'info','SUM_ENDOK:Scanning file contents for infections and vulnerabilities'),(47287,1525335174.717942,10,'info','SUM_ENDOK:Scanning file contents for URLs on a domain blacklist'),(47288,1525335174.726444,10,'info','SUM_START:Scanning for publicly accessible quarantined files'),(47289,1525335174.729126,10,'info','SUM_ENDOK:Scanning for publicly accessible quarantined files'),(47290,1525335174.736396,10,'info','SUM_START:Scanning posts for URLs on a domain blacklist'),(47291,1525335174.769090,2,'info','Examining URLs found in posts we scanned for dangerous websites'),(47292,1525335174.769681,2,'info','Checking 27 host keys against Wordfence scanning servers.'),(47293,1525335174.908360,2,'info','Done host key check.'),(47294,1525335174.909008,2,'info','Done examining URLs'),(47295,1525335174.910861,10,'info','SUM_ENDOK:Scanning posts for URLs on a domain blacklist'),(47296,1525335174.921169,10,'info','SUM_START:Scanning comments for URLs on a domain blacklist'),(47297,1525335174.932150,2,'info','Checking 4 host keys against Wordfence scanning servers.'),(47298,1525335175.072761,2,'info','Done host key check.'),(47299,1525335175.074592,10,'info','SUM_ENDOK:Scanning comments for URLs on a domain blacklist'),(47300,1525335175.081075,10,'info','SUM_START:Scanning for weak passwords'),(47301,1525335175.083763,2,'info','Starting password strength check on 6 users.'),(47302,1525335175.125312,10,'info','SUM_ENDOK:Scanning for weak passwords'),(47303,1525335175.131119,10,'info','SUM_START:Scanning for old themes, plugins and core files'),(47304,1525335179.256994,10,'info','SUM_ENDBAD:Scanning for old themes, plugins and core files'),(47305,1525335179.265014,10,'info','SUM_START:Scanning for admin users not created through WordPress'),(47306,1525335179.277253,10,'info','SUM_ENDBAD:Scanning for admin users not created through WordPress'),(47307,1525335179.283622,10,'info','SUM_START:Scanning for suspicious site options'),(47308,1525335179.288478,2,'info','Examining URLs found in the options we scanned for dangerous websites'),(47309,1525335179.288925,2,'info','Done examining URLs'),(47310,1525335179.290000,10,'info','SUM_ENDOK:Scanning for suspicious site options'),(47311,1525335179.294736,1,'info','-------------------'),(47312,1525335179.295529,2,'info','Wordfence used 31 MB of memory for scan. Server peak memory usage was: 107.75 MB'),(47313,1525335179.296015,1,'info','Scan Complete. Scanned 4618 files, 19 plugins, 5 themes, 16 posts, 1 comments and 657 URLs in 3 minutes 42 seconds.'),(47314,1525335179.296367,10,'info','SUM_FINAL:Scan complete. You have 9 new issues to fix. 1 ignored issue was also detected. See below.');
/*!40000 ALTER TABLE `wh_wfStatus` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wh_wfThrottleLog`
--

DROP TABLE IF EXISTS `wh_wfThrottleLog`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wh_wfThrottleLog` (
  `IP` binary(16) NOT NULL DEFAULT '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',
  `startTime` int(10) unsigned NOT NULL,
  `endTime` int(10) unsigned NOT NULL,
  `timesThrottled` int(10) unsigned NOT NULL,
  `lastReason` varchar(255) NOT NULL,
  PRIMARY KEY (`IP`),
  KEY `k2` (`endTime`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wh_wfThrottleLog`
--

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

--
-- Table structure for table `wh_wfVulnScanners`
--

DROP TABLE IF EXISTS `wh_wfVulnScanners`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wh_wfVulnScanners` (
  `IP` binary(16) NOT NULL DEFAULT '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',
  `ctime` int(10) unsigned NOT NULL,
  `hits` int(10) unsigned NOT NULL,
  PRIMARY KEY (`IP`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wh_wfVulnScanners`
--

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

--
-- Table structure for table `wh_wpeditor_settings`
--

DROP TABLE IF EXISTS `wh_wpeditor_settings`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wh_wpeditor_settings` (
  `key` varchar(50) NOT NULL,
  `value` text NOT NULL,
  PRIMARY KEY (`key`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wh_wpeditor_settings`
--

LOCK TABLES `wh_wpeditor_settings` WRITE;
/*!40000 ALTER TABLE `wh_wpeditor_settings` DISABLE KEYS */;
INSERT INTO `wh_wpeditor_settings` VALUES ('version','1.2.6.3'),('upgrade','1'),('enable_post_editor','0'),('hide_default_plugin_editor','0'),('hide_default_theme_editor','1'),('replace_plugin_edit_links','0'),('enable_plugin_line_numbers','1'),('enable_theme_line_numbers','1'),('enable_post_line_numbers','1'),('enable_plugin_line_wrapping','1'),('enable_theme_line_wrapping','1'),('enable_post_line_wrapping','1'),('enable_plugin_active_line','1'),('enable_theme_active_line','1'),('enable_post_active_line','1'),('plugin_editor_allowed_extensions','php~js~css~txt~htm~html~jpg~jpeg~png~gif~sql~po~less~xml'),('theme_editor_allowed_extensions','php~js~css~txt~htm~html~jpg~jpeg~png~gif~sql~po~less~xml'),('plugin_file_upload','1'),('theme_file_upload','1'),('plugin_indent_unit','2'),('theme_indent_unit','4'),('post_indent_unit','2'),('admin_page_roles','a:3:{s:8:\"settings\";s:14:\"manage_options\";s:12:\"theme-editor\";s:11:\"edit_themes\";s:13:\"plugin-editor\";s:12:\"edit_plugins\";}'),('run_overview','1'),('wp_editor_ajax_nonce_settings_main','29e8847990'),('wpeditor_logging','0'),('hide_wpeditor_menu','1'),('settings_tab','posts'),('wp_editor_ajax_nonce_settings_themes','1191c8697a'),('theme_editor_theme','default'),('change_theme_editor_font_size',''),('enable_theme_tab_characters','spaces'),('enable_theme_tab_size','4'),('enable_theme_editor_height','600'),('theme_create_new','0'),('wp_editor_ajax_nonce_settings_posts','bcb1f802b5'),('post_editor_theme','default'),('change_post_editor_font_size',''),('enable_post_tab_characters','spaces'),('enable_post_tab_size',''),('enable_post_editor_height','');
/*!40000 ALTER TABLE `wh_wpeditor_settings` ENABLE KEYS */;
UNLOCK TABLES;
/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;

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

-- Dump completed on 2018-05-09 11:51:10
